-
Notifications
You must be signed in to change notification settings - Fork 0
/
debasics.sh
executable file
·53 lines (33 loc) · 1.2 KB
/
debasics.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
#!/bin/bash
#:------------------------------------------------------------------------------
#: Usage: ./debasics.sh
#: Purpose: My basic debian packages
#:------------------------------------------------------------------------------
mv /etc/apt/sources.list /etc/apt/sources.list.BK
cp assets/apt/sources.list /etc/apt/sources.list
mv /etc/profile /etc/profile.BK
cp assets/profile /etc/profile
source /etc/profile
apt-get update
apt-get install build-essential
apt-get install firmware-misc-nonfree
apt-get install firmware-iwlwifi
apt-get install ntp
apt-get install net-tools
apt-get install trash-cli
apt-get install firmware-realtek
apt-get install curl wget
apt-get install xclip xsel
apt-get install vim
apt-get install vim-gtk
apt-get install git
apt-get install gdebi aptitude
apt-get install konsole
# check which display manager
# https://unix.stackexchange.com/questions/20370/is-there-a-simple-linux-command-that-will-tell-me-what-my-display-manager-is
#cat /etc/X11/default-display-manager
#aptitude search '~i~Px-display-manager'
# see https://blog.sombex.com/2018/01/install-multiple-display-manager-and-switch-display-manager-debian.html
apt-get install sddm
apt-get upgrade
apt-get clean