I am testing a web crawler. Please contact me on this page if you have questions or concerns.
User-agent: Mozilla/5.0 (compatible; TekniCrawler/0.1; +http://jasonvolk.com/software/2014/crawler/)
The home of TekniDude
I am testing a web crawler. Please contact me on this page if you have questions or concerns.
User-agent: Mozilla/5.0 (compatible; TekniCrawler/0.1; +http://jasonvolk.com/software/2014/crawler/)
Moving my MySQL data files to a separate new partition in Linode.
This page is just really for my own notes… BACKUP YOUR DB AND SETTINGS FILES FIRST!
(Ubuntu 11.10)
Original database directory: /var/lib/mysql/
New directory: /srv/mysql/
service mysql stop
old stats:
$df -h Filesystem Size Used Avail Use% Mounted on /dev/xvda 9.7G 4.9G 4.4G 54% / devtmpfs 249M 4.0K 249M 1% /dev none 50M 164K 50M 1% /run none 5.0M 0 5.0M 0% /run/lock none 249M 0 249M 0% /run/shm
$ cat /fstab # /etc/fstab: static file system information. # # <file system> <mount point> <type> <options> <dump> <pass> dev /dev devtmpfs rw 0 0 proc /proc proc defaults 0 0 /dev/xvda / ext3 noatime,errors=remount-ro 0 1 /dev/xvdb none swap sw 0 0
new stats:
$ df -h Filesystem Size Used Avail Use% Mounted on /dev/xvda 5.8G 1.4G 4.2G 26% / devtmpfs 248M 4.0K 248M 1% /dev none 50M 168K 50M 1% /run none 5.0M 0 5.0M 0% /run/lock none 249M 0 249M 0% /run/shm /dev/xvdc 9.7G 3.7G 5.9G 39% /srv
$ cat /etc/fstab # /etc/fstab: static file system information. # # <file system> <mount point> <type> <options> <dump> <pass> dev /dev devtmpfs rw 0 0 proc /proc proc defaults 0 0 /dev/xvda / ext3 noatime,errors=remount-ro 0 1 /dev/xvdb none swap sw 0 0 /dev/xvdc /srv ext3 defaults 0 2
An interactive map of all your facebook friends.
This app will display your friends list on a google map of the world. You can see where all your friends live throughout the world broken down by the cities they all live in.
It uses their current location setting or hometown to map them out. Please note that any friends who do not have that set or chose to hide their location will be ignored.
If you have any problems or suggestions please let me know!
App Link: http://apps.facebook.com/mapeveryone/
Info Page: http://www.facebook.com/pages/Where-In-The-World/351685124856812
Any data collected is used to personalize and correctly serve automated requests back to the requester.
Any information stored is secured from all outside access.
I have just installed Ubuntu 10.10 and was searching around for the simplest way to enable a basic firewall. Instead of messing around with iptables, I’ve found a program called ufw to be a much simpler way of managing your firewall. Just install it from apt, set up a couple simple rules, and let it do it’s magic.
If you don’t already have ufw installed then run this first.
apt-get install ufw
First ufw command is to deny everything by default. (It won’t boot you until you enable it.)
ufw default deny
Next is to tell it what ports to allow traffic into. You can either use predefined application profiles or just specify the port numbers directly.
Using profiles:
ufw allow 'Apache Full' ufw allow 'OpenSSH'
Or if you just want to use port numbers:
ufw allow 80,443/tcp ufw allow 22/tcp
And now to enable the firewall, and also save the settings for reboot.
ufw enable
There you have it. Visit this help page for more examples and info.