Help configuring quota and fstab

Discussion in 'Installation/Configuration' started by donix, Apr 10, 2010.

  1. donix

    donix New Member

    hello.. I'm working on a VPS with debian 5. I want to install ISPConfig 3 and I follow the perfect server guide. But I can't figure out how to modify my fstab file. My /etc/fstab file contains:
    Code:
    proc  /proc       proc    defaults    0    0
    none  /dev/pts    devpts  rw          0    0
    I need to "add ,usrquota,grpquota to the partition with the mount point /". But were is that?
     
  2. Mark_NL

    Mark_NL Member

    Code:
    cat /proc/mounts
     
  3. donix

    donix New Member

    cat /proc/mounts Returns

    Code:
    /dev/vzfs / vzfs rw 0 0
    proc /proc proc rw 0 0
    sysfs /sys sysfs rw 0 0
    tmpfs /lib/init/rw tmpfs rw,nosuid 0 0
    tmpfs /dev/shm tmpfs rw,nosuid,nodev 0 0
    devpts /dev/pts devpts rw,nosuid,noexec 0 0
    
     
  4. donix

    donix New Member

    someone able to help? don't know that to do with /proc/mounts
     
  5. Mark_NL

    Mark_NL Member

    Put this in your /etc/fstab:

    Code:
    /dev/vzfs / vzfs defaults,usrquota,grpquota 0 0
     
  6. donix

    donix New Member

    thanks.. I have a problem with this command: mount -o remount /

    It returns
    Code:
    mount: permission denied
    I'm running the command as root.
     
  7. Mark_NL

    Mark_NL Member

    What's the content of your /etc/fstab now?
     
  8. donix

    donix New Member

    nano /etc/fstab:

    Code:
    proc  /proc       proc    defaults    0    0
    none  /dev/pts    devpts  rw          0    0
    /dev/vzfs / vzfs defaults,usrquota,grpquota 0 0
    
     
  9. donix

    donix New Member

    Anyone able to help? can't figure out what to do?
     
  10. Mark_NL

    Mark_NL Member

    You can always skip quota usage if you're not planning on using it anyway :)
     
  11. donix

    donix New Member

    well.. okay.. but i'm planning to use it :(
     

Share This Page