Skip to content

Instantly share code, notes, and snippets.

View aatizghimire's full-sized avatar
🎯
Focusing

Aatiz Ghimiré aatizghimire

🎯
Focusing
View GitHub Profile
@aatizghimire
aatizghimire / Setting-Static-IP-in -Ubuntu.txt
Created October 1, 2023 07:49
Instruction to Set Static IP in Ubuntu in both Desktop and Server.
1. Information about current Networl.
$ ip a
or
$ ipconfig -a
See the current adapter, eth0 for ethernet and wlan0 for wifi (probably).
@aatizghimire
aatizghimire / XRDP-MultiUser-Installation
Last active May 15, 2024 09:33
This is short tutorial to install XRDP on Ubuntu for multi-user Remote desktop connection.
--------------------------------------------
Xrdp Server (Remote Desktop) Installation:
--------------------------------------------
Tested in Ubuntu 22.04.03 LTS
1. Update Environment
$ sudo apt-get update
$ sudo apt-get upgrade
@aatizghimire
aatizghimire / QEMU-Run-Code.txt
Created September 27, 2023 15:34
Use QEMU to boot another OS (windows)
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.