Travail a distance : Différence entre versions
m (→python à distance) |
m (→VPN) |
||
Ligne 4: | Ligne 4: | ||
== VPN == | == VPN == | ||
A Venir / Work in progress | A Venir / Work in progress | ||
+ | == sites WEB internes UQAM == | ||
+ | A Venir / Work in progress | ||
+ | |||
== SSH == | == SSH == | ||
[https://wikiscta.scta.uqam.ca/wikiscta/index.php/Transfert_de_donn%C3%A9es_de_l%27ext%C3%A9rieur#Connexion_de_l.E2.80.99ext.C3.A9rieur access to UQAM through the gateway system] | [https://wikiscta.scta.uqam.ca/wikiscta/index.php/Transfert_de_donn%C3%A9es_de_l%27ext%C3%A9rieur#Connexion_de_l.E2.80.99ext.C3.A9rieur access to UQAM through the gateway system] |
Version depuis le 30 d'avril 2020 à 14:46
A Venir / Work in progress
Matières
VPN
A Venir / Work in progress
sites WEB internes UQAM
A Venir / Work in progress
SSH
access to UQAM through the gateway system ssh client configuration A Venir / Work in progress
Matlab à distance
The fastest way to execute a Matlab script is to not open any windows:
1) Write the Matlab script either on the UQAM servers with 'vi' or 'vim', or, if you are not comfortable with these, you can also write the script on your local computer and copy it on the servers to execute it there.
2) Execute Matlab script without opening any windows
a) Make sure your Matlab script does not open any windows. Add for example ('visible','off') to the 'figure' command:
a=1:4; f = figure('visible','off'); plot(a) saveas(f,'newout','fig')
b) Run your Matlab script without opening any windows.
Assuming your Matlab script is called 'mplot.m', execute:
matlab -nodesktop -nosplash -nojvm -r "mplot;quit;"
You need to omit the '.m' extension of your script in the call!
If you have any problems/corrections/suggestions, please, send me an email: winger.katja@uqam.ca
python à distance
nature
The fastest way to execute a Python script is to not open any windows:
1) Write the Python script either on the UQAM servers with 'vi' or 'vim', or, if you are not comfortable with these, you can also write the script on your local computer and copy it on the servers to execute it there.
2) Execute Python script with
python scriptname
Jupyter (python) à distance
A Venir / Work in progress
Spyder (python) à distance
A Venir / Work in progress condamné à être lent et pénible!!!