Showing posts with label configure. Show all posts
Showing posts with label configure. Show all posts

Sunday, January 17, 2021

change timezone on Ubuntu 18.04 (for example)

 

Set via two procedures as below.
 
Use dpkg-reconfigure as an alternative
#  sudo dpkg-reconfigure tzdata
 

https://linuxize.com/post/how-to-set-or-change-timezone-on-ubuntu-18-04/ 

 

--30--

change hostname on ubuntu 18.04 (for example)

 

Procedure:
show hostname
hostnamectl
set new host name
sudo hostnamectl set-hostname <newname>
edit hostname file
edit instance of name in local host entry for the host name
log out and back in, will show in bash prompt

https://linuxize.com/post/how-to-change-hostname-on-ubuntu-18-04/

 

 

--30--

Tuesday, September 1, 2020

Reconfigure upgrade on Ubuntu

 

auto upgrade can be configured on or off by reconfiguring the package

 sudo dpkg-reconfigure unattended-upgrades

 https://i.stack.imgur.com/N8LXx.png

 

 Specify NO and save, the python program will be reconfigured off.

https://askubuntu.com/questions/851444/configuring-unattended-upgrades-which-option-to-select 


--30--