Linux
如何在啟動時自動掛載?
我有一個名為“some.img”的文件,它是用創建的
fallocate
,上面有一個文件系統。我可以使用 掛載 img 文件mount -o loop some.img /media/where
,然後我看到了文件系統。但是,當我重新啟動時,該文件不再掛載。如何在啟動時自動掛載它?
更新:SuSE Linux
本質上,將以下內容添加到
/etc/fstab
:/path/to/file /path/to/mount ext4 loop 0 0
如 https://superuser.com/questions/799162/permanent-loop-device中所述