Setting up Slackware 13 (64-bit) (part 3)

Make your server trust your laptop+user: #su – “your username here” $ssh-keygen -t rsa $scp ~/.ssh/id_rsa.pub “remote_username”@”host_name”:”target_filepath_for_key_on_the_server” Now ssh into your server: $ssh “remote_user”@”host_name” $cd ~/.ssh Insert your laptop’s public key in the authorized keys list: $cat “target_filepath_for_key_on_the_server” >> authorized_keys Try ssh-ing your server again (this time you should not… Continue reading

Setting up Slackware 13 (64-bit) (part 2)

Create yourself a user: #adduser “desired_name” Allow yourself to sudo make a sandwich: #nano /etc/sudoers make sure you add the following updates: %users          ALL=(ALL)       ALL (In case you decided to create your user on a different group, change the line above acordingly) Install Gnome SlackBuild #echo “SOURCE=http://get.gnomeslackbuild.org/gsb/gsb64-2.26_slackware64-13.0/:CUSTOM” >> /etc/slapt-get/slapt-getrc #slapt-get… Continue reading

Setting up kernel 2.6.33 on Slackware 13 on my Asus G1S

Download DVD iso Burn to media Install it Install Slack Build Gnome Download and install new kernel: cd /usr/src wget http://www.kernel.org/pub/linux/kernel/v2.6/linux-2.6.33.tar.bz2 rm linux tar -xvjf linux-2.6.33.tar.bz2 ln -s linux-2.6.33 linux cd linux make mrproper make menuconfig Append “-asus” to Local version Change Processor family to “Core 2/newer Xeon” Enable “Realtek… Continue reading