aboutsummaryrefslogtreecommitdiff
path: root/faq
diff options
context:
space:
mode:
authorjbranso@dismail.de <jbranso@dismail.de>2024-05-31 15:06:43 -0400
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2024-06-17 00:50:19 +0200
commitb9c3f3ae29a396a33d1f40dce439fe11ace2f3c4 (patch)
treef6085165d98209af411978e28d89c0174a599e01 /faq
parente9034d566710efcc3c78aa9cad144f81f5546736 (diff)
downloadweb-b9c3f3ae29a396a33d1f40dce439fe11ace2f3c4.tar.gz
web-b9c3f3ae29a396a33d1f40dce439fe11ace2f3c4.tar.bz2
web-b9c3f3ae29a396a33d1f40dce439fe11ace2f3c4.zip
add example of how to create a custom filesystem.
Hey Samuel, this is another modification of a previous commit. Hopefully this addresses your critiques. I also added in "-E root_owner=$UID:0" to some other files, where I thought it was appropirate. Hopefully I didn't make any mistakes. I did test this by the way. I was able to get ~/silly/silly1 to be two nested ext2fs translators. All without having to execute "sudo"! * hurd/translator/ext2fs.mdwn: explain how to create a custom filesystem, and mentioned that the current limit for how many nested ext2fs filesystems there could be...is 32. * faq/still_useful: sbin/mk2fs dummy.fs -> sbin/mk2fs -E root_owner=$UID:0 dummy.fs * hurd/documentation/translators.html: as above. * open_issues_/64-bit_port.mdwn: as above Message-ID: <20240531191015.8761-1-jbranso@dismail.de>
Diffstat (limited to 'faq')
-rw-r--r--faq/still_useful.mdwn2
1 files changed, 1 insertions, 1 deletions
diff --git a/faq/still_useful.mdwn b/faq/still_useful.mdwn
index 82e03078..575781a1 100644
--- a/faq/still_useful.mdwn
+++ b/faq/still_useful.mdwn
@@ -39,7 +39,7 @@ various servers are designed for this sort of modification.
> personal filesystem
>
> $ dd < /dev/zero > myspace.img bs=1M count=1024
-> $ /sbin/mke2fs myspace.img
+> $ /sbin/mke2fs -E root_owner=$UID:0 myspace.img
> $ settrans myspace /hurd/ext2fs myspace.img
> $ cd myspace