-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdebian11-setup
executable file
·136 lines (103 loc) · 3.14 KB
/
debian11-setup
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
#!/bin/bash
#this script has been created by Melquiceded B.V
#and it updates everything needeeded
#on Debian 11
sudo apt update
sudo apt upgrade
# Install tool for hardware detection
#sudo apt install nvidia-detect
# Perform the scan
#sudo nvidia-detect
# Install recommended driver. It is nvidia-driver for me. Yours could be different.
#sudo apt install nvidia-driver
#amd drivers
#sudo apt install firmware-linux firmware-linux-nonfree libdrm-amdgpu1 xserver-xorg-video-amdgpu
#install aptitude
sudo apt install aptitude -y
#install none free for amd GPU
sudo apt install firmware-linux firmware-linux-nonfree libdrm-amdgpu1 xserver-xorg-video-amdgpu -y
#Vulkan Drivers
sudo apt install mesa-vulkan-drivers libvulkan1 vulkan-tools vulkan-validationlayers -y
#linux headers
sudo apt install build-essential dkms linux-headers-$(uname -r) -y
#fonts from microsoft
sudo apt install ttf-mscorefonts-installer rar unrar libavcodec-extra gstreamer1.0-libav gstreamer1.0-plugins-ugly gstreamer1.0-vaapi -y
#more fonts
sudo apt install fonts-crosextra-carlito fonts-crosextra-caladea -y
#install firewall
sudo apt install ufw -y
sudo ufw enable #activate the firewall
#power manager for laptop
sudo apt install tlp -y
#package manager synapti
sudo apt install synapti -y
#Mesa drivers for GPU
sudo apt install mesa-opencl-icd -y
#install vlc media player
sudo apt install vlc -y
#install gnome shell
sudo apt install chrome-gnome-shell -y
#install wifi drivers
sudo apt install firmware-iwlwifi firmware-atheros firmware-realtek firmware-linux-nonfree -y
#display a nice logo of the distro
sudo apt install neofetch -y
#helps to view files in the terminal
sudo apt install ranger -y
#install a voice reader for the terminal
sudo apt install espeak-ng/stable -y
#helps when you delete files to be able to restore them
sudo apt install trash-cli/stable -y
#ftp client
sudo apt install lftp -y
#ftp client
sudo apt install ftp -y
#man variant to
sudo apt install tldr -y
#games
#pacman
sudo apt install pacman4console -y
#snake
sudo apt install nsnake -y
#space
sudo apt install ninvaders -y
#tetrix
sudo apt install bastet -y
#Media
echo "installing variaty"
sleep 1
sudo apt install variety -y
echo "Installing Wine"
sleep 1
sudo dpkg --add-architecture i386
sudo mkdir -pm755 /etc/apt/keyrings
sudo wget -O /etc/apt/keyrings/winehq-archive.key https://dl.winehq.org/wine-builds/winehq.key
sudo wget -NP /etc/apt/sources.list.d/ https://dl.winehq.org/wine-builds/debian/dists/bullseye/winehq-bullseye.sources
sudo apt update
sudo apt install --install-recommends winehq-stable -y
echo "installing ink"
sleep 1
sudo apt install inkscape -y
echo "installing obs-studio"
sleep 1
sudo apt install obs-studio -y
echo "Htop install"
sleep 1
sudo apt install htop -y
echo "Notification Lib";
sleep 1
sudo apt install libnotify-bin -y
echo "Installing FTP Demon"
sleep 1
sudo apt install vsftpd -y
echo "Installing VIM"
sleep 1
sudo apt install vim -y
echo "Installing gedit"
sleep 1
sudo apt install gedit -y
echo "Installing ScreenShot Tool"
sleep 1
sudo apt install gnome-screenshot -y
echo "Installing prints a tree of the files path"
sleep 1
sudo apt install tree -y