This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. Information about current Networl. | |
$ ip a | |
or | |
$ ipconfig -a | |
See the current adapter, eth0 for ethernet and wlan0 for wifi (probably). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-------------------------------------------- | |
Xrdp Server (Remote Desktop) Installation: | |
-------------------------------------------- | |
Tested in Ubuntu 22.04.03 LTS | |
1. Update Environment | |
$ sudo apt-get update | |
$ sudo apt-get upgrade |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. Set Up a Virtual Disk | |
Under C:/ Drive Run these command: | |
$ qemu-img create image.img 200M | |
2. To Run : | |
$ qemu-system-i386 -hda image.img -cdrom isofile.iso -m 16M -boot order=dc | |
qemu-system-i386 : Legacy System or you can use qemu-system-x86_64 | |
-hda : denotes the image file of harddisk. |