Install oomph-lib, a CFD opensource software

AI Thread Summary
To install the open-source CFD software on Ubuntu, the user is attempting to extract a tar file using the command "tar xvfz oomph-lib-1.0.1306.tar.gz" from their home directory, while the tar file is located in the downloads folder. It is recommended to first create a new directory and change into that directory before extracting the tar file. This approach prevents any potential conflicts with existing files or directories that may have matching names. Additionally, performing a listing of the tar file's contents before extraction is advised for better awareness of what will be installed.
member 428835
Hi PF!

I'm trying to follow these instructions to install an open-source CFD software on Ubuntu:

http://oomph-lib.maths.man.ac.uk/doc/the_distribution/html/index.html#download

After downloading the tar file http://oomph-lib.maths.man.ac.uk/tar_file_directory/, I type the command

>> tar xvfz oomph-lib-1.0.1306.tar.gz

which is the first step in the above link (the numbers match the tar file I have). However, I'm typing this into the terminal which is in my home/josh directory. The tar file is in downloads. I know I sound like a super noob (and I am) but should I move the tar file somewhere else before trying to open it?

I just don't want to mess anything up. Thanks so much!
 
Technology news on Phys.org
I would do a listing of the tar first to see what you have.

Usually tar xvf will install the tar relative to your current directory.

To be safe you should make a new directory, cd to the directory and then expand the tar there. Why? because its a new directory and the tar won't clobber any files or directories you may have with matching names.
 
  • Like
Likes member 428835
Dear Peeps I have posted a few questions about programing on this sectio of the PF forum. I want to ask you veterans how you folks learn program in assembly and about computer architecture for the x86 family. In addition to finish learning C, I am also reading the book From bits to Gates to C and Beyond. In the book, it uses the mini LC3 assembly language. I also have books on assembly programming and computer architecture. The few famous ones i have are Computer Organization and...
I have a quick questions. I am going through a book on C programming on my own. Afterwards, I plan to go through something call data structures and algorithms on my own also in C. I also need to learn C++, Matlab and for personal interest Haskell. For the two topic of data structures and algorithms, I understand there are standard ones across all programming languages. After learning it through C, what would be the biggest issue when trying to implement the same data...
Back
Top