数ヶ月前、私はtmpをディスクの代わりにRAMに移動するためにfstabに次の行を追加しました。
tmpfs /tmp tmpfs defaults,noatime,nosuid,nodev,mode=1777,size=10240M 0 0
そこから出てきた言葉だよーhttps://blog.programster.org/keep-tmp-in-ram
私の考えでは、fstabで私が触れた唯一の部分のようです。最初の部分はシステムによって作成され、次のようになります。
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# systemd generates mount units based on this file, see systemd.mount(5).
# Please run 'systemctl daemon-reload' after making changes here.
#
# <file system> <mount point> <type> <options> <dump> <pass>
/dev/mapper/mycomputer--vg-root / ext4 errors=remount-ro 0 1
# /boot was on /dev/sda1 during installation
UUID=2bc3cb2d-afe5-2000-bd3e-e4a25552d5cb /boot ext2 defaults 0 2
/dev/mapper/mycomputer--vg-home /home ext4 defaults 0 2
/dev/mapper/mycomputer--vg-swap_1 none swap sw 0 0
私のAndroid携帯電話はPC(Debian Busterを実行)にMTPとして自動的にインストールされましたが、ある時点で中止されました。
問題がDebianのアップデートによって引き起こされたかどうかはわかりませんが、ファイルの変更に関連していると思われますfstab
。
誰でもこの問題に関する洞察を提供できますか?