몇 달 전, 나는 tmp를 디스크 대신 램으로 이동시키기 위해 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로 자동 설치되었지만 어느 시점에서 중단되었습니다.
문제가 데비안 업데이트로 인해 발생한 것인지는 확실하지 않지만, 파일 변경과 관련이 있는 것으로 의심됩니다 fstab
.
누구든지 이 문제에 대한 통찰력을 제공할 수 있습니까?