Tuesday, July 11, 2023

 If Virtual box Menu is hidden, how to enable it.


One of the reason could be that virtual box OS is launched in "Scaled" mode.

Go to OS settings-> User Interface -> visual state

change the option to Normal or any other.



Another solution is to press "right Ctrl" + "Home" key together to see the menu.


Install Guest additional:


The Menu will be shown as below:





Sunday, May 14, 2023

 wget linux command to download download actual file from guthub or any other link in internet


Normally when you download any file, let say text file from github using "wget" command then it send the file in HTML wrapper. You will not be able to download the actual text file.

Error might like below:



Fix:
We need to use raw link like below:
https://raw.githubusercontent.com/abctest/ddsconfig/main/map.xml

instead of html link as below:

https://github.com/abctest/ddsconfig/blob/main/map.xml

If we use this html link we will be getting html file only.