Obtendo um erro 'Permission denied' do mount ao tentar fazer chroot no Arch Linux

0

Estou tentando fazer o chroot do Arch Linux na minha caixa de 64 bits do Ubuntu seguindo as instruções listadas aqui. Aqui são os passos que tomei até agora:

$ curl -sSLo archlinux.tar.gz http://mirrors.abscission.net/archlinux/iso/2016.03.01/archlinux-bootstrap-2016.03.01-x86_64.tar.gz

$ tar -xvzf archlinux.tar.gz

$ cd root.x86_64

$ sudo bin/arch-chroot .

Por algum motivo, estou recebendo este erro ao executar o script:

mount: permission denied
==> ERROR: failed to setup chroot .
Usage: umount -h | -V
       umount -a [-d] [-f] [-r] [-n] [-v] [-t vfstypes] [-O opts]
       umount [-d] [-f] [-r] [-n] [-v] special | node...

Para referência, aqui está o que eu recebo quando executo cat README no chroot:

To install Arch Linux from another distribution, a root server rescue system or 
a live system, follow the instructions at
https://wiki.archlinux.org/index.php/Install_from_Existing_Linux. A short version
is provided below:

* Make sure your system is running Linux 2.6.32 or later.
* Extract this tarball. If you have enough memory, you can extract it into a 
  tmpfs file system. In the example below, we'll assume that you extracted it in
  /tmp.
* Enter the chroot:
  + If you have bash 4 or later installed, run
    # /tmp/root.x86_64/bin/arch-chroot /tmp/root.x86_64/
  + If you don't have bash 4, run the following commands:
    # cp /etc/resolv.conf /tmp/root.x86_64/etc
    # mount --rbind /proc /tmp/root.x86_64/proc
    # mount --rbind /sys /tmp/root.x86_64/sys
    # mount --rbind /dev /tmp/root.x86_64/dev
    (if /run exists on your system:
      # mount --rbind /run /tmp/root.x86_64/run
    )
    # chroot /tmp/root.x86_64/
* In the chroot
  + Initialize the pacman keyring:
    # pacman-key --init
    # pacman-key --populate archlinux
  + Mount the destination partition under /mnt
* Follow the Arch Linux installation guide
   https://wiki.archlinux.org/index.php/Installation_Guide#Install_the_base_system
  starting at the "Install the base system" step.

Se for relevante, estou executando isso de dentro de um espaço de trabalho virtual em Cloud9 . Talvez seja incapaz de acessar o dispositivo USB ou algo parecido? (Por favor, me perdoe se eu soar como não sei do que estou falando, sou um pouco inexperiente com chroots / montagem e esse tipo de coisa.)

Qualquer ajuda seria apreciada, obrigado!

    
por James Ko 12.03.2016 / 18:30

1 resposta

0

O problema parece que você não montou nenhuma partição no / mnt e está tentando compactar a própria mídia de instalação. Verifique novamente se você não perdeu a montagem de uma partição em / mnt     # mount / dev / sdxY / mnt Em seguida, instale os pacotes base, gere fstab e, em seguida, execute o chroot para ele.

    
por HYPOTHETICAL 11.05.2016 / 09:33