Where is my X11?

Hi everybody,
I tried to install glut using fink to my Macbook Pro, and I lost my X11! I reinstalled it from OSX install DVD, but no hope! It says that fonts can not be found!
here is what I have under /usr/X11R6:
[haris@ /usr/X11R6]$ ls
include lib man
and there is no /etc/X11!!!
I reinstalled development tools + X11SDK several times, but no hope... have you got any ideas??
Here is the error message that I got when I run XDarwin:
please help!! I need the X11
2006-07-26 09:29:32.184 XDarwin[5016]
XDarwin 1.4.0
Release Date: 18 December 2003
X Protocol Version 11, Revision 0, Release 6.8.2
Build Operating System: Darwin Apple Computer, Inc.
Current Operating System: Darwin bldg10-5-219.nhlbi.nih.gov 8.7.1 Darwin Kernel Version 8.7.1: Wed Jun 7 16:19:56 PDT 2006; root:xnu-792.9.72.obj~2/RELEASE_I386 i386
Before reporting problems, check http://wiki.X.Org
to make sure that you have the latest version.
Could not find keymapping file USA.keymapping.
Reading keymap from the system.
Couldn't open RGB_DB '/usr/X11R6/lib/X11/rgb'
_XSERVTransmkdir: Owner of /tmp/.X11-unix should be set to root
Loading GLX bundle glxMesa.bundle (using Mesa)
Display mode: Full screen Quartz -- Direct Display
Screen 0 added: 1440x900 @ (0,0)
error opening security policy file /usr/X11R6/lib/X11/xserver/SecurityPolicy
Could not init font path element /usr/X11R6/lib/X11/fonts/misc/, removing from list!
Could not init font path element /usr/X11R6/lib/X11/fonts/TTF/, removing from list!
Could not init font path element /usr/X11R6/lib/X11/fonts/Type1/, removing from list!
Could not init font path element /usr/X11R6/lib/X11/fonts/CID/, removing from list!
Could not init font path element /usr/X11R6/lib/X11/fonts/75dpi/, removing from list!
Could not init font path element /usr/X11R6/lib/X11/fonts/100dpi/, removing from list!
Fatal server error:
could not open default font 'fixed'
OsVendorFatalError
AbortDDX
Quitting XDarwin...
2006-07-26 09:29:32.312 XDarwin[5016] X client process terminated with status 127.
MacBook Pro 2.16, ibook g4 1.33 512 MB RAM, Compaq evo n800v p4-M 2.0 GHz 512 MB RAM   Mac OS X (10.4.6)   and Linux on my compaq Unix rules...

X11 is not part of development tools, so reinstalling that will not do a bit of good. X11SDK is not what you want. Use the "Optional Installs" package on the Tiger DVD. See http://docs.info.apple.com/article.html?artnum=301229

