LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 11-14-2007, 02:10 PM   #1
adrian30020
LQ Newbie
 
Registered: Nov 2007
Posts: 14

Rep: Reputation: 0
How do I move files from a ntfs drive to a ext3 drive?


I tried to use konqueror to access the ntfs drive. I can see it but i cant access the media inside that drive, neither it allows me to mount that drive. I am trying to move my music collection from an external ntfs drive to an internal 250gb ext3 drive. When i try to do that it displays a message saying that i dont have permisions to that operation

PS The ntfs in an external usb hard drive.I am a complete noob.


thanx in advance
 
Old 11-14-2007, 02:37 PM   #2
Tinkster
Moderator
 
Registered: Apr 2002
Location: earth
Distribution: slackware by choice, others too :} ... android.
Posts: 23,067
Blog Entries: 11

Rep: Reputation: 927Reputation: 927Reputation: 927Reputation: 927Reputation: 927Reputation: 927Reputation: 927Reputation: 927
What distro are you using? How is the ntfs drive mounted?

Post the output of 'mount' here.



Cheers,
Tink
 
Old 11-14-2007, 02:41 PM   #3
adrian30020
LQ Newbie
 
Registered: Nov 2007
Posts: 14

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by Tinkster View Post
What distro are you using? How is the ntfs drive mounted?

Post the output of 'mount' here.



Cheers,
Tink

i am using pclinuxos 2007. the ntfs drive is not mounted, it wont let me mount, when i tried it gave me a "permissions denied" error message.

the only drive mounted is the one i have the os and the ext 3 empty drive that i want to move the media into.
 
Old 11-14-2007, 02:51 PM   #4
Slick666
Member
 
Registered: Feb 2006
Distribution: Ubuntu 8.04; Debian Etch
Posts: 167

Rep: Reputation: 33
I would suggest going into the terminal and running a few commands to check things out. in the terminal type

df -h

This will show you what is mounted and where. Here's my output
Code:
Filesystem            Size  Used Avail Use% Mounted on
/dev/sda1              36G   16G   19G  46% /
varrun                506M  156K  506M   1% /var/run
varlock               506M  4.0K  506M   1% /var/lock
procbususb            506M  224K  506M   1% /proc/bus/usb
udev                  506M  224K  506M   1% /dev
devshm                506M     0  506M   0% /dev/shm
lrm                   506M   15M  491M   3% /lib/modules/2.6.20-16-generic/volatile
/dev/sdb1              37G   31G  3.8G  90% /vmware
/dev/sdc1             230G  155G   64G  71% /Backup
From this you can see that I have:
36GB primary hard drive,
37GB secondary hard drive that contains everything under the directory /vmware
230GB hard drive (In this case USB) that contains everything under the /Backup directory.

This will make sure you have the drive mounted to your system. If it's there then it's just a problem with permissions. And assuming you have root access than getting the data should be a big thing. If it's not mounted then thats an entirely different path to take. I hope this is helpful and please post what you find.
 
Old 11-14-2007, 02:55 PM   #5
adrian30020
LQ Newbie
 
Registered: Nov 2007
Posts: 14

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by Slick666 View Post
I would suggest going into the terminal and running a few commands to check things out. in the terminal type

df -h

This will show you what is mounted and where. Here's my output
Code:
Filesystem            Size  Used Avail Use% Mounted on
/dev/sda1              36G   16G   19G  46% /
varrun                506M  156K  506M   1% /var/run
varlock               506M  4.0K  506M   1% /var/lock
procbususb            506M  224K  506M   1% /proc/bus/usb
udev                  506M  224K  506M   1% /dev
devshm                506M     0  506M   0% /dev/shm
lrm                   506M   15M  491M   3% /lib/modules/2.6.20-16-generic/volatile
/dev/sdb1              37G   31G  3.8G  90% /vmware
/dev/sdc1             230G  155G   64G  71% /Backup
From this you can see that I have:
36GB primary hard drive,
37GB secondary hard drive that contains everything under the directory /vmware
230GB hard drive (In this case USB) that contains everything under the /Backup directory.

This will make sure you have the drive mounted to your system. If it's there then it's just a problem with permissions. And assuming you have root access than getting the data should be a big thing. If it's not mounted then thats an entirely different path to take. I hope this is helpful and please post what you find.
Filesystem Size Used Avail Use% Mounted on
/dev/hdb1 7.7G 2.5G 4.9G 34% /
/dev/hdb6 102G 316M 101G 1% /home
/dev/sda1 133G 33M 126G 1% /mnt/win_d
/dev/sda2 94G 33M 89G 1% /media/disk


this is what i can see....the 80gb external ntfs drive is not there....and the strange thing is that sda1 and sda2 refers to external hd wich in this case is not correct.....the only external hd that i have is not there.
 
Old 11-14-2007, 03:06 PM   #6
Slick666
Member
 
Registered: Feb 2006
Distribution: Ubuntu 8.04; Debian Etch
Posts: 167

Rep: Reputation: 33
ok, well since The dive is not connected to your system we need to mount it

You need to know the device that your external drive is seen as. In my case sda and sdb are the two internal drives. Any additional drives that I have are added to that (i.e. sdc, sdd, sde,...). So to mount the first partition of my external hard drive I use

Code:
mount /dev/sdc1 /Backup
For you I would think that it would be sdb1. A tool that I use to check sometime is Gparted. If you know how to install software on your machine easily I would suggest installing and running it. It will probe your hardware and display all the drives and partitions that it detects.

If you can't I would try assuming /deb/sdb1 and executing (as root!)

Code:
mount -t ntfs /dev/sdb1 [folder on your system]
if you don't get any errors than success!

Please post any error you get. I hope this helps
 
Old 11-15-2007, 03:27 PM   #7
adrian30020
LQ Newbie
 
Registered: Nov 2007
Posts: 14

Original Poster
Rep: Reputation: 0
Talking

Quote:
Originally Posted by Slick666 View Post
ok, well since The dive is not connected to your system we need to mount it

You need to know the device that your external drive is seen as. In my case sda and sdb are the two internal drives. Any additional drives that I have are added to that (i.e. sdc, sdd, sde,...). So to mount the first partition of my external hard drive I use

Code:
mount /dev/sdc1 /Backup
For you I would think that it would be sdb1. A tool that I use to check sometime is Gparted. If you know how to install software on your machine easily I would suggest installing and running it. It will probe your hardware and display all the drives and partitions that it detects.

If you can't I would try assuming /deb/sdb1 and executing (as root!)

Code:
mount -t ntfs /dev/sdb1 [folder on your system]
if you don't get any errors than success!

Please post any error you get. I hope this helps

thx for the help....i found the problem. My ntfs hard drive was unplugged from windows without using the "safely remove hardware" option. This caused an error in the disc. I logged into window$ and performed a defrag and a scandisc and once i logged back to Linux the problem was solved.


Thanx a lot for the help.

Adrian
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Moving files from NTFS drive to a EXT3 drive?? webshark Slackware 10 05-28-2006 04:02 PM
USB external drive: NTFS/FAT32 detected, ext3 not blanks77 Linux - Hardware 7 04-25-2006 09:45 PM
NTFS vs Ext3 for Dual Boot Shared Drive LostProphet Linux - General 4 02-16-2006 05:54 PM
ext3 formatted drive capacity smaller than ntfs gsupp Linux - General 12 07-25-2004 03:47 PM
Cannot Copy Files From Network FAT32/NTFS Drive to My Local Linux Drive michaelh Linux - Networking 3 10-29-2002 11:27 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 07:40 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration