docs: Add documentation for resolving XFS filesystem requirement on non-xfs root#247
docs: Add documentation for resolving XFS filesystem requirement on non-xfs root#247Dafeigy wants to merge 2 commits into
Conversation
|
#253 also encounter this. I think it may be better written in the guide rather than the |
|
/cubebot review |
|
Claude finished @fslongjin's task in 56s —— View job Review Checklist
Code Review:
|
|
Hi @Dafeigy, Thanks for the PR! The DCO (Developer Certificate of Origin) check is failing. You need to add a You can fix this by amending your commit: git commit --amend --signoff
git push --forceThis will append a |
Signed-off-by: Dafeigy <1070642765@qq.com>
663b097 to
88b13fe
Compare
Done. Thanks for reply~ |
|
Hi @Dafeigy Can you fix the issues mentioned in the cubebot review? |
Signed-off-by: Dafeigy <1070642765@qq.com>
|
Hi @kinwin-ustc Yes, I make some changes to the instructions following the suggestions given by Cubebot. |
This PR adds documentation to help users who encounter the following error during the Cube Sandbox one-click installation:
related to #245 .
Problem
Many users (especially those on Ubuntu dual-boot systems) have their root filesystem formatted as
ext4. The one-click installer requires/data/cubeletto reside on an XFS filesystem, but repartitioning a live system is risky and often not possible.Solution
The added guide provides a non-destructive workaround using a loopback file:
/data/cubelet./etc/fstab.This approach works without altering existing partitions and is safe for dual-boot environments.
Testing
df -T /data/cubeletreportsxfs, and the Cube Sandbox installer proceeds without errors.Notes
Please review and merge if appropriate. Thank you!