In this tutorial I will show you how to manage FTP Server anonymous user configuration on vsftpd in Ubuntu Server. You will learn how to both download and upload files using an anonymous FTP user. Also, you will see how to configure FileZilla in order to use an Anonymous Logon Type. …Continue reading
FTP Server (vsftpd) Install on Ubuntu Server #123
In this tutorial I will show you how to install an FTP Server (vsftpd package) on Ubuntu Server. …Continue reading
FileZilla Install on Linux Mint/Ubuntu Desktop #122
In this tutorial you will learn how to install FileZilla on Linux Mint/Ubuntu Desktop. You will see 3 different approaches to install FileZilla on your local operating system: using Synaptic Package Manager, using CLI and by building from code. …Continue reading
liviubalan.com 2.0 Official Video Overview (Making-of) #121
This is the making-of the official overview video for liviubalan.com version 2.0.
liviubalan.com 2.0 Official Video Overview #120
This is the official overview video for liviubalan.com version 2.0. …Continue reading
GitHub liviubalan.com-vagrant-ubuntu #119
In this tutorial I will speak about my liviubalan.com-vagrant-ubuntu GitHub project. You will learn what liviubalan.com-vagrant-ubuntu GitHub project is, how to install, configure and tweak it. …Continue reading
Ubuntu Server Change and overview timezone #118
In this tutorial you will learn how to change the timezone on Ubuntu Server. This is also an overview timezone tutorial that will explain what a timezone is, from where can you download the tz database, how to see the time zones in it and also how the time zones are represented inside of the Ubuntu Server. …Continue reading
Ubuntu Server Locales #117
In this tutorial I will speak about Ubuntu Server Locales. You will learn what locales are and how you can change them in order to avoid problems and suit your needs. …Continue reading
Vagrant Repair “Setting locale failed” message on ubuntu/trusty32 #116
In this tutorial you will learn how to repair “Setting locale failed” message on a ubuntu/trusty32 Vagrant box. I will use 3 approaches in order to fix the problem:
1. Edit /etc/ssh/sshd_config and comment:
AcceptEnv LANG LC_*
2. Compile a list of locale definition files using
sudo locale-gen ro_RO.UTF-8
3. Creating set-locale.sh bash script:
LANG=en_US.UTF-8
LANGUAGE=
LC_CTYPE=”en_US.UTF-8″
LC_NUMERIC=”en_US.UTF-8″
LC_TIME=”en_US.UTF-8″
LC_COLLATE=”en_US.UTF-8″
LC_MONETARY=”en_US.UTF-8″
LC_MESSAGES=”en_US.UTF-8″
LC_PAPER=”en_US.UTF-8″
LC_NAME=”en_US.UTF-8″
LC_ADDRESS=”en_US.UTF-8″
LC_TELEPHONE=”en_US.UTF-8″
LC_MEASUREMENT=”en_US.UTF-8″
LC_IDENTIFICATION=”en_US.UTF-8″
LC_ALL=
and run it with:
source set-locale.sh …Continue reading
Vagrant Multi-machine #115
In this tutorial I will speak about multi-machine in Vagrant. You will see how to define and control multiple guest machines using a single Vagrantfile. During this tutorial I will define 3 virtual machines: a generic HTTM VM, a WP (WordPress) VM and a test VM. Because the test VM has the property “autostart: false” it will not start when using “vagrant up –provider virtualbox”.
The VMs act as web servers so you will see how you can access them from both SSH and using a web browser. …Continue reading