Originally posted by: cleverhandle
NTFS: Saves the OP from having to do a one-time copy of data between disks; it's 1337 to use on Linux
f1xx0r3d
Originally posted by: cleverhandle
NTFS: Saves the OP from having to do a one-time copy of data between disks; it's 1337 to use on Linux
Personally, I would never trust important data to JUST a DVD, especially a DL DVD.Originally posted by: tw1164
I know its a pain in the ass, but I would still burn all your data to dvds. You may want to use DL dvds to dull the pain (if you have the money, or can find a good deal).
Originally posted by: Nothinman
I've given my opinion, as an opinion, and I stand by it. You give yours as a fact, but I think it's just an opinion after all, and of course we can have differing opinions based on different experiences, wishes, etc., etc.
But have you tried an installation of FC5 or Ubuntu recently? It's almost completely automated, the only way it could fail is if you have a storage controller that's not supported and that's pretty rare. How easy it is to use after the installation is of course opinion, but the fact that the installation is simpler than Windows is just that, a fact.
Originally posted by: n0cmonkey
coolred: you should always back up any data you want to keep. Always.
Microsoft Windows driver files are copyrighted by Microsoft corporation and
therefore they were not supplied along with this project.
That's sad.
There isn't a better choice than ext3fs right now for Linux. It's supported by everything (BSDs included in ext2 compatibility mode), it's stable, and it isn't horribly slow.
Originally posted by: RebateMonger
Personally, I would never trust important data to JUST a DVD, especially a DL DVD.Originally posted by: tw1164
I know its a pain in the ass, but I would still burn all your data to dvds. You may want to use DL dvds to dull the pain (if you have the money, or can find a good deal).
One more opinion:
By the time the OP learns Linux, he/she could certainly have solved the original Windows Server installation problem.
Originally posted by: Brazen
XFS is arguably better. It's proven to be just as stable, maybe a tad less supported and compatible to the point of being trivial, but with much better performance.
Eh, well, let's be honest here. There really isn't much difference between installing Windows and installing Ubuntu or FC5. Each basically asks for partitioning, time zone, user account and password, and network info. The only advantage I see goes to FC5 (and other distros that use Anaconda) due to asking all the questions at once and then doing all the processing and copying at once as opposed to answer question, wait .... answer question, wait .... answer question, wait .... Other than that the complexity isn't really different in any of them.
ext is supported by more than just 2 operating systems.
xfs is only in the unstable line of kernels and a patchset(?) of 2.4.
There is talk about the type of hardware required to run XFS correctly, and I don't know anyone off hand that has that hardware. I don't know how true this is though.
Originally posted by: Nothinman
If the users/developers of those OSes want XFS support they should start working on it. AFAIK the on-disk format is set in stone for Irix compatibility (although a few of the things have 2 versions) so it's not like reverse engineering NTFS. Since XFS was released under the GPL and us Linux users have support for it, I can't really blame them for not caring to rewrite it for other OSes.
I get the joke here but 2.6 is considered stable, although it's more akin to Debian etch in that major changes are allowed in as long as they don't affect anything else. There were some muckups wrt udev, but that's because gregkh is an ass and Linus didn't notice. Since then gregkh has been put in his place and we shouldn't see anything like that again.
It's under the wrong license, and apprently no one has wanted to rewrite it.
2.6 is the development tree, not the stable tree. Hopefully they'll correct that soon.
Originally posted by: Nothinman
As I said, it's under the right license for Linux. It's OSS and we already have support for it, why would we write drivers for OSes that we don't use?
It's considered stable enough, I really doubt that'll change any time soon.
Nah....you've got to let the Linux guys argue about which distribution of Linux and which file system to use and which GPL.....before they can come around to answering your question.Originally posted by: coolred
Okay, but how do I go about copying the data from one drive to the next. Linux only sees the drive that it is installed on, so what do I need to do to back up the data?
Mount the NTFS partition read-only under Linux:Originally posted by: coolred
Okay, but how do I go about copying the data from one drive to the next. Linux only sees the drive that it is installed on, so what do I need to do to back up the data?
Originally posted by: RebateMonger
Nah....you've got to let the Linux guys argue about which distribution of Linux and which file system to use and which GPL.....before they can come around to answering your question.Originally posted by: coolred
Okay, but how do I go about copying the data from one drive to the next. Linux only sees the drive that it is installed on, so what do I need to do to back up the data?![]()
How cute and snarky. But I actually prefer *nix more because I like getting stuff done quickly, and less for the endlessly amusing philosophical debates.Originally posted by: RebateMonger
Nah....you've got to let the Linux guys argue about which distribution of Linux and which file system to use and which GPL.....before they can come around to answering your question.![]()
Hmm, well, there are times when I prefer it for gettting stuff done, but other than the fact that it's free for me, I like it because of the philosophy. Sometimes, I freedom is more important than taking the easy way (yes, there are occasions when Windows is the easy way, though usually only in the short term).Originally posted by: cleverhandle
How cute and snarky. But I actually prefer *nix more because I like getting stuff done quickly, and less for the endlessly amusing philosophical debates.Originally posted by: RebateMonger
Nah....you've got to let the Linux guys argue about which distribution of Linux and which file system to use and which GPL.....before they can come around to answering your question.![]()
![]()
Originally posted by: RebateMonger
Nah....you've got to let the Linux guys argue about which distribution of Linux and which file system to use and which GPL.....before they can come around to answering your question.Originally posted by: coolred
Okay, but how do I go about copying the data from one drive to the next. Linux only sees the drive that it is installed on, so what do I need to do to back up the data?![]()
Originally posted by: cleverhandle
Mount the NTFS partition read-only under Linux:Originally posted by: coolred
Okay, but how do I go about copying the data from one drive to the next. Linux only sees the drive that it is installed on, so what do I need to do to back up the data?
mount -t ntfs -o ro /dev/hdb1 /mnt
where hdb = your old disk (look in your dmesg output if you're not sure what it is), 1 = the partition on that disk (probably 1), and /mnt is an empty, temporary mountpoint (which /mnt is by default on most distros).
Figure out where you want to keep your data on the new disk and make a directory for it:
mkdir /new/data/path
Then, if you want to copy the entire disk, do
cp -a /mnt/* /new/data/path
Of if you only want a specific folder...
cp -a /mnt/my/data/folder /new/data/path
Either way, the data will probably end up readable only by root, so you'll want to change the ownership and permissions to something that makes sense for you.
find /new/data/path -type d -exec chmod 755 {} \;
find /new/data/path -type f -exec chmod 644 {} \;
chown -R myusername.mygroupname /new/data/path
Unmount the drive and you're done...
umount /mnt
If this is a Fedora system, they don't ship with the required kernel module. Get the kmod-ntfs RPM that's appropriate for your kernel (probably i686) from here. If you've already configured yum to use rpm.livna.org, then you can just use yum instead. Otherwise...Originally posted by: coolred
Unknown filesystem ntfs is the error I get