본문 바로가기

linux

데비안 (Debian) : 각종 유틸 및 드라이버 설치하기

Debian : https://optic.tistory.com/244

 

<소스리스트 편집> (* 대단히 중요합니다! 소스리스트를 편집해주셔야 터미널을 통한 유틸이나 드라이버 설치 명령이 가능해집니다.)

su

(관리자 암호를 입력해줍니다.)

nano /etc/apt/sources.list

(기존 내용을 아래의 내용으로 변경합니다.)

deb https://ftp.lanet.kr/debian/ bookworm main non-free contrib non-free-firmware

deb https://security.debian.org/debian-security bookworm-security main contrib non-free non-free-firmware

deb https://ftp.lanet.kr/debian/ bookworm-updates main contrib non-free non-free-firmware

deb https://ftp.lanet.kr/debian/ bookworm-backports contrib main non-free non-free-firmware

 

그 다음 데비안 전체 업데이트를 해줍니다.

apt update ; apt full-upgrade -y

exit

 

<드라이버 및 유틸 설치를 위한 터미널 사용 예제>

su

apt update && apt install flatpak firmware-linux-nonfree firmware-realtek firmware-linux firmware-amd-graphics amd64-microcode bluez-firmware intel-microcode firmware-intel-sound firmware-iwlwifi nvidia-driver nvidia-settings intel-media-va-driver-non-free intel-opencl-icd mesa-va-drivers mesa-opencl-icd nvidia-opencl-icd hplip xserver-xorg-input-synaptics

(hplip은 HP프린터, input-시냅틱은 노트북 터치패드입니다. 자기 시스템과 상관 없는 드라이버는 설치하지 않아도 됩니다. 인텔PC이면 amd용 드라이버나 마이크로코드는 설치할 필요 없음)

exit

flatpak --user remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo

flatpak --user install info.smplayer.SMPlayer org.kde.kwrite org.kde.okular io.github.peazip.PeaZip com.google.Chrome org.kde.krita org.kde.kdenlive org.atheme.audacious org.audacityteam.Audacity de.haeckerfelix.Shortwave us.zoom.Zoom

 

 

<시스템 업데이트> (일주일에 한번 정도는 직접 체크해주십시오.)

flatpak update ; flatpak uninstall --unused

su

apt update ; apt full-upgrade -y ; apt autoremove

exit

 

 

flathub 앱 검색 : https://flathub.org/

데비안 패키지 검색 : https://www.debian.org/distrib/packages

'linux' 카테고리의 다른 글

Debian 12  (0) 2023.08.08
Linux Mint 20.3  (0) 2022.02.20
Ubuntu 20.04.2  (0) 2021.02.12
Ubuntu MATE 20.04.2  (0) 2021.02.12
Xubuntu 20.04.2  (0) 2021.02.12