1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 06:47:35 +00:00

FileManager: Start building a file manager.

This commit is contained in:
Andreas Kling 2019-02-09 09:22:04 +01:00
parent 8ae7be611a
commit 4d5fe39494
14 changed files with 270 additions and 2 deletions

View file

@ -8,6 +8,8 @@ mount -o loop _fs_contents mnt/
mkdir -vp mnt/bin
mkdir -vp mnt/etc
mkdir -vp mnt/proc
mkdir -vp mnt/tmp
chmod 1777 mnt/tmp
mkdir -vp mnt/dev
mkdir -vp mnt/dev/pts
mknod mnt/dev/tty0 c 4 0
@ -54,13 +56,12 @@ cp -v ../Terminal/Terminal mnt/bin/Terminal
cp -v ../FontEditor/FontEditor mnt/bin/FontEditor
cp -v ../Launcher/Launcher mnt/bin/Launcher
cp -v ../Clock/Clock mnt/bin/Clock
cp -v ../FileManager/FileManager mnt/bin/FileManager
cp -v ../Userland/pape mnt/bin/pape
cp -v ../Userland/dmesg mnt/bin/dmesg
cp -v ../Userland/chmod mnt/bin/chmod
cp -v ../Userland/top mnt/bin/top
cp -v kernel.map mnt/
ln -s dir_a mnt/dir_cur
ln -s nowhere mnt/bad_link
sh sync-local.sh
umount mnt
sync