Similar Messages

  • Where To Download X11 For Tiger

    Where do I download the latest Apple supported X11 for Tiger?
    Once I download X11 how do I go about installing it?
    I have a few programs that require the X11 enivroment, and I do not have it installed. I do know that it is on my install disk but I do not have my install disk avaible at the moment.
    I am needing this for Tiger, on a Macbook Pro.
    Thanks

    Try here:
    http://xanana.ucsc.edu/xtal/x11.html
    They have the one for Intel and the PPC one.
    Francine
    Francine
    Schwieder

  • Installing X11 on Tiger

    Following the advice on a previous thread, I'm trying to install X11
    on Tiger using the installation disk, from the "optional install"
    package on disk1. I see four packages ("Applications", "Additional Fonts",
    "Language Translations" and "Printer Drivers") but they're all listed
    as being empty.
    Where is the X11 installation located on the Tiger disks and how do
    I install it?
    Catherine

    Welcome to Apple's Users Help Users Forums.
    Hi Catherine,
    Glad the problem is fixed. You got some great help from Ferd. You have rewards to hand out.
    Gold Star = Helpful = 5 pts w 2 available and Green Star = Solved = 10 pts
    Quote from the emails Apple sends re threads:
    "===============================================
    IF YOU ARE THE AUTHOR OF THE ORIGINAL QUESTION:
    ===============================================
    When you return to view the answers, please mark responses appropriately. Simply login and select the value you desire for applicable responses. As the author of the original question, you may assign a helpfulness value to responses. Please use the following when rating a response:
    None: The response was simply a point of clarification to my original question or didn't really help.
    Helpful: This response helped with a portion of my question, but I still need some additional help.
    Solved: This response has solved my problem completely.
    WHY SHOULD I DO THIS?
    In short, here are 3 reasons why it's worth a few moments of your time:
    1) Other members have taken time out of their day to assist you, so please take a moment to give them credit for the assistance they have provided.
    2) Your rating not only helps your peers earn points toward their status in Discussions, but validates the quality of the solution you've received.
    3) Other readers will be able determine which response(s) helped solve the original question, which will greatly enhance the knowledge and experience for all community members and visitors.
    ===============================================
    We appreciate your participation in Apple Discussions. Thank you for being part of our community.
    Apple Discussions Team"

  • Background job in shell script?

    I run these three commands on the command line to start my Linux gnome session.
    But when I embed them in a script, as follows, it is as if control is never returned from starting the first command in the background. Obviously I am ignorant of some basic principle of scripting ... not quite sure what to search for.
    I'd be grateful if someone could explain what I need to do to adapt the commands to a shell script.
    #!/bin/bash
    Xephyr -screen 1910x1140 2> /dev/null :3 &
    export DISPLAY=:3.0
    ssh bothy gnome-session 2> /dev/null
    }

    @etresoft thanks for taking the time to suggest a solution.
    Actually I think it's a matter of timing, so I think evaluating `jobs -p` waits for the background process? to start, before executing the next scripted command whereas before, the X11 client on bothy was sending to a local X11 server that hadn't had time to completely initialise. When doing it on the command line it has plenty of time while human is inputting next command.
    #!/bin/bash
    # gnome - open a gnome-session on a remote system's X11 client
    # Usage: (eventually! script evolving)
    # gnome host -D DISPLAY
    # Example:
    # gnome bothy -D 3
    Xephyr :3 -screen 1910x1140 2> /dev/null &
    echo `jobs -p`
    export DISPLAY=:3.0
    ssh aegir@bothy gnome-session 2> /dev/null 1> /dev/null &
    echo `jobs -p`
    The above works now. Plus I can see the processes to kill when I'm finished with the X11 session.
    Actually didn't make any difference having the argument :3 in the more sensible place but it makes more sense to me as it did to you although, as I say, it works just fine on the terminal command line when the display number argument is written at the end of the line .... but I don't really understand the syntax of that command. Thanks again.

  • How to deinstall XcodeTools.mpkg?

    To run "gimp" the graphic package I need to install X11 but I did not find it. So I installed XcodeTools. That was totally wrong.
    1. Where to find X11 on the DVD1?
    2. How can I delete the installed files XcodeTools?

    X11 is in the DVD under additional installers, if I remember correctly. Also look for an XCode Tools uninstaller either in that directory or by running the original installer to see if the option is given. It's not really a trivial process I don't think since so much stuff is installed in various directories. Someone will surely be able to give you a better answer than this, but that should get you started ....

  • Where can I get X11?

    Hi, guys,
    I'm trying to get GimpShop working for my Mac, but it needs X11 installed first. The download from apple.com won't work(which the Gimp boys said wouldn't work), and the other option is to install it from my Mac's install DVD.
    Unforunately, I just moved back from Japan, and that install disc is still in seamail somewhere along with the rest of my stuff.
    Anyone know where I can get an X11 download that will work with my OS? (As X11 is freeware I don't believe I'm breaking any rules by asking this, but if I'm wrong please let me know)
    Thanks for any help you can give me!

    hi AWNDR...
    do you have access to your Tiger install DVD? it's on
    there.
    Nope, like I said, still about a month away from me in seamail somewhere.
    if you don't have access to your Tiger DVD, and you
    really need X11, then i think your best option is to
    use XFree86's version.
    see:
    http://xfree86.darwinports.com/
    or
    http://pdb.finkproject.org/pdb/package.php/xfree86
    Thank you again! I'll check them out!

  • Where is X11 located?

    I have software asking where is x11 located, suggestions?

    I've just updated to GIMP 2.8, but when I try to load the app, it asks me to install XQuartz 2.7.1. 
    The Readme for GIMP 2.8 says that the default Apple X11 app (that ships with Lion) won't run GiMP 2.8. 
    At the same time, Apple doesn't support XQuartz.
    What to do?  Install XQuartz with whatever concommittant risks?  Or go back to using GIMP 2.6, which runs fine with Apple's default X11?
    Here's a quote from the website: http://xquartz.macosforge.org/trac/wiki/X112.7.1 
    "OS X Software Updates have included some of the work done by this project, but for various reasons, Apple cannot ship the latest and greatest version offered by this site.  Since our package clobbers Apple's X11.app, their SU will clobber ours.  Because of this, you may experience conflicts after doing a Software Update from Apple.  It is suggested that you install the latest XQuartz release after installing an update to OS X Leopard."
    "For what various reasons??"
    "Clobbers??  Clobber??  Is there some kind of soft-war going on here?  (Sorry for un-pun)
    "You may experience conflicts??"  Really?  Then do I really even want to use GIMP?
    This is getting way too convoluted for me.  Can any kind soul out there clarify for the community?
    Thanks,
    lenms

  • Where's X11? And How Do I Get Stuff Off Of Install Disks With A Beige?

    I just installed GIMP for graphics in case I can't ge thte disappearing Photoshop cursor in classic problem worked out.
    I started up GIMP and it says I need X11. Now I thought it was on the XCodeTools disk, and I thought I had already installed them (do the Developers Tools have to be a certain place for the OS to see them?) - but all the documentations I find tells me it's on OSX install disks themselves.
    Uh-oh.
    It won't LET me open the install disks, because I have a beige. How do I get into the installer - I used XPF and it got to the OS install and the only options I found were to do an archive and install, so I stopped and backed out.
    Don't think I want to go there, just to put in some tools packages. Should I have pushed on through to the next window in the installer or what?
    My nightmare scenario is the installer porks the system folder and I have to do the whole strip-the-guts-out and reinstall it all again..
    (gaah! somebody smack me, I'm SO neurotic about this..)
    How do I get to the X11 installer? Where is it?
    Deb.

    You can download X11 here. http://www.apple.com/support/downloads/x11formacosx.html
    Cheers, Tom

  • Where can i get libfreetype.6.dylib version 18.0.0? X11 has 17.0.0

    I am currently running a php library that requires libfreetype.6.dylib 18.0.0 to work. The latest version of X11 or XQuarts supplies me 17.0.0 which is not enough, where can i find the 18.0.0 version?
    Here is the error msg from the php error log:
    [25-Apr-2014 19:24:11 Europe/Berlin] PHP Warning: PHP Startup: Unable to load dynamic library '/Applications/XAMPP/xamppfiles/lib/php/extensions/no-debug-non-zts- 20121212/imagick.so' - dlopen(/Applications/XAMPP/xamppfiles/lib/php/extensions/no-debug-non-zts-20121 212/imagick.so, 9): Library not loaded: /usr/local/lib/libfreetype.6.dylib Referenced from: /usr/local/lib/libMagickWand-6.Q16.2.dylib Reason: Incompatible library version: libMagickWand-6.Q16.2.dylib requires version 18.0.0 or later, but libfreetype.6.dylib provides version 17.0.0 in Unknown on line 0
    Best Regards,
    Johan

    Hi Ivan,
    Click on "Display all documents." link  to see all documents.
    It has  Component Upgrade Guide SAP ME 6.0.
    Thanks,

  • X11 - where is it? ...and how do i get rid of it?

    hello there!
    yesterday something rode me to install openoffice. when i wanted to start it i got the message that apple x11 is needed (ok, i know you knew that)...
    ...so i took my apple cd and installed that x11 thing. but openoffice still did tell me to install x11! the osx help told me that x11 will be in the utilities folder - but it isn't. this encouraged me to install most of that developer tool stuff or however that is called from my apple cd - and yeah, no open office but about 2gb less space on my hdd and no x11. via spotlight i found some x11 package on my hdd which i then tried to install but it stopped during installation with the message that some error occured...
    ok, my questions are:
    how will i get rid of my stupid a$$ installation of that developer stuff?
    ...and how will i install x11?
    thanks a lot in advance guys........

    x11 needs to be installed from the OS X install cd that shipped with your mbp (its burried in one of the folders, don't remember which off hand - sorry).
    as for removing developer tools... personally, i wouldn't. if you ever plan on installing stuff from source via fink or darwinports or want to install apache/php for some reason, you'll need the developer tools. they do come in very hand, but if you are so incline to remove them, open up a terminal window (/Applications/Utilities) and issue the command
    sudo /Developer/Tools/uninstall-devtools.pl
    that should prompt you for your password. Just walk through it and it'll clear them out.
    If you really want to use open office on os x, i'd highly suggest neooffice
    http://www.neooffice.org/

  • Where do I install X11 from?

    I have a new MacBook Pro and I can't find X11 to install anywhere on either DVD. Do they not have an X11 for Intel binary yet?

    Never mind...didn't scroll down far enough.

  • Where do I get my X11 from?

    Hello Folks,
    I just bought my PowerBook Pro, and it came with two Mac OS X Installation Discs. I don't find the X11User pacakge.
    Any suggections?
    Should I have received an additional DVD that contains it?
    Thanks in advance!

    t is on your installation disk. Put the cd in the drive and run command F and search the cd for the installer. It is an extra option on the install that you must have overlooked.

  • X11 environment variables on MacBook Pro

    Hi
    I have just got my new MacBook Pro and have installed Gimp to run using x11 that came on the apple installation disks however I can't seem to get the xterm to configure correctly.
    GIMP is installed under /sw/bin but the default PATH for x11 does not include this location so I added PATH=$PATH:/sw/bin:/sw/sbin to a newly created .bash_profile. But x11 did not seem to use this file although terminal worked OK.
    After doing a bit of research, I then created a .bashrc file with the PATH defined and changed the .bash_profile to source .bashrc with no other entries.
    Again this worked OK for Terminal but now when I type 'echo $Path' in an x11 xterm the PATH displays two entries for /sw/bin & /sw/sbin. i.e.
    $ echo $PATH
    /usr/bin:/bin:/usr/sbin:/sbin:/usr/X11R6/bin:/sw/bin:/sw/sbin:/sw/bin:/sw/sbin
    Any ideas why? and how can I correct it?
    Macbook Pro 17   Mac OS X (10.4.9)  

    Sorry this was a bit brief; I think I was still asleep when I typed it.
    The reasons are these:
    1. Many fink programs require environment variables and other settings. When you source that init.sh file, it ensures everything is set up to work out of the box. (Among the things it does is to in turn source every relevant file in /sw/etc/profile.d -- take a look in it to see what, if anything, is in there). There is also some code to keep your path trimmed properly, so you don't get repeats pasted on.
    2. Bash is unique in that either .bashrc or .bash_profile, but not both, get sourced. In a rooted X11 environment, everything works properly, but on OS X, where X11 is "rootless," it leads to unexpected behavior like what you saw. As long as you put everything into one file and then tell the other one to source its contents, you should be ok.
    You can also run X11 stuff from Apple's terminal, provided you somewhere in a startup file have something to set the DISPLAY variable, usually to .0.
    I've put more discussion of these things here

  • Where do I send a long list of problems I have with non-functionality with the Lion OSX and new Safari for Lion.

    In the past two weeks I have been documenting my Lion problems.
    First, Arrows gone from finder windows; makes it difficult in comparing long lists of files in folder, or compare documents when reviewing line by line. This is obviously a change by people who do not compare long lists in windows comparing files between versions of projects ... the click to next screen is NOT equal to arrows.
    Second, Finder Redreaw - doesn't. Move files to a fold, if there are a lot of files, they image of the files being moved remains in finder (see attached screen capture) until Finder is restarted and if COPY function is running. last files in Copy queue are not copied.
    Screen capture 5 minutes after moving files to a folder - the selected file images are still in Finder after the move was completed.
    Third, it is SLOW, particularly going to an "Attach file" in email, drawing the content of a folder to select an attachment is long enough for me to go to the kitchen, get a drink and come back. Just like the old days of OS7.
    Fourth, shifting/recentering screen away from where I am working. Several programs, browsers, Adobe Photoshop/inDesign, and dear old Pages re center my screen - not to the center, but if I choose 30 of 70 images in a folder, it will shift … somewhere else in the folder instead of where I just clicked. If I am working on a document in inDesign or PhotoShop it will do the same - the cursor and screen drift elsewhere to find something it has been amused by. Sometimes it is a word, or a file, but often it is off the pastboard and on the etherial pasteboard on which the pages sit. Or if I'm zoomed in on an image, it moves to somewhere else.
    I use a mouse and keyboard, both Apple wireless. I do not use a trackpad, but have a tablet/stylus I am afraid to put into the mix until this crap is stopped.
    Fifth, SAVE AS… is gone. You must unlock, duplicate and edit the duplicate … and must rename it in Finder, or use EXPORT to save as the same format under a new name. SAVE AS… worked. Not broke, why fix it?
    Personal Comment: The problems seem to be the triumph of coked up software engineers ooohing and aaahing over "Wouldn't it be cool if..."   Cool, if they were Microsoft, and required everyone change how they have worked on Macs for the past (almost) three decades. Triumph of brainstorming over functionality.
    Sixth, I can't use Cocoa Booklet, but that really started in OSX 10.6 "Snow Leopard". Most of my X11/Cocoa programs stopped worked about that time. Apple is no longer supporting "open source"?
    But Wait! There's More...
    Seventh, Tonight, trying to download a 1.7 gig archive onto a disk where 280 Gigs were supposedly free, it would not download because, according to the wonderful new Safari and the wonderful new Lion, there is not enough disk space to download a 1.7 gig file in a mere 280 Gigs of free space.
    I might be able to move Snow Leopard onto the iMac, but my deciding factor was that Apple, in its wisdom, decided to make iBook Author unable to run under Snow Leopard. So moving to Snow Leopard means I have lost the ONLY benefit I get from the new computer and the new system.
    This really stinks.

    bigbookjoe wrote:
    In the past two weeks I have been documenting my Lion problems.
    First, Arrows gone from finder windows; makes it difficult in comparing long lists of files in folder, or compare documents when reviewing line by line. This is obviously a change by people who do not compare long lists in windows comparing files between versions of projects ... the click to next screen is NOT equal to arrows.
    Second, Finder Redreaw - doesn't. Move files to a fold, if there are a lot of files, they image of the files being moved remains in finder (see attached screen capture) until Finder is restarted and if COPY function is running. last files in Copy queue are not copied.
    Screen capture 5 minutes after moving files to a folder - the selected file images are still in Finder after the move was completed.
    Third, it is SLOW, particularly going to an "Attach file" in email, drawing the content of a folder to select an attachment is long enough for me to go to the kitchen, get a drink and come back. Just like the old days of OS7.
    Fourth, shifting/recentering screen away from where I am working. Several programs, browsers, Adobe Photoshop/inDesign, and dear old Pages re center my screen - not to the center, but if I choose 30 of 70 images in a folder, it will shift … somewhere else in the folder instead of where I just clicked. If I am working on a document in inDesign or PhotoShop it will do the same - the cursor and screen drift elsewhere to find something it has been amused by. Sometimes it is a word, or a file, but often it is off the pastboard and on the etherial pasteboard on which the pages sit. Or if I'm zoomed in on an image, it moves to somewhere else.
    I use a mouse and keyboard, both Apple wireless. I do not use a trackpad, but have a tablet/stylus I am afraid to put into the mix until this crap is stopped.
    Fifth, SAVE AS… is gone. You must unlock, duplicate and edit the duplicate … and must rename it in Finder, or use EXPORT to save as the same format under a new name. SAVE AS… worked. Not broke, why fix it?
    Personal Comment: The problems seem to be the triumph of coked up software engineers ooohing and aaahing over "Wouldn't it be cool if..."   Cool, if they were Microsoft, and required everyone change how they have worked on Macs for the past (almost) three decades. Triumph of brainstorming over functionality.
    Sixth, I can't use Cocoa Booklet, but that really started in OSX 10.6 "Snow Leopard". Most of my X11/Cocoa programs stopped worked about that time. Apple is no longer supporting "open source"?
    But Wait! There's More...
    Seventh, Tonight, trying to download a 1.7 gig archive onto a disk where 280 Gigs were supposedly free, it would not download because, according to the wonderful new Safari and the wonderful new Lion, there is not enough disk space to download a 1.7 gig file in a mere 280 Gigs of free space.
    I might be able to move Snow Leopard onto the iMac, but my deciding factor was that Apple, in its wisdom, decided to make iBook Author unable to run under Snow Leopard. So moving to Snow Leopard means I have lost the ONLY benefit I get from the new computer and the new system.
    This really stinks.
    http://www.apple.com/feedback/macosx.html

  • How to change the default font size in X11?

    I was a PC/linux user and have switched to use Mac lately (MBP Snow leopard 10.6.8).
    Everything's been running perfectly on Mac so far and I really like it, until I have to run some programs on XQuartz/X11 (XQuart 2.7.0).  
    The default font size in the Xterm is too small. And I hate it that I have to change it everytime i open a new terminal (via vt fonts menu, ctrl+right-mouse click).
    Is there a way to change the default font size "permanently" in XQuartz/X11 ??
    This may be a stupid question to ask in the developer forum but i cant really solve it.
    There's only config. file ~/.Xdefaults they have mentioned so far on Google but i really cant find it regarding to the directorty.
    Thank you very much in advance.

    You would be surprised to find out that is not like this, to get your account blocked you really need to do a lot of damage and posts are not removed unless they are illegal, and *always* it needs more than a person to delete something. That's a site managed by the community, not by some people put in place by a company.
    It is always acceptable to link to external resources as long these resources do provide additional usefull information. Clearly the thread on that side contained much more information than the one here. I observed people linking from there to this forum, but it's not so common, and that's not due to the policy, just because here is more chat and less usefull information.... you will not see endless threads of replies on with "yes, I have the same problem" there.
    Shortly, this is "discussions" and is quite different in approach than the SE model, where everythign is aimed towards getting the be answers UP and removing all the nonsense.
    I wish that Apple would invest more in discussion, and going towards making this more practical.

Maybe you are looking for