setting up multiX on a linux system
It is good practice to create a personal ~/bin directory containing
all binaries, including the executable multiX
the executable files must be labelled as executable: chmod a+x multiX
the programs in then ~/bin directory can be invoked from any working directory by their names,
when this line is present in the .bashrc file while using the standard bash shell for linux work:
declare -x PATH=$PATH:$HOME/bin:.
running multiX
create a file INPUT, see other sections of this manual for details
an interactive multiX run with output right on screen, can be done like this:
multiX |tee log_label_for_this_run
The file log_label_for_this_run keeps a record for this calculation,
including a record of the INPUT file
Longer multiX runs may be done in background:
multiX >& log_label_for_this_run &
The spectrum files like spect-xas.dat can be processed into a postscript graphics file, graph.ps:
plt_mult xas
and shown on your screen by:
gv graph.ps
installing a virtual linux computer on Mac OS or Windows
Download and install
free VMware fusion on Mac
or free VMware Workstation Player on Windows
or free VBox for your OS
Download Xubuntu (usually 64-bit version)
run VMware or VirtualBox
Machine/New Name: Xubuntu Type:LINUX Version: Ubuntu
Size 2GB
Create virtual hard disk
max size 8GB
Xubuntu : power on: double click
see the small icon near lower right; click: set to search for .iso files
for more than minimal LINUX use recommended install:
sudo apt-get install virtualbox-guest-additions-iso
info about VMware:
https://www.vmware.com/products/fusion/faq.html
https://www.vmware.com/ch/products/workstation-player.html
info about VBox:
https://help.ubuntu.com/community/VirtualBox/GuestAdditions
https://www.virtualbox.org/manual/ch04.html
https://help.ubuntu.com/community/VirtualBox/SharedFolders
back to index