ericknilsen / Aulas

Digital material used in the teaching of disciplines at the University of Fortaleza between 2014 and 2018
2 stars 0 forks source link

Sugestao de ajuste no script configure.sh (instalação VSCode) #2

Open levi-rocha opened 7 years ago

levi-rocha commented 7 years ago

Na Aula 'Manual Ambiente' (https://github.com/ericknilsen/Aulas/wiki/Manual-Ambiente)

No script configure.sh, a parte de instalação do VSCode atualmente e:

# Instalação do editor VSCode
wget -O VSCode.tar.gz https://go.microsoft.com/fwlink/?LinkID=620884; 
tar -xvzf VSCode.tar.gz; 
rm VSCode.tar.gz;
sudo ln -s /home/treinamento/Tools/VSCode-linux-x64/code /usr/local/bin/code;

A ultima linha so funciona se o nome de usuário do usuário for 'treinamento'. Caso o nome seja diferente, a pasta /home/treinamento/* não existirá.

Para que o script funcione com qualquer usuário, a ultima linha pode ser substituída por:

sudo ln -s $(pwd)/VSCode-linux-x64/code /usr/local/bin/code;
ericknilsen commented 7 years ago

Obrigado!

Em 2 de março de 2017 23:16, Levi Rocha notifications@github.com escreveu:

No script configure.sh, a parte de instalação do VSCode atualmente e:

Instalação do editor VSCode

wget -O VSCode.tar.gz https://go.microsoft.com/fwlink/?LinkID=620884; tar -xvzf VSCode.tar.gz; rm VSCode.tar.gz; sudo ln -s /home/treinamento/Tools/VSCode-linux-x64/code /usr/local/bin/code;

A ultima linha so funciona se o nome de usuário do usuário for 'treinamento'. Caso o nome seja diferente, a pasta /home/treinamento/* não existirá.

Para que o script funcione com qualquer usuário, a ultima linha pode ser substituída por:

sudo ln -s $(pwd)/VSCode-linux-x64/code /usr/local/bin/code;

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/ericknilsen/Aulas/issues/2, or mute the thread https://github.com/notifications/unsubscribe-auth/AOIt1IGxnG6dfWhkQvMFniIBr5ogLxO2ks5rh3gEgaJpZM4MRyFy .

-- Erick Souza.