2021년 3월 2일 화요일

Ubuntu 특정 패키지 업그레이드 제외

$ apt list --upgradable
: 업그레이드 가능한 리스트를 보여준다.

$ echo "gitlab-ce hold" | sudo dpkg --set-selections
: gitlab-ce 패키지를 업그레이드 중단한다.

$ dpkg --get-selections | grep gitlab
gitlab-ce hold
: gitlab-ce 패키지 상태를 확인한다.


댓글 없음:

댓글 쓰기

우분투 NFS 설정

* 서버 설정 apt-get install nfs-common nfs-kernel-server rpcbind /etc/exports /home/xyz 192.168.0.X(rw,sync,no_root_squash,no_subtree_check)...