跳到主內容

Rocky 基本安裝

記錄要安裝的基本軟體

2024.07.04 修改 Rocky 9 安裝方式及修改安裝基本套件

運行環境


本工作室環境都是在 「Proxmox VE 」 虛擬系統上架設,都是以 「 LXC 」模式為主,除非有特殊狀況會告知使用 「 VM 」 模式

  • 系統環境: Rocky

安裝過程


  • Rocky 8
sudo dnf install epel-release dnf-plugins-core dnf-utils -y

sudo dnf config-manager --set-enabled powertools

sudo dnf install vim sudo make wget zip unzip bzip2 htop openssh* net-tools net-snmp net-snmp-utils bind-utils git rsyslog chrony ncdu rsync gcc tar -y
  • Rocky 9
sudo dnf install 'dnf-command(config-manager)'

sudo dnf config-manager --set-enabled crb

sudo dnf install epel-release dnf-plugins-core dnf-utils -y

sudo dnf install https://dl.fedoraproject.org/pub/epel/epel-next-release-latest-9.noarch.rpm -y

sudo dnf install vim sudo make wget zip unzip bzip2 htop openssh* net-tools net-snmp net-snmp-utils bind-utils git rsyslog chrony rsync ncdu gcc tar -y
  • 開發工具套件
#查詢
dnf groupinfo "Development Tools"

#安裝
dnf groupinstall "Development Tools"

參考相關網站