Tag Archives: linux

Membuat User Sudo di Ubuntu 20.04

Kebanyakan penyedia VPS menyediakan server dengan user root sebagai user utama/default. Hal ini bisa jadi berbahaya, karena user root dapat mengakses apa saja dalam sebuah server. Anda mungkin juga ingin mempunyai user lain selain root dengan izin yang sama. Sebagai solusinya, kita dapat membuat user lain dengan akses sudo pada VPS, …

Read More »

Fixing Ubuntu 17.04 apt-get update Release file not found

Ubuntu_Zesty

Ubuntu 17.04 has reached its end of life on 13 January 2018 Are you stuck during updates of Ubuntu 17.04 because of errors like those : Ign:1 http://dl.google.com/linux/chrome/deb stable InRelease Ign:2 http://security.ubuntu.com/ubuntu zesty-security InRelease Ign:3 http://us.archive.ubuntu.com/ubuntu zesty InRelease Err:4 http://security.ubuntu.com/ubuntu zesty-security Release 404 Not Found [IP: 91.189.91.26 80] Ign:5 http://us.archive.ubuntu.com/ubuntu …

Read More »

How to symlink a file in Linux?

To create a new symlink (will fail if symlink exists already): ln -s /path/to/file /path/to/symlink To create or update a symlink: ln -sf /path/to/file /path/to/symlink ln -s TARGET LINK_NAME Where the -s makes it symbolic. Like Like Love Haha Wow Sad Angry

Read More »

Change timezone in Centos 6

Please note that you have to have root access to be able to make the changes detailed below. There are a series of time zone files located at /usr/share/zoneinfo. Select the appropriate named timezone for your location. For my location, Oklahoma, USA, I actually have two that I can select …

Read More »