Como habilitar o TRIM do seu SSD no Windows

Verificando o TRIM, digite no prompt de comando: fsutil behavior query DisableDeleteNotify fsutil behavior query DisableDeleteNotify DisableDeleteNotify = 1 – O TRIM está desabilitado.DisableDeleteNotify = 0 – O TRIM está habilitado. Para habilitar o TRIM, digite: fsutil behavior set DisableDeleteNotify 0 fsutil behavior set DisableDeleteNotify 0 E para desabilitar: fsutil behavior set DisableDeleteNotify 1 fsutil […]

Verificando e corrigindo arquivos corrompidos no Windows

Abra o terminal como administrador e execute os comandos: dism /online /cleanup-image /checkhealth dism /online /cleanup-image /checkhealth dism /online /cleanup-image /restorehealth dism /online /cleanup-image /restorehealth sfc /scannow sfc /scannow

Instalando adicionais para convidado (VirtualBox) no RHEL 9

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 dnf install dkms binutils gcc make patch libgomp glibc-headers glibc-devel kernel-headers elfutils-libelf-devel

Migrando de CentOS 8 para CentOS Stream 8

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-reposdnf distro-syncdnf clean […]

Como instalar o Apache, MySQL e PHP no Oracle Linux 8

Instalando o Apache Digite no prompt de comando: sudo dnf -y install httpd sudo dnf -y install httpd Agora inicie e habilite o serviço para iniciar com o sistema: sudo systemctl start httpdsudo systemctl enable httpd sudo systemctl start httpd sudo systemctl enable httpd Libere a porta no firewall: sudo firewall-cmd –permanent –zone=public –add-service=httpsudo firewall-cmd […]

Como adicionar e remover rotas no Windows

Adicionando uma rota: route ADD “IP DA REDE” MASK “IP DA MÁSCARA” “IP DO GATEWAY” route ADD “IP DA REDE” MASK “IP DA MÁSCARA” “IP DO GATEWAY” Adicionando uma rota permanente (não perde a rota ao reiniciar): route ADD “IP DA REDE” MASK “IP DA MÁSCARA” “IP DO GATEWAY” -P route ADD “IP DA REDE” […]