Skip to content

Ubuntu #
Find similar titles

Debian 배포판 기반의 Linux.

주요 팁 #

패키지 관리 #

apt-cache search 패키지명 (패키지검색, RegularExpression)
apt-cache show 패키지명
apt-get install 패키지명
apt-get remove 패키지명
echo '패키지명 hold' | dpkg --set-selections (패키지 hold)
echo '패키지명 install' | dpkg --set-selections (패키지 hold 해제)
dpkg --get-selections | grep hold (hold 된 패키지 보기)

기타 #

몇주 전에 패키지관리자에서 mozilla-firefox와 mozilla-firefox-gnome-support를 update시키는 에러가 계속나서 그냥 썼었는데, 오늘은 아예 firefox가 시작되지 않는 상황이 발생하였다. 대략 error내용을 읽어보면 dpkg에서 설치하는데 문제가 있다고 나옴. firefox install의 문제점 해결방법.

apt-get remove --purge mozilla-firefox mozilla-firefox-gnome-support
sudo rm -rf /usr/lib/mozilla-firefox
sudo rm -rf /etc/mozilla-firefox
apt-get install mozilla-firefox mozilla-firefox-gnome-support

만약 software가 upgrade되었는 데, 기존의 버젼으로 사용을 해야 할 경우나 Downgrade가 필요한 경우

aptitude install <package name>=<version>

수동 아이피 설정 #

수정할 파일:

vi /etc/network/interfaces

추가내용:

auto eth0
iface eth0 inet static
address xxx.xxx.xxx.xxx
netmask xxx.xxx.xxx.xxx
gateway xxx.xxx.xxx.xxx
dns-nameservers xxx.xxx.xxx.xxx

수정 내용 적용:

/etc/init.d/networking restart

Incoming Links #

Related Articles #

Related Software Applications #

Related Codes #

Related Education Events #

Suggested Pages #

web biohackers.net
0.0.1_20140628_0