Technological Blog
Posts tagged Ubuntu
UltraVNC: Remote Desktop Viewer
Dec 21st
Posted by technoblogical in Windows 7
UltraVNC: Remote Desktop Viewer
UltraVNC allows you to view others desktops, and is a free download for all Microsoft Windows operating systems. VNC (Virtual Network Computing) however is a protocol available for all operating systems. It is already installed on Ubuntu with the GNOME Desktop. It runs on ports 5800 and 5900 or ports of your choosing. You need to configure a secure password so that people will have a hard time hacking your connection.
installing a second hard drive on linux part 3
Aug 24th
Posted by technoblogical in Linux
installing a second hard drive on linux part 3
This is a video on how to install a second hard drive on a Linux Ubuntu Server 9.04. It involves formatting and mounting the hard drive so that it is present when it reboots. I even create a shortcut so that it is available when you log into the computer.
The commands I use are:
sudo fdisk -l
sudo mkdir /media/seconddrive
sudo fdisk /dev/sdb
mkfs.ext3 /dev/sdb1
sudo mount -t ext3 /dev/sdb1 /media/seconddrive
sudo vim /etc/fstab
/dev/sdb1 /media/seconddrive ext3 defaults 0 0
cd ~
ln -s /media/seconddrive seconddrive
sudo chown techno:techno seconddrive
chmod 775 seconddrive
installing a second hard drive on linux part 2
Aug 24th
Posted by technoblogical in Linux
installing a second hard drive on linux part 2
This is a video on how to install a second hard drive on a Linux Ubuntu Server 9.04. It involves formatting and mounting the hard drive so that it is present when it reboots. I even create a shortcut so that it is available when you log into the computer.
The commands I use are:
sudo fdisk -l
sudo mkdir /media/seconddrive
sudo fdisk /dev/sdb
mkfs.ext3 /dev/sdb1
sudo mount -t ext3 /dev/sdb1 /media/seconddrive
sudo vim /etc/fstab
/dev/sdb1 /media/seconddrive ext3 defaults 0 0
cd ~
ln -s /media/seconddrive seconddrive
sudo chown techno:techno seconddrive
chmod 775 seconddrive