Copying data from USB CD Drive.

 
Thread Tools Search this Thread
Operating Systems Linux Red Hat Copying data from USB CD Drive.
# 1  
Old 04-22-2014
Copying data from USB CD Drive.

I need to perform operation as captioned.

I found out USB CD Drive is attached, by running 'lsusb' command.

I am trying to identify mechanism by which I could mount this USB CD drive to disk. After which I expect to copy the contents.

Could anyone indicate how this could be performed ?
# 2  
Old 04-22-2014
Hi Videsh,

The command you'll probably be looking for is;

Code:
mount -t auto /dev/cdrom /media/cdrom

Or something similar, if it's an external device - check if it's there using
Code:
df -k

If not it may be simpler to unplug it and re-attach it and let the automounter take cate of it.

Regards

Gull04
# 3  
Old 04-22-2014
I have tried -
Code:
mount -t auto /dev/sr0 /cdrom

It is giving me an error of wrong fstype, bad option, missing code type.

This CD Rom consists data copied from Windows env. This consists installables to be tried on the linux environment.

I have tried options with -t as; vfat

Could someone indicate which filesystem type I should choose ?

Last edited by Franklin52; 04-23-2014 at 02:54 AM.. Reason: Please use code tags
# 4  
Old 04-22-2014
If you have parted available, try running it against the device to see if it can recognize the filesystem type.

Code:
parted -l /dev/sr0

If not, perhaps fdisk may work as well:

Code:
fdisk -l /dev/sr0

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Red Hat

Usb external drive

Hi Guys I am using RHEL5 O/S. We have mounted the usb external hard drive to the server as root. I want the user oracle to be able to write into this external hard drive. How do i do that ? Please Help!!! (1 Reply)
Discussion started by: Phuti
1 Replies

2. Solaris

How to mount USB pen drive?

Hiii, Please let me know the steps for mounting my USB pendrive in solaris 10 platform. Thanks & Regards, Bhargav P (5 Replies)
Discussion started by: bhargav90
5 Replies

3. Red Hat

USB drive going offline

Hello all, I have a USB drive mounted on a linux RHEL 4 server which goes offline every now n then. Here are some logs : --------------------------------------------- # lsusb Bus 005 Device 001: ID 0000:0000 Bus 004 Device 001: ID 0000:0000 Bus 003 Device 001: ID 0000:0000 Bus 002... (1 Reply)
Discussion started by: sunny_a_j
1 Replies

4. Solaris

Adding USB Drive to Sparc

I have a sparc machine with which I am trying to add an external USB drive. The server does recognize the USB device, but I cannot see it as an external drive. How to overcome the issue of driver initialization. Much appreciate any help. more /etc/release Solaris 8... (1 Reply)
Discussion started by: Tirmazi
1 Replies

5. Solaris

USB Drive for Solaris

I have a T2000 server running solaris 10, it has 4 USB ports. I want to extend the storage capacity by attaching an external USB drive and mounting it as an other mount point. How do I do that, the following link gives information about USB in Solaris OS, ... (1 Reply)
Discussion started by: Tirmazi
1 Replies

6. Filesystems, Disks and Memory

Cannot use USB diskette drive

I would be extremely grateful for any help on the following matter. Under AIX 5.1 and for years I have been using perfectly well a USB 3.5" disketted drive. But since yesterday, after a power failure disconnected my e-server, I have been unable to use the drive. Whatever <operation> I try to... (0 Replies)
Discussion started by: ahjchr
0 Replies

7. Solaris

mounting usb drive

hi, first of all, i would really like to know how to find out where my usb is in the system. if i "cd to /dev/usb i have a hub0 to hub4 and hid0 -- hid5 .. how do i know where my usb is? and i guess once i find out which one my usb is at, i can do something like "mount /dev/usb/xxx /tmp" ... (5 Replies)
Discussion started by: k2k
5 Replies

8. SCO

configure DAT drive usb

hi all, how i can configure a DAT drive usb under SCO os 6.0.0 thank you (0 Replies)
Discussion started by: lid-j-one
0 Replies

9. SCO

mounting USB floppy drive /Flash drive in OSR 6.0

Can anybody help me out to mount USB flash /floppy drive in sco openserver 6.0 . (5 Replies)
Discussion started by: sureshdrajan
5 Replies

10. Solaris

USB flash Drive

Hello all.. I have a Verbatim 2 GB flash drive. I also have Solaris 10 running on my workstation. If I am in the Windows environment, it detects the flash drive. But when I plug it while I am in solaris, nothing happens. How will solaris 10 detect my flash drive? What do I have to do? any... (4 Replies)
Discussion started by: vr76413
4 Replies
Login or Register to Ask a Question