Sistem operasi 16-bit yang dijalankan dalam emulator bosch
- Ronggur Mahendra Widya Putra / 13519008
- Muhammad Azhar Faturahman / 13519020
- Rayhan Alghifari Fauzta / 13519039
- Linux (Ubuntu)
- nasm, bcc, bin86, bochs, bochs-x, hexedit
sudo apt update
sudo apt install nasm bcc bin86 bochs bochs-x hexedit
bash ./init.sh
hexedit map.img
00000000 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF ................
00000010 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................
00000020 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................
00000030 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................
........ .. .. .. .. .. .. .. .. .. .. .. .. .. .. .. .. ................
tekan ctrl+x
lalu y
untuk menyimpan perubahan
cd lib
bash ./compile_lib.sh
cd ..
bash ./run.sh
bash ./script.sh
ls
Ex : /root $ ls
cd <directory>
cd <directory path>
Ex : /root $ cd ./bin/..
mv <file/directory name> <target directory>
mv <file/directory path> <target directory path>
Ex : /root $ mv tes.txt titan/doc
cp <file/directory name> <target directory>
cp <file/directory path> <target directory path>
Ex : /root $ cp tes.txt titan
mkdir <directory>
mkdir <directory path>
Ex : /root $ mkdir doc
rm <file/directory name>
rm <file/directory path>
Ex : /root $ rm doc
cat <file name>
cat <file path>
Ex : /root $ cat tes.txt
ln <file name> <target file name>
ln <file path> <target file path>
Ex : /root $ ln titan/titan.txt titan2.txt