Find the answer to your Linux question:
Page 1 of 3 1 2 3 LastLast
Results 1 to 10 of 23
I am running windows xp and debian on a duel boot. 1 machine, 2 seperate HD's. I'd like to transfer all of my data ie: mp3's, video's etc etc. from ...
  1. #1
    Just Joined! boggy's Avatar
    Join Date
    Oct 2006
    Location
    Northeastern Pennsylvania
    Posts
    43

    Win to linux file transfer

    I am running windows xp and debian on a duel boot. 1 machine, 2 seperate HD's. I'd like to transfer all of my data ie: mp3's, video's etc etc. from my windows drive to my linux drive. How maybe I go about doing this? Thank you.

  2. #2
    Linux Guru smolloy's Avatar
    Join Date
    Apr 2005
    Location
    CA, but from N.Ireland
    Posts
    2,413
    Maybe I'm missing something, but have you tried using cp to copy the data over?
    Registered Linux user #388328 || Registered LFS user #15880
    AMD 64 X2 4600+ :: 2X1GB DDR2 800 :: GeForce 9400 GT 512MB :: ASUS M2N32 Deluxe :: 4X250GB SATAII
    Need instant help? Try us on IRC -- #linuxforums on freenode

  3. #3
    Linux Guru Juan Pablo's Avatar
    Join Date
    Mar 2006
    Location
    /home/south_america/ecuador/quito
    Posts
    2,064
    Maybe the drive is not mounted yet, mount it with something like this

    mkdir /mnt/windows
    mount /dev/hda1 /mnt/windows

    Then use a file manager like Konqueror or Nautilus to move the files ..
    Put your hand in an oven for a minute and it will be like an hour, sit beside a beautiful woman for an hour and it will be like a minute, that is relativity. --Albert Einstein
    Linux User #425940

    Don't PM me with questions, instead post in the forums

  4. #4
    Just Joined! boggy's Avatar
    Join Date
    Oct 2006
    Location
    Northeastern Pennsylvania
    Posts
    43
    Quote Originally Posted by Juan Pablo
    Maybe the drive is not mounted yet, mount it with something like this

    mkdir /mnt/windows
    mount /dev/hda1 /mnt/windows

    Then use a file manager like Konqueror or Nautilus to move the files ..

    rawcrack@debian:~$ mount /dev/hda1
    mount: can't find /dev/hda1 in /etc/fstab or /etc/mtab
    rawcrack@debian:~$ mount /dev/hdb1
    mount: according to mtab, /dev/hdb1 is already mounted on /
    mount failed

    Also I am running enlightenment. I don't have Konqueror or Nautilus. I checked both fstab and mtab it seems hda1 isn't being seen.

  5. #5
    Linux User Oxygen's Avatar
    Join Date
    Jul 2004
    Location
    Hartlepool, England
    Posts
    392
    Command should be.

    Code:
    mount -t ntfs /dev/hda1 /mnt/windows
    Or if you have ntfs-3g (Which is alot better)

    Code:
    mount -t ntfs-3g /dev/hda1 /mnt/windows
    Have a nice day.
    Graham - You'd better Use Linux!

    I'm registerd Linux user #397030. What about you?

  6. #6
    Just Joined! boggy's Avatar
    Join Date
    Oct 2006
    Location
    Northeastern Pennsylvania
    Posts
    43
    Quote Originally Posted by Oxygen
    Command should be.

    Code:
    mount -t ntfs /dev/hda1 /mnt/windows
    Or if you have ntfs-3g (Which is alot better)

    Code:
    mount -t ntfs-3g /dev/hda1 /mnt/windows
    Have a nice day.
    No dice man.
    mount: mount point /mnt/windows does not exist

    There is nothing wrong with the windows I can boot into it just fine I must be missing somthing here..

  7. #7
    Linux User Oxygen's Avatar
    Join Date
    Jul 2004
    Location
    Hartlepool, England
    Posts
    392
    No! The mount point is a folder that, when mounted, acts as a directory to what you mount. You need to make the folder under whatever name you want (hda1/windows/win32) and make the folder, do this.

    Code:
    cd /mnt
    mkdir hda1
    mount -t ntfs /dev/hda1 /mnt/hda1
    Graham - You'd better Use Linux!

    I'm registerd Linux user #397030. What about you?

  8. #8
    Ara
    Ara is offline
    Just Joined!
    Join Date
    Mar 2007
    Location
    Stavanger, Norway
    Posts
    5
    The previous posts covers what commands to use to do what you ask. I would however like to point out that your harddrive isn't necessarily /dev/hda and the partition in question isn't necassarily number 1 (hda1). If you have a SATA or SCSI disk it probably is /dev/sdx. x = a, b, c or something depending on how many disks you have. /dev/sda if you just have one disk. If you have IDE disk it is /dev/hdx. x being a,b,c or something depending on how many disks and/or cd/dvd-drives you got. The partition number is also necassary to know. If you run 'cfdisk /dev/[device]' (replace [device] with hda or sda or whatever) you will probably be able to find out which one is linux and which one i windows (ntfs). Don't modify or save anything in the cfdisk screen!

    You could also use 'dmesg' to check out messages and find the disk drive device.

    Good luck!

  9. #9
    Just Joined! boggy's Avatar
    Join Date
    Oct 2006
    Location
    Northeastern Pennsylvania
    Posts
    43
    Alright, I got it Thank you everyone for your time and help.

  10. #10
    Linux Enthusiast flipjargendy's Avatar
    Join Date
    Aug 2004
    Location
    Xanadu, Titan, Saturn
    Posts
    610
    If you'd like it to be a little easier check out www.FS-Driver.org.

    It allows you to view all of the files in the Linux System or other Ext Filesystems from Windows. You can browse files in the Linux System just like you'd browse files in Windows.
    Running Linux Since 2001®
    Registered Linux User #430868 - Since 9•12•06

Page 1 of 3 1 2 3 LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...