sudo dhclient -r; sudo dhclient
Ubuntu – renew DHCP lease from a terminal
Reply
sudo dhclient -r; sudo dhclient
sudo dhclient -r; sudo dhclient
# failed attempt
grep sshd.\*Failed /var/log/auth.log | less
# successful attempts
grep sshd.\*Accepted /var/log/auth.log | less
http://www.apachetutor.org/admin/reverseproxies
https://www.digitalocean.com/community/tutorials/how-to-install-linux-apache-mysql-php-lamp-stack-on-ubuntu-16-04
https://kb.vmware.com/selfservice/microsites/search.do?language=en_US&cmd=displayKC&externalId=1022525
or better:
https://kb.vmware.com/selfservice/microsites/search.do?language=en_US&cmd=displayKC&externalId=2073803
sudo apt install open-vm-tools sudo apt install open-vm-tools-desktop
Update:
sudo apt-get update # Fetches the list of available updates
sudo apt-get upgrade # Strictly upgrades the current packages
sudo apt-get dist-upgrade # Installs updates (new ones)
Clean up the system from old packages:
sudo apt-get update && sudo apt-get autoclean && sudo apt-get clean && sudo apt-get autoremove
Check the Ubuntu version:
lsb_release -a
I was trying to find a way to watch Netflix in Ubuntu 14.04 In the past you had to install Wine and Silverlight. Since Google Chrome 37 it should work natively. Still I was getting Error Code: M7063-1913
It turns out some libraries were messed up. Apparently the problem is fixed in 14.10 Alpha but I wanted to keep running the oficiall stable version.
I step by step instructions on how to get Netflix to work in Google chrome in Ubuntu 14.04 are available here:
After installing Ubuntu on a stick the system will let you in without asking for a password. What happens is that the display manager LightDM will auto-login the built-in ubuntu user.
While for many people it may seems convenient and fast I would like to have the system protected by a password. If you think like me then please keep reading to find out how to do it. It took me a lot of trials and errors and even if it is not a perfect solution it works for me.
My first idea was to disable the auto-login for ubuntu user and set a password which I had to type in order to log in. This did not work – for some reason the password kept resetting between the restarts and although I had to type the username (ubuntu) I was able to just press the Enter key and log in.
At the end I did the following:
Step 1) Set a password for the root account:
sudo passwd root
You have to type the password twice. I know it is not recomended but this is my system and I want it that way.
Step 2) Create a new user that you would use most of the times. I will call it joe for example. The best way to create it is to cick the gear icon in the top right corner of the screen and then choose System Settings… -> User Accounts. The click the plus sign (lower left). In the new dialog choose the account type – Standard or Administrator. Type the Full Name and Username. When ready click the Add button.
We have to set a password for this accound and to add it to the sudo group. Open a terminal and type:
sudo passwd joe
You have to type the password twice.
sudo usermod -a -G sudo joe
Step 3) Disable autologin for ubuntu account and enable the manual login
The configuration file that we have to edit is /etc/lightdm/lightdm.conf and initially should look like this:
Open the file in your favourite text editor and add the following line to enable the manual login:
greeter-show-manual-login=true
You also need to comment out the autologin-user=ubuntu line by inserting the # sign in the front. Your configuration files should look like this:
Step 4) Lock the ubuntu account
Open a terminal and type:
sudo passwd -l ubuntu
The account will be locked and you cannot use it to login. This means we have two accounts we can use to log in – root and joe.
By default LightDM only shows the user-created accounts on the login page. When you restart the system you will see the user joe which you can click on and type the password in order to login. In addition to that you should see the text Login. If you click it you will be able to type a username, press Enter and then type the password. You can use this way to log in with the root user.
In both cases you are protected by a password. I hope this helps you.
I wanted to connect to an OpenVPN server from my Ubuntu on a stick.
There are different clients but the one I liked was the Linux Network-Manager GUI for OpenVPN. To install it you need to enable the Universe repository first:
sudo add-apt-repository universe sudo apt-get update
and then type:
sudo apt-get install network-manager-openvpn
After the installation completes add a VPN connection by clicking on the wireless icon from the top menu and selecting VPN Connections -> Configure VPN. The network connections dialog pops up:
Click the Add button and from the drop-down either select OpenVPN or Import a saved VPN connection… and then click Create button:
In the first case you have to manually configure everything like the location of the user certificate, the private key, etc.
The second option allows you to import an existing configuration file that already have all these settings defined. What I did was to put the configuration file with all the files referenced by it in one folder and import the configuration file.
You can also configure the existing network connections (both wired and Wi-Fi) to automatically connect to your VPN. This is done in the General tab.
After I installed Ubuntu 14.04.1 LTS I found that the Bluetooth drivers and utilities were already installed. I paired my Bluetooth headset Jabra BT620s without any problems. Unfortunately I could not make it to be the default device for playback or this was what I was trying to do similarly to the way you would do it in Windows. No matter what I was doing the sound kept coming from the computer’s speakers.
It took reading a lot of posts talking about other peoples problems with Bluetooth headsets and their solutions. I tried several of them and what worked for me was installing PulseAudio Volume Control from Software Center:
It allows you to specify the profile for your headset which by default is off. I set it to High Fidelity Playback (A2DP):
The last step is in sound settings to set the mode for the headset to match the profile you chose in the PulseAudio Volume Control:
That was all – no messing with configuration files or running commands in a terminal. I hope these steps work for you too.