-
Notifications
You must be signed in to change notification settings - Fork 0
/
applications.txt
63 lines (51 loc) · 1.71 KB
/
applications.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
## Stacer
Home: https://github.com/oguzhaninan/Stacer
Linux System Optimizer and Monitoring
```
sudo add-apt-repository ppa:oguzhaninan/stacer
sudo apt-get update
sudo apt-get install stacer
```
## Double commander
Home: https://doublecmd.sourceforge.io/
Double Commander is a free cross platform open source file manager with
two panels side by side. It is inspired by Total Commander and features
some new ideas.
Downloads: https://sourceforge.net/p/doublecmd/wiki/Download/
Ubuntu repos manual: https://software.opensuse.org/download.html?project=home%3AAlexx2000&package=doublecmd-gtk
Ubuntu: 18.04
```
wget -nv https://download.opensuse.org/repositories/home:Alexx2000/xUbuntu_18.04/Release.key -O Release.key
sudo apt-key add - < Release.key
sudo apt-get update
```
```
sudo sh -c "echo 'deb http://download.opensuse.org/repositories/home:/Alexx2000/xUbuntu_18.04/ /' > /etc/apt/sources.list.d/home:Alexx2000.list"
sudo apt-get update
sudo apt-get install doublecmd-gtk
```
## Nextcloud client
```
sudo add-apt-repository ppa:nextcloud-devs/client
sudo apt-get update
sudo apt install nextcloud-client
```
Or from snap:
```
snap install nextcloud-client
```
To fix 'No keychain service':
```
sudo apt install seahorse libgnome-keyring0
snap connect nextcloud-client:password-manager-service
```
## Virtual box
Ubuntu repos have the old version. The newer one is in the own VirtualBox repo.
Details: https://www.virtualbox.org/wiki/Linux_Downloads
Install (root):
```
echo 'deb [arch=amd64] https://download.virtualbox.org/virtualbox/debian bionic contrib' > /etc/apt/sources.list.d/virtualbox.list
wget -q https://www.virtualbox.org/download/oracle_vbox_2016.asc -O- | sudo apt-key add -
apt update
apt install virtualbox-6.0
```