-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxubuntu_min_hist.sh
143 lines (117 loc) · 8.68 KB
/
xubuntu_min_hist.sh
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
#!/bin/bash
# <!--
# Curated
sudo apt install tasksel
sudo tasksel -t
ls -lF /usr/lib/tasksel/info/ubuntu-mate-desktop.preinst
less /usr/lib/tasksel/info/desktop.preinst
sudo /usr/lib/tasksel/info/desktop.preinst
sudo apt install xserver-xorg
sudo tasksel -t
debconf-apt-progress -- apt-get -q -y -o APT::Install-Recommends=true -o APT::Get::AutomaticRemove=true -o APT::Acquire::Retries=3 install xubuntu-core^
sudo apt install xrdp
systemctl status xrdp
# -->
# Lubuntu Desktop
# sudo apt-get -o APT::Install-Recommends=true -o APT::Get::AutomaticRemove=true -o APT::Acquire::Retries=3 install lubuntu-desktop^
apt-get -o APT::Install-Recommends=true -o APT::Get::AutomaticRemove=true -o APT::Acquire::Retries=3 install lubuntu-desktop^
# After this operation, 2585 MB of additional disk space will be used.
# Xubuntu minimal
# sudo apt-get -o APT::Install-Recommends=true -o APT::Get::AutomaticRemove=true -o APT::Acquire::Retries=3 install xubuntu-core^
apt-get -o APT::Install-Recommends=true -o APT::Get::AutomaticRemove=true -o APT::Acquire::Retries=3 install xubuntu-core^
# After this operation, 918 MB of additional disk space will be used.
sudo apt install --no-install-recommends xrdp
sudo apt install xrdp
systemctl status xrdp
history | tee xubuntu_min_hist
# RAM: 278, 522, 498, 303
# Browser did not work
# Variants
sudo apt install xserver-xorg
sudo apt-get -o APT::Install-Recommends=true -o APT::Get::AutomaticRemove=true -o APT::Acquire::Retries=3 install ubuntu-desktop-minimal-default-languages^ # 892
sudo apt-get -o APT::Install-Recommends=true -o APT::Get::AutomaticRemove=true -o APT::Acquire::Retries=3 install ubuntu-desktop-minimal^ # 1445
sudo apt-get -o APT::Install-Recommends=true -o APT::Get::AutomaticRemove=true -o APT::Acquire::Retries=3 install ubuntu-desktop-default-languages^ # 1873
sudo apt-get -o APT::Install-Recommends=true -o APT::Get::AutomaticRemove=true -o APT::Acquire::Retries=3 install ubuntu-desktop^ # 2109
sudo apt-get -o APT::Install-Recommends=true -o APT::Get::AutomaticRemove=true -o APT::Acquire::Retries=3 install ubuntu-mate-core^ # 2229
sudo apt-get -o APT::Install-Recommends=true -o APT::Get::AutomaticRemove=true -o APT::Acquire::Retries=3 install ubuntu-mate-desktop^ # 2727
sudo apt-get -o APT::Install-Recommends=true -o APT::Get::AutomaticRemove=true -o APT::Acquire::Retries=3 install xubuntu-core^ # 918
sudo apt-get -o APT::Install-Recommends=true -o APT::Get::AutomaticRemove=true -o APT::Acquire::Retries=3 install xubuntu-desktop^ # 2373
sudo apt-get -o APT::Install-Recommends=true -o APT::Get::AutomaticRemove=true -o APT::Acquire::Retries=3 install lubuntu-desktop^ # 2585
for pkg in ubuntu-desktop-minimal-default-languages^ \
ubuntu-desktop-minimal^ \
ubuntu-desktop-default-languages^ \
ubuntu-desktop^ \
ubuntu-mate-core^ \
ubuntu-mate-desktop^ \
xubuntu-core^ \
xubuntu-desktop^ \
lubuntu-desktop^ \
; do
echo "sudo apt-get install --install-recommends $pkg | tail -2"
done | grep MB
# Without recommended packages
After this operation, 604 MB of additional disk space will be used.
After this operation, 1318 MB of additional disk space will be used.
After this operation, 1568 MB of additional disk space will be used.
After this operation, 1982 MB of additional disk space will be used.
After this operation, 2229 MB of additional disk space will be used.
After this operation, 2725 MB of additional disk space will be used.
After this operation, 791 MB of additional disk space will be used.
After this operation, 2246 MB of additional disk space will be used.
After this operation, 2442 MB of additional disk space will be used.
# With recommended packages
After this operation, 892 MB of additional disk space will be used.
After this operation, 1445 MB of additional disk space will be used.
After this operation, 1873 MB of additional disk space will be used.
After this operation, 2109 MB of additional disk space will be used.
After this operation, 2229 MB of additional disk space will be used.
After this operation, 2727 MB of additional disk space will be used.
After this operation, 918 MB of additional disk space will be used.
After this operation, 2373 MB of additional disk space will be used.
After this operation, 2585 MB of additional disk space will be used.
# ┌───────────────────────────────────┤ Software selection ├──────────────────────-─┐
# │ You can choose to install one or more of the following predefined collections │
# │ of software. │
# │ │
# │ Choose software to install: │
# │ │
# │ [ ] Kubuntu live CD │
# │ [ ] Lubuntu live CD │
# │ [ ] Ubuntu Budgie live CD │
# │ [ ] Ubuntu live CD │
# │ [ ] Ubuntu MATE Live CD │
# │ [ ] Ubuntu Studio live DVD │
# │ [ ] Xubuntu live CD │
# │ [*] Ubuntu Cloud Image (instance) │
# │ [ ] DNS server │
# │ [ ] Kubuntu desktop │
# │ [ ] LAMP server │
# │ [ ] Lubuntu Desktop │
# │ [ ] Mail server │
# │ [ ] PostgreSQL database │
# │ [ ] Print server │
# │ [ ] Samba file server │
# │ [ ] Ubuntu Budgie desktop │
# │ [ ] Ubuntu desktop │
# │ [ ] Ubuntu desktop default languages │
# │ [ ] Ubuntu minimal desktop │
# │ [ ] Ubuntu minimal desktop default languages │
# │ [ ] Ubuntu MATE minimal │
# │ [ ] Ubuntu MATE desktop │
# │ [ ] Audio recording and editing suite │
# │ [ ] Ubuntu Studio desktop │
# │ [ ] Ubuntu Studio minimal DE installation │
# │ [ ] Large selection of font packages │
# │ [ ] 2D/3D creation and editing suite │
# │ [ ] Photograph touchup and editing suite │
# │ [ ] Publishing applications │
# │ [ ] Video creation and editing suite │
# │ [ ] Xubuntu minimal installation │
# │ [ ] Xubuntu desktop │
# │ [*] OpenSSH server │
# │ [*] Basic Ubuntu server │
# │ │
# │ │
# │ <Ok> │
# │ │
# └──────────────────────────────────────────────────────────────────────── ────────┘