A currently valid PPA
-
Is there a currently valid PPA to download Vivaldi by the use of a script, rather than downloading with the browser??
I am using Linux Mint Cinnamon 21. -
@ineuw Why would that be needed? There is native DEB for all Debian derivatives.
-
-
Just did a new Linux Mint Cinnamon 21 installation and Vivaldi is again missing from the Mint repository. I know that this is not a Vivaldi issue, but perhaps someone can look into it why is it on and off?
it's because many sources are using legacy public keys or none at all.
-
@ineuw Vivaldi doesn’t provide repositories for any distribution, distribution maintainers are responsible for that. Try this for Mint (haven’t tested it): https://www.linuxcapable.com/how-to-install-vivaldi-browser-on-linux-mint-21-lts/
-
@ineuw said in A currently valid PPA:
Just did a new Linux Mint Cinnamon 21 installation and Vivaldi is again missing from the Mint repository. I know that this is not a Vivaldi issue, but perhaps someone can look into it why is it on and off?
it's because many sources are using legacy public keys or none at all.
You just have to download Vivaldi (.deb - file) and install it. It is that simple.
Since then it is shown in your software manager and will be updated according your update settings. -
The content of the replies indicates that the post was mistitled. I always downloaded the latest .deb version file when installing LMC anew. I asked the question because it's the only other way I remembered on how software was distributed and maintained in the past.
I took on the responsibility of maintaining five Linux Mint installations, and wrote a long shell script to install the software needed for my audience. I was hoping to install everything with a single shell script to speed up the process. That is all.
These are public desktops and once in a while, a reinstall is necessary, even if the system is backed up hourly and daily.
-
@ineuw Interesting idea! Using a single script to install all the programs you want.
I don't know anything about it, but in principle I can imagine that such a script can be created for both PPA installations and .deb installations.
You have to define the programs anyway. So you can add the installation type to each program, right?
-
@Dancer18 said in A currently valid PPA:
@ineuw Interesting idea! Using a single script to install all the programs you want.
I don't know anything about it, but in principle I can imagine that such a script can be created for both PPA installations and .deb installations.
You have to define the programs anyway. So you can add the installation type to each program, right?
Yes, I am still using several scripts, instead of one, as I finalize the order of installation and deal with PPA issues.
#!/usr/bin/bash # 2022-10-22 03:36 - /home/ineuw/Desktop/09_install_apps.sh] echo sudo apt install checkinstall -y #1 echo sudo mv /usr/bin/gnome-keyring-daemon /usr/bin/gnome-keyring-daemon-old && sudo killall gnome-keyring-daemon echo # disable google keys export GOOGLE_API_KEY="no" export GOOGLE_DEFAULT_CLIENT_ID="no" export GOOGLE_DEFAULT_CLIENT_SECRET="no" echo read -p "checkinstall installed, gnome and google keys disabled" echo sudo groupadd ntfs && sudo usermod -a -G ntfs ineuw echo sudo apt install build-essential libgtk-3-dev -y #2 sudo apt full-upgrade -y echo read -p "groupadd and full-upgrade installed" echo sudo mintupdate-cli upgrade -r echo sudo software-properties-gtk echo read -p "mintupdate-cli and software-properties-gtk installed" echo sudo apt install xbindkeys xsel xdotool -y #3 echo read -p "xbindkeys, xsel and xdotool are installed" echo sudo ufw enable echo sudo apt install clamav -y #4 echo sudo apt install clamtk -y #5 echo sudo apt update echo sudo /etc/init.d/clamav-freshclam start echo read -p "firewall, clamav and freshclam installed" echo sudo apt install boot-repair -y #6 echo sudo apt install dconf-editor -y #7 echo read -p "boot-repair and dconf-editor installed" echo sudo apt install default-jdk -y #8 echo sudo apt install gimp -y #9 echo read -p "default-jdk and gimp installed" echo sudo apt install gparted -y #10 echo sudo apt update echo sudo add-apt-repository ppa:danielrichter2007/grub-customizer sudo apt install grub-customizer -y #11 echo read -p "gparted and grub-customizer installed" echo sudo apt install inkscape -y #12 echo sudo apt install keepassxc -y #13 echo read -p "inkscape and keepassxc installed" echo sudo apt install numlockx -y #14 echo sudo apt install samba -y #15 echo read -p "numlockx and samba installed" sudo apt update echo sudo apt install sqlitebrowser -y #16 echo sudo apt install vlc -y #17 echo # read -p "sqlitebrowser and videolan installed" # echo sudo apt install xfce4-notes -y #18 echo sudo apt install kcolorchooser -y #19 echo # read -p "xfec4-notes and kcolorchooser installed" echo sudo apt install bleachbit #20 echo sudo apt update echo sudo apt install luckybackup -y #21 echo read -p "bleachbit and luckybackup installed" echo sudo apt install pychess -y #22 echo sudo apt install gnome-games -y #23 echo read -p "pychess and gnome-games installed" echo sudo apt install qalculate-gtk -y #24 echo read -p "qalculate-gtk installed" echo # sudo apt install vivaldi-stable -y #25 echo read -p "The end"