Como mudar de Rede Pública para Privada no Windows

1 – Pressione as teclas Windows + R e digite regedit para abrir o editor de registro do Windows

2 – Localize a chave

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\NetworkList\Profiles

3 – Ao expandir a pasta Profiles seleciona a chave onde o Item ProfileName corresponda ao usuário do sistema

4 – Dê um duplo clique no item Category e altere o valor para 1 que corresponde a rede privada. Clique em OK.

5 – Reinicie o computador para a alteração entrar em vigor

How To Switch Network From Public To Private And Domain In Windows 10

1. Press  + R and put regedit in Run dialog box to open Registry Editor (if you’re not familiar with Registry Editor, then click here). Click OK.

2. In the left pane of Registry Editor, navigate to following registry key:

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\NetworkList\Profiles

3. At this registry location, expand the Profiles key in the left pane. Then you’ll see long sub-keys with different Globally Unique Identifiers (GUIDs). The number of sub-keys here equals to number of networks you’ve joined till date and each network has a unique sub-key. In the corresponding right pane of sub-key, locate the ProfileName registry string. Its Value data should correspond to the name of respective network. So in this way, select the GUID for your network and in the right pane, look for Category named registry DWORD. Double click on it to modify its Value data and so the location type:

4. In the above shown box, set the Value data to 1 for Private0 for Public and 2 for Domain network. Click OK after making the registry manipulation and close the Registry Editor.

Restart or reboot your system to make changes effective.

Iniciar Xampp automaticamente ao iniciar o sistema

1. Criar um arquivo dentro de init.d chamado lampp
sudo gedit /etc/init.d/lampp

2. Escrever o código abaixo para rodar o script de inicialização do XAMPP

#!/bin/bash
/opt/lampp/lampp start

3. Atribuir a permissão de execução ao arquivo
sudo chmod +x /etc/init.d/lampp

4. Use update-rc.d para ativar o script em tempo de execução do sistema
sudo update-rc.d lampp defaults