Apple X11 server beta out

Am I correct in assuming this will not affect my X-windows install via fink (all in /sw - right?). What about XDarwin - any conflicts?
 
Uh, I downloaded and installed it - now what? Where the heck is it? How/where do I run it or apps or install apps and tool kits... Apple's site has ZERO information or links on using this! http://www.apple.com/macosx/x11/ - and excuse me if some of us are without a CS degree!

Would it be as simple as launching an app from terminal? Nope. I can run Emacs, but I think I could do this before. It launches within a terminal window and without menus - it not in an Aqua window that is for sure. Gimp results in:

Gtk-WARNING **: cannot open display:

Of course, I did not expect this to be this simple or to really work like this, but some instructions or information would be a no brainer. No offense, but I cannot stand rummaging through the various XFree and OpenDarwin sites - they seem to thrive on making things hard to find and hard to understand. What is about *nix that makes everyone say it is the greatest thing since the wheel yet keep such basic information on running it so convoluted! WHY can't Apple have some information detailing how to use this to install and run apps? All it would take is someone who can write a few clear paragraphs and a couple of screen shots. Jees oh Pete!

Forgive my venting, but I think this is completely absurd - especially for Apple.

P.S. After the install Orobus OS X and XDarwin still work (full screen and rootless).
 
I feel your pain. I too have no idea where it went or how to start it.

Let me know if you figure it out.
 
Here's what I've found so far:

Run /Applications/X11. You'll get an XTerm. Run X apps from this, since they won't find the X server if you use Terminal. The X term shell doesn't run /etc/csh.login, so your path might be screwed up. It uses /etc/csh.cshrc instead.

So far, that's about the only ugliness I've come across. This seems much faster than XDarwin, too.
 
Alright, here's what I know at the moment:

First to my own confusion, there are two different packages on the apple.com web page:

1. It's the SDK package, which exclusively contains includes, libraries and manual pages. So, no binaries that one could run. I first blindly tried out this packages. Trying to run my old XDarwin binaries and hope that the libraries would do something, but - of course, without success!
After resignation, I went back to apple.com and found the second package.
Oh, btw, as I realized afterwards by simply looking at the name of the package, I figured that it was just the Sun Java Support...

2. The second one is significantly larger, around 40 something megabyte and it seems to contain the whole thing based on XFree86 4.2.1 (the complete rootless server implementation aswell as the client libraries)
I'm not yet finished with the download. And I won't check it out today -> It's late here, but I think the problem boils down to the fact, that the software is by now not sufficiently documented and Apple does not mark the different packages on their web page well enough.

So, watch out that you get the right package, the second one should contain all the binaries you need.
Good luck and see you tomorrow,
Viktor
 
Man what a great app. I had to delete my .xinitrc file to use the OS X window manager. I can't wait for updates for this app.
 
Now that I got the right file it does seem nice. I just need to figure out how to personalize it (especially the terminal colors).

-Rob
 
This thing flies. Loads in one bounce on my g4/450. Everything seems to run much much much faster...

xterms are quick example:
time ls -l /usr/X11R6/bin
in xterm:
real 0m0.133s
user 0m0.030s
sys 0m0.000s


in terminal.app:
real 0m0.613s
user 0m0.000s
sys 0m0.010s

thats 4x faster... gimp loads in seconds too. I must say this is by far the best app to be released today.

Brian
 
Any idea where it looks at startup? For example what tells it to load one xterm? How can I change that and change the default colors?

I would assume that it is possible to alter this user by user, but it doesn't generate a .xinitrc in ~/, and the com.apple.X11 in Preferences just sets your "Applications" menu in X11 and your preferences.
 
He's just saying that it's faster. If you type "time" before a command *nix spits out how long it took to complete that command. He's showing that it's faster to ls -l everything in X11R6/bin under xterm than under the standard terminal. My results were even more dramatic than his. Interesting. I hope some of what makes xterm so fast can be applied to Terminal.app.
 
laz:
To run apps on X startup you need to create an .xinitrc by hand, and at the end list /usr/X11R6/bin/quartz-wm for the window manager, ie:
Code:
PATH=$PATH:/sw/bin

xterm -font 9x15 &
Eterm --font 9x15 --scrollbar=0 &
gimp &

/usr/X11R6/bin/quartz-wm

I have the path set so the X server knows where to look to find all the fink installed X binaries, otherwise you need the full path. and what do you mean by changing the default colors? You mean the default colors xterm uses for foreground/background?

You also might want to make sure you have /usr/X11R6/man in your man search path. There is a _very_ brief man page for quartz-wm, and also one for Xquartz which is the X server that is run (as opposed to Xdarwin which is what the xonx project runs). Hopefully they will have better man pages in the future :)

wiz:
as laz said time is a command that times how long a command takes to complete giving how much time the command takes to run in user space, system space (system space being things going on the kernel like disk io) and the total time it took to run. Basically what I was testing was the scroll speed of xterm vs. Terminal.app scrolling the ls output of /usr/X11R6/bin which is 136 lines on my box. Scrolling speed in terminals is an issue on just about any box and is a great test to see how the X server is working.
 
I just downloaded the beta, and I think it's incredible. I use a remote x-window connection to my linux machines in the basement, and it works flawlessly, and much faster than XDarwin did it. Gimp works much faster over the network now, and everything else just zips by. I'm really impressed, and partially surprised, with this.
 
Duh - I can't believe I downloaded the wrong file - but since I am not alone in this error, this was a complete bubble head mistake by whoever wrote this page for Apple.
 
btoneill, I love you.

I had problems with not seeing any aqua window manager thingie. Aparently it was because I already had an .xinitrc which didn't have that quartz-wm command. Now it works great.

OpenOffice.org is usable! It's incredible how much faster this is and to be able to actually use that program. I'm having trouble with xmms but everything else rocks. This is better than safari!
 
Tryin to run dselect with Fink (installed fink after installing X11beta from apple), and I'm getting an error code of 100 on the install script from the system-xfree86 placeholder in Fink. Not quite sure what's wrong here. BTW, I also have the X11 SDK from apple installed also. Thanks for any help you can give.

--Jason

P.S. X11 beta really rocks though :)
 
Back
Top