Linux - SoftwareThis 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
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
As of right now Windows XP can read/write the hdb1 ntfs partition and the Linux partition can only read the ntfs partition on hdb. But, I don't use XP and I want that 90GB partition to be a Linux only partition. So, how can I format that partition to ext3? The big question: will reformatting that partition mess up the other partitions on that drive, i.e., will Linux still boot? Will I lose data on the other Linux partitions? I don't care if I lose everything on the ntfs partition, but I don't want to lose anything on the Linux ones.
A little info: I'm running Fedora Core 2. Hda is 40GB. Hdb is 160GB total.
After making the appropriate entry in /etc/fstab, /dev/hdb1 should be ready to use.
You should loose no data (execept of course /dev/hdb1) and your other partitions shouldn't be messed up.
If you have your bootmanager installed in the mbr of /dev/hda, then there should be no changes with booting your OS's.
If your bootmanager is installed in the mbr of /dev/hdb, I believe there should be no changes too.
But having an up-to-date backup of your data ready by hand, is never a bad idea....
I would recommend uninstalling any programs that are on that partition. This will help out a little bit with the regestry for XP, and it'll let you install those programs again. If you don't, XP will say that it can't find the uninstall file, but it still won't let you install the program, and cleaning up the regestry isn't fun. I ended up removing some old, broken programs from it, and it takes a LONG time to have it search through the whole regestry for some elusive keys, and then you have to make sure those are the proper keys you want to remove.
Everything worked beautifully. Thanks to all for their help.
Last question (I promise):
How to I get the drive to mount automatically when I start the computer? I imagine I must add an entry to the /etc/fstab file. I added a directory for the dirve to mount to, so that is okay. Also, I was able to mount the drive with root. But, I would like it to mount automatically even if I sign in as a normal user.
Add a line to /etc/fstab, something like:
/dev/hdb1 /mnt/<dirname> ext3 defaults 1 1
where:
<dirname> is the name of the mount point you've created.
1 1 is the mount order of the partition. Make it read the same as the other partitions, or give it a sequential number to mount in sequence, like 1 2. Note that there must be at least one space between the numbers.
That should mount it on boot. To make it accessible by users, you will need to set permissions on that directory such that users have access.
FYI:
The 1 1 is the fifth and sixth fields of an fstab line. The fifth field is for the dump command. The sixth field is the order of how fsck checks the filesystems at boot. See man pages of fstab, dump and fsck for additional info. Since this filesystem is not the root it should be 1 2.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.