web-dev-qa-db-ja.com

PCが緊急モードで起動しています:/ media / cdromのマウントに失敗しました

PCの電源を入れると、次のエラーメッセージが表示されます。

After logging in, type "journalctl -xb" to view system logs
'systemctl 1 reboot' to reboot, 'systemctl 1 default' 
or ^D to try again to boot into default mode.

journalctl -xbの出力は次のとおりです

text including failed to mount /media/cdrom in red

それが赤い色の場合、私はそれが緊急モードの原因だと思います。

Ubuntuは初めてです。 Ubuntu 16.04を使用しています。

cat /etc/fstabの出力は次のとおりです。

fstab contents with syntax highlighting - appears to be vim, not output of cat file as stated

コマンドvim /etc/fstabを実行すると、このメッセージが表示されました。

325: ATTENTION
Found a swap file by the name "/etc/.fstab.swp"
owned by: root   dated: Tue Sep 12 18:39:36 2017
file name: /etc/fstab
modified: YES
user name: root   Host name: pavan-desktop
process ID: 4439
[not usable on this computer]

While opening file "/etc/fstab"
             dated: Mon Sep 11 19:21:36 2017


(1) Another program may be editing the same file.  If this is the case,
    be careful not to end up with two different instances of the same
    file when making changes.  Quit, or continue with caution.

(2) An edit session for this file crashed.
    If this is the case, use ":recover" or "vim -r /etc/fstab"
    to recover the changes (see ":help recovery").
    If you did this already, delete the swap file "/etc/.fstab.swp"
    to avoid this message.

Swap file "/etc/.fstab.swp" already exists!
[O]pen Read-Only, (E)dit anyway, (R)ecover, (D)elete it, (Q)uit, (A)bort:

Swap file "/etc/.fstab.swp" already exists!
[O]pen Read-Only, (E)dit anyway, (R)ecover, (D)elete it, (Q)uit, (A)bort:

Swap file "/etc/.fstab.swp" already exists!
[O]pen Read-Only, (E)dit anyway, (R)ecover, (D)elete it, (Q)uit, (A)bort: 
1
pavan

これは、システムが何らかの理由で/dev/sr0/etc/fstabファイルに添付したために発生します。このエントリを無効にする必要があります。

  • 回復モードでコンピューターを起動し、ルートオプションに移動します。
  • mount -o remount, rw /と入力して、/フォルダーへの書き込み許可を許可します。
  • /etc/fstab/dev/sr0;を参照するコメント行を編集します
  • このファイルを保存して、システムを再起動します。
2
Redbob