320x100
centos 5버전은
# tar --version
tar (GNU tar) 1.15.1
1.15 버전이다.
1.26 버전 이상으로 설치 해보자
다운 받고 압축을 풀고 설치를 하자.
# tar -xvf tar-1.26.tar.gz
# cd tar-1.26
# ./configure FORCE_UNSAFE_CONFIGURE=1
뒤에 옵션을 안주면
checking whether mknod can create fifo without root privileges... configure: error: in `/tmp/tar-1.26':
configure: error: you should not run configure as root (set FORCE_UNSAFE_CONFIGURE=1 in environment to bypass this check)
위와 같이 에러가 발생한다.
# make && make install
재로그인 하면
# tar --version
tar (GNU tar) 1.26
Copyright (C) 2011 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Written by John Gilmore and Jay Fenlason.
버전 업그레이드 된걸 확인 할 수 있다.
320x100
'Linux' 카테고리의 다른 글
gcc 4.8.x 설치하기 centos6.x 기준 (0) | 2017.05.12 |
---|---|
snipeit install for centos 7.x (0) | 2017.05.02 |
dmar drhd handling fault status reg 3 (0) | 2017.03.30 |
Another app is currently holding the yum lock; waiting for it to exit... (0) | 2017.02.21 |
mysql 5.7 이상 암호 복잡성 해지하기 (0) | 2017.01.23 |