CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > Visualization & Post-Processing Software > ParaView

[General] How Remove Paraview 5.9.1 tar contents

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   September 8, 2021, 18:05
Question How Remove Paraview 5.9.1 tar contents
  #1
New Member
 
John
Join Date: Nov 2013
Location: USA
Posts: 22
Rep Power: 12
Gallienus is on a distinguished road
I used a tar -xvf ParaView-5.9.1-MPI-Linux-Python3.8-64bit.tar.gz to attempt to install Paraview 5.9.1 onto my Ubuntu 20.04 system. The tar file is 494.5 MB.

Unfortunately I unpacked 168 pages of file names all over my system; including demos and /cinema/view/2.0/images and /pytz/zoneinfo/Navajo. There are 970,000 characters in the unpack list, I cannot go thru and manually delete 1 million files.


Of course Paraview itself won't work and I believe I should build the app from source rather than try to use a pre-compiled binary.

Thus the question is: how do I get rid of the tar files and remove all the extra stuff it blew all over my OS? I saved the program output to a doc file but it is 168 pages long. There deleting files manually is impossible.

General instructions seem to be:
Next compile and install the software (use configure & make to compile it):
Finally compare both lists using the diff utility to find out what files are placed where. This list can be used to uninstall all files installed using source tar ball.
diff packagelist.b4 packagelist.after > package.uninstall.list

Say, if you wish to uninstall files then you need to get list of files from package.uninstall.list file. Use the following small for loop at shell prompt to remove all files:

for i in $(grep ">" package.uninstall.list | awk '{ print $2 }')
do
/bin/rm -fi "$i"
done

It's a bit confusing. I want to remove the contents of a tarball but the instructions say to compile it. There is no compilation and any source code will be different.

I did manually save the install log, which is the 168 page document. Somewhere in there is perhaps a file which lists everything untarred. How do I find and use it?

Last edited by Gallienus; September 8, 2021 at 20:09. Reason: add
Gallienus is offline   Reply With Quote

Reply

Tags
paraview tar remove


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
[OpenFOAM] Wrong results of Paraview plots in case patch WhiteW ParaView 0 May 20, 2021 08:14
[OpenFOAM] Paraview 5.9.0 in OpenFOAM-8 GLfast80 ParaView 3 May 11, 2021 14:10
[OpenFOAM] Paraview 5.8 Segfaults during Startup in CentOS 7 after installing OpenFOAM-v2006 EternalSeekerX ParaView 1 October 5, 2020 10:08
[OpenFOAM] Decomposed multiregion cases in Paraview with native reader Yann ParaView 2 January 16, 2019 05:48
[OpenFOAM.org] Paraview 5.4 in shell environment of5x - Segmentation fault (core dumped) dslbkxd OpenFOAM Installation 1 February 3, 2018 00:56


All times are GMT -4. The time now is 14:03.