-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathinstall-vivaldi-v1.sh
executable file
·35 lines (22 loc) · 1.29 KB
/
install-vivaldi-v1.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
#!/bin/bash
#
##################################################################################################################
# Written to be used on 64 bits computers
# Author : Erik Dubois
# Website : http://www.erikdubois.be
##################################################################################################################
##################################################################################################################
#
# DO NOT JUST RUN THIS. EXAMINE AND JUDGE. RUN AT YOUR OWN RISK.
#
##################################################################################################################
rm /tmp/vivaldi-stable_1.4.589.41-1_amd64.deb
sudo apt install -y libcurl3
sudo apt-get -f install
wget https://downloads.vivaldi.com/stable/vivaldi-stable_1.4.589.41-1_amd64.deb -O /tmp/vivaldi-stable_1.4.589.41-1_amd64.deb
sudo dpkg -i /tmp/vivaldi-stable_1.4.589.41-1_amd64.deb
rm /tmp/vivaldi-stable_1.4.589.41-1_amd64.deb
##################################################################################################################
echo "################################################################"
echo "################### vivaldi installed ###################"
echo "################################################################"