以下只将文件迁移到nextcloud,如果需要迁移用户,请跟随nextcloud的官方文档
1.使用scp命令将owncloud/data/username/file文件夹拷贝到nextcloud
这时登陆nextcloud是没有任何文件显示的,因为没有刷新缓存
2.登陆SSH,在Terminal中cd到nextcloud根目录
3.输入命令
1 |
sudo -u www-data php occ files:scan --all |
4.输出
1 2 3 4 5 6 7 |
Starting scan for user 1 out of 1 (minirplus) +---------+-------+--------------+ | Folders | Files | Elapsed time | +---------+-------+--------------+ | 46 | 527 | 00:00:01 | +---------+-------+--------------+ |
5.再次登陆nextcloud后,文件系统已刷新
6.删除owncloud
7.All done!
There are no comments yet