Posts Tagged ‘server’

Mount a remote SSH folder in Ubuntu (cmd and GUI)

Connecting to a server across the internet is much more secure using SSH. There is a way that you can mount a folder on a remove server using the SSHFS service (based on the SSH File Transfer Protocol). Open terminal and follow these steps: 1. Install sshfs sudo apt-get install sshfs 2. Add yourself to […]

More »

Ubuntu server: install Alsa sound and MOC (Music On Console)

1. To install Alsa sound (alsa-base, alsa-utils, alsa-tools and libasound2) enter this command: sudo apt-get install alsa alsa-tools 2. Add yourself to the group audio: sudo adduser yourusername audio 3. Reboot to take effect sudo init 6 4. Alsamixer is sometimes muted by default, so you might need to unmute it. Run alsamixer: alsamixer Use […]

More »

4 easiest ways to install LAMP server on Ubuntu

In this guide I will show you the easiest way, how to install a LAMP server. LAMP stands for Linux, Apache, MySQL, PHP. There are many methods to install LAMP, for example the standart one see this howto for ubuntu: Howto: Install LAMP and phpMyAdmin on Ubuntu Method One (using Terminal) Under Terminal type command: […]

More »