Displaying 3 results from an estimated 3 matches for "oz123".
2013 Jul 15
1
Unix Fast File System (UFS/FFS) 1/2 - (usage/install)
...enabled or at least configured as a module.
To the latter case, just load the module ufs.ko with modprobe
(probably located at: /lib/modules/).
If this option wasn't even configured as a module, then you need to
enable it and recompile your kernel.
Further information can be found here:
http://oz123.github.io/writings/2012-11-26-enable-ufs-write-support-debian/
Creating an UFS image:
sudo dd if=/dev/zero of=<image> bs= count=;
- UFS1:
sudo mkfs.ufs -O 1 <image>;
- UFS2:
sudo mkfs.ufs <image>;
Mounting an UFS image:
- UFS1:
sudo mount -t ufs -o rw...
2014 May 29
3
[PATCH v2 0/2] UFS1/2 support series
...configured as a module.
For the latter case, load the module ufs.ko with modprobe (probably located
at: /lib/modules/).
If this option wasn't even configured as a module, then you need to recompile
your kernel with that option enabled.
Further information can be found in the link below:
http://oz123.github.io/writings/2012-11-26-enable-ufs-write-support-debian/
Creating an UFS image:
sudo dd if=/dev/zero of=<image> bs= count=;
- UFS1:
sudo mkfs.ufs -O 1 <image>;
- UFS2:
sudo mkfs.ufs <image>;
Mounting an UFS image:
- UFS1:
sudo mount -t ufs -o rw...
2014 May 29
3
[PATCH 0/2] UFS1/2 support series
...configured as a module.
For the latter case, load the module ufs.ko with modprobe (probably located
at: /lib/modules/).
If this option wasn't even configured as a module, then you need to recompile
your kernel with that option enabled.
Further information can be found in the link below:
http://oz123.github.io/writings/2012-11-26-enable-ufs-write-support-debian/
Creating an UFS image:
sudo dd if=/dev/zero of=<image> bs= count=;
- UFS1:
sudo mkfs.ufs -O 1 <image>;
- UFS2:
sudo mkfs.ufs <image>;
Mounting an UFS image:
- UFS1:
sudo mount -t ufs -o rw...