LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 02-10-2009, 11:45 PM   #1
Dankles
Member
 
Registered: May 2004
Location: /dev/null
Distribution: Slackware
Posts: 245

Rep: Reputation: 31
Copying 400GBs from ntfs to linux volume


Hey all, I have 400 GBs of data (movies, music, code, etc) on an NTFS drive to move to a new 1.5 TB mirror (software) raid all on the same computer. So I was wondering what the best way to go about this would be? Is 'cp' enough? Will ntfs-3g barf in the process?

Also, I haven't setup the 1.5 TB Raid yet and was wondering if everyone thinks I should format it as XFS or ext3 or what? I'll have LOTS of large files on it and it will be used as a samba share as well.
 
Old 02-11-2009, 12:04 AM   #2
i92guboj
Gentoo support team
 
Registered: May 2008
Location: Lucena, Córdoba (Spain)
Distribution: Gentoo
Posts: 4,083

Rep: Reputation: 405Reputation: 405Reputation: 405Reputation: 405Reputation: 405
Quote:
Originally Posted by Dankles View Post
Hey all, I have 400 GBs of data (movies, music, code, etc) on an NTFS drive to move to a new 1.5 TB mirror (software) raid all on the same computer. So I was wondering what the best way to go about this would be? Is 'cp' enough? Will ntfs-3g barf in the process?
cp should be enough, though you probably will want to setup some ownership and permissions after that. There's no way you could "import" those from the ntfs because the windows file systems do not have the necessary structures anyway.

But you can worry about that later. There are way to do mass-processing for that so you don't have to go clicking silly permissions boxes around.

cp should be ok, you could use rsync as well. Any tool that can copy files should be ok.

Quote:
Also, I haven't setup the 1.5 TB Raid yet and was wondering if everyone thinks I should format it as XFS or ext3 or what? I'll have LOTS of large files on it and it will be used as a samba share as well.
When people speak about BIG files for XFS they often do not know what a BIG file is in this context. A big file for XFS is more like in the range of TBs, or at least more than a couple of dozen GBs. Any fs will handle files of a few GBs just fine, you don't need XFS just for that. Id personally use ext4 if your kernel is recent enough (yes it's new, but it's stable and it's been merged in 2.6.28 in the stable kernel branch, so it's well tested and it's a reliable fs). Otherwise just use ext3 and tune it this way:

Code:
tune2fs -Odir_index -m0 /dev/whatever
That should be fine for your purpose. And you can upgrade to ext4 at any given time without reformatting.

I don't have any particular thing against XFS, but I just don't advice it unless you can guarantee a non-interruptible power supply. It has demonstrated for me and many people not to be reliable when there are unwanted shutdowns.
 
Old 02-11-2009, 12:51 AM   #3
Dankles
Member
 
Registered: May 2004
Location: /dev/null
Distribution: Slackware
Posts: 245

Original Poster
Rep: Reputation: 31
Thanks man! I wasn't too worried about permissions as I was meaning to redo most of it anyways. And I'll probably go with ext3 over ext4 since I'm on a 2.6.21 kernel (debian).
Thanks again!
 
Old 02-11-2009, 03:29 AM   #4
Linux.tar.gz
Senior Member
 
Registered: Dec 2003
Location: Paris
Distribution: Slackware forever.
Posts: 2,534

Rep: Reputation: 100Reputation: 100
Do not use XFS on a desktop system. It is toooooooooo slooooooooooow :^).
ext 3/4 is a good choice, and reiserfs for /usr simply kicks asses.
 
Old 02-11-2009, 03:36 AM   #5
i92guboj
Gentoo support team
 
Registered: May 2008
Location: Lucena, Córdoba (Spain)
Distribution: Gentoo
Posts: 4,083

Rep: Reputation: 405Reputation: 405Reputation: 405Reputation: 405Reputation: 405
Quote:
Originally Posted by Linux.tar.gz View Post
and reiserfs for /usr simply kicks asses.
That depends. If you don't like to reinstall every once in a while and you write to /usr a lot (update regularly) you are not going to like the degradation of performance of reiser 3.x that the fragmentation produces. It's also very heavy in cpu term for my tastes, overall if tail packing is enabled.
 
Old 02-11-2009, 11:40 AM   #6
Dankles
Member
 
Registered: May 2004
Location: /dev/null
Distribution: Slackware
Posts: 245

Original Poster
Rep: Reputation: 31
If I was to use ext4, would it be stable enough to run as a raid 5 (software) volume?
 
Old 02-11-2009, 03:53 PM   #7
i92guboj
Gentoo support team
 
Registered: May 2008
Location: Lucena, Córdoba (Spain)
Distribution: Gentoo
Posts: 4,083

Rep: Reputation: 405Reputation: 405Reputation: 405Reputation: 405Reputation: 405
I haven't use it under raid5 myself. But I can't think of a reason why it would be any less stable than ext3, which is rock solid.

I've used ext4 without problems since .28 became stable, and by that time I had been already using ext4dev for quite some time without noticing any problem, though I only used that on non-critical tasks where I could spare the contents if something bad was to happen.

Of course, if it's a critical system you should still do your tests regardless of what I or someone else says here.
 
  


Reply



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
cp command problems when copying from NTFS... s2cuts Linux - General 7 01-20-2008 12:46 AM
Copying from NTFS within Linux to another NTFS drive? sandeepg Linux - General 4 01-21-2006 12:43 AM
Writing to an NTFS volume using captive-ntfs (repairing boot.ini) macskeeball Linux - General 3 02-06-2005 09:28 PM
How to get my NTFS RAID volume seen through linux snoopyswiss Linux - Hardware 1 09-22-2004 05:11 AM
Copying ReiserFS to NTFS GoatKing Linux - Software 4 03-25-2004 12:56 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 05:01 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