Categories
- Computing Tips (45)
- Interesting Links (68)
- Internet News (6)
- Linux (64)
- Microsoft (24)
- Personal (170)
- Running (52)
- Web Design (14)
- Wordpress (36)
Blogroll
- Andy Lees
- Andy McIntosh
- Auld Reekie Roller Girls
- Cramps Tribute
- Electric Pencil
- Iain Cuthbertson
- Leither Magazine
- Mail Preference Service
- Mark Dawson
- Marks Cludgie
- My Facebook Blog
- My Last.fm profile
- My Reunited Page
- My Verisign PIP
- Raphaela Muller
- Russel Redpath
- Telephone Preference Service
- Thomas Gooddy
- Uwe Schürkamp
Linux Websites
Runners Blogs
Running Websites
Tag Archives: Home Linux Server
Installing free2ban on Ubuntu
First thing to do is install it from the repository, I’m making the assumption that you are already connected to the internet. sudo apt-get install fail2ban The default configuration is configured in the file /etc/fail2ban/jail.conf it’s suggested at the top … Continue reading
Installing and setting up ntpd under Ubuntu
Install NTP on your home server sudo apt-get install ntp Bare in mind that I’m in the UK so I’m obviously I’m going to choose NTP servers that are geographically close to me. After reading a fair bit about configuring … Continue reading
How to change permissions on many folder with bash
I was trawling the web today and found this quick and painless bash script to change all the default folder premission back to default. find . -type d -exec chmod 755 ‘{}’ \; You could of course adapt this script … Continue reading
Setting up Samba on Ubuntu LTS 8.04 Hardy Heron
Installing Samba The first thing to do if you havn’t done so already, is install samba and the associate tools. To install samba on Ubuntu Hardy Heron (I’m assuming of course that your linux box is connected to the internet). … Continue reading
Setting up NFS on a home linux box
NFS Server Installation I’ve built my own home server called (Orion) you can read the details here, currently, I’m in the process of installing NFS so that I can access my files from my Linux Workstation. Home network setup Server … Continue reading