Session Environment Variables/da: Difference between revisions

From KDE UserBase Wiki
(Importing a new version from external source)
(Importing a new version from external source)
Line 10: Line 10:
}}
}}


Let's explore that. The command ''export'' tells the system that this is something that should be saved and used when looking for files. Next you add the full name of the directory you want to add (in this case <tt>~/local/bin</tt>, another way of writing <tt>/home/you/local/bin</tt> - again you can use <code>echo $HOME</code> to see how that works). Finally you see the $PATH variable itself - that's because you want to add your new path into it, not replace the existing path.
Lad os se, hvad der sker her. Kommandoen ''export'' fortæller systemet, at dette er noget, som skal gemmes og bruges, når der søges efter filer. Herefter kommer den fulde sti til den mappe, som du ønsker at tilføje (i dette tilfælde <tt>~/local/bin</tt>, hvilket er en anden måde at skrive <tt>/home/you/local/bin</tt> - nu kan du igen bruge <code>echo $HOME</code> til at se, hvordan det virker). Endelig ser du selve variablen, $PATH - det er fordi du føjer din nye sti til det eksisterende indhold i stedet for at overskrive det.


Often that will work well enough for you, but as you get more familiar with the system you will probably want to have the same environment when using a console or accessing your machine via '''ssh''', you will need to add to the end of your <tt>.bashrc</tt> something like this:
Often that will work well enough for you, but as you get more familiar with the system you will probably want to have the same environment when using a console or accessing your machine via '''ssh''', you will need to add to the end of your <tt>.bashrc</tt> something like this:

Revision as of 07:11, 8 August 2011

Sætning af sessionsmiljøvariable

Det er enkelt at sætte miljøvariable, som påvirker hele din session. KDE vil udføre ethvert script med filendelse .sh, som den finder i $HOME/.kde/env og vil vedligeholde alle de miljøvariable, som sættes heri. Det er vigtigt, at enhver variabel, som du vil sætte også bliver eksporteret. Som eksempel er PATH en miljøvariabel, som dit system har sat op med stien til de mapper, som mest sandsynligt indeholder ting, som systemet skal finde. Nu vil du tilføje endnu en mappe. Du kan se, hvad der allerede er i variablen ved at åbne Konsole og skrive echo $PATH

For at føje stier til din PATH skal du blot lave en fil ved navn $HOME/.kde/env/path.sh med et indhold i retning af dette:

export PATH=$HOME/local/bin:$PATH

Lad os se, hvad der sker her. Kommandoen export fortæller systemet, at dette er noget, som skal gemmes og bruges, når der søges efter filer. Herefter kommer den fulde sti til den mappe, som du ønsker at tilføje (i dette tilfælde ~/local/bin, hvilket er en anden måde at skrive /home/you/local/bin - nu kan du igen bruge echo $HOME til at se, hvordan det virker). Endelig ser du selve variablen, $PATH - det er fordi du føjer din nye sti til det eksisterende indhold i stedet for at overskrive det.

Often that will work well enough for you, but as you get more familiar with the system you will probably want to have the same environment when using a console or accessing your machine via ssh, you will need to add to the end of your .bashrc something like this:

source $HOME/.kde/env/path.sh

You can also check how KDE actually does it. It's done in your local startkde, which normally you can find in /usr/bin/startkde. If you are interested in reading the code, you can can view it online. Just search the file for environment variables.