How to install Seismic Unix (SU) on Windows 11 and Ubuntu 24
Seismic Unix is a collection of seismic processing programs formerly supported by the Center for Wave Phenomena at the Colorado School of Mines (SU). At present, it resides in https://github.com/JohnWStockwellJr/SeisUnix
The package can be installed in a series of different Unix platforms. For Windows based computers, the easiest way to have SU working inside Windows seems to be by using the new Ubuntu-based shell that can be run directly in it, right now the latest version is 24.
Here is the step-by-step installation process in Windows 11, very detailed, so those who may be new to compiling software on Unix can just follow the instructions.
I have not tested the complete SU package, I just installed it without errors.
Open the Microsoft Store, and find and install Ubuntu version 24.
The new bash shell can be reached using the Start menu. Or you can find it writing "bash" when you open the Windows Start menu. The first time you activate bash you will be prompted to accept the terms of service. After that, the Bash on Ubuntu on Windows application from the Windows Store will be downloaded. You will be asked to create a user account and password to be used in the Bash environment. Close the bash by typing exit. Or just close the window.
Open the Microsoft Store, and find and install Ubuntu version 24.
The new bash shell can be reached using the Start menu. Or you can find it writing "bash" when you open the Windows Start menu. The first time you activate bash you will be prompted to accept the terms of service. After that, the Bash on Ubuntu on Windows application from the Windows Store will be downloaded. You will be asked to create a user account and password to be used in the Bash environment. Close the bash by typing exit. Or just close the window.
With the new Windows Subsystem for Linux (WSL) since November 2022, you are already set to visualize de data graphically.
Now it is time to prepare the system for SU:
cd
echo "export CWPROOT=\$HOME" >> .bashrc
echo "export PATH=\$PATH:\$HOME/bin:./" >> .bashrc
source .bashrc
The addition of ./ to the PATH environment variable is optional, but it is convenient to run your own scripts later.
Now, in Windows 11, get the SU package. It used to be at CWP. Now (2019 or later), you can find it in https://wiki.seismic-unix.org/doku.php. This is the easiest way. However, if you like, you can also work with a zip file generated from https://github.com/JohnWStockwellJr/SeisUnix (by clicking in Code and then selecting Download ZIP). You then can move the package to your root user in bash:
cd /mnt/c/Users/(put your user name in here)/Downloads
mv cwp_su_all_44R28.tgz $HOME/cwp_su_all_44R28.tgz
cd
The 44R28 part can change with new versions, just check (2023 March 23 version here). If a new version is available, change the name of the file!
Now unzip the file:
gunzip cwp_su_all_44R28.tgz
tar -xvf cwp_su_all_44R28.tar
Next, use the close to correct Makefile.config by:
cd
cd src
rm Makefile.config
cp ./configs/Makefile.config_Linux_Ubuntu_22.04 ./Makefile.config
Just to be on the safe side:
sudo apt-get update
sudo apt-get upgrade
Install needed development packages:
C compiler (gcc) (it takes time...):
sudo apt install -y build-essential
sudo apt install -y gcc make libc6-dev
Fortran:
sudo apt install -y gfortran
X windows:
sudo apt install -y libx11-dev libxt-dev
Mesa/OpenGL (optional):
sudo apt install -y libglu1-mesa-dev
sudo apt install -y freeglut3-dev libxmu-dev libxmu-headers libxi-dev
Motif (optional):
sudo apt install -y libc6 libuil4
sudo apt install -y libxt6 libmotif-dev
Just to be on the safe side:
sudo apt-get update
sudo apt-get upgrade
Modify Makefile.config:
xedit Makefile.config
The section "CWP feature options" should be:
LINEHDRFLAG =
XDRFLAG =
ENDIANFLAG = -DCWP_LITTLE_ENDIAN
LARGE_FILE_FLAG = -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE
CWP_FLAGS = $(LARGE_FILE_FLAG) $(ENDIANFLAG) $(XDRFLAG) $(LINEHDRFLAG)
At the end of "system stuff" delete the last part:
POSTLFLAGS =
In "Gnu compilers by default just because they are the most common" modify:
FOPTS = -g -std=legacy
Click "Save" and return to the console.
Finally, install SU package:
cd
cd src
make install
make xtinstall
make finstall
Optional:
make mglinstall
make utils
make xminstall
make sfinstall
One last check:
cd
suplane | suximage title="test"
Good Luck!
I am no Unix guru, so I just followed the advice by:
John Stockwell (Seismic-Unix-install-on-Ubuntu).
Chris Hoffman (How-to-install-and-use-the-linux-bash-shell-on-windows-10) and (How-to-run-graphical-linux-desktop-applications-from-windows-10s-bash-shell).
Youtube by Ana Gabriela Mantilla (in Spanish) easier instructions (Instalacion de Seismic Unix).
Colorado School of Mines (CWP).