Thursday, May 2, 2024
 Popular · Latest · Hot · Upcoming
0
rated 0 times [  0] [ 0]  / answers: 1 / hits: 11944  / 2 Years ago, fri, april 1, 2022, 1:59:40

I am very new to the OS so adhering the new things slowly but happily. My question is how to transfer folder from win7 NTFS partition to separate partition having ext4 file system? I tried copy but at the destination drive the paste doesn't get activate.



Edit: Here's what i got when typed in the terminal



~$ mount
/dev/sda1 on / type ext4 (rw,errors=remount-ro)
proc on /proc type proc (rw,noexec,nosuid,nodev)
sysfs on /sys type sysfs (rw,noexec,nosuid,nodev)
none on /sys/fs/fuse/connections type fusectl (rw)
none on /sys/kernel/debug type debugfs (rw)
none on /sys/kernel/security type securityfs (rw)
udev on /dev type devtmpfs (rw,mode=0755)
devpts on /dev/pts type devpts (rw,noexec,nosuid,gid=5,mode=0620)
tmpfs on /run type tmpfs (rw,noexec,nosuid,size=10%,mode=0755)
none on /run/lock type tmpfs (rw,noexec,nosuid,nodev,size=5242880)
none on /run/shm type tmpfs (rw,nosuid,nodev)
/dev/sda5 on /home type ext4 (rw)
binfmt_misc on /proc/sys/fs/binfmt_misc type binfmt_misc (rw,noexec,nosuid,nodev)
gvfs-fuse-daemon on /home/ramesh/.gvfs type fuse.gvfs-fuse-daemon (rw,nosuid,nodev,user=ramesh)


I am using the latest LTS edition.


More From » clipboard

 Answers
2

Let's step by step



For Example: If you have this scheme:



sda1 = Windows OS, NTFS folder containing the "myDataWin"
sda2 = OS Linux Ext4
sda3 = Ext4 (Partition for target data)



  1. You must mount the NTFS partitions and Ext4, for this you must have root privileges.



    mkdir /mnt/WindowsData /mnt/DataFinal
    mount-t ntfs /dev/sda1 /mnt/WindowsData
    mount-t ext4 /dev/sda3 /mnt/DataFinal

  2. Copy the folder myDataWin from the NTFS partition to Ext4 partition



    cp -R /mnt/WindowsData/myDataWin /mnt/DataFinal



That's it.


[#36495] Saturday, April 2, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
afisird

Total Points: 193
Total Questions: 112
Total Answers: 111

Location: Angola
Member since Mon, Jul 12, 2021
3 Years ago
afisird questions
Wed, Jul 27, 22, 03:53, 2 Years ago
Sun, Mar 12, 23, 18:05, 1 Year ago
Sun, Dec 11, 22, 01:19, 1 Year ago
;