Links Kahoot: https://create.kahoot.it/search-results/all?query=Linux&orderBy=relevance&language=Portugu%C3%AAs&inventoryItemId=ANY https://create.kahoot.it/details/ca390ae6-1b0c-43fc-9d57-f1f9dc178d82 https://create.kahoot.it/details/dae7bafb-643b-4d2a-8ac2-faa9851d94e7?drawer= https://create.kahoot.it/details/4811338f-cf6b-4634-93ee-ebbcc2b92664?drawer= https://create.kahoot.it/details/085483bb-87f1-42b9-aaa5-c0c41ad446c2?drawer= Link Downloads: https://yum.oracle.com/oracle-linux-isos.html#content-1 https://www.virtualbox.org/wiki/Downloads https://putty.org/index.html Liberação de usuário root no Linux: ip a ou ip addr vi /etc/ssh/sshd_config >> Liberar linha: PermitRootLogin yes systemctl restart sshd Logar pelo Putty Instalação do Apache: apt clean apt update && apt upgrade -y apt install apache2 -y systemctl status apache2 cat /etc/apache2/sites-available/000-default.conf sudo nano /var/www/html/index.html acessar o localhost Variáveis de ambiente: echo $PATH ll /usr/bin/ Brincadeira do sl: dnf install -y oracle-epel-release-el9 (pacotes adicionais) dnf install -y sl export PATH=$PATH:/usr/games Grupos do usuário: groups id usermod -aG root gpasswd -d gferreira root -------------------------- scp -i "C:\Users\gferreira\OneDrive\IN ALL\CHAVES\ssh-key-2026-03-02.key" "C:\Users\gferreira\OneDrive\CCM\Academy Out\Documento HTML - Apache.html" ubuntu@147.15.124.64:/var/www/downloads/ scp -i "C:\Users\gferreira\OneDrive\IN ALL\CHAVES\ssh-key-2026-03-02.key" "C:\Users\gferreira\OneDrive\CCM\Academy Out\Apoio.txt" ubuntu@147.15.124.64:/var/www/downloads/ wget "https://baixar.inall.com.br/Documento HTML - Apache.html" curl -O "https://baixar.inall.com.br/Documento HTML - Apache.html" curl -o documento.html "https://baixar.inall.com.br/Documento HTML - Apache.html" wget --version curl --version which wget which curl No Ubuntu: sudo apt update && sudo apt install wget -y No Oracle Linux: sudo dnf install wget -y No Ubuntu: sudo apt update && sudo apt install curl -y No Oracle Linux: sudo dnf install curl -y ------------------------- Executável: /usr/sbin/httpd Configuração: /etc/httpd/ Logs: /var/log/httpd/ Módulos: /usr/lib64/httpd/ ------------------------- https://docs.oracle.com/en-us/iaas/Content/FreeTier/freetier_topic-Always_Free_Resources.htm https://mylearn.oracle.com/ou/learning-path/become-an-oci-architect-associate/162234 ------------------------- wsl --unregister Ubuntu wsl --install -d Ubuntu wsl --shutdown wsl --uninstall ------------------------- C:\Users\gferreira\.ssh\config # Bastion (máquina com IP público) Host DOWNLOAD HostName 147.15.124.64 User ubuntu IdentityFile "C:\Users\gferreira\OneDrive\IN ALL\CHAVES\ssh-key-2026-03-02.key"