Tag Archive | "Linux"

Passwordless SSH login using SSH Keys

Wednesday, July 1, 2009

0 Comments

SSH keys allow you to login without requiring you to type in your password this tutorial will teach you how to set them up First we need to create the key ssh-keygen -t rsa Then we need to move it over to the machine that we want to be able to login too without the [...]

Continue reading...

Installing Vmware Server on Arch Linux

Friday, June 26, 2009

0 Comments

In this tutorial we will be showing you how to install vmware server 2.0.1 on arch linux using kernel 2.6.30 before we begin you will need the tar.gz version of vmware server it can be freely downloaded from here We need to create some folders to store the vmware scripts so run the following as [...]

Continue reading...

Setting up a IRCD Server

Tuesday, June 16, 2009

3 Comments

Preparing the server To compile unrealircd you need to install some software. First off resynchronize the package index files sudo apt-get update Then we need to install compiling tools sudo apt-get install build-essential If you want SSL your going to need to install openssl sudo apt-get install openssl libssl-dev It is not recommended to run [...]

Continue reading...

Setting Up Arch Linux

Wednesday, June 3, 2009

0 Comments

First of all update your system pacman -Syu Install xorg pacman -S xorg-server If you have a nvidia graphics card then you need to install these pacman -S nvidia nvidia-utils If you have a ati card then you need to install these pacman -S catalyst catalyst-utils Create your system admin user useradd -m -G users,audio,lp,optical,storage,video,wheel,power [...]

Continue reading...

Creating aliases in bash

Saturday, May 23, 2009

0 Comments

Are you tired off typing out full commands? if so aliases can save you time. They allow you to shorten long commands down into one word. To add a alias edit ~/.bashrc nano ~/.bashrc Then come to the bottom of that file and add your aliases like this: alias rm = "rm -i" alias lightyrestart [...]

Continue reading...
Page 2 of 3123