Upload setup_lxde_crd.sh
Browse files- setup_lxde_crd.sh +6 -6
setup_lxde_crd.sh
CHANGED
@@ -1,21 +1,21 @@
|
|
1 |
#!/bin/bash
|
2 |
|
3 |
# Actualizar el sistema
|
4 |
-
apt update
|
5 |
-
apt upgrade -y
|
6 |
|
7 |
# Instalar sudo
|
8 |
-
apt install sudo -y
|
9 |
|
10 |
# Instalar wget
|
11 |
-
sudo apt install wget -y
|
12 |
|
13 |
# Instalar LXDE
|
14 |
-
sudo apt install lxde -y
|
15 |
|
16 |
# Descargar e instalar Chrome Remote Desktop
|
17 |
wget https://dl.google.com/linux/direct/chrome-remote-desktop_current_amd64.deb
|
18 |
-
sudo apt install ./chrome-remote-desktop_current_amd64.deb -y
|
19 |
rm chrome-remote-desktop_current_amd64.deb
|
20 |
|
21 |
# Crear un nuevo usuario y agregarlo al grupo sudo
|
|
|
1 |
#!/bin/bash
|
2 |
|
3 |
# Actualizar el sistema
|
4 |
+
apt-get update
|
5 |
+
apt-get upgrade -y
|
6 |
|
7 |
# Instalar sudo
|
8 |
+
apt-get install sudo -y
|
9 |
|
10 |
# Instalar wget
|
11 |
+
sudo apt-get install wget -y
|
12 |
|
13 |
# Instalar LXDE
|
14 |
+
sudo apt-get install lxde -y
|
15 |
|
16 |
# Descargar e instalar Chrome Remote Desktop
|
17 |
wget https://dl.google.com/linux/direct/chrome-remote-desktop_current_amd64.deb
|
18 |
+
sudo apt-get install ./chrome-remote-desktop_current_amd64.deb -y
|
19 |
rm chrome-remote-desktop_current_amd64.deb
|
20 |
|
21 |
# Crear un nuevo usuario y agregarlo al grupo sudo
|