Spaces:
Sleeping
Sleeping
Create setup.sh
Browse files
setup.sh
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/bin/bash
|
| 2 |
+
|
| 3 |
+
# Update the package list
|
| 4 |
+
apt-get update && apt-get install -y wget curl gnupg unzip
|
| 5 |
+
|
| 6 |
+
|
| 7 |
+
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
|
| 8 |
+
dpkg -i google-chrome-stable_current_amd64.deb
|
| 9 |
+
|
| 10 |
+
# Install missing dependencies if needed
|
| 11 |
+
apt-get install -f
|
| 12 |
+
|
| 13 |
+
# Clean up the deb file to save space
|
| 14 |
+
rm google-chrome-stable_current_amd64.deb
|