Skip to Content
문서시작하기설치 가이드설치 후 설정

설치 후 설정

Tip

이 문서는 자세한 설치 후 구성 튜토리얼입니다. 간단한 체크리스트만 필요한 경우 설치 후 체크리스트을 참고하세요.

Ubuntu 26.04 LTS를 성공적으로 설치한 것을 축하합니다! 처음 부팅한 후 시스템을 최적의 상태로 유지하기 위해 완료해야 할 몇 가지 기본 구성이 있습니다.

Tip

초기 구성에 권장되는 우선순위: 시스템 업데이트 -> 드라이버 설치 -> 소프트웨어 미러 구성 -> Timeshift 설치 및 시스템 스냅샷 생성. 다른 소프트웨어를 설치하기 전에 이 작업을 완료하면 문제가 발생할 경우 신속하게 롤백할 수 있습니다.

시스템 업데이트

처음 부팅한 후 가장 중요한 일은 시스템을 업데이트하여 최신 보안 패치와 버그 수정을 받는 것입니다.

GUI 방식

시스템이 자동으로 “소프트웨어 업데이터” 알림을 표시할 수 있습니다. 프롬프트에 따라 업데이트를 설치하십시오.

명령줄 방법

# Update the software source list sudo apt update # Upgrade all installed packages sudo apt upgrade -y # Full upgrade (handles dependency changes) sudo apt full-upgrade -y # Clean up unnecessary old packages sudo apt autoremove -y

업데이트가 완료되면 다시 시작하는 것이 좋습니다.

sudo reboot

드라이버 설치

ubuntu-drivers 도구 사용

Ubuntu 26.04 신규 설치에는 더 이상 소프트웨어 및 업데이트/추가 드라이버 그래픽 도구가 기본적으로 포함되지 않습니다. 대신 명령줄 감지기로 시작하세요.

# Check recommended proprietary drivers ubuntu-drivers devices # Automatically install recommended drivers sudo ubuntu-drivers autoinstall

레거시 그래픽 드라이버 관리 진입점이 여전히 필요한 경우 소프트웨어 및 업데이트를 설치하십시오.

sudo apt install software-properties-gtk

NVIDIA GPU 드라이버

NVIDIA 개별 GPU가 있는 경우 독점 드라이버를 설치하는 것이 좋습니다.

# Check the recommended driver version ubuntu-drivers devices # Auto-install the recommended driver sudo ubuntu-drivers autoinstall # Or manually specify the version reported by ubuntu-drivers devices sudo apt install nvidia-driver-XXX

설치 후 다시 시작이 필요합니다.

기타 일반 드라이버

  • Wi-Fi 드라이버: 대부분 내장되어 있습니다. 무선 어댑터가 작동하지 않으면 먼저 ubuntu-drivers devices을 실행하여 권장 드라이버를 확인하세요.
  • 프린터 드라이버: Ubuntu에는 CUPS 인쇄 시스템이 포함되어 있습니다. 대부분의 프린터는 플러그 앤 플레이로 작동합니다.
  • 블루투스: 일반적으로 추가 드라이버가 필요하지 않습니다.

언어 및 입력 방법

언어 팩 완성

설치 중에 네트워크가 연결되지 않은 경우 언어 팩이 불완전할 수 있습니다.

# Install complete Chinese language packs sudo apt install language-pack-zh-hans language-pack-gnome-zh-hans

또는 GUI를 통해: 설정 -> 시스템 -> 지역 및 언어 -> 설치된 언어 관리 -> “언어 설치/제거”를 클릭합니다.

중국어 입력기 설치

Ubuntu 26.04은 기본적으로 중국어 병음 입력 방법이 사전 설치된 iBus 입력 방법 프레임워크를 사용합니다. 더 많은 옵션을 보려면:

Fcitx5(권장)

# Install Fcitx5 and Chinese input method sudo apt install fcitx5 fcitx5-chinese-addons fcitx5-config-qt # Set Fcitx5 as the default input method im-config -n fcitx5

변경 사항을 적용하려면 로그아웃했다가 다시 로그인하세요.

소프트웨어 미러 구성

로컬 미러 소스를 사용하면 소프트웨어 설치 및 업데이트 속도가 크게 향상될 수 있습니다.

# Back up the original source list sudo cp /etc/apt/sources.list.d/ubuntu.sources /etc/apt/sources.list.d/ubuntu.sources.bak # Use the Tsinghua mirror (you can also choose Alibaba Cloud, USTC, etc.) # Only the hostname is replaced; (cn\.)? matches cn.archive.ubuntu.com, and the http/https protocol is left unchanged sudo sed -i -E 's|(cn\.)?archive.ubuntu.com|mirrors.tuna.tsinghua.edu.cn|g' /etc/apt/sources.list.d/ubuntu.sources sudo sed -i -E 's|security.ubuntu.com|mirrors.tuna.tsinghua.edu.cn|g' /etc/apt/sources.list.d/ubuntu.sources # Update the index sudo apt update

멀티미디어 코덱 설치

설치 중에 멀티미디어 코덱 옵션을 선택하지 않은 경우 수동으로 설치할 수 있습니다.

sudo apt install ubuntu-restricted-extras

이 패키지에는 MP3, MP4, AVI와 같은 일반적인 형식과 Microsoft 핵심 글꼴에 대한 디코더가 포함되어 있습니다.

권장 필수 소프트웨어

브라우저

Ubuntu 26.04에는 Firefox가 사전 설치되어 제공됩니다. Chrome이 필요한 경우:

# Download and install Google Chrome wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb sudo dpkg -i google-chrome-stable_current_amd64.deb sudo apt install -f # Fix dependencies

오피스 스위트

LibreOffice은 일반적으로 사전 설치되어 있습니다. WPS 사무실이 필요한 경우:

# Download the Linux version from the WPS website, then install sudo dpkg -i wps-office_*.deb sudo apt install -f

개발 도구

# Git sudo apt install git # Visual Studio Code sudo snap install code --classic # Basic compilation toolchain sudo apt install build-essential

시스템 유틸리티

# System monitor sudo apt install htop # Disk usage analyzer sudo apt install baobab # Clipboard manager sudo apt install gpaste # Screenshot tool (GNOME has a built-in one: Ctrl+Shift+Print) # Timeshift system backup (strongly recommended) sudo apt install timeshift

Snap 및 Flatpak

Ubuntu 26.04은 기본적으로 Snap 앱 스토어를 사용합니다. Flatpak을 사용하려는 경우:

# Install Flatpak sudo apt install flatpak gnome-software-plugin-flatpak # Add the Flathub repository flatpak remote-add --if-not-exists flathub https://dl.flathub.org/repo/flathub.flatpakrepo

다시 시작하면 소프트웨어 센터에서 Flatpak 앱을 탐색할 수 있습니다.

방화벽 활성화

Ubuntu에는 기본적으로 비활성화되어 있는 UFW(Uncomplicate Firewall)가 포함되어 있습니다.

# Enable the firewall sudo ufw enable # Check status sudo ufw status # Allow SSH (if remote access is needed) sudo ufw allow ssh

시스템 생성 Snapshot

모든 기본 구성을 완료한 후 Timeshift를 사용하여 첫 번째 시스템 스냅샷을 생성하는 것이 좋습니다.

sudo timeshift --create --comments "Initial configuration after installation complete"

이렇게 하면 나중에 시스템에 문제가 발생하는 경우 이 깨끗한 상태로 신속하게 롤백할 수 있습니다.

이제 Ubuntu 26.04 시스템을 매일 사용할 준비가 되었습니다!

관련 기사

Last updated on