Durante a tentativa de instalar o Ubuntu no meu Chromebook, recebi o erro de "opção ilegal" [closed]

0
Loading extra module: /usr/share/crosh/dev.d/50-crosh.sh
Welcome to crosh, the Chrome OS developer shell.

If you got here by mistake, don't panic!  Just close this tab and carry on.

Type 'help' for a list of commands.

If you want to customize the look/behavior, you can use the options page.
Load it by using the Ctrl+Shift+P keyboard shortcut.
crosh> shell
chronos@localhost / $ sudo sh -/Downloads/Crout -e -t xfce

We trust you have received the usual lecture from the local System
Administrator. It usually boils down to these three things:

    #1) Respect the privacy of others.
    #2) Think before you type.
    #3) With great power comes great responsibility.

    sh: Illegal option -/
    chronos@localhost / $ sudo sh -/Downloads/Crout -e -t xfce
    sh: Illegal option -/
    chronos@localhost / $ sudo sh -/Downloads/crouton -e -t xfce
    sh: Illegal option -/
    chronos@localhost / $ sudo sh -/Downloads/crouton -e -t xfce
    sh: Illegal option -/
    chronos@localhost / $ 
    
por Uncle_Reality 13.02.2018 / 01:20

1 resposta

2

Você leu as instruções para instalar o Ubuntu em um Chromebook . O comando correto deve ser:

sudo sh ~/Downloads/crouton -e -t xfce # the -e flag is optional and can be omitted 

Onde um caractere til ~ em vez de um hífen é usado como uma abreviação para seu diretório pessoal. (exemplo: ~/Downloads é equivalente a /home/your-username/Downloads )

    
por karel 13.02.2018 / 13:13