Mounting CD drive
up vote
6
down vote
favorite
I'm attempting to mount my CD drive so that I can use it, and I'm confused on all the necessary steps I need to take to get it working smoothly. When I go to my disk utilities it is popping up on my screen and I can eject the disc by clicking eject on the screen, but it says there is no medium in drive when there is. What method should I take to start? And can someone explain exactly what mounting completely entails, thanks for your help.
mount cd-drive
add a comment |
up vote
6
down vote
favorite
I'm attempting to mount my CD drive so that I can use it, and I'm confused on all the necessary steps I need to take to get it working smoothly. When I go to my disk utilities it is popping up on my screen and I can eject the disc by clicking eject on the screen, but it says there is no medium in drive when there is. What method should I take to start? And can someone explain exactly what mounting completely entails, thanks for your help.
mount cd-drive
You should be able to select optical drives with media in them in Nautilus, in which case they're mounted as soon as you click on the drive symbol. Does that not work on your system?
– David Foerster
Feb 25 '15 at 21:02
I'm not familiar with nautilus at all I'm quite new to ubuntu Unix based in grneral, do I need to install that package?
– cmehmen
Feb 25 '15 at 23:58
Nautilus is the the default file manager of Ubuntu. Unless you removed it, you should already have and have used it.
– David Foerster
Feb 26 '15 at 11:35
add a comment |
up vote
6
down vote
favorite
up vote
6
down vote
favorite
I'm attempting to mount my CD drive so that I can use it, and I'm confused on all the necessary steps I need to take to get it working smoothly. When I go to my disk utilities it is popping up on my screen and I can eject the disc by clicking eject on the screen, but it says there is no medium in drive when there is. What method should I take to start? And can someone explain exactly what mounting completely entails, thanks for your help.
mount cd-drive
I'm attempting to mount my CD drive so that I can use it, and I'm confused on all the necessary steps I need to take to get it working smoothly. When I go to my disk utilities it is popping up on my screen and I can eject the disc by clicking eject on the screen, but it says there is no medium in drive when there is. What method should I take to start? And can someone explain exactly what mounting completely entails, thanks for your help.
mount cd-drive
mount cd-drive
edited Nov 12 at 19:15
stumblebee
2,3143922
2,3143922
asked Feb 25 '15 at 16:28
cmehmen
912410
912410
You should be able to select optical drives with media in them in Nautilus, in which case they're mounted as soon as you click on the drive symbol. Does that not work on your system?
– David Foerster
Feb 25 '15 at 21:02
I'm not familiar with nautilus at all I'm quite new to ubuntu Unix based in grneral, do I need to install that package?
– cmehmen
Feb 25 '15 at 23:58
Nautilus is the the default file manager of Ubuntu. Unless you removed it, you should already have and have used it.
– David Foerster
Feb 26 '15 at 11:35
add a comment |
You should be able to select optical drives with media in them in Nautilus, in which case they're mounted as soon as you click on the drive symbol. Does that not work on your system?
– David Foerster
Feb 25 '15 at 21:02
I'm not familiar with nautilus at all I'm quite new to ubuntu Unix based in grneral, do I need to install that package?
– cmehmen
Feb 25 '15 at 23:58
Nautilus is the the default file manager of Ubuntu. Unless you removed it, you should already have and have used it.
– David Foerster
Feb 26 '15 at 11:35
You should be able to select optical drives with media in them in Nautilus, in which case they're mounted as soon as you click on the drive symbol. Does that not work on your system?
– David Foerster
Feb 25 '15 at 21:02
You should be able to select optical drives with media in them in Nautilus, in which case they're mounted as soon as you click on the drive symbol. Does that not work on your system?
– David Foerster
Feb 25 '15 at 21:02
I'm not familiar with nautilus at all I'm quite new to ubuntu Unix based in grneral, do I need to install that package?
– cmehmen
Feb 25 '15 at 23:58
I'm not familiar with nautilus at all I'm quite new to ubuntu Unix based in grneral, do I need to install that package?
– cmehmen
Feb 25 '15 at 23:58
Nautilus is the the default file manager of Ubuntu. Unless you removed it, you should already have and have used it.
– David Foerster
Feb 26 '15 at 11:35
Nautilus is the the default file manager of Ubuntu. Unless you removed it, you should already have and have used it.
– David Foerster
Feb 26 '15 at 11:35
add a comment |
3 Answers
3
active
oldest
votes
up vote
1
down vote
By default the system automatically mounts the cd. Since you system recognizes the cd drive, It is most likely a:
- defective disk.
- defective cd drive
- cd drive that is not capable of reading a high capacity (DVD) disk.
add a comment |
up vote
0
down vote
Usually, if a CD or DVD is inserted, you can see them under /dev/cdrom. You wont be able to view the contents from that location directly such as by doing cd /dev/cdrom or ls .
You can mount this CD by creating a mount point or using the existing mount point such as /media
run the following command
sudo mount /dev/cdrom /media
#you can use your custom mount point as well if this is on your desktop or somewhere else
For more information on the mount command, You can read the manual pages by doing man mount
That's it. You should be able to see the files under /media folder now.
Good Luck!
add a comment |
up vote
0
down vote
Add your original ubuntu_server.iso file in your VM CD drive from manual setting option and then check how many media available with you
#sudo ls /media/
cdrom floppy1 floppy2
Then is not there then create a directory
#cd /media
#sudo mkdir cdrom
#ls
cdrom floppy1 floppy2
@[this CDROM have been created with this command
after then mount this cdrom in your DEV directory
#cd
[then go to home/main directory for mount]
run bellow commant and boom! mount your CDROM on ubuntu_server
#sudo mount /dev/sr0 /media/cdrom
[this will mount your CDROM on ubuntu server successfully]
Thanks!!!
add a comment |
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
By default the system automatically mounts the cd. Since you system recognizes the cd drive, It is most likely a:
- defective disk.
- defective cd drive
- cd drive that is not capable of reading a high capacity (DVD) disk.
add a comment |
up vote
1
down vote
By default the system automatically mounts the cd. Since you system recognizes the cd drive, It is most likely a:
- defective disk.
- defective cd drive
- cd drive that is not capable of reading a high capacity (DVD) disk.
add a comment |
up vote
1
down vote
up vote
1
down vote
By default the system automatically mounts the cd. Since you system recognizes the cd drive, It is most likely a:
- defective disk.
- defective cd drive
- cd drive that is not capable of reading a high capacity (DVD) disk.
By default the system automatically mounts the cd. Since you system recognizes the cd drive, It is most likely a:
- defective disk.
- defective cd drive
- cd drive that is not capable of reading a high capacity (DVD) disk.
answered Feb 28 at 0:54
stumblebee
2,3143922
2,3143922
add a comment |
add a comment |
up vote
0
down vote
Usually, if a CD or DVD is inserted, you can see them under /dev/cdrom. You wont be able to view the contents from that location directly such as by doing cd /dev/cdrom or ls .
You can mount this CD by creating a mount point or using the existing mount point such as /media
run the following command
sudo mount /dev/cdrom /media
#you can use your custom mount point as well if this is on your desktop or somewhere else
For more information on the mount command, You can read the manual pages by doing man mount
That's it. You should be able to see the files under /media folder now.
Good Luck!
add a comment |
up vote
0
down vote
Usually, if a CD or DVD is inserted, you can see them under /dev/cdrom. You wont be able to view the contents from that location directly such as by doing cd /dev/cdrom or ls .
You can mount this CD by creating a mount point or using the existing mount point such as /media
run the following command
sudo mount /dev/cdrom /media
#you can use your custom mount point as well if this is on your desktop or somewhere else
For more information on the mount command, You can read the manual pages by doing man mount
That's it. You should be able to see the files under /media folder now.
Good Luck!
add a comment |
up vote
0
down vote
up vote
0
down vote
Usually, if a CD or DVD is inserted, you can see them under /dev/cdrom. You wont be able to view the contents from that location directly such as by doing cd /dev/cdrom or ls .
You can mount this CD by creating a mount point or using the existing mount point such as /media
run the following command
sudo mount /dev/cdrom /media
#you can use your custom mount point as well if this is on your desktop or somewhere else
For more information on the mount command, You can read the manual pages by doing man mount
That's it. You should be able to see the files under /media folder now.
Good Luck!
Usually, if a CD or DVD is inserted, you can see them under /dev/cdrom. You wont be able to view the contents from that location directly such as by doing cd /dev/cdrom or ls .
You can mount this CD by creating a mount point or using the existing mount point such as /media
run the following command
sudo mount /dev/cdrom /media
#you can use your custom mount point as well if this is on your desktop or somewhere else
For more information on the mount command, You can read the manual pages by doing man mount
That's it. You should be able to see the files under /media folder now.
Good Luck!
answered Feb 25 '15 at 20:15
rulebreaker4
880413
880413
add a comment |
add a comment |
up vote
0
down vote
Add your original ubuntu_server.iso file in your VM CD drive from manual setting option and then check how many media available with you
#sudo ls /media/
cdrom floppy1 floppy2
Then is not there then create a directory
#cd /media
#sudo mkdir cdrom
#ls
cdrom floppy1 floppy2
@[this CDROM have been created with this command
after then mount this cdrom in your DEV directory
#cd
[then go to home/main directory for mount]
run bellow commant and boom! mount your CDROM on ubuntu_server
#sudo mount /dev/sr0 /media/cdrom
[this will mount your CDROM on ubuntu server successfully]
Thanks!!!
add a comment |
up vote
0
down vote
Add your original ubuntu_server.iso file in your VM CD drive from manual setting option and then check how many media available with you
#sudo ls /media/
cdrom floppy1 floppy2
Then is not there then create a directory
#cd /media
#sudo mkdir cdrom
#ls
cdrom floppy1 floppy2
@[this CDROM have been created with this command
after then mount this cdrom in your DEV directory
#cd
[then go to home/main directory for mount]
run bellow commant and boom! mount your CDROM on ubuntu_server
#sudo mount /dev/sr0 /media/cdrom
[this will mount your CDROM on ubuntu server successfully]
Thanks!!!
add a comment |
up vote
0
down vote
up vote
0
down vote
Add your original ubuntu_server.iso file in your VM CD drive from manual setting option and then check how many media available with you
#sudo ls /media/
cdrom floppy1 floppy2
Then is not there then create a directory
#cd /media
#sudo mkdir cdrom
#ls
cdrom floppy1 floppy2
@[this CDROM have been created with this command
after then mount this cdrom in your DEV directory
#cd
[then go to home/main directory for mount]
run bellow commant and boom! mount your CDROM on ubuntu_server
#sudo mount /dev/sr0 /media/cdrom
[this will mount your CDROM on ubuntu server successfully]
Thanks!!!
Add your original ubuntu_server.iso file in your VM CD drive from manual setting option and then check how many media available with you
#sudo ls /media/
cdrom floppy1 floppy2
Then is not there then create a directory
#cd /media
#sudo mkdir cdrom
#ls
cdrom floppy1 floppy2
@[this CDROM have been created with this command
after then mount this cdrom in your DEV directory
#cd
[then go to home/main directory for mount]
run bellow commant and boom! mount your CDROM on ubuntu_server
#sudo mount /dev/sr0 /media/cdrom
[this will mount your CDROM on ubuntu server successfully]
Thanks!!!
answered Oct 8 '17 at 17:12
Brijesh Sondarva
212
212
add a comment |
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f589854%2fmounting-cd-drive%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
You should be able to select optical drives with media in them in Nautilus, in which case they're mounted as soon as you click on the drive symbol. Does that not work on your system?
– David Foerster
Feb 25 '15 at 21:02
I'm not familiar with nautilus at all I'm quite new to ubuntu Unix based in grneral, do I need to install that package?
– cmehmen
Feb 25 '15 at 23:58
Nautilus is the the default file manager of Ubuntu. Unless you removed it, you should already have and have used it.
– David Foerster
Feb 26 '15 at 11:35