Upgrade tar in HMI BSC
Posted: January 4th, 2020, 9:13 pm
tar needs to be upgraded in order to upgrade Node.js
1) Make a new directory at root and cd to it
2) Browse to http://ftp.gnu.org/gnu/tar/ and choose the latest version. At the console, type wget to download the version you want (download the xz file).
3) Extract the file:
4) CD to the new directory
5) Type in the following:
6) Type in the following:
7) Type in the following:
8) Type in the following:
Reboot into your shiny new tar!
1) Make a new directory at root and cd to it
Code: Select all
root@hmibsc:~# mkdir tar
root@hmibsc:~# cd tar
root@hmibsc:~/tar#
Code: Select all
root@hmibsc:~/tar# curl -JLO ftp.gnu.org/gnu/tar/tar-1.31.tar.xz
Code: Select all
tar -xf tar-1.31.tar.xz
Code: Select all
root@hmibsc:~/tar# cd tar-1.31
Code: Select all
root@hmibsc:~/tar/tar-1.31# export FORCE_UNSAFE_CONFIGURE=1
Code: Select all
root@hmibsc:~/tar/tar-1.31# ./configure
Code: Select all
root@hmibsc:~/tar/tar-1.31# make
Code: Select all
root@hmibsc:~/tar/tar-1.31# make install