This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
ubuntu_notes [2019/04/08 14:39] juckins |
ubuntu_notes [2019/11/13 11:57] (current) juckins |
||
---|---|---|---|
Line 1: | Line 1: | ||
==== Ubuntu Notes ==== | ==== Ubuntu Notes ==== | ||
+ | [[https://linuxize.com/post/how-to-install-teamviewer-on-ubuntu-18-04/|TeamViewer installation]] | ||
+ | |||
[[https://linuxconfig.org/how-to-install-lamp-ubuntu-18-04-bionic-beaver-linux-apache-mysql-php|LAMP on Ubuntu 18.04]] | [[https://linuxconfig.org/how-to-install-lamp-ubuntu-18-04-bionic-beaver-linux-apache-mysql-php|LAMP on Ubuntu 18.04]] | ||
Line 12: | Line 14: | ||
lsb_release -a | lsb_release -a | ||
</code> | </code> | ||
+ | |||
+ | View installed kernels: | ||
+ | <code> | ||
+ | # dpkg --list | grep linux-image | ||
+ | </code> | ||
+ | |||
+ | Remove old kernels: | ||
+ | |||
+ | * https://code.launchpad.net/~jarnos/linux-purge/+git/linux-purge | ||
+ | * # linux-purge -s | ||
+ | * # linux-purge | ||
+ | * # linux-purge -m | ||
+ | * https://www.pontikis.net/blog/remove-old-kernels-debian-ubuntu (deprecated) | ||
+ | |||
+ | View installed packages: | ||
+ | <code> | ||
+ | # apt list --installed | ||
+ | # dpkg --get-selections | grep -v deinstall |grep unifi | ||
+ | </code> | ||
+ | |||
+ | Remove installed package: | ||
+ | <code> | ||
+ | # dpkg -r package_name | ||
+ | </code> | ||
+ | |||
---- | ---- | ||
Line 20: | Line 47: | ||
* Allow Virtualbox guest additions: | * Allow Virtualbox guest additions: | ||
<code> | <code> | ||
- | sudo apt-get update | + | sudo apt update |
- | sudo apt-get install build-essential gcc make perl | + | sudo apt install build-essential gcc make perl |
- | sudo apt-get install vim | + | sudo apt install vim |
sudo apt install gnome-software | sudo apt install gnome-software | ||
- | sudo apt-get install openssh-server | + | sudo apt install openssh-server |
reboot | reboot | ||
</code> | </code> | ||
Line 31: | Line 58: | ||
* [[https://www.hiroom2.com/2018/05/06/ubuntu-1804-mate-en/|Install MATE Desktop link #2]] | * [[https://www.hiroom2.com/2018/05/06/ubuntu-1804-mate-en/|Install MATE Desktop link #2]] | ||
* [[Install UniFi on Ubuntu|Install UniFi on Ubuntu]] | * [[Install UniFi on Ubuntu|Install UniFi on Ubuntu]] | ||
+ | |||
+ | __12 Sep 2019__ | ||
+ | |||
+ | [[https://hostadvice.com/how-to/configure-apache-with-tls-ssl-certificate-on-ubuntu-18/|Configure Apache HTTPS on Ubuntu 18]] | ||
__26 Jan 2019__ | __26 Jan 2019__ | ||
Line 42: | Line 73: | ||
sudo apt update | sudo apt update | ||
sudo apt upgrade | sudo apt upgrade | ||
+ | sudo apt --with-new-pkgs upgrade | ||
</code> | </code> | ||
Very slow using Ubuntu GUI now: | Very slow using Ubuntu GUI now: | ||
- | * Basically enable 3D acceleration in VirtualBox settings | + | * Enable 3D acceleration in VirtualBox settings |
* Allocate 128MB video RAM | * Allocate 128MB video RAM | ||
+ | * Restart and test | ||
* Also see these links: | * Also see these links: | ||
* [[https://thomas.vanhoutte.be/miniblog/guide-speed-up-ubuntu-virtualbox/|Speeding up Ubuntu]] | * [[https://thomas.vanhoutte.be/miniblog/guide-speed-up-ubuntu-virtualbox/|Speeding up Ubuntu]] |