Difference between revisions of "Install matlab on work station per matlab user"
Jump to navigation
Jump to search
(Created page with "stam mashehu") |
|||
| (2 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
| − | + | Make sure that you have ~10GB for the iso file, and copy it to your machine, e.g. to /scratch | |
| + | <pre> | ||
| + | scp dvory@dvory:/home/dvory/Downloads/R2023b_Linux.iso /scratch/ | ||
| + | </pre> | ||
| + | Mount the iso file to the media directory | ||
| + | <pre> | ||
| + | mount –t iso9660 –o loop /scratch/R2023b...iso /mnt | ||
| + | </pre> | ||
| + | Start the installation (not from /mnt, but cd to /tmp): | ||
| + | |||
| + | * Make sure you have X, since the installation opens a GUI | ||
| + | <pre> | ||
| + | cd /tmp | ||
| + | /mnt/install (need X11 display) | ||
| + | </pre> | ||
| + | When installation window opens: | ||
| + | • When asks where to install it – choose a place which has enough space: | ||
| + | • Type next – to install all that is being checked. | ||
| + | Check that the new sw works. May need to add its path to $PATH in .bashrc: | ||
| + | <pre> | ||
| + | export PATH=$PATH:<matlab path> | ||
| + | </pre> | ||
Latest revision as of 07:31, 2 January 2024
Make sure that you have ~10GB for the iso file, and copy it to your machine, e.g. to /scratch
scp dvory@dvory:/home/dvory/Downloads/R2023b_Linux.iso /scratch/
Mount the iso file to the media directory
mount –t iso9660 –o loop /scratch/R2023b...iso /mnt
Start the installation (not from /mnt, but cd to /tmp):
- Make sure you have X, since the installation opens a GUI
cd /tmp /mnt/install (need X11 display)
When installation window opens: • When asks where to install it – choose a place which has enough space: • Type next – to install all that is being checked. Check that the new sw works. May need to add its path to $PATH in .bashrc:
export PATH=$PATH:<matlab path>