Forked from UbuntuEvangelist/Things To Do After Installing Ubuntu 24.04.2 Noble Numbat Linux
          
        
    
          Created
          August 20, 2024 06:02 
        
      - 
      
 - 
        
Save Bytexionl/d4001d2c577dc790f4830249e7f87f76 to your computer and use it in GitHub Desktop.  
    Things To Do After Installing Ubuntu 24.04 LTS
  
        
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | apt update -y | |
| apt upgrade -y | |
| apt update -y | |
| apt install build-essential checkinstall | |
| apt install ubuntu-restricted-extras | |
| apt install software-properties-common | |
| apt install apt-show-versions | |
| apt upgrade -o APT::Get::Show-Upgraded=true | |
| apt-show-versions | grep upgradeable | |
| apt install git | |
| git config --global user.name "name" | |
| git config --global user.email [email protected] | |
| ssh-keygen -t rsa -b 4096 -C "[email protected]" | |
| eval "$(ssh-agent -s)" | |
| ssh-add ~/.ssh/id_rsa | |
| # Add SSH Key the GitHub | |
| cat /root/.ssh/id_rsa.pub | |
| apt upgrade -y && apt update | |
| apt-get install openssh-server | |
| sed -i 's/^PermitRootLogin.*/PermitRootLogin yes/' /etc/ssh/sshd_config | |
| sed -i 's/^PubkeyAuthentication.*/PubkeyAuthentication yes/' /etc/ssh/sshd_config | |
| sed -i 's/^PasswordAuthentication.*/PasswordAuthentication yes/' /etc/ssh/sshd_config | |
| service ssh restart | |
| apt update -y | |
| apt upgrade -y | |
| apt -f install | |
| apt autoremove | |
| apt -y autoclean | |
| apt -y clean | |
| reboot | |
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment