「あなたは根ですか?」とはどういう意味ですか?意味は?

「あなたは根ですか?」とはどういう意味ですか?意味は?

これが私が得続けるものです:

ascendermedia@magic2tower:~$ sudo apt-get install flashplugin-installer
bash: sudo: command not found
ascendermedia@magic2tower:~$ sudo apt-get install flashplugin-installer
bash: sudo: command not found
ascendermedia@magic2tower:~$ apt-get install flashplugin-installer
E: Could not open lock file /var/lib/dpkg/lock - open (13: Permission denied)
E: Unable to lock the administration directory (/var/lib/dpkg/), are you root?
ascendermedia@magic2tower:~$ sudo aptitude install flashplugin-nonfree
bash: sudo: command not found
ascendermedia@magic2tower:~$ aptitude install flashplugin-nonfree
E: Could not open lock file /var/lib/dpkg/lock - open (13: Permission denied)
E: Unable to lock the administration directory (/var/lib/dpkg/), are you root?
ascendermedia@magic2tower:~$ 

私は何が間違っていましたか?

ベストアンサー1

rootシステムのスーパーユーザーアカウントです。デフォルトでは、すべての権限があります。多くのシステムは、sudo他のコマンドの前にこのコマンドを使用してそのコマンドを「root」として実行できるように、つまり同じ権限を持つrootユーザーのように構成されています。

通常、システムパッケージをインストールするにはroot権限が必要です。これは本当ですapt-get。したがって、最初のものは利用可能な項目がないため機能しませんsudo。 2つ目はsudo2回実行したため、魔法のようには見えないので動作しませapt-getaptitude。これらのパッケージをインストールするには、root権限を使用できます。

最初のエラーメッセージに示すように、sudoがインストールされていないか、パスにないか、設定されていない可能性があります。su -cプロンプトが表示されたら、ルートパスワード(アカウントのパスワード)を置き換えて提供できますroot

パスワードがわからない場合は、a)パスワードを知っている人にこれを行うように依頼するか(システムでない場合)、b)パスワードを回復する方法を見つける必要があります。

おすすめ記事