problems with graphical mode initialization

Asked

Viewed 95 times

1

I put the address of the Fortran compiler (ifort) on .bashrc making:

export PATH=/.../...

But after that I could not access the graphical mode of Opensuse. The given message is the following:

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

  • 1

    It seems that you have overwritten or edited the old PATH and the problem may be why.

2 answers

1

Hello.

Try to do it this way:

PATH="$PATH:/path/bin/:/other_path/bin/"

It is important that the previous $PATH variable is concatenated with the new settings, that the paths are separated by two points and that there are no spaces before and after the '='.

0

First, try to take out 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"

Browser other questions tagged

You are not signed in. Login or sign up in order to post.