Setzen Sie das Dateisystem schreibgeschützt wieder ein

7

Ich möchte / dev / sda2 [gemountet auf / var / www] als schreibgeschützt erneut bereitstellen

# mount -o remount,ro /var/www
mount: /var/www is busy

In diesem Dateisystem sind keine Dateien geöffnet

# fuser -v -m /var/www
                     USER        PID ACCESS COMMAND
/var/www:            root     kernel mount /var/www
# lsof -V /var/www
lsof: no file system use located: /var/www

Es läuft nichts wie nfs. Keine Swapfiles unter /var/www. Keine Loop-Geräte im Einsatz.

Warum ist /var/wwwnoch beschäftigt?

Nichts montiert unter /var/www:

# mount
/dev/root on / type ext4 (rw,noatime,nodelalloc)
tmpfs on /run type tmpfs (rw,nosuid,noexec,relatime,size=155344k,mode=755)
tmpfs on /run/lock type tmpfs (rw,nosuid,nodev,noexec,relatime,size=5120k)
tmpfs on /tmp type tmpfs (rw,nosuid,nodev,relatime,size=310684k)
proc on /proc type proc (rw,nosuid,nodev,noexec,relatime)
sysfs on /sys type sysfs (rw,nosuid,nodev,noexec,relatime)
tmpfs on /dev type tmpfs (rw,relatime,size=10240k,mode=755)
tmpfs on /run/shm type tmpfs (rw,nosuid,nodev,relatime,size=310684k)
devpts on /dev/pts type devpts (rw,nosuid,noexec,relatime,gid=5,mode=620)
/dev/sda2 on /var/www type ext4 (rw,noatime,nodelalloc)
user49740
quelle
Ist etwas unter / var / www montiert?
Paul
Darunter ist nichts montiert /var/www. Ich habe die Reittiere in der Frage hinzugefügt
user49740

Antworten:

3

Durch das Beenden verschiedener Prozesse fand ich heraus, dass Gamin das Reittier beschäftigte. Ich frage mich immer noch, warum dies weder in lsofnoch aufgetaucht istfuser

user49740
quelle