어찌하다보니, 일반적인 웹 브라우저 (graphical web browser)를 설치할 수 없는 환경이라서, text browser를 설치하게 됨.
sudo apt-get install w3m [enter]
위의 한 줄 명령으로 필요한 라이브러리와 함께 설치할 수도 있겠지만, 그나마 apt-get도 쓸 수 없는 상황에서는 소스나 바이너리를 다운로드 받아서 설치해야함.
https://sourceforge.net/projects/w3m/files/
libgc를 설치하지않고 컴파일하면 gc.h를 찾을 수 없다면서 아래와 같은 에러 발생.
./configure --prefix=/home/user/w3m [enter]
configure: error: gc.h not found
libgc도 다운로드 받는다.
적당한 곳에 tar를 풀어서...
./configure --prefix=/home/user/lib/gc [enter]
make [enter]
install [enter]
이제 w3m 설치를 계속해본다.
./configure --prefix=/home/user/w3m --with_gc=/home/user/lib/gc [enter]
make [enter]
install [enter]
이게 왠 구석기 시대에나 어울릴법한 화면인가...
어쨌거나 터미널에서 브라우저 띄웠음.
'인터넷/모바일' 카테고리의 다른 글
cmd 창이 실행될 때에 자동적으로 스크립트 실행하기. (0) | 2018.01.09 |
---|---|
한글 형태소분석기 mecab-ko 설치하기 (0) | 2017.03.29 |
모니터 해상도에 따른 도트 피치 (0) | 2017.02.20 |
ubuntu : passwd 변경 시에 authentication token manipulation error 해결 방법 (0) | 2017.02.19 |
플런저 키 타입 키보드. 비프렌드 아이매직 GKEYBOARD2 ECHO (0) | 2017.02.19 |