Quote:
In Quota sect.
quotacheck -avugm returned: Cant find filesystem to check or filesystem not mounted with quota option
|
You need to edit /etc/fstab and add
to one of your partitions, like here:
Code:
# This file is edited by fstab-sync - see 'man fstab-sync' for details
LABEL=/ / ext3 defaults,usrquota,grpquota 1 1
LABEL=/boot /boot ext3 defaults 1 2
/dev/devpts /dev/pts devpts gid=5,mode=620 0 0
/dev/shm /dev/shm tmpfs defaults 0 0
/dev/proc /proc proc defaults 0 0
/dev/sys /sys sysfs defaults 0 0
LABEL=SWAP-sda3 swap swap defaults 0 0
/dev/fd0 /media/floppy auto pamconsole,exec,noauto,managed 0 0
/dev/hdc /media/cdrecorder auto pamconsole,exec,noauto,managed 0 0
Then you need to run these commands:
Code:
touch /aquota.user /aquota.group
chmod 600 /aquota.*
mount -o remount /
quotacheck -avugm
quotaon -avug
(You have to adjust these commands to reflect the partition with quota; e.g. if your quota partition is /home, then the commands to execute would be
Code:
touch /home/aquota.user /home/aquota.group
chmod 600 /home/aquota.*
mount -o remount /home
quotacheck -avugm
quotaon -avug
)
Quote:
In MySql sect
netstat -tap the number after listen was different something like 4322 (forgot to note it)
|
Can you post the output of
netstat -tap here?
Quote:
In PERL Modules
install Net'::'DNS I noticed one of the lines returned something like; "Error T101 Resolver File" (went to fast for me to catch it) the end returned this though:
|
Did
Code:
/usr/bin/make install -- OK
appear at the end of the installation? Did you choose no when asked for tests during the installation?