7 lines
172 B
Plaintext
7 lines
172 B
Plaintext
|
# Create a RAMDISK at /dev/ram1, size 0.5MiB, format it with a FAT
|
||
|
# file system and mount it at /tmp
|
||
|
|
||
|
mkrd -m 2 -s 512 1024
|
||
|
mkfatfs /dev/ram1
|
||
|
mount -t vfat /dev/ram1 /tmp
|