пятница, 29 марта 2024 г.

Установка Snap на Pop!_OS

 Установка Snap на Pop!_OS

Snap можно установить в Pop!_OS из командной строки. Откройте Терминал из панели запуска приложений и введите следующее:

sudo apt update

sudo apt install snapd

Либо выйдите из системы и войдите снова, либо перезагрузите систему, чтобы убедиться, что пути Snap обновлены правильно.

Чтобы протестировать вашу систему, установите оснастку hello-world и убедитесь, что она работает правильно:

sudo snap install hello-world

hello-world 6.3 from Canonical✓ installed

hello-world

Hello World!

Теперь Snap установлен и готов к работе! Если вы используете настольный компьютер, следующим шагом будет установка приложения Snap Store.

Linux для Nvidia (POP!_OS)

Берем тут

https://iso.pop-os.org/22.04/amd64/nvidia/40/pop-os_22.04_amd64_nvidia_40.iso

четверг, 28 марта 2024 г.

Steps to Install Google Chrome on Pop!_OS

Steps to Install Google Chrome on Pop!_OS

  • Download the Google Chrome package:
  • Go to the Google Chrome website (https://www.google.com/chrome/) and click on the “Download Chrome” button. This will download the installation package for the latest version of Google Chrome.

    You can also download the latest Google Chrome version directly from the terminal with the following command:

    wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb 
    

    The above command will download “google-chrome-stable_current_amd64.deb” in the current directory.

  • Install the necessary dependencies:
  • Google Chrome requires several dependencies to be installed on your system in order to run. To install these dependencies, you can use the following command:

    sudo apt install libappindicator3-1 libgbm1 libindicator3-7 libu2f-udev
    

  • Install Google Chrome:
  • To install Google Chrome, you can use the “dpkg” command, which is a package manager for .deb packages. Run the following command:

    sudo dpkg -i google-chrome-stable_current_amd64.deb 
    
    This will install the Google Chrome web browser and its dependencies on your Pop!_OS system.