CentOS7 connectivity error

Behavior slow wireless connection Fix Review the network adapter with lspci ... 02:00.0 Network controller: Realtek Semiconductor Co., Ltd. RTL8188EE Wireless Network Adapter (rev 01) then, compile and install the driver manually sudo apt-get install build-essential linux-headers-generic git dkms git clone http://github.com/lwfinger/rtlwifi_new.git cd /path/to/rtlwifi_new make sudo modprobe -rv rtl8188ee sudo make install sudo modprobe -v … Continue reading CentOS7 connectivity error

How to use OpenVPN on your phone

If you use Android, you can download the official OpenVPN client to your phone, you need the server certificates plus your device credentials and write them out into a <code>.ovpn</code> file ca.crt # server certificate myphone.crt # client certificate myphone.key # client key myvpn.tlsauth # server auth file and create one client.ovpn as below client … Continue reading How to use OpenVPN on your phone

Quick tips

CentOS7 change hostname hostnamectl status [donhk@localhost ~]$ hostnamectl status Static hostname: localhost.localdomain Icon name: computer-laptop Chassis: laptop Machine ID: b6f94b45aa6c4b0d85f94c7b24db1b4c Boot ID: 57fce336491f4da9ad1db3831846a0e3 Operating System: Oracle Linux Server 7.4 CPE OS Name: cpe:/o:oracle:linux:7:4:server Kernel: Linux 4.1.12-112.16.4.el7uek.x86_64 Architecture: x86-64 [donhk@localhost ~]$ sudo hostnamectl set-hostname server [donhk@localhost ~]$ hostnamectl status Static hostname: server Icon name: computer-laptop Chassis: … Continue reading Quick tips

Connect to virtualbox guest machine from LAN machine?

Let's discuss the following scenario you are on a network (corporative or just your house's LAN) and there is a machine (host)  that has a virtual machine (guest) that you want to reach from another machine on the network (client) all the machines are running CentOS 6.7 the guest has the network configured as NAT … Continue reading Connect to virtualbox guest machine from LAN machine?