Copying files from DVD to hard disc?

8,170

Solution 1

The syntax of cp (copy command in Terminal) from man cp is as following:

NAME
       cp - copy files and directories

SYNOPSIS
       cp [OPTION]... [-T] SOURCE DEST
       cp [OPTION]... SOURCE... DIRECTORY
       cp [OPTION]... -t DIRECTORY SOURCE...

DESCRIPTION
       Copy SOURCE to DEST, or multiple SOURCE(s) to DIRECTORY.

Insert your DVD and open your file manager and open the DVD by clicking on its name under devices:

enter image description here

Then press Ctrl+L to getting its mountpoint(source path) and copy it.

enter image description here

Now open Terminal(use Ctrl+Alt+T) and type following:

cp -R /media/USERNAME/DVDNAME/* ~/ANIL/

Just replace USERNAME with your real username and DVDNAME(in my case it's 211+6211) with yours. And also in above command your ANIL directory located in your Home directoy.

See also here

Solution 2

Install K3b (it is in the repository) and rip the DVD.

Share:
8,170

Related videos on Youtube

aims solar
Author by

aims solar

Updated on September 18, 2022

Comments

  • aims solar
    aims solar almost 2 years

    I am trying to copy the contents of a DVD to a folder (named ANIL) in Hard Disk by using terminal.

    Would somebody be able to provide me an example of the command line syntax required to achieve this?

    Regards!

  • headkase
    headkase over 9 years
    And you will need the DVD mounted and know it's mountpoint for the source, probably recursive option too, and then a destination within /home/<user>