Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.
Trending News
Best practices for partitioning the Linux?
Does any one know what are the best practices for partitioning the Linux, i want install Linux mint 14 Nadia..I have 320 GB can some one advise on this ?
i nstalled succesfully but i faced one problem like i cant copy or paste any file to any drive , paste and make new folder manue not active i dont know the issue , so i plan to reinstall the OS, Can anyone know wats is the actual problem ??
Attempting this from a USB flash drive...Thanks JMR
3 Answers
- 『 』Lv 78 years agoFavorite Answer
When partitioning, generally you will want to make four separate partitions; namely, / (root), SWAP, /tmp and /home.
You will want to give the root (/) partition around 80 GB for all of your software needs. Rule of thumb with the SWAP, double your RAM (however, if you have a lot of RAM, then one to two GBs will do). The /tmp you will want to give a good 15 GB or so, this is where data will be held temporarily, e.g., backing up a 4 GB DVD, the 4 GBs will be held in the /tmp and removed after the copy is complete. Thus it won't impact your main memory). And last, your /home partition. Give that the rest or give it 100 GBs and the rest as a separate backup partition.
When you need to reinstall, be sure to manually setup this same partition layout, and MAKE SURE that you do NOT format the /home (and don't even worry about touching the backup partition if you have one).
To further elaborate, you will click on the root (/) partition, set the proper Filesystem (e.g., ext4), and select to format. Do the same with the /tmp, however, with the /home partition, set it as /home, and DO NOT format it. Don't touch the backup partition if you have one. (This will keep all of your personal data in tacked while reinstalling or upgrading the OS!)
~~~~~~~~~~
If you have another HDD and have formated it to ext3 or ext4, it will be set as owned by root. You need to manually change ownership. E.g., if you have a backup partition labeled "backup001," the you need to open a terminal and input:
sudo chown -R username:usergroup /point/of/location.
(Let User Name be mark, and mounted location in media)
sudo chown -R mark:mark /media/backup001
sudo (uses admin privileges)
chown (change ownership)
-R (reclusively; that is everything in that partition)
mark:mark (setting owner to user mark and group mark)
/media/backup001 (Partition)
- Anonymous8 years ago
If you actually have it installed on the hard drive, when you reinstall, tell it to use the existing partitions. Don't create new ones. 250 Different Linux Distribution Installations and removals, I have never heard of the issue you say you are having. It doesn't work exactly like Windows, but similar to it.
Are you using the LiveCD or attempting this from a USB flash drive. Use the Linux LiveCD.
- 8 years ago
/ 40 GBS
swap 1-2x RAM
/home the rest.
IF you can't copy and past files, it's not a partition problem. It may be because the disk is mounted as read-only, or because you don't have proper permissions.