『GNOME 설치』
# yum groupinstall "GNOME Desktop Environment"
『GNOME 설치』
# yum groupinstall "KDE (K Desktop Environment)"
『패키지 그룹 확인』
# yum grouplist
참고)
1) # 은 쉘 프롬프트 입니다.
2) root 권한에서 수행합니다.
Linux
2012.01.12 11:02
Fedora / GUI 설치 using yum
조회 수 35570 추천 수 0 댓글 0
Linux
2012.01.02 12:49
Fedora / Time Zone 변경하기
조회 수 34142 추천 수 0 댓글 0
# cp /usr/share/zoneinfo/Asia/Seoul /etc/localtime
# date
2012. 01. 02. (월) 12:48:05 KST
Version
2011.09.01 10:40
Sub Version / 저장소 URL 변경
조회 수 27605 추천 수 0 댓글 0
Cpp
2011.08.02 13:44
pkg-config
조회 수 37707 추천 수 0 댓글 0
# PKG_CONFIG_PATH 지정 export PKG_CONFIG_PATH=/usr/lib/pkgconfig:/usr/local/lib/pkgconfig # pkg-config 를 이용하여 대상 라이브러리의 컴파일 및 링크 옵션을 알 수 있다. pkg-config --cflags --libs xerces-c # 결과 -I/usr/local/include -L/usr/local/lib -lxerces-c
TAG •
Python
2011.07.29 10:24
',' 로 구분된 hex-string을 string으로 변환하기
조회 수 50842 추천 수 0 댓글 0
>>> convert_hexstr_to_str("30,31,32,33") >>> '0123' def convert_hexstr_to_str(s, delim=','): l = [] if delim is None: for i in range(0, len(s), 2): l.append(s[i:i+2]) else: l = s.split(delim) ss = '' for e in l: ss += chr(string.atoi(e, 16)) return ss
TAG •