web-dev-qa-db-ja.com

/ var / lib / dpkg / lockをロックできません(読み取り専用)

私はリモートサーバーにRuby=)をインストールしようとしていました(これはesxiサーバーのvmマシン(debian)です)。このエラーが発生しました:

コマンド:

Sudo apt-get install Ruby1.8

エラー:

W: Not using locking for read only lock file /var/lib/dpkg/lock
E: Unable to write to /var/cache/apt/
E: The package lists or status file could not be parsed or opened.

それから私は試しました:

Sudo dpkg --configure -a 

出力:

dpkg: unable to access dpkg status area: Read-only file system 

更新:

マウントの出力

/dev/sda3 on / type ext4 (rw,errors=remount-ro)
tmpfs on /lib/init/rw type tmpfs (rw,nosuid,mode=0755)
proc on /proc type proc (rw,noexec,nosuid,nodev)
sysfs on /sys type sysfs (rw,noexec,nosuid,nodev)
udev on /dev type tmpfs (rw,mode=0755)
tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev)
devpts on /dev/pts type devpts (rw,noexec,nosuid,gid=5,mode=620)
/dev/sda1 on /boot type ext4 (rw)
/dev/sdb1 on /home type ext4 (rw)

mount: warning: /etc/mtab is not writable (e.g. read-only filesystem).
       It's possible that information reported by mount(8) is not
       up to date. For actual information about system mount points
       check the /proc/mounts file.

UPDATE2:

cat /proc/mounts


rootfs / rootfs rw 0 0
none /sys sysfs rw,nosuid,nodev,noexec,relatime 0 0
none /proc proc rw,nosuid,nodev,noexec,relatime 0 0
none /dev devtmpfs rw,relatime,size=1553128k,nr_inodes=216450,mode=755 0 0
none /dev/pts devpts rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000 0 0
/dev/disk/by-uuid/cf4fb4ae-6d12-407b-bf43-3b0daaaaaf74 / ext4 ro,relatime,errors=remount-ro,barrier=1,data=ordered 0 0
tmpfs /lib/init/rw tmpfs rw,nosuid,relatime,mode=755 0 0
tmpfs /dev/shm tmpfs rw,nosuid,nodev,relatime 0 0
/dev/sda1 /boot ext4 rw,relatime,barrier=1,data=ordered 0 0
/dev/sdb1 /home ext4 rw,relatime,barrier=1,data=ordered 0 0

DPDATE

dmesgの出力(最後の部分)

[1968636.237601] JBD2: Detected IO errors while flushing file data on sdb1-8
[1968772.229102] JBD2: Detected IO errors while flushing file data on sdb1-8
[1968789.799409] IPv6 addrconf: prefix with wrong length 56
[1968990.325125] IPv6 addrconf: prefix with wrong length 56
[1969190.801848] IPv6 addrconf: prefix with wrong length 56
[1969192.245363] JBD2: Detected IO errors while flushing file data on sdb1-8
[1969197.698223] IPv6 addrconf: prefix with wrong length 56
[1969223.105506] JBD2: Detected IO errors while flushing file data on sdb1-8
[1969349.119764] JBD2: Detected IO errors while flushing file data on sdb1-8
[1969398.205686] IPv6 addrconf: prefix with wrong length 56
[1969598.713179] IPv6 addrconf: prefix with wrong length 56
[1969607.241633] JBD2: Detected IO errors while flushing file data on sdb1-8
[1969799.220758] IPv6 addrconf: prefix with wrong length 56
[1969825.462909] JBD2: Detected IO errors while flushing file data on sdb1-8
[1969831.231049] JBD2: Detected IO errors while flushing file data on sdb1-8
[1969999.728348] IPv6 addrconf: prefix with wrong length 56
[1970200.247944] IPv6 addrconf: prefix with wrong length 56
[1970221.321558] JBD2: Detected IO errors while flushing file data on sdb1-8
[1970253.105491] JBD2: Detected IO errors while flushing file data on sdb1-8

/var/log/syslog出力:

enter image description here

11

ルートファイルシステム(/)は、/dev/disk/.../proc/mounts行が示すように読み取り専用でマウントされます。これは、起動時にディスクエラーが検出された(errors=remount-roオプション)か、後続のI/Oエラーが原因である可能性があります。

カーネルログでdmesgコマンドを使用してエラーを確認し、/var/log/syslogまたは/var/log/messagesを確認します(ただし、これらのファイルには最後のログエントリが含まれていない可能性があります)。 I/Oエラーがある場合は、ディスクを交換する必要があります。そうでない場合は、シングルユーザーモードで起動し、fsck.ext4 UUID=cf4fb4ae-6d12-407b-bf43-3b0daaaaaf7を実行してエラーの修正を試みます。

fsckがエラーを報告せず、再起動時にまだ読み取り専用である場合は、次のコマンドを実行できます。

Sudo mount / -o remount,rw 

ディスクを読み書き可能でマウントしようとします。

現時点では読み取り専用であるため、/var/log/のログファイルを確認してもあまり役に立ちません。


多くの場合、/var/lib/dpkg/lockをロックできないのは、自動システム更新がバックグラウンドで実行されるためですが、あなたの場合は、読み取り専用のファイルシステムについて特に不満があります。

11
jofel