Host:
HTTPS:
You can also access this page from following domains
edgedbg.com
HTTPSHTTP
sub.edgedbg.com
HTTPSHTTP
lab.eastasia.cloudapp.azure.com
HTTPSHTTP
IE Security Zones test domains
Internet Explorer assigns all websites to one of four security zones: Internet, Local intranet, Trusted sites, or Restricted sites. The zone to which a website is assigned specifies different security settings that may lead to different behaviors. Following domains allow you to test the browser labs in different security zones in IE. Before navigating to following domains, you need to either map these domains into the correct security zone manually or run following command to map these domains automatically.
powershell -nop -c "iex(New-Object Net.WebClient).DownloadString('http://edgedbg.com/files/iemap.ps1')" CopiedCopy failed, please copy the command manually
internet.edgedbg.com
HTTPSHTTP
sub.internet.edgedbg.com
HTTPSHTTP
trusted.edgedbg.com
HTTPSHTTP
sub.trusted.edgedbg.com
HTTPSHTTP
intranet.edgedbg.com
HTTPSHTTP
sub.intranet.edgedbg.com
HTTPSHTTP
Fork me on GitHub

Common Linux Commands

Main steps

  1. Show directory size

    root@mylinux:~/myproject$ du -sh node_modules/
    488M    node_modules/
    
  2. Display amount of free and used memory in the system

    root@mylinux:~$ free -h
                  total        used        free      shared  buff/cache   available
    Mem:           1.9G        195M        1.0G        692K        720M        1.5G
    Swap:            0B          0B          0B
    
  3. Add system wide environment variable

    sudo nano /etc/environment
    

    Add a new variable on each line using the syntax: VARNAME=VALUE, reboot to take effect.

  4. Show and set time zone

    Show your current time zone:

    timedatectl
    

    List available time zones:

    timedatectl list-timezones
    

    Change time zone:

    sudo timedatectl set-timezone your_time_zone