我找到了 Windows 10 上的 Ubuntu 文件系统
C:\Users\{username}\AppData\Local\lxss\home\{username}
由于某种原因,lxss/ 目录未显示在 Windows 文件资源管理器中。但如果您在标题栏中键入它,它就会显示出来。现在,当我将文件从 Windows 文件系统复制到 Ubuntu 文件系统中的主目录中时,Ubuntu 文件系统不会显示该文件。
如何实现两个文件系统之间的互操作性?
答案1
下面是一个示例 Bash 脚本,用于将文件从我的 Windows 分区复制到我的 Ubuntu 分区。
#!/bin/bash
# Executed from /etc/anacrontab
# http://www.thegeekstuff.com/2011/05/anacron-examples/
cp -f -R -L -p
"/media/windows/Users/Stephen/My Documents/Access" /home/steve/Computer/ms_windows_backup/
chown -f -R steve:backup /home/steve/Computer/ms_windows_backup
显然,以“ ”开头的代码行cp
太长,无法正确显示。虽然上面显示为两行,但应该只有一行。实际示例有其他 Windows 目录,但它们也被截断了,所以我将它们省略了。