![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| KDE and startx | congo | UNIX Desktop for Dummies Questions & Answers | 1 | 10-21-2006 03:23 PM |
| startx / xterm | gefa | UNIX for Advanced & Expert Users | 0 | 04-21-2006 09:30 AM |
| error startx with debian | pascalbout | Linux | 0 | 03-20-2006 06:26 AM |
| Help with FreeBSD and startx. | cosmotron | UNIX for Dummies Questions & Answers | 3 | 12-18-2004 01:31 PM |
| StartX | hellz | UNIX for Dummies Questions & Answers | 15 | 09-05-2001 10:30 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Display Modes |
|
|||
|
I just built my first Solaris 8 machine. I start x using this command (assume I'm in the correct directory):
./startx After I run this command, I receive this extremely frustrating message: /startx: XAUTHORITY=//.Xauthority: is not an identifier Can someone tell me what I am doing incorrectly? Other vitals: Running Solaris 8 (7/01 release) on an INTEL machine Thanks! Pete |
| Forum Sponsor | ||
|
|
|
|||
|
Hi Pete.
It seems like your startx script is using korn shell or bash shell to export variables (like "export VAR=value"). Since Solaris uses bourne shell as default, you can try using korn shell before starting the startx script. You can also include #!/bin/ksh or #!/bin/bash in the first line of the startx script. That may solve your problem. Any problems, let me know. HTT |
|
|||
|
Hi Pete!
About the new errors you got, you can search for xinit script in your system (I´m not sure but it may be in /usr/X11R6/bin or something like that). If you find it, you can do two things: you can put the full path in startx script (line 81, as ksh tells) or you can set-up your PATH environmental variable to include xinit´s path. If you set-up PATH variable you do not have ro change your startx script. Any problems let me know. HTT |