Langsung ke konten utama

Postingan

Menampilkan postingan dari Agustus, 2018

Membuat sinyal wifi semakin kuat di Ubuntu 16.04 LTS dengan driver Realtek RTL8723BE

untuk memperkuat Sinyal Wifi di laptop ubuntu kita, dapat kita lakukan dengan mematikan wifi driver kita terlebih dahulu. dengan mengetikkan: sudo modprobe -rv rtl8723be lalu nyalakan kembali dengan mengetikkan perintah: sudo modprobe -v rtl8723be ant_sel=1 Untuk mempermanenkan setingan diatas kita bisa mengatikkan perintah: sudo tee /etc/modprobe.d/rtl8723be.conf <<< "options rtl8723be ant_sel=1" Selesai

set timezone ubuntu, centos, debian

Set the timezone To set the timezone of your system clock do the following: cp /usr/share/zoneinfo/America/La_Paz /etc/localtime Choose the right timezone for you. Automatically adjust your computer clock To have your system to automatically adjust time we need to install  ntp . Get it from your repository. Once installed you can configure it this way: Edit the file  /etc/ntpd.conf . It will look like this: # With the default settings below, ntpd will only synchronize your clock. # # For details, see: # - the ntp.conf man page # - http://support.ntp.org/bin/view/Support/GettingStarted # - https://wiki.archlinux.org/index.php/Network_Time_Protocol_daemon # Associate to public NTP pool servers; see http://www.pool.ntp.org/ server 0.pool.ntp.org server 1.pool.ntp.org server 2.pool.ntp.org # Only allow read-only access from localhost restrict default noquery nopeer restrict 127.0.0.1 restrict ::1 # Location of drift and log files driftfile /var/lib/ntp/ntp.drift logfile /var