Here is a very useful link which describes well about this topic
https://www.slideshare.net/powerhan96/networking-between-host-and-guest-v-ms-in-virtual-box
This is a growing list of Linux commands which might come handy for the of Linux users. 1. Found out i had to set the date like this: ...
Here is a very useful link which describes well about this topic
https://www.slideshare.net/powerhan96/networking-between-host-and-guest-v-ms-in-virtual-box
The ifconfig command has been deprecated and thus missing by default on Debian Linux 10.
# ifconfig
-bash: ifconfig: command not foundThe new and recommended alternative for examining a network configuration on Debian Linux is ip command. For example to use ip command to display a network configuration run the following:
# ip addressThe above ip command can be abbreviated to:
# ip a
If you still prefer to use ifconfig as part of your daily sys admin routine, you can easily install it as part of the net-tools package.
Privileged access to your Debian Linux system is required.
Guiding Principle of Architecture
If you want to find out the password of your wifi connection connected to the internet in your system, type the below command in the command prompt and check the value of the property "Key content" !!
Voilaa... Your wifi password is now shown up on the response on the CLI on your windows PC/laptop screen :)
Disclaimer: Use it to find out the forgotten password of your own internet connection. Do not use it to hack into somebody else's wifi connection :D
C:\>netsh wlan show profile name=<wifi-name> key=clear
Profile <wifi-name> on interface Wi-Fi:
=======================================================================
Applied: All User Profile
Profile information
-------------------
Version : 1
Type : Wireless LAN
Name : <wifi-name>
Control options :
Connection mode : Connect automatically
Network broadcast : Connect only if this network is broadcasting
AutoSwitch : Do not switch to other networks
MAC Randomization : Disabled
Connectivity settings
---------------------
Number of SSIDs : 1
SSID name : "wifi-name"
Network type : Infrastructure
Radio type : [ Any Radio Type ]
Vendor extension : Not present
Security settings
-----------------
Authentication : WPA2-Personal
Cipher : CCMP
Authentication : WPA2-Personal
Cipher : GCMP
Security key : Present
Key Content : <password in clear text>
Cost settings
-------------
Cost : Unrestricted
Congested : No
Approaching Data Limit : No
Over Data Limit : No
Roaming : No
Cost Source : Default
Here is how you can delete an already created multichain.
multichain-cli chain1 stop
rm -r ~/.multichain/chain1
You need to do this on every node that was connected.
If you need to utilize Oracle VM Virtualbox Manager, on your Windows Operating system, there are certain prerequisites that you will need to confirm. If these are not as per the below output, then your Oracle VM Virtualbox Manager might fail to start.
Open Windows PowerShell prompt and type the below 2 commands & verify that their output should be as below.
Windows PowerShell
Copyright (C) Microsoft Corporation. All rights reserved.
Loading personal and system profiles took 16318ms.
(base) PS C:\Users\rupakuma> Wmic computersystem get hypervisorpresent
HypervisorPresent
FALSE
(base) PS C:\Users\rupakuma> wmic cpu get virtualizationfirmwareenabled
VirtualizationFirmwareEnabled
TRUE
If not, you will need to enable virtualization through BIOS & disable Hyper-V in your Windows operating system.