1,205 reputation
46
bio website
location Singapore
age
visits member for 2 years, 7 months
seen 2 days ago
stats profile views 60

Apr
12
comment Xen 4.2.1 dom0 boot hang
can try to add "xencons=tty" on the kernel cmd ?
Apr
9
comment Yum (CentOS 6.4) - Remove all Installed Packages
check the group list (# yum grouplist), and then try to remove e.g: (# yum groupremove "Dialup Networking Support" "Editors" "Mail Server" "Network Servers" "System Tools" "Text-based Internet" "Web Server" )
Apr
3
comment MySQL Slave Not Replicating
did you try to delete rows from tables on DB name test ?, "Replicate_Wild_Do_Table: test.%"
Apr
3
comment How Do I Restore a MySQL Database from Time Machine Backup?
You can't backup and restore Mysql with Innodb engine just with standard file system copy like time machine. You must using mysql dump or 3rd party hot backup. if your db not much transaction when time machine backup, maybe you can give it try to recover all /usr/local/mysql/data folder and see how.
Apr
3
comment How Do I Restore a MySQL Database from Time Machine Backup?
if you do full backup with time machine, normally you just restore specific folder /usr/local/mysql/data/db_name. if you're sure your db mysql engine machine is MyISAM NOT INNODB, you just copy that folder and restore it back.
Apr
2
comment Unable to download the Kickstart file…
you check on the DHCP and web server :), not in new VM.
Apr
1
comment Unable to download the Kickstart file…
when you boot your new VM, are you able to reach the IP from web server ? (check on dhcp log, or if it's static just do ping from web server check if it's reachable). if it's reachable, check on web server access log if the ks file really requested or not.
Mar
14
comment pptpd: log of unsuccessful authentication
you can try failtoban (fail2ban.org) or swatch (sourceforge.net/projects/swatch)
Mar
13
comment Apache and MySQL doesn't start at boot
have you try to start the service manually ? /etc/init.d/apache2 start or /etc/init.d/mysql start, is it working ?
Mar
5
comment How this aliasing worked
you don't need to specify gateway on eth0:0 interface. try to remove it and restart.
Mar
5
comment Linux - ran out of space on /boot directory - what can I do?
just uncommented /boot on /etc/fstab, mount /boot. i will revert back.
Mar
5
comment Can I reassign eth1 and eth2 without rebooting the server
put them down, change eth2 mac address first to other address, e.g: ifconfig eth2 hw ether 00:11:22:33:44, then ifconfig eth2 w.x.y.z netmask ww.xx.yy.zz up. do it for eth1 (using eth2 mac addr), and then change eth2 mac addr using old eth1 mac addr.
Feb
28
comment Tool to display login message on graphical login
have you check xdialog or take a look easybashgui sites.google.com/site/easybashgui/screenshots
Feb
14
comment “rm: can not remove xxx: No Space left on device” on BTRFS
have you check if is there any process running still using the file ? (check with lsof), if so, please stop the process and try to remove the file again.
Feb
14
comment Cannot start a script
what's the error message ?
Feb
14
comment vmware ESXi 5 cant delete file from host
have you try to stopped all services on host and then delete the file ?, or try to disconnect the storage from other host if possible, then stopped all services and delete the file
Jan
10
comment Chrooting SFTP setup for a user
any firewall ?. are you able to ssh ?, is the sshd daemon running ?, /usr/libexec/sftp-server is it correct path ?
Dec
13
comment Compile php 5.3 ldap extension
okay, and then check your php.ini make sure step 7 (extension = path/ldap.so) exist and restart your apache. verify with php -m
Dec
13
comment Compile php 5.3 ldap extension
CMIIW. did your step 5 working ?, if so, it's should be module created module.so. try to find the *.so on your module directory. or did you install php from OS package ? (yum, apt, zypper), if so, i think the php-ldap should be provided by default os package, you just need to install, e.g for centos/fedora/redhat: yum install php-ldap or yum install php53-ldap.
Dec
11
comment Giving a normal user and Mysql access to a common directory
you're right, but 750 is not enough for mysql to write (it's only for r_x)