Verificando o TRIM, digite no prompt de comando:
fsutil behavior query DisableDeleteNotify
DisableDeleteNotify = 1 – O TRIM está desabilitado.
DisableDeleteNotify = 0 – O TRIM está habilitado.
Para habilitar o TRIM, digite:
E para desabilitar:
fsutil behavior set DisableDeleteNotify 1
Abra o terminal como administrador e execute os comandos:
dism /online /cleanup-image /checkhealth
dism /online /cleanup-image /restorehealth
sfc /scannow
Antes de instalar a imagem do CD, execute:
dnf install dkms binutils gcc make patch libgomp glibc-headers glibc-devel kernel-headers elfutils-libelf-devel
Verificando a memória:
free -h
Limpando a memória:
sudo swapoff -av; sudo swapon -av
Após o fim do suporte ao CentOS 8, ao tentar atualizar o SO irá retornar o seguinte erro:
Error: Failed to download metadata for repo ‘appstream’: Cannot prepare internal mirrorlist: No URLs in mirrorlist
Para migrar para o CentOS Stream 8 digite o seguinte no shell:
dnf --disablerepo '*' --enablerepo=extras swap centos-linux-repos centos-stream-repos
dnf distro-sync
dnf clean all
dnf update
Digite no prompt de comando:
sudo dnf -y install httpd
Agora inicie e habilite o serviço para iniciar com o sistema:
sudo systemctl start httpd
sudo systemctl enable httpd
Libere a porta no firewall:
sudo firewall-cmd --permanent --zone=public --add-service=http
sudo firewall-cmd --reload
Digite no prompt de comando:
sudo dnf install -y php
Reinicie o Apache:
sudo systemctl restart httpd
Digite no prompt de comando:
sudo dnf -y install mysql mysql-server
Inicie o serviço:
sudo systemctl start mysqld
sudo systemctl enable mysqld
Execute a instalação segura:
sudo mysql_secure_installation
Respostas:
Press y|Y for Yes, any other key for No: y
Please enter 0 = LOW, 1 = MEDIUM and 2 = STRONG: 2
New password:
Re-enter new password:
Do you wish to continue with the password provided?(Press y|Y for Yes, any other key for No) : y
Remove anonymous users? (Press y|Y for Yes, any other key for No) : y
Disallow root login remotely? (Press y|Y for Yes, any other key for No) : y
Remove test database and access to it? (Press y|Y for Yes, any other key for No) : y
Reload privilege tables now? (Press y|Y for Yes, any other key for No) : y
Edite o arquivo .bashrc:
vim $HOME/.bashrc
E adicione essa linha no final do arquivo:
export HISTTIMEFORMAT='%d/%m/%Y - %H:%M:%S: '
Digite no prompt de comando:
sudo apt-get install ttf-mscorefonts-installer
Gerenciar rotas em um sistema Windows é uma habilidade essencial para administradores de rede e profissionais de TI. Neste guia, vamos mostrar como você pode adicionar e remover rotas facilmente usando o prompt de comando.
Pressione Win + X e selecione Prompt de Comando (Admin) ou Windows PowerShell (Admin).
Use o seguinte formato:
route ADD "IP DA REDE" MASK "IP DA MÁSCARA" "IP DO GATEWAY"
Adicionando uma rota permanente (não perde a rota ao reiniciar), adicione a flag -P:
route ADD "IP DA REDE" MASK "IP DA MÁSCARA" "IP DO GATEWAY" -P
Use o seguinte formato:
route DELETE "IP DA REDE"
Para visualizar todas as rotas atualmente configuradas em seu sistema, use o comando:
route print
Isso exibirá uma tabela com todas as rotas ativas e suas respectivas métricas, interfaces e gateways.