Ubuntu start Xpay4 at boot

Ubuntu start Xpay4 a...

Add the following lines to /etc/rc.local cd /usr/local/xpay4 java -jar Xpay4.jar If /etc/rc.local doesn’t exist just create it.
Write CPU / Memory usage to log file every hour

Write CPU / Memory u...

Add this cron job … 0 * * * * top -n1 -b | head -4 >> /var/www/askmatt.co.uk/top.txt output … Your browser does not support iframes.
Magento Image Import

Magento Image Import...

Need to put all your images in the same directory structure that Magento uses? Put all your images in the same directory and enter this: for i in *.*; do mkdir -p ${i:0:1}/${i:1:1}/; mv $i ${i:0:1}/${i:1:1}/; done; Which will move all your images into different directories depending...