Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Iron

Pages: [1]
1
Linux Specific Issues / Re: Increase performance....
« on: September 02, 2007, 08:44:05 pm »
In Ubuntu, :3 is on f9, I believe that f7 is actually 1? I'm not sure how that works...  And thanks for the tips, good discussions here  :lol:.

2
Linux Specific Issues / Re: Increase performance....
« on: September 01, 2007, 09:24:06 pm »
Oh, no, you can replace
Code: [Select]
X :3 -ac & nvidia-settings --load-config-onlywith
Code: [Select]
X :3I'm not sure if there's any specifics for ati or others, sorry.

Though I will mention I have NOT tested it without the nvidia specific settings.

[ Double-post merged. --Karyuu ]

3
Linux Specific Issues / Increase performance....
« on: September 01, 2007, 09:04:50 pm »
Some users may gain some performance benefits if they run there client in a session.

as such: (psclient script)
Code: [Select]
#!/bin/bash

X :3 -ac & nvidia-settings --load-config-only  # Launches a new X session on display 3
cd /path/to/PlaneShift #goto ps dir
sleep 3 #break while x server starts
chmod 770 psc
export LD_LIBRARY_PATH=libs/:$LD_LIBRARY_PATH  #set lib path
DISPLAY=:3 exec ./psc "$@" #launches ps
Make sure you change the directory to your own!!This will run the ps client on a new x session. To leave this session after exiting the client, or to force the client to quit press [ctrl]+[alt]+[bkspc]. To do a sort of alt+tab you can press [ctrl]+[alt]+[f7]  (as per my ubuntu, however I'm not sure if f7 will bring you to your normal desktop on other distros).

Warning -> This does require root (or sudo/su), use at your own risk.


You can also give your client more cpu time, by adding
Code: [Select]
renice -10 -n psc  #sets nice -10 (Gives more cpu time)To the end of that file. Once again, use at your own risk.
Feel free to question me :P

Pages: [1]