컴퓨터/유틸리티2014. 12. 12. 12:37


일반적인 패키지 설치 방법 (종속된 패키지도 같이 설치되지만 개별 설정이 필요함)

make install clean


종속된 패키지를 일괄 설치하는 방법1 (종속된 패키지를 기본값으로 설치됨)

make -DBATCH install clean


종속된 패키지를 일괄 설치하는 방법2 (종속된 패키지를 개별 설정 후 일괄 설치됨)

make config-recursive


make install clean


종속된 패키지의 설정을 초기화하는 방법

make rmconfig-recursive



참고> http://webplay.pro/blog/freebsd-make-install-clean-accept-default-config.html



Posted by jungtae17
컴퓨터/유틸리티2013. 7. 15. 15:15

 

시스템 업데이트 (Security Patches)

# freebsd-update fetch
# freebsd-update install

 

참고> http://www.freebsd.org/doc/handbook/updating-upgrading-freebsdupdate.html

 

Ports 업데이트 (Ports Collection Update)

# portsnap fetch
# portsnap extract
# portsnap update

 

참고> http://www.freebsd.org/doc/handbook/updating-upgrading-portsnap.html

 

Posted by jungtae17
컴퓨터/유틸리티2012. 9. 25. 11:55

 

패키지 다운로드 URL 경로 설정

# setenv PACKAGEROOT ftp://ftp2.kr.freebsd.org

 

패키지 설치

# pkg_add -r jpeg

# pkg_add -r png

# pkg_add -r wget

# rehash

 

링크> http://www.freebsd.org/cgi/man.cgi?query=pkg_add

Posted by jungtae17