A GOOD food-site…
http://eating-properly.blogspot.co.uk/2013/05/egg-fried-rice-with-pork-and-vegetables.html
egg-fried rice with pork and vegetables
- Cook the rice: Use what ever method you like but this always works for me. Boil the kettle. Put the rice in a saucepan then add the freshly boiled water to the rice so that it comes to a centimetre above the rice. Put the lid on the pan then boil rapidly on a high heat for exactly 5 minutes. Once the time has passed, turn off the heat then leave the rice until you’re ready to use it. Don’t lift the lid and make sure you leave it for at least 10 minutes as it needs to finish cooking.
- Stir-fry: Make sure you’ve got everything to hand now as things are going to move pretty fast. The key to success here is being ready to go. Put a large wok on the highest heat you have and get it smoking hot. Add the oil then swirl it around to coat the lower third of the wok. Add the beaten egg swirl around then once it is bubbling round the edges start to stir it around.
- Add the meat, ginger, garlic and chilli if using. Stir for a couple of minutes until the garlic starts to go crispy and brown round the edges.
- Add the remaining vegetables then continue to keep things moving for a couple more minutes and the vegetables are starting to cook through then add in the rice. Continue to cook and stir for another 3-5 minutes until everything is cooked through and well combined. Add the chopped spring onions then serve. Add some soy sauce or chilli oil if you want some extra flavour.
Finding information on Telkom Exchange DSL speeds…
http://www.broadbandstats.co.za
After searching high-and-low and not getting much joy on Telkom’s phone service (10210), I stumbled over the above site. It gives you the full information and inter-connectivity between exchanges…
I hope you finally enjoy!
getting “wu-ftpd” to work on a LAMP (turnkey) installation.
I had to look high and low for this, but it is as easy as running:
dpkg-reconfigure wu-ftpd
this will create the entire structure for your ftp site…
“for” loop in unix.
Some quick tips:
writing a quick string of numbers to a file:
# for i in {1..255}; do echo $i>>/file; done
the above will write 1 to 255 to file.
for i in {1..90}; do cp access.log.$i ..; done
the above will copy files from one dir to another (in my case an OLD dir used to store apache logfiles)
vMware ESXi Change “host memory usage warning”…
Our ESXi hosts are running out of memory – oh no they’re not!
Installing VMware tools on Centos without a GUI.
To install is as easy as starting the Install/Upgrade and on your console:
yum -y install perl
mkdir /mnt/cdrom
mount /dev/cdrom /mnt/cdrom
cp /mnt/cdrom/VMwareTools-*.tar.gz /root
umount /mnt/cdrom
cd /root
tar -zxf /tmp/VMwareTools-*.tar.gz
cd vmware-tools-distrib
vmware-install.pl –default
BAM! Done!
Linux: Find a file containing a string.
I have not posted for a while, but found a couple of gems to find a file containing a string.
Very easy:
find / -type f -exec grep -i pattern ’{}’ \; -print
or:
grep -rl “STRING THAT YOU WANT” *
or:
find / -type f | xargs grep -l pattern














