pixelbook-linux icon indicating copy to clipboard operation
pixelbook-linux copied to clipboard

Stuck while installing apt packages on Pixelbook GO (Ubuntu 22.04 LTS)

Open mateowoetam opened this issue 2 years ago • 1 comments

PLAY [all] *******************************************************************************************

TASK [Gathering Facts] ******************************************************************************* ok: [localhost]

TASK [Install pre-requisites] ************************************************************************

TASK [common : install OS packages] ****************************************************************** included: /home/mateo/pixelbook-linux/ansible/roles/common/tasks/packages-Ubuntu.yml for localhost

TASK [common : Install apt packages] *****************************************************************

it has been like that for 30min and doesn't do anything

mateowoetam avatar Jun 08 '22 18:06 mateowoetam

from ansible playbook file of ansible/roles/common/tasks/packages-Ubuntu.yml we can see that this TASK [common : Install apt packages] is a job to install packages from apt-get repo. If you stuck here, may check your net connection to repo. here's packages list of this task want install:

      # essential build tools (gcc, make, etc)
      - build-essential
      - libtool
      - python
      - python3
      - pkg-config

      # Needed for mounting recovery image
      - kpartx

      # Audio / CRAS dependencies
      - acpid
      - libudev-dev
      - libsbc-dev
      - libalsaplayer-dev
      - libiniparser-dev
      - ladspa-sdk
      - libspeex-dev
      - libspeexdsp-dev
      - libasound2-dev

you can install these packages yourself

MichaelCache avatar Jul 27 '22 14:07 MichaelCache