Computer Hope

Software => BSD, Linux, and Unix => Topic started by: Mikey on April 11, 2004, 03:41:25 AM

Title: Copy files from CDROM to local
Post by: Mikey on April 11, 2004, 03:41:25 AM
I want to copy files from a CD to a new directory on the hard drive. Do I have to be in the CD and write cp filename ....    This is where I get lost. How do I tell it where I want to put it? say the directory is under users on my hard drive?  
Title: Re: Copy files from CDROM to local
Post by: natesneat2000 on April 12, 2004, 02:28:13 PM
To do it in the command line, use the cp command; here's an example:
cp /home/nathanm/smbMine.conf /etc/samba/smb.conf
This would take smbMine.conf from my (nathanm) home directory and copy it as smb.conf in /etc/samba.
For more detailed documentation of this, and many, Linux commands, check out:
http://www.ss64.com/bash/cp.html
(I'm not related to that site though.)
Some options there may help make the process wuicker. Good luck! Go Linux!