4

I have a single disk partition (say /shared) shared by multiple users. It has a single file system (ext3). I want to put home directories for each of the user here and set their disk limit to 5 GB. Thus /share/home/user1 could have up to 5 GB and /share/home/user2 have could have up to 5 GB.

What is the command line way (not GUI) to do this?

Eliah Kagan
  • 117,780
  • 3
    Take a look at this link http://askubuntu.com/questions/7044/using-quota-for-disk-limits Basically you need edquota util from quota package (apt-get install quota) to set up disk quote for users – Flint Jun 28 '12 at 10:21

1 Answers1

1

Answered by @Flint:

Take a look at Using 'quota' for disk limits

Basically you need edquota util from quota package (apt-get install quota) to set up disk quote for users.

Please mark as answered.

  • An answer should not be a simple link to another solution. Kindly rehash the original solution, put your insights and helpful hints, and thus produce a good answer which further enriches this sight. – Masroor Oct 28 '13 at 00:59