problems with initialization in graphical mode

1

I put the Fortran compiler address (ifort) in .bashrc by doing:

export PATH=/.../...

But after that I could not access the OpenSuse graphical mode. The message given is as follows:

  

Could not connect to session bus dbus-lauch terminated abnormally without any error messeger on opensuse.

I would like ideas so I can solve this problem

    
asked by anonymous 25.03.2014 / 15:34

2 answers

1

Hello.

Try to do this:

It is important that the previous $ PATH variable be concatenated with the new definitions, that the paths are separated by a colon and that there are no spaces before and after the '='.

    
25.03.2014 / 16:41
0

First, try to take what you added (delete the line that defines the PATH variable in .bashrc) to recover your graphic mode. After that, editing the PATH variable has to be done the way @vrcca said:

export PATH="$PATH:/caminho/do/compilador/fortran"
    
29.05.2014 / 19:24