Operating System Programming 4DISS

(REV358--31-Jan-2024)
Welcome to the Operating System Programming for DISS site. The following is a step-by-step guide to set up a Virtual Debian Guest on VirtualBox. This site has been managed by VauLSMorg since 2020.
This is the WAY!

View on GitHub

HOME ABOUT WEB GITHUB TOP BOTTOM PREV NEXT

Mounting Your New Disk

Creat a New Mounting Directory

mkdir -pv /cbkadal/
ls -al /cbkadal/

(RESULT)

root:~# mkdir -pv /cbkadal/
mkdir: created directory '/cbkadal/'

root:~# ls -al /cbkadal/
total 8
drwxr-xr-x  2 root root 4096 Sep 19 01:53 .
drwxr-xr-x 19 root root 4096 Sep 19 01:53 ..

root:~#


Mount Your New Disk

mount -v /dev/sdc /cbkadal/

(RESULT)

root:~# mount -v /dev/sdc /cbkadal/
mount: /dev/sdc mounted on /cbkadal.

root:~#


Check Your VirtualBox Disk (E.g., “cbkadal”)

cat /proc/partitions | grep sdc
df                   | grep sdc
ls -al /cbkadal/

(RESULT)

root:~# cat /proc/partitions | grep sdc
   8       32       4096 sdc

root:~# df                   | grep sdc
/dev/sdc            3948      14      3730   1% /cbkadal

root:~# ls -al /cbkadal/
total 17
drwxr-xr-x  3 root root  1024 Sep 19 01:44 .
drwxr-xr-x 19 root root  4096 Sep 19 01:53 ..
drwx------  2 root root 12288 Sep 19 01:44 lost+found

root:~#


Your New Disk Is Ready



HOME ABOUT WEB GITHUB TOP BOTTOM PREV NEXT