I have installed Ubuntu for Windows 10 Subsystem (WSL2) following all the steps in the official information page. When I click Ubuntu from the start menu of Windows 10, it outputs this:
Welcome to Ubuntu 20.04 LTS (GNU/Linux 4.19.104-microsoft-standard x86_64)
- Documentation: https://help.ubuntu.com
- Management: https://landscape.canonical.com
- Support: https://ubuntu.com/advantage
System information as of Sat Aug 8 17:13:27 CEST 2020
System load: 0.35 Processes: 8
Usage of /: 0.5% of 250.98GB Users logged in: 0
Memory usage: 1% IPv4 address for eth0: 172.25.240.158
Swap usage: 0%
0 updates can be installed immediately.
0 of these updates are security updates.
The list of available updates is more than a week old.
To check for new updates run: sudo apt update
This message is shown once once a day. To disable it please create the
/home/iskandar/.hushlogin file.
iskandar@iskandarbasal-dell-2019:~$
My question is: How can I proceed to get the home interface of Ubuntu and use it from a graphical interface? Where can I create the file which is indicated in the above message?
touch /home/iskandar/.hushlogin
or you can use a quicker version of the same command:touch ~/.hushlogin
as the curly symbol is short for your user's home directory and thetouch
command creates the empty file that disables the login message. If you want the login message back, you can always delete the file using therm
command using the following:rm /home/iskandar/.hushlogin
but be careful withrm
as there is no recycle bin – mchid Aug 08 '20 at 16:11