Monday, April 29, 2024
 Popular · Latest · Hot · Upcoming
6
rated 0 times [  6] [ 0]  / answers: 1 / hits: 58401  / 2 Years ago, sun, june 5, 2022, 6:02:15

I am trying to mount the installation CD rom drive using a USB CD ROM drive on Ubuntu 10.4.3 server to extract additional packages (since I do not have internet active on the server). I plugged the CD rom drive and inserted the CD and I could not find any auto mounting happening. I could not figure out what would be the device name to manually mount. Looks like it is not /dev/sr0. Any guidance on mounting a CD on Ubuntu server is appreciated.



EDIT Based on the answer from Christopher, here is more information,



/0/1                 scsi6       storage     
/0/1/0.0.0 /dev/cdrom disk DVD RW AD-7560S
/0/1/0.0.0/0 /dev/cdrom disk


So I guess the device name would be /dev/cdrom and I should be able to mount it with the following command



sudo mount /dev/cdrom /mnt


I get the following error.



mount: /dev/sr0: unknown device


However I can automount the CD in my Ubuntu 10.10 Desktop edition.



So please confirm I am recognising the correct /dev/<dev name>


More From » 10.04

 Answers
3

You can glean the device name with "list hardware" (lshw):



sudo lshw -short


Output something like this:



H/W path               Device      Class       Description
==========================================================
/0/100/1f.2/0 /dev/cdrom disk DVD+-RW GSA-H31L
/0/100/1f.2/1 /dev/sda disk 750GB ST3750640AS


Or maybe pipe to less if there is too much output:



sudo lshw -short | less

[#40710] Monday, June 6, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
nuehan

Total Points: 253
Total Questions: 109
Total Answers: 120

Location: Singapore
Member since Sat, Jul 25, 2020
4 Years ago
;