LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   Read from CD or DVD using terminal scripts for non GUI RHEL 5 Enterprice system (https://www.linuxquestions.org/questions/linux-newbie-8/read-from-cd-or-dvd-using-terminal-scripts-for-non-gui-rhel-5-enterprice-system-948309/)

arnoldmr 06-03-2012 10:06 AM

Read from CD or DVD using terminal scripts for non GUI RHEL 5 Enterprice system
 
Hi,

I need to reinstall the DKU because system init 5 is spawning too fast.
Startx wont continue so therefore i need to use the terminal script.
I have already mounted the DVD ROM. Question is, how do i open the files written on the DVD so I can copy it to /usr/tmp

Thanks,

jefro 06-03-2012 01:16 PM

mv is the command to copy files but I may misunderstand what you have.

Argief 07-31-2012 05:40 AM

Just a correction jefro, mv is for moving files, and cp is for copying ;)

lleb 07-31-2012 04:05 PM

Quote:

Originally Posted by arnoldmr (Post 4694472)
Hi,

I need to reinstall the DKU because system init 5 is spawning too fast.
Startx wont continue so therefore i need to use the terminal script.
I have already mounted the DVD ROM. Question is, how do i open the files written on the DVD so I can copy it to /usr/tmp

Thanks,

if startx is failing, this could have something to do with drivers, more importantly you should be looking into the X11/xorg.conf

in order to copy the files off of the DVD you could use something like the following.

Code:

# mount -t iso9660 /dev/dvd /mnt/dvd
# cp /mnt/dvd/foo /path/to/destination
# umount /mnt/dvd
# eject



All times are GMT -5. The time now is 02:36 AM.