Nyinstallations problem
Postat: 19 nov 2022, 19:48
Grafikdrivare spårade ur på min huvuddator (inte första gången) och jag installerade om datorn 22.04 LTS, därefter fick jag problem med snapversionen av Firefox, blev bara en svart liten ruta!
Fick installera Chrom för att komma ut på nätet:
Denna sida förklarade:
https://itsfoss.com/install-chrome-ubuntu/
******************
To install Google Chrome from the terminal, get the DEB file using the wget command:
Now you can use dpkg to install Chrome from the downloaded DEB file:
That’s it. Now you can find Google Chrome in the menu and start it from there.
*******************
och därefter hittade jag hur jag skulle installera debversion av firefox, enligt nedan:
https://www.omgubuntu.co.uk/2022/04/how ... untu-22-04
Step 1: Remove the Firefox Snap by running the following command in a new Terminal window eller synaptic eller Ubuntu software
Step 2: Add the (Ubuntu) Mozilla team PPA to your list of software sources by running the following command in the same Terminal window:
Step 3: Next, alter the Firefox package priority to ensure the PPA/deb/apt version of Firefox is preferred. This can be done using a slither of code from FosTips (copy and paste it whole, not line by line):
Step 4: Since you’ll (hopefully) want future Firefox upgrades to be installed automatically, Balint Reczey shares a concise command on his blog that ensures it happens:
Step 5: Finally, install Firefox via apt by running this command:
I fall flera har samma problem och HOPPAS ATT DET INTE ÄR OEGENTLIGHETER FRÅN SIDOR SOM JAG HAR HÄMTAT INFORMATIONEN!!
.
Fick installera Chrom för att komma ut på nätet:
Denna sida förklarade:
https://itsfoss.com/install-chrome-ubuntu/
******************
To install Google Chrome from the terminal, get the DEB file using the wget command:
Kod: Markera allt
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
Kod: Markera allt
sudo dpkg -i google-chrome-stable_current_amd64.deb
*******************
och därefter hittade jag hur jag skulle installera debversion av firefox, enligt nedan:
https://www.omgubuntu.co.uk/2022/04/how ... untu-22-04
Step 1: Remove the Firefox Snap by running the following command in a new Terminal window eller synaptic eller Ubuntu software
Kod: Markera allt
sudo snap remove firefox
Kod: Markera allt
sudo add-apt-repository ppa:mozillateam/ppa
Kod: Markera allt
echo '
Package: *
Pin: release o=LP-PPA-mozillateam
Pin-Priority: 1001
' | sudo tee /etc/apt/preferences.d/mozilla-firefox
Kod: Markera allt
echo 'Unattended-Upgrade::Allowed-Origins:: "LP-PPA-mozillateam:${distro_codename}";' | sudo tee /etc/apt/apt.conf.d/51unattended-upgrades-firefox
Kod: Markera allt
sudo apt install firefox
.