- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- cannot mount or boot from cd
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-11-2007 03:07 PM
тАО10-11-2007 03:07 PM
cannot mount or boot from cd
However, the CD does not boot up during start up, and I can't seem to mount the CD in Linux. (I'm new to linux, so not sure I did it correctly also.)
I logged in as "root", and went to "system tools" -> terminal, and keyyed in :
mount -t iso9660 -o ro /dev/cdrom /cdrom
mount /dev/sud0 /cdrom
both doesn't work. Am I doing it correctly? How can I check if the CDrom has been connected to the blade?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-11-2007 05:00 PM
тАО10-11-2007 05:00 PM
Re: cannot mount or boot from cd
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-11-2007 06:23 PM
тАО10-11-2007 06:23 PM
Re: cannot mount or boot from cd
The output from each command i got is indicative with an arrow(->) as shown below:
mount -t iso9660 -o ro /dev/cdrom /cdrom
-> mount: mount point /cdrom does not exist
mount /dev/sud0 /cdrom
-> mount: you must specify the file system type.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-11-2007 06:59 PM
тАО10-11-2007 06:59 PM
Re: cannot mount or boot from cd
Perhaps it means what it says. Did you try
"mkdir /cdrom"?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-11-2007 07:54 PM
тАО10-11-2007 07:54 PM
Re: cannot mount or boot from cd
if the /cdrom directory doesn't exist, that's the error you will get from the mount command
RH should automount the CD, I think it mounts to a directory under /media
/dev/cdrom is usually a link to the actual device, if the rom drive wasn't connected during install the link may not be there
USB drives are usually seen as SCSI devices
I just checked on one of my c-class systems running SLES10. I used virtual media through iLO2 and mounted an .iso image, it showed up as /dev/sr0. This system was setup using a network install so there is no /dev/cdrom
so you might try
mount /dev/sr0 /mnt
then
ls /mnt
mount will try to determine the type so you generally don't need to use -t and it will mount a CD read only so you don't need the ro option
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-11-2007 09:05 PM
тАО10-11-2007 09:05 PM
Re: cannot mount or boot from cd
please created /cdrom directory using "mkdir /cdrom" as suggested.
Red hat tries to mount a CD in /mnt/cdrom, if you have an entry for /dev/cdrom (or whatever device) in /etc/fstab
try this command:
mount /mnt/cdrom
also check /etc/fstab the path may be different there.....Change accordingly.