- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- hardware path
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
Forums
Discussions
Discussions
Discussions
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
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
03-19-2003 02:44 AM
03-19-2003 02:44 AM
hardware path
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-19-2003 02:56 AM
03-19-2003 02:56 AM
Re: hardware path
if it is ide, then it is one of hda, hdb, hdc, hdd.
u can also use the /dev/cdrom which is normally a symbolic link to either one of those above.
hth
-balaji
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-19-2003 03:58 AM
03-19-2003 03:58 AM
Re: hardware path
Normally the cdrom entry is allready in /etc/fstab.
On my RH8 it mounts /dev/crom to /mnt/cdrom. So i type: mount /mnt/cdrom
HTH
Donald
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-19-2003 12:49 PM
03-19-2003 12:49 PM
Re: hardware path
Normally the cdrom is /dev/hdd
execute cat /etc/fstab
if you version is old execute:
mount -t iso9660 /dev/cdrom /mnt/cdrom
version update
mount /dev/cdrom /mnt/cdrom
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-19-2003 05:11 PM
03-19-2003 05:11 PM
Re: hardware path
mount: wrong fs type, bad option, bad superblock on /dev/cdrom,
or too many mounted file systems
(could this be the IDE device where you in fact use
ide-scsi so that sr0 or sda or so is needed?)
how to fix ? thx
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-19-2003 08:05 PM
03-19-2003 08:05 PM
Re: hardware path
could you please post relevant messages from dmesg related to cdrom. from there we can get some info.
also, can u paste the output of /proc/devices.
-balaji
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-19-2003 08:47 PM
03-19-2003 08:47 PM
Re: hardware path
dmesg | grep -E "^[sh]d"
or
grep -E "^[sh]d" /var/log/dmesg
Also, the output of these commands might help us some more:
grep cdrom /etc/fstab
ls -l /dev/cdrom
One last command which might help us is this one:
lsmod | grep ide
This will tell us if you have the 'ide-scsi' module inserted (which makes IDE CD drives emulate SCSI behaviour, used mostly when CD Burners are in play).
If it is listed by the above command, the output of:
cat /proc/scsi/scsi
would also be of use.
Also, what are the exact commands you have attempted to use?
With these details, we should be able to give you an accurate answer on how to mount your CD media.