Nexuiz...Linux!!??

If you've had any problems with Nexuiz, or would like to report bugs, post here.

Moderators: Nexuiz Moderators, Moderators

Postby Dokujisan » Fri Nov 24, 2006 10:54 pm

ok, I got sound working by reinstallling those vorbis libraries.
Downloading works fine. I downloaded a map earlier with no problem.

Now I'm at the point where I can't seem to get my screen settings right. When I am using 800x600 screen size, it won't fill the screen. It's a little box with a big black border around it. It's true 800x600 on my 1400x900 screen. In Windows, I used 800x600 zoomed to fill my screen. Any suggestions for that?
Dokujisan
Forum addon
 
Posts: 1199
Joined: Sat Oct 07, 2006 4:31 pm
Location: Louisville, Kentucky

Postby KadaverJack » Fri Nov 24, 2006 11:54 pm

Dokujisan wrote:Now I'm at the point where I can't seem to get my screen settings right. When I am using 800x600 screen size, it won't fill the screen. It's a little box with a big black border around it.

You said you have a nvidia card? If you have a TFT (i guess that's the case since that would be a pretty odd resolution for a CRT), put
Code: Select all
Option   "FlatPanelProperties"  "Scaling = aspect-scaled"

under Section "Device" in your /etc/X11/xorg.conf

You also need to add (if it's not already there) the resolution you want to use in Section "Screen". Just apend
Code: Select all
"1024x768" "800x600" "640x480"
to every line that starts with "Modes" in that section.

After restarting X, Nexuiz should be scaled correctly. But you should cnsider using 1200x900 or 600x450 in Nexuiz (because these resolutions will scale without interpolation),
KadaverJack
Site admin and forum addon
 
Posts: 1102
Joined: Tue Feb 28, 2006 9:42 pm

Postby Dokujisan » Sat Nov 25, 2006 12:30 am

awesome! Thank you. I will try that.
Dokujisan
Forum addon
 
Posts: 1199
Joined: Sat Oct 07, 2006 4:31 pm
Location: Louisville, Kentucky

Postby Dokujisan » Sat Nov 25, 2006 6:15 am

ok, that worked! Thank you very much.

How do you setup Nexuiz to use 1200x900 or 600x450?
Dokujisan
Forum addon
 
Posts: 1199
Joined: Sat Oct 07, 2006 4:31 pm
Location: Louisville, Kentucky

Postby esteel » Sat Nov 25, 2006 10:15 am

vid_width 1200
vid_height 900
...
esteel
Site admin and forum addon
 
Posts: 3924
Joined: Wed Mar 01, 2006 8:27 am

Postby Dokujisan » Sun Nov 26, 2006 11:23 pm

I was playing last night and every 20 minutes or so, my FPS would drop to 3-5 and my hard drive light would flash a lot. This would last about 5-8 seconds. Obviously, some sort of process is going on in the background. I didn't have this problem a few days ago when I first starting playing on this linux system. It must've been something that I installed over the past couple of days. Problem is, I have installed lots of little things using apt-get and synaptic as I'm trying to set my computer up to do web development. I followed various instructions mostly from ubuntuguide.org.

Do you have any suggestions for how I should pinpoint the process that is causing this? Is there some kind of activity log? Hopefully, it was a one-time incident and it will jsut go away :-)
Dokujisan
Forum addon
 
Posts: 1199
Joined: Sat Oct 07, 2006 4:31 pm
Location: Louisville, Kentucky

Postby tZork » Sun Nov 26, 2006 11:46 pm

Dokujisan wrote:I was playing last night and every 20 minutes or so, my FPS would drop to 3-5 and my hard drive light would flash a lot. This would last about 5-8 seconds. Obviously, some sort of process is going on in the background. I didn't have this problem a few days ago when I first starting playing on this linux system. It must've been something that I installed over the past couple of days. Problem is, I have installed lots of little things using apt-get and synaptic as I'm trying to set my computer up to do web development. I followed various instructions mostly from ubuntuguide.org.

Do you have any suggestions for how I should pinpoint the process that is causing this? Is there some kind of activity log? Hopefully, it was a one-time incident and it will jsut go away :-)


Settin up yer system for web development i guess you have installed varios server, like apache and mysql. i eould not be suprized if one of thise where the directly, or indirectly responsible. It may simply be that you are running out of ram with thise new services hogging memory in the background so the system needs to swap.

you could try :
Code: Select all
apache2ctl stop
mysqladmin shutdown

before plying nexuiz. to start thise servers again use :
Code: Select all
apache2ctl start
/etc/rc3.d/S20mysql start   (this could be a bit diffrent dependning on your system)
HOF:
<Diablo> the nex is a "game modification"
<Diablo> quake1 never had a weapon like that.
<Vordreller> there was no need for anything over 4GB untill Vista came along
<Samua>]Idea: Fix it? :D
<Samua>Lies, that only applies to other people.
tZork
tZite Admin
 
Posts: 1337
Joined: Tue Feb 28, 2006 6:16 pm
Location: Halfway to somwhere else

Postby esteel » Mon Nov 27, 2006 9:10 am

tZork wrote:
Code: Select all
/etc/rc3.d/S20mysql start   (this could be a bit diffrent dependning on your system)

the 'real' scripts should be in /etc/init.d/ probably /etc/init.d/mysql start/stop/restart ..
esteel
Site admin and forum addon
 
Posts: 3924
Joined: Wed Mar 01, 2006 8:27 am

Postby KadaverJack » Mon Nov 27, 2006 10:07 am

I don't think apache or mysql are to blame for that. The flashing hdd led makes it sound a lot like it was an updatedb cronjob ;)
(updatedb indexes files on your hdd, so you can perform quick searches with "locate")

Fix: either uninstall the package "findutils" or become root, open /etc/cron.daily/find with a text editor and put "exit 0" in the second line.
KadaverJack
Site admin and forum addon
 
Posts: 1102
Joined: Tue Feb 28, 2006 9:42 pm

Postby Dokujisan » Tue Nov 28, 2006 5:01 am

ok, I have this in /etc/cron.daily/

0anacron apt bsdmainutils logrotate slocate sysklogd
apport aptitude find.notslocate man-db standard

I edited find.notslocate and put exit 0 in the second line.

Should I do anything with the rest?

I haven't setup MySQL, PostgreSQL or Apache yet on this computer. I've just setup things like ie4linux, pixel32, java sdk, eclipse, ruby, and some video codecs.
Dokujisan
Forum addon
 
Posts: 1199
Joined: Sat Oct 07, 2006 4:31 pm
Location: Louisville, Kentucky

PreviousNext

Return to Nexuiz - Support / Bugs

Who is online

Users browsing this forum: No registered users and 1 guest

cron