“Ubuntu establece la variable de entorno de forma permanente” Código de respuesta

Ubuntu establece la variable de entorno de forma permanente

#open terminal and type:
$ nano .bashrc

#scroll to the bottom of the script and type:
export <place variable name in here> = '<place variable value here>'

#e.g
export ANDROID_SDK_ROOT='/home/<$USER>/Android/Sdk'

#once you,re finished typing in your variable hit Ctrl+X then press enter
Faithful Frog

Establecer variable de entorno permanente

$EDITOR ~/.profile
#add lines at the bottom of the file:  
     export LD_LIBRARY_PATH=/usr/lib/oracle/11.2/client64/lib
     export ORACLE_HOME=/usr/lib/oracle/11.2/client64
TheLazyLemur

Ubuntu establece la variable de entorno de ruta de ruta de forma permanente

#Ubuntu 20.04: It's better to put $PATH at the beginning that way
#the new path environment variable being added will append to the old one.
echo 'export PATH=$PATH:$HOME/Android/Sdk/emulator' >> ~/.bashrc

#update current shell
source ~/.bashrc
Skynet

Respuestas similares a “Ubuntu establece la variable de entorno de forma permanente”

Preguntas similares a “Ubuntu establece la variable de entorno de forma permanente”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código