Nexuiz-2.5-2 to nexuiz-2.5.1 package patch

This only concerns users who currently have nexuiz-2.5-2 installed.
If you want to upgrade to 2.5.1 without downloading the full 600+ MB package, use the following PKGBUILD which uses the patch provided by Alientrap.
# Contributor: Xyne
# Contributor: Jaroslaw Swierczynski <[email protected]>
# Contributor: Roman Kyrylych <[email protected]>
# Contributor: Camille Moncelier <[email protected]>
pkgname=nexuiz
pkgver=2.5.1
_zipver=$(echo $pkgver | sed 's/\.//g')
pkgrel=1
arch=('i686' 'x86_64')
pkgdesc="a free, open-source first person shooter"
url="http://www.nexuiz.com/"
license=("GPL")
depends=('alsa-lib' 'curl' 'libjpeg' 'libmodplug' 'libvorbis' 'libxpm' 'libxxf86dga' 'libxxf86vm' 'sdl')
makedepends=('mesa')
source=(http://downloads.sourceforge.net/$pkgname/${pkgname}patch-$_zipver.zip)
md5sums=('8c3625a1ed2b1f26a1f9943eeb19be0f')
build() {
if [ ! -f "/var/lib/pacman/local/nexuiz-2.5-2/files" ]; then
echo "the package nexuiz-2.5-2 was not found on your system"
echo "this PKGBUILD will only patch nexuiz-2.5-2"
return 1
fi
for _FILE in $(cat /var/lib/pacman/local/nexuiz-2.5-2/files); do
[ "$_FILE" == '%FILES%' ] && continue
_OLD_PATH="/$_FILE"
[ -f "$_OLD_PATH" ] || continue
echo "copying $_OLD_PATH"
_NEW_PATH="$pkgdir/$_FILE"
_NEW_DIR=$(dirname $_NEW_PATH)
mkdir -p "$_NEW_DIR"
cp "$_OLD_PATH" "$_NEW_PATH"
done
_nexdir="$pkgdir/opt/nexuiz"
_enginesource_date="20090501"
_install_dir $srcdir/Nexuiz/Docs $_nexdir/docs
_install_dir $srcdir/Nexuiz/data $_nexdir/data
_install_dir $srcdir/Nexuiz/havoc $_nexdir/havoc
_install_dir $srcdir/Nexuiz/server $_nexdir/server
find $_nexdir/server -name "*_windows.bat" -exec rm {} \;
find $_nexdir/server -name "*_mac.sh" -exec rm {} \;
cd $srcdir/Nexuiz
bsdtar -x -f sources/enginesource${_enginesource_date}.zip || return 1
cd darkplaces
# here's a working kludge to build all three binaries at once but don't use it ;)
# make CPUOPTIMIZATIONS="${CFLAGS}" nexuiz || make CPUOPTIMIZATIONS="${CFLAGS}" nexuiz || return 1
# build the binaries separately instead to avoid truncated files
make CPUOPTIMIZATIONS="${CFLAGS}" cl-nexuiz || return 1
make CPUOPTIMIZATIONS="${CFLAGS}" sdl-nexuiz || return 1
make CPUOPTIMIZATIONS="${CFLAGS}" sv-nexuiz || return 1
# install the compiled binaries
install -Dm755 nexuiz-glx nexuiz-sdl nexuiz-dedicated -t $_nexdir
function _install_dir {
_src_dir=$1
_dest_dir=$2
_n=${#_src_dir}
for _file in $(find $_src_dir -type f)
do
_dest_file=${_dest_dir}${_file:$_n}
install -Dm644 $_file $_dest_file
done
If you do not yet have Nexuiz installed, wait until I upload the latest version (nexuiz-2.5.1).

Hello Tarek,
There are 2 possible ways of migrating a TopLink 2.5 builder based project and it's associated "text" files (i.e. .descriptor, .topclass, .etc) to TopLink 9.0.3:
1a> Run the 9.0.3 package renamer on the Java files (and recompile). Then...
1b> Manually create the 9.0.3 mapping workbench .mwp project and create the "newer" XML versions of the descriptor, class and table files by using the "old" 2.5 based files as a guide.
OR...
2a> Convert the 2.5 project first to an older version of TopLink (i.e 4.0.2)
2b> Use the 4.0.2 project renamer and then import the 2.5 .project file into the 4.0.2 mapping workbench.
2c> After this process is done, repeat again to convert the 4.0.2 project to version 9.0.3.
Hope this helps.
Martin
Strategic Implementation Consultant
Oracle9iAS Technical Services

Similar Messages

  • [solved.. kinda]Nexuiz problem with a mouse

    When I move my mouse in Nexuiz, sometimes cursor teleports futher, it doesnt moves smoothly. It's very hard to play with this problem, maybe anyone knows a solution?
    I'm using USB mouse, here's my xorg.conf:
    Section "InputDevice"
    Identifier "Evdev Mouse"
    Driver "evdev"
    Option "Name" "A4Tech Wireless Battery Free Optical Mouse"
    Option "CorePointer"
    EndSection
    Last edited by Mardukas (2007-10-14 17:23:18)

    Well, another fix would be to switch games with Tremulous.:D And that way you can join us playing, against the Gentoo team.;). Just a suggestion, but you are invited anyway.

  • Dem2vid - script to capture & encode nexuiz demos

    Simple script to encode a .dem to an aac/avc video.
    To produce a high quality mp4 simply specify the demo to encode in addition to your desired width & file size. If no file size is specified a VBR encode will be done.The demo file must be within your ~/.nexuiz/data/demos/ directory, I recommend renaming it to something simple beforehand.
    #!/bin/bash
    #Script to capture demo, calculate bitrate, scale & encode to aac/avc
    #uses ffmpeg presets within ~/.ffmpeg (-vpre fast/-vpre vhq)
    #examples: http://svn.mplayerhq.hu/ffmpeg/trunk/ffpresets
    #depends: mplayer, faac, ffmpeg & x264 (>20081002 recommended)
    #use: ./dem2vid yourDemo.dem requiredWidth requiredSizeInMB
    DEM="$1"
    WID="$2"
    MB="$3"
    captureDemo() {
    LOC=`locate nexuiz-linux-glx.sh`
    ${LOC} -demo +cl_capturevideo 1 +cl_capturevideo_fps 24 +playdemo demos/${DEM}
    info() {
    VID=`find ~/.nexuiz/data/video/ -iname "dpvideo*.avi" -print | tail -1`
    mplayer -identify -frames 0 ${VID} 2>/dev/null > /tmp/$$
    RESX=`grep ID_VIDEO_WIDTH /tmp/$$ | cut -d"=" -f2`
    RESY=`grep ID_VIDEO_HEIGHT /tmp/$$ | cut -d"=" -f2`
    LENGTH=`grep ID_LENGTH /tmp/$$ | cut -d"=" -f2`
    rm /tmp/$$ && echo ${RESX} ${RESY} ${LENGTH} ${VID}
    height() {
    ASPECT=$(echo "scale=3; ${RESX} / ${RESY}" | bc)
    HEIGHT=$(echo "${WID} / ${ASPECT}" | bc)
    MOD16=$(( ${HEIGHT} / 16 * 16 ))
    echo ${MOD16}
    bitrate() {
    RATE=$(echo "(( "$MB" * 1024 ) / ${LENGTH}) - 16" | bc)
    R8=$(echo "(( ${RATE} * 8 ) * 1.02)" | bc)
    KBPS=`echo "tmp=${R8}; tmp /= 1; tmp" | bc`
    echo ${KBPS}
    encode() {
    ffmpeg -i ${VID} -an -pass 1 -s ${WID}x${MOD16} -vcodec libx264 -vpre fast \
    -b ${KBPS}k -threads 0 -rc_eq 'blurCplx^(1-qComp)' -level 41 "$DEM.mp4"
    ffmpeg -i ${VID} -acodec libfaac -ac 2 -ab 128k -async 2 -pass 2 \
    -s ${WID}x${MOD16} -vcodec libx264 -vpre vhq -b ${KBPS}k -threads 0 \
    -rc_eq 'blurCplx^(1-qComp)' -level 41 -y "$DEM.mp4"
    vbr() {
    ffmpeg -i ${VID} -acodec libfaac -ac 2 -aq 100 -async 2 \
    -s ${WID}x${MOD16} -vcodec libx264 -vpre vhq -crf 20 -threads 0 \
    -rc_eq 'blurCplx^(1-qComp)' -level 41 "$DEM.mp4"
    captureDemo;
    info;
    height;
    if [ -n "$3" ];
    then
    bitrate;
    encode;
    rm *2pass*.log
    else
    vbr;
    fi
    rm ${VID} && echo Finished!
    If you wish to try my specific ffmpeg presets, they can be found here: http://bbs.archlinux.org/viewtopic.php? … 71#p441071
    An example of the VBR encode: http://www.mediafire.com/?d1dd2xczz9z
    I hope it's of some use.

    Updated to retain quality when used with Nexuiz 2.5.1 & removed mplayer dependency.
    #!/bin/sh
    #Script to capture demo, calculate bitrate, scale & encode to mp4
    #uses ffmpeg presets within ~/.ffmpeg (-vpre fast/-vpre vhq)
    #examples: http://svn.mplayerhq.hu/ffmpeg/trunk/ffpresets
    #depends: faac, ffmpeg & x264 (>20081002 recommended)
    #use: ./dem2vid yourDemo.dem requiredWidth requiredSizeInMB
    DEM="$1"
    WID="$2"
    MB="$3"
    DEST="${1%.*}.mp4"
    capture() {
    LOC=`locate nexuiz-linux-sdl.sh | tail -1`
    ${LOC} -demo +cl_capturevideo 1 +cl_capturevideo_ogg 0 \
    +cl_capturevideo_fps 24 +playdemo demos/${DEM}
    VID=`find ~/.nexuiz/data/video/ -iname "dpvideo*.avi" -print | tail -1`
    echo "Demo captured to ${VID}"
    info() {
    ffmpeg -i ${VID} 2> /tmp/$$
    TH=`grep Duration /tmp/$$ | cut -d":" -f2 | cut -c 2-3`
    TM=`grep Duration /tmp/$$ | cut -d":" -f3`
    TS=`grep Duration /tmp/$$ | cut -d":" -f4 | cut -c 1-5`
    SEC=$(echo "( ${TH} * 3600 ) + ( ${TM} * 60 ) + ${TS}" | bc)
    RESX=`grep Video: /tmp/$$ | grep -o ....x | tr -d 'x '`
    RESY=`grep Video: /tmp/$$ | grep -o x.... | tr -d 'x,'`
    rm /tmp/$$ && echo ${RESX} ${RESY} ${SEC}
    height() {
    ASPECT=$(echo "scale=3; ${RESX} / ${RESY}" | bc)
    HEIGHT=$(echo "${WID} / ${ASPECT}" | bc)
    MOD16=$(( ${HEIGHT} / 16 * 16 ))
    echo ${MOD16}
    bitrate() {
    RATE=$(echo "(( "$MB" * 1024 ) / ${SEC}) - 16" | bc)
    R8=$(echo "(( ${RATE} * 8 ) * 1.02)" | bc)
    KBPS=`echo "tmp=${R8}; tmp /= 1; tmp" | bc`
    echo ${KBPS}
    encode() {
    ffmpeg -i ${VID} -pass 1 -s ${WID}x${MOD16} -vcodec libx264 -vpre fast \
    -b ${KBPS}k -threads 0 -rc_eq 'blurCplx^(1-qComp)' -level 41 -an "$DEST"
    ffmpeg -i ${VID} -acodec libfaac -ac 2 -ab 128k -async 2 -pass 2 \
    -s ${WID}x${MOD16} -vcodec libx264 -vpre vhq -b ${KBPS}k -threads 0 \
    -rc_eq 'blurCplx^(1-qComp)' -level 41 -psnr -y "$DEST"
    vbr() {
    ffmpeg -i ${VID} -acodec libfaac -ac 2 -aq 100 -async 2 \
    -s ${WID}x${MOD16} -vcodec libx264 -vpre vhq -crf 20 -threads 0 \
    -rc_eq 'blurCplx^(1-qComp)' -level 41 -psnr "$DEST"
    capture;
    info;
    height;
    if [ -n "$3" ];
    then
    bitrate;
    encode;
    rm *2pass*.log
    else
    vbr;
    fi
    rm ${VID} && echo "Finished! Saved as ${DEST}"
    Last edited by ahaslam (2009-06-01 18:19:45)

  • Question about Nexuiz game? Sorry if this is wrong forum.

    If any here has played nexuiz, please tell me how to get past the bot games. Maybe I downloaded the wrong version or game but I can't seem to get to anything other bot matches. I want the regular doom or quake type of game and not the bots. I don't have many resources and my internet is very expensive. I work on a ship. The alien traps forum won't let me register to ask my questions there.
    Thanks

    I have been to the game developer forum and they are not accepting new registrations at this time. So with nowhere else to turn I came here hoping to here from the person who suggested nexuiz in the first place.
    Didn't mean to upset anyone. I will be needing your knowledge in the future. Don't want to burn bridges.
    Thanks

  • How to get nexuiz to work?

    i compiled nexuiz for arch-64 but it gives me an error about missing menu's and stuff and says to add -basedir=/path/to/nexuiz after the command to launch the program but that doesn't help. 
    edit- i see there's a stack overflow going on: what to do?
    ^7Menu_Error: stack overflow
    ^7QuakeC crash report for menu:
    ^7s9094: STORE_F    self (=entity 112), GLOBAL4
    ^7s9095: STORE_F     (=##up), GLOBAL7
    ^7s9096: STORE_F    GLOBAL135, GLOBAL10
    ^7s9097: ^3CALL3      Menu_GetItemEx (=Menu_GetItemEx())
    ^7             : Menu_GetItem : statement 3
    ^7             : Menu_GetItem : statement 3
    ^7             : Item_DataLink_Update : statement 13
    ^7             : Item_DataLink_Text_DataEvent : statement 0
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_DataLink_Text_DataEvent : statement 45
    ^7             : Raise_DataEvent : statement 7
    ^7             : Item_EditBox_Update : statement 20
    ^7             : Raise_Update : statement 6
    ^7             : _Menu_ProcessUpdate : statement 18
    ^7             : _Menu_ProcessUpdate : statement 34
    ^7             : _Menu_ProcessUpdate : statement 34
    ^7             : _Menu_ProcessUpdate : statement 34
    ^7             : _Menu_ProcessUpdate : statement 34
    ^7             : _Menu_ProcessUpdate : statement 34
    ^7             : _Menu_ProcessUpdate : statement 34
    ^7             : _Menu_ProcessUpdate : statement 34
    ^7             : _Menu_ProcessUpdate : statement 34
    ^7             : Menu_Process : statement 12
    ^7             : Menu_Frame : statement 40
    ^7             : m_frame : statement 5
    ^7             : m_draw : statement 17
    ^7Falling back to normal menu
    ^7OpenGL Backend shutting down

    oh, and the bots just spawn there and wiggle back and forth, they don't even run around :-/

  • Nexuiz 2.0 is out :)

    Main updates:
    -Single player campaign
    -Better AI
    -New particle system
    -Weapon changes
    -5 new maps
    -Performance enhancement
    -Shaders (GLSL)
    Videos of 2.0:
    Youtube: http://www.youtube.com/watch?v=4E5kRPp9m3E
    Higher quality: http://verm.planetnexuiz.com/Nexuiztrailer.avi
    Download the game:
    http://prdownloads.sourceforge.net/nexu … p?download
    Hopefully it will be soon updated in AUR (brain0)

    brain0 wrote:Could you please leave me a comment when you flag it out of date. I don't get notified for the out-of-date flag.
    Sure, I'll do so the next time
    brain0 wrote:I am downloading now and will then build, test and upload it. Expect a new package the next 2 hours.
    No stress..

  • I would like to receive some hardware recommendations/advice

    I am building a new computer, and I have to start from almost nothing due to bad or old hardware.
    I am able to reuse the following:
    2 SATA HDs (file storage drives)
    2 IDE HDs (/ and /home -- although I'd rather switch to all SATA)
    DVDRW
    My case and power supply are decent brands/models, but the PS is noisy and the case has a few missing parts.
    Here are the components that I am considering:
    Antec 300 case
    Corsair 520HX ps
    Gigabyte GA-EP35C-DS3R motherboard (socket 775, 4xDDR2 slots - 8 GB, 2xDDR3
    Intel E8400 processor
    either the Zalman 9500 or OCZ Vendetta 2 heatsink/fan (Which thermal compound should I use?)
    eVGA AKIMBO 8800 GT 512mb video card
    either 2x1gb or 2x2gb ddr2-6400 ram (Which brand??? I'm looking at the OCZ model with the heatpipe and heatsinks)
    (ideally) 2 SATA HDs for / and /home
    2-3 120mm fans (two higher-CPM, low db for intake and one lower-CPM, low db for side exhaust)
    I plan to run Arch 32 for the time being. It's not a big deal with Linux to make a backup of /etc and reinstall, so I will upgrade when Flash and Java are available as 64-bit binaries. Is it better to go with the 2x1gb or 2x2gb ram? I plan to use DDR3 in a couple years once that memory type is cheap enough. I realize that 32-bit OSes can only efficiently use ~3.5gb of ram, but I'd like to have as much as I can use -- especially when the price difference between 2gb and 4gb is very small.
    I would wait for the Nehalem architecture to arrive and be around for six months, but I need a new computer now. I'm tired of dealing with constant freezes and crashes that are definitely due to a hardware problem. I also need this system to last a few years. I'll be really happy if I can get seven years out it like my old system (1999-2006). This new system was a free hand-me-down (for which I am grateful, of course), but it's dying...
    I will use my system for the following:
    Warsow, Nexuiz, Tremulous, Savage, Postal 2, Darwin....
    Valve/id games
    some other games through WINE/Cedega
    small XMPP server (openfire)
    3D modeling/rendering
    image/video editing (nothing major like HD)
    audio/video conversion/transcoding
    VirtualBox for testing OSes and jailing WinXP for those two programs that aren't available for Linux
    How does my hardware configuration sound? Is it happy with Linux? How are nVidia nForce motherboards? How well do they work with Linux? I'd prefer to not have to use binary blobs. I'm making one exception with the video card. I know that ATI drivers are getting better in that respect, but the 8800 GT kills everything else out there in terms of price, performance, and power usage.
    Speaking of power usage, I want the system to be as efficient, cool, and quiet as possible. I don't plan to overclock, but I do know that the E8400 can easily to up to 4GHz on air.
    I have heavily based the specifications on suggestions at mysuperpc.com (and its forums), so the system is mostly in the "sweet spot" of price vs performance.
    Thanks in advance for any advice/suggestions/comments!

    mrbug wrote:Antec 300 case
    What's the Antec 300 case? You mean the Antec p183, which hasn't even come out yet? That would be nice to have... Or did I miss something?
    mrbug wrote:either the Zalman 9500 or OCZ Vendetta 2 heatsink/fan (Which thermal compound should I use?)
    Well the heatsink/fan you get depends on how quiet you want it to be. If you want it to be as quiet as possible, I would suggest Arctic Cooling Accerlero, then have a case fan blow the heat out. If noise isn't something you're worried about, Zalman is a great choice. For thermal compound, I use Arctic Silver 5. Other people may suggest something else. If you don't think having just a heatsink and a case fan to control airflow is enough, I would urge you to check out SilentPCReview (SPR), especially their forums.
    mrbug wrote:Is it better to go with the 2x1gb or 2x2gb ram?
    Well if you want 4 GB of RAM, you would do 2x2GB of RAM. If you want 2 GB you could have either 1x2GB of RAM or 2x1GB of RAM. It doesn't matter unless you're dual channeling. In that case, you want more sticks, each with less memory.
    mrbug wrote:I'll be really happy if I can get seven years out it like my old system (1999-2006).
    7 years without upgrades? That's asking for quite a lot. I think asking for more than 5 years without upgrades is a lot as it is. What I would really suggest is take it down a notch and upgrade certain components as time goes along. For example, one year you'll replace the graphics card, another year replace CPU, mobo and RAM, another year replace fans and heatsinks, another year replace the case. That way you don't need to splurge a bunch of money at one time building a whole new system, and your system will always be recent.
    Anyway, sounds like more than anything, you should really check out SPR and maybe you want to have a sort of rolling update with your PC, which is what I do. The only time I'll be building a whole new PC from the ground up is when I need an additional machine.

  • Root partition suddenly full while updating packages with Pacman

    Hello
    I'm not sure if this is a problem with Pacman, but my root partition seems to have become completely full while updating my system using pacman -Syu. Before updating anything, there seems to have been an update to a new version of Pacman (3.3.1-1) that needed to be installed before updating packages.
    In the middle of the updates, I got this error:
    error: error writing to file '/var/cache/pacman/pkg/openoffice-base-3.1.1-2-x86_64.pkg.tar.gz': No space left on device
    Also, I don't know if this is related, but I got a lot of 'not found' errors after that.
    The entire output from everything:
    ~ $ sudo pacman -Syu
    Password:
    :: Synchronizing package databases...
    core 34.6K 101.4K/s 00:00:00 [#####################] 100%
    extra 427.5K 394.3K/s 00:00:01 [#####################] 100%
    community 374.7K 362.2K/s 00:00:01 [#####################] 100%
    :: The following packages should be upgraded first :
    pacman
    :: Do you want to cancel the current operation
    :: and upgrade these packages now? [Y/n] y
    resolving dependencies...
    looking for inter-conflicts...
    Targets (1): pacman-3.3.1-1
    Total Download Size: 0.60 MB
    Total Installed Size: 2.10 MB
    Proceed with installation? [Y/n] y
    :: Retrieving packages from core...
    pacman-3.3.1-1-x86_64 618.9K 455.6K/s 00:00:01 [#####################] 100%
    checking package integrity...
    (1/1) checking for file conflicts [#####################] 100%
    (1/1) upgrading pacman [#####################] 100%
    ~ $ sudo pacman -Syu
    :: Synchronizing package databases...
    core is up to date
    extra is up to date
    community is up to date
    :: Starting full system upgrade...
    resolving dependencies...
    looking for inter-conflicts...
    Targets (42): taglib-extras-1.0.1-1 qt-4.5.3-2 liblastfm-0.3.0-4
    loudmouth-1.4.3-1 libmtp-0.3.7-1.1 amarok-2.2.0-1 apr-1.3.9-1
    db-4.8.24-1 apr-util-1.3.9-3 apache-2.2.13-3 bluez-4.54-1
    python-2.6.3-1 dbus-python-0.83.0-2.1 device-mapper-2.02.53-1
    eclipse-3.5.1-1 gpm-1.20.6-3 perl-5.10.1-3 groff-1.20.1-3
    vim-7.2.266-1 gvim-7.2.266-2 heimdal-1.2.1-7 inkscape-0.46-13
    iproute2-2.6.29-2 lib32-db-4.8.24-1 lib32-heimdal-1.2.1-7
    libical-0.44-1 libsasl-2.1.23-2 lm_sensors-3.1.1-2
    lvm2-2.02.53-1 nexuiz-data-2.5.2-1 nexuiz-2.5.2-1
    redland-1.0.9-4 openoffice-base-3.1.1-2 pam-1.0.4-2
    php-5.3.0-5 pstoedit-3.50-1 ruby-1.9.1_p243-2 soprano-2.3.1-1
    texlive-bin-2009.4-1 texlive-core-2009.15574-1 wget-1.12-1
    xchat-2.8.6-5
    Total Download Size: 1354.95 MB
    Total Installed Size: 2035.02 MB
    Proceed with installation? [Y/n] y
    :: Retrieving packages from core...
    db-4.8.24-1-x86_64 4.7M 432.0K/s 00:00:11 [#####################] 100%
    device-mapper-2.02.... 479.0K 287.9K/s 00:00:02 [#####################] 100%
    gpm-1.20.6-3-x86_64 173.2K 243.7K/s 00:00:01 [#####################] 100%
    perl-5.10.1-3-x86_64 13.5M 412.5K/s 00:00:33 [#####################] 100%
    groff-1.20.1-3-x86_64 4.1M 365.7K/s 00:00:12 [#####################] 100%
    heimdal-1.2.1-7-x86_64 2.8M 368.5K/s 00:00:08 [#####################] 100%
    iproute2-2.6.29-2-x... 489.0K 303.8K/s 00:00:02 [#####################] 100%
    libsasl-2.1.23-2-x86_64 118.5K 252.4K/s 00:00:00 [#####################] 100%
    lvm2-2.02.53-1-x86_64 930.3K 327.3K/s 00:00:03 [#####################] 100%
    pam-1.0.4-2-x86_64 537.8K 289.5K/s 00:00:02 [#####################] 100%
    wget-1.12-1-x86_64 672.4K 308.0K/s 00:00:02 [#####################] 100%
    :: Retrieving packages from extra...
    qt-4.5.3-2-x86_64 26.9M 418.8K/s 00:01:06 [#####################] 100%
    liblastfm-0.3.0-4-x... 223.4K 252.0K/s 00:00:01 [#####################] 100%
    loudmouth-1.4.3-1-x... 80.8K 183.8K/s 00:00:00 [#####################] 100%
    libmtp-0.3.7-1.1-x86_64 439.4K 309.5K/s 00:00:01 [#####################] 100%
    amarok-2.2.0-1-x86_64 10.9M 486.0K/s 00:00:23 [#####################] 100%
    apr-1.3.9-1-x86_64 328.5K 332.4K/s 00:00:01 [#####################] 100%
    apr-util-1.3.9-3-x86_64 237.6K 322.3K/s 00:00:01 [#####################] 100%
    error: failed retrieving file 'apache-2.2.13-3-x86_64.pkg.tar.gz' from archlinux.unixheads.org : Connection timed out
    error: failed retrieving file 'apache-2.2.13-3-x86_64.pkg.tar.gz' from mirror.cs.vt.edu : Not Found
    error: failed retrieving file 'apache-2.2.13-3-x86_64.pkg.tar.gz' from mirror.cs.vt.edu : File unavailable (e.g., file not found, no access)
    bluez-4.54-1-x86_64 671.6K 361.7K/s 00:00:02 [#####################] 100%
    python-2.6.3-1-x86_64 15.2M 442.0K/s 00:00:35 [#####################] 100%
    dbus-python-0.83.0-... 177.4K 225.6K/s 00:00:01 [#####################] 100%
    eclipse-3.5.1-1-x86_64 162.0M 457.1K/s 00:06:03 [#####################] 100%
    vim-7.2.266-1-x86_64 8.6M 437.9K/s 00:00:20 [#####################] 100%
    gvim-7.2.266-2-x86_64 1115.4K 216.9K/s 00:00:05 [#####################] 100%
    inkscape-0.46-13-x86_64 18.4M 464.6K/s 00:00:41 [#####################] 100%
    libical-0.44-1-x86_64 281.3K 283.7K/s 00:00:01 [#####################] 100%
    lm_sensors-3.1.1-2-... 133.2K 228.9K/s 00:00:01 [#####################] 100%
    redland-1.0.9-4-x86_64 307.4K 275.7K/s 00:00:01 [#####################] 100%
    error: error writing to file '/var/cache/pacman/pkg/openoffice-base-3.1.1-2-x86_64.pkg.tar.gz': No space left on device
    error: failed retrieving file 'openoffice-base-3.1.1-2-x86_64.pkg.tar.gz' from mirror.cs.vt.edu : Not Found
    error: failed retrieving file 'openoffice-base-3.1.1-2-x86_64.pkg.tar.gz' from mirror.cs.vt.edu : File unavailable (e.g., file not found, no access)
    error: error writing to file '/var/cache/pacman/pkg/php-5.3.0-5-x86_64.pkg.tar.gz': No space left on device
    error: failed retrieving file 'php-5.3.0-5-x86_64.pkg.tar.gz' from mirror.cs.vt.edu : Not Found
    error: failed retrieving file 'php-5.3.0-5-x86_64.pkg.tar.gz' from mirror.cs.vt.edu : File unavailable (e.g., file not found, no access)
    error: error writing to file '/var/cache/pacman/pkg/pstoedit-3.50-1-x86_64.pkg.tar.gz': No space left on device
    error: failed retrieving file 'pstoedit-3.50-1-x86_64.pkg.tar.gz' from mirror.cs.vt.edu : Not Found
    error: failed retrieving file 'pstoedit-3.50-1-x86_64.pkg.tar.gz' from mirror.cs.vt.edu : File unavailable (e.g., file not found, no access)
    error: error writing to file '/var/cache/pacman/pkg/ruby-1.9.1_p243-2-x86_64.pkg.tar.gz': No space left on device
    error: failed retrieving file 'ruby-1.9.1_p243-2-x86_64.pkg.tar.gz' from mirror.cs.vt.edu : Not Found
    error: failed retrieving file 'ruby-1.9.1_p243-2-x86_64.pkg.tar.gz' from mirror.cs.vt.edu : File unavailable (e.g., file not found, no access)
    error: error writing to file '/var/cache/pacman/pkg/soprano-2.3.1-1-x86_64.pkg.tar.gz': No space left on device
    error: failed retrieving file 'soprano-2.3.1-1-x86_64.pkg.tar.gz' from mirror.cs.vt.edu : Not Found
    error: failed retrieving file 'soprano-2.3.1-1-x86_64.pkg.tar.gz' from mirror.cs.vt.edu : File unavailable (e.g., file not found, no access)
    error: error writing to file '/var/cache/pacman/pkg/texlive-bin-2009.4-1-x86_64.pkg.tar.gz': No space left on device
    error: failed retrieving file 'texlive-bin-2009.4-1-x86_64.pkg.tar.gz' from mirror.cs.vt.edu : Not Found
    error: failed retrieving file 'texlive-bin-2009.4-1-x86_64.pkg.tar.gz' from mirror.cs.vt.edu : File unavailable (e.g., file not found, no access)
    error: error writing to file '/var/cache/pacman/pkg/texlive-core-2009.15574-1-any.pkg.tar.gz': No space left on device
    error: failed retrieving file 'texlive-core-2009.15574-1-any.pkg.tar.gz' from mirror.cs.vt.edu : Not Found
    error: failed retrieving file 'texlive-core-2009.15574-1-any.pkg.tar.gz' from mirror.cs.vt.edu : File unavailable (e.g., file not found, no access)
    error: error writing to file '/var/cache/pacman/pkg/xchat-2.8.6-5-x86_64.pkg.tar.gz': No space left on device
    error: failed retrieving file 'xchat-2.8.6-5-x86_64.pkg.tar.gz' from mirror.cs.vt.edu : Not Found
    error: failed retrieving file 'xchat-2.8.6-5-x86_64.pkg.tar.gz' from mirror.cs.vt.edu : File unavailable (e.g., file not found, no access)
    warning: failed to retrieve some files from extra
    error: failed to commit transaction (File unavailable (e.g., file not found, no access))
    Errors occurred, no packages were upgraded.
    ~ $
    Also, I haven't restarted my system yet. Should I try and see what happens?
    Thanks!

    This happened to me recently. I could not restart my laptop properly due to lack of space on my root partition.
    The error during boot was along the lines of:-
    Starting D-BUS system messagebus   - Failed
    Failed to start message bus: Failed to close "var/run/dbus.pid": No space left on drive
    Hardware Abstraction Layer - Failed
    everything else during the boot was as normal till I started to type in my username - but couldn't because the keyboard was inactive.
    I used a Wolvix live CD to investigate and found a QT4 file in the packman cache which was 6.9GB in size (compared to the normal 27mb size). Once that was deleted and the drive/partition error checked everything was back to normal. So before you reboot I would definitely recommend clearing any oversize file out of your packman cache, or just clearing the whole cache.
    Last edited by Nixie (2009-10-05 17:16:13)

  • Mobility Radeon HD 5000 Series + open source driver = screen flickers

    Hello, this is my first post here. I just finished setting up my first arch installation on my laptop and I'm using Xorg + gnome 3 as user interface.
    My laptop has two VGA cards, an integrated intel VGA card and a Mobility Radeon HD 5000 Series, so I used vgaswitcheroo to switch to the Mobility Radeon and turned off the intel VGA card.
    Now, here's the problem: I want 3d acceleration to play games and such, but the opensource radeon driver is being weird.
    Basically, if I use my Mobility Radeon and the opensource driver the lower-center part of the screen flickers when i move windows vertically. It flickers to black in a polygon-like area and the window shadows get all messed up. If i try to start a game that uses 3d acceleration (such as nexuiz) it runs extremely slow (way too slow for this VGA card) and flickers like crazy in the same area and sometimes on the entire screen.
    I already tried using the proprietary driver (catalyst) but it doesn't seem to support switchable VGA cards, since it gives me memory segmentation error.
    However, if I switch back to the Intel VGA card and use the opensource intel driver, it runs just fine with no flickering and nexuiz runs better (but of course not fast enough since the intel VGA card is crappy)
    As you can see here, 3D acceleration seems to be enabled and Xorg doesn't seem to give any major error or warning:
    [francesco@mizu ~]$ glxinfo | grep direct
    direct rendering: Yes
    [francesco@mizu ~]$ lspci | grep VGA
    00:02.0 VGA compatible controller: Intel Corporation Core Processor Integrated Graphics Controller (rev 02)
    01:00.0 VGA compatible controller: ATI Technologies Inc Manhattan [Mobility Radeon HD 5000 Series]
    [francesco@mizu ~]$ cat /sys/kernel/debug/vgaswitcheroo/switch
    0:IGD: :Off:0000:00:02.0
    1:DIS:+:Pwr:0000:01:00.0
    [francesco@mizu ~]$ cat /var/log/Xorg.0.log | grep EE
    [ 31.675] Current Operating System: Linux mizu 2.6.38-ARCH #1 SMP PREEMPT Fri Apr 22 20:29:33 CEST 2011 x86_64
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 31.923] (II) Loading extension MIT-SCREEN-SAVER
    [francesco@mizu ~]$ cat /var/log/Xorg.0.log | grep WW
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 31.819] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 31.841] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 31.842] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 31.843] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 32.447] (WW) RADEON(0): Option "AGPMode" is not used
    [ 32.447] (WW) RADEON(0): Option "AGPFastWrite" is not used
    [ 32.447] (WW) RADEON(0): Option "DynamicPM" is not used
    [ 32.447] (WW) RADEON(0): Option "ClockGating" is not used
    [ 32.447] (WW) RADEON(0): Option "DMAForXv" is not used
    [ 32.447] (WW) RADEON(0): Option "ScalerWidth" is not used
    [ 33.067] (WW) USB Optical Mouse: ignoring absolute axes.
    Here's my /etc/X11/10-monitor.conf:
    [francesco@mizu ~]$ cat /etc/X11/xorg.conf.d/10-monitor.conf
    Section "Monitor"
    Identifier "Monitor0"
    DisplaySize 361 203
    EndSection
    Section "Device"
    Identifier "Device0"
    Driver "radeon"
    Option "AGPMode" "1"
    Option "AGPFastWrite" "yes"
    Option "DRI" "on"
    Option "DynamicPM" "on" # Dynamic powersaving.
    Option "ClockGating" "on" # Assisting option for powersaving.
    Option "AccelMethod" "EXA" # EXA should fit most cases.
    Option "EXAVSync" "on" # EXAVSync is explained above.
    Option "DMAForXv" "on" # Forced option in order to enable Xv overlay.
    Option "ScalerWidth" "2048" # That should fix some very rare bugs.
    Option "EnablePageFlip" "on" # It will not be enabled on R5xx cards.
    Option "RenderAccel" "on" # Optional. It should be enabled by default.
    Option "AccelDFS" "on" #Optional. See the man page.
    EndSection
    Section "Screen"
    Identifier "Screen0" #Collapse Monitor and Device section to Screen section
    Device "Device0"
    Monitor "Monitor0"
    DefaultDepth 24 #Choose the depth (16||24)
    SubSection "Display"
    Depth 24
    Modes "1366x768_75.00" #Choose the resolution
    EndSubSection
    EndSection
    And here's my custom rc.local to switch to my Mobility Radeon VGA card:
    [francesco@mizu ~]$ cat /etc/rc.local
    #!/bin/bash
    # /etc/rc.local: Local multi-user startup script.
    sleep 10
    # Disable Intel VGA
    mount -t debugfs none /sys/kernel/debug
    echo DDIS > /sys/kernel/debug/vgaswitcheroo/switch
    echo OFF > /sys/kernel/debug/vgaswitcheroo/switch
    # Init wi-fi
    echo 'notsharingmypassword' | sudo -S ifconfig wlan0 up
    sudo wpa_supplicant -B -Dwext -i wlan0 -c /etc/wpa_supplicant.conf
    dhcpcd wlan0
    Last edited by KoutaOyamada (2011-05-04 15:31:39)

    bump (I'm starting to think this VGA card just doesn't work with the driver )

  • I can't control my mouse in games [SOLVED]

    Hi
    I can't control my mouse in games like nexuiz, teeworld, sauerbraten, open arena... My mouse connected at usb and i have a laptop. I'm not using touchpad. Here's my xorg conf:
    # nvidia-settings: X configuration file generated by nvidia-settings
    # nvidia-settings: version 1.0 (buildmeister@builder62) Tue Mar 24 06:16:11 PST 2009
    Section "ServerLayout"
    Identifier "Layout0"
    Screen 0 "Screen0" 0 0
    InputDevice "Keyboard0" "CoreKeyboard"
    InputDevice "Mouse0" "CorePointer"
    EndSection
    Section "Files"
    EndSection
    Section "ServerFlags"
    Option "AllowMouseOpenFail" "True"
    Option "AutoAddDevices" "False"
    EndSection
    Section "Module"
    Load "dbe"
    Load "extmod"
    Load "glx"
    EndSection
    Section "ServerFlags"
    Option "Xinerama" "0"
    EndSection
    Section "InputDevice"
    # generated from default
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/input/mice"
    Option "Emulate3Buttons" "no"
    Option "ZAxisMapping" "4 5"
    EndSection
    Section "InputDevice"
    # generated from default
    Identifier "Keyboard0"
    Driver "kbd"
    EndSection
    Section "Monitor"
    # HorizSync source: edid, VertRefresh source: edid
    Identifier "Monitor0"
    VendorName "Unknown"
    ModelName "LPL"
    HorizSync 30.0 - 75.0
    VertRefresh 60.0
    ModeLine "800x600" 40.000 800 840 968 1056 600 601 605 628 +hsync +vsync
    ModeLine "640x480" 25.200 640 656 752 800 480 490 492 525 -hsync -vsync
    ModeLine "768x576" 34.960 768 792 872 976 576 577 580 597 -hsync +vsync
    Option "DPMS"
    EndSection
    Section "Device"
    Identifier "Device0"
    Driver "nvidia"
    VendorName "NVIDIA Corporation"
    BoardName "GeForce 8600M GS"
    Option "NoLogo" "True"
    Option "TripleBuffer" "True"
    Option "OnDemandVBlankInterrupts" "True"
    Option "AddARGBGLXVisuals" "True"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Device0"
    Monitor "Monitor0"
    DefaultDepth 24
    Option "TwinView" "0"
    Option "metamodes" "1280x800_60 +0+0; 800x600 +0+0; 640x480 +0+0"
    SubSection "Display"
    Depth 24
    EndSubSection
    EndSection
    and my xorg.log
    X.Org X Server 1.6.1
    Release Date: 2009-4-14
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 2.6.29-ARCH x86_64
    Current Operating System: Linux dragonball 2.6.29-ARCH #1 SMP PREEMPT Fri Apr 17 14:14:28 CEST 2009 x86_64
    Build Date: 15 April 2009 11:01:49AM
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Wed Apr 22 15:43:25 2009
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) ServerLayout "Layout0"
    (**) |-->Screen "Screen0" (0)
    (**) | |-->Monitor "Monitor0"
    (**) | |-->Device "Device0"
    (**) |-->Input Device "Keyboard0"
    (**) |-->Input Device "Mouse0"
    (**) Option "Xinerama" "0"
    (==) Automatically adding devices
    (==) Automatically enabling devices
    (==) FontPath set to:
    /usr/share/fonts/misc,
    /usr/share/fonts/100dpi:unscaled,
    /usr/share/fonts/75dpi:unscaled,
    /usr/share/fonts/TTF,
    /usr/share/fonts/Type1,
    built-ins
    (==) ModulePath set to "/usr/lib/xorg/modules"
    (WW) AllowEmptyInput is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
    (WW) Disabling Keyboard0
    (WW) Disabling Mouse0
    (II) Loader magic: 0x15c0
    (II) Module ABI versions:
    X.Org ANSI C Emulation: 0.4
    X.Org Video Driver: 5.0
    X.Org XInput driver : 4.0
    X.Org Server Extension : 2.0
    (II) Loader running on linux
    (++) using VT number 7
    (--) PCI: (0@0:1:3) nVidia Corporation MCP67 Co-processor rev 162, Mem @ 0xd0600000/524288
    (--) PCI:*(0@2:0:0) nVidia Corporation GeForce 8600M GS rev 161, Mem @ 0xd1000000/16777216, 0xc0000000/268435456, 0xd2000000/33554432, I/O @ 0x00004000/128
    (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    (II) No APM support in BIOS or kernel
    (II) System resource ranges:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [5] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [6] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [7] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [8] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [9] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [10] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [11] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [12] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [13] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [14] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [15] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [16] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [17] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [18] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [19] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [20] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [21] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [22] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [23] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    (II) "extmod" will be loaded. This was enabled by default and also specified in the config file.
    (II) "dbe" will be loaded. This was enabled by default and also specified in the config file.
    (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
    (II) "record" will be loaded by default.
    (II) "dri" will be loaded by default.
    (II) "dri2" will be loaded by default.
    (II) LoadModule: "dbe"
    (II) Loading /usr/lib/xorg/modules/extensions//libdbe.so
    (II) Module dbe: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DOUBLE-BUFFER
    (II) LoadModule: "extmod"
    (II) Loading /usr/lib/xorg/modules/extensions//libextmod.so
    (II) Module extmod: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension MIT-SCREEN-SAVER
    (II) Loading extension XFree86-VidModeExtension
    (II) Loading extension XFree86-DGA
    (II) Loading extension DPMS
    (II) Loading extension XVideo
    (II) Loading extension XVideo-MotionCompensation
    (II) Loading extension X-Resource
    (II) LoadModule: "glx"
    (II) Loading /usr/lib/xorg/modules/extensions//libglx.so
    (II) Module glx: vendor="NVIDIA Corporation"
    compiled for 4.0.2, module version = 1.0.0
    Module class: X.Org Server Extension
    (II) NVIDIA GLX Module 180.44 Tue Mar 24 06:11:47 PST 2009
    (II) Loading extension GLX
    (II) LoadModule: "record"
    (II) Loading /usr/lib/xorg/modules/extensions//librecord.so
    (II) Module record: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.13.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension RECORD
    (II) LoadModule: "dri"
    (II) Loading /usr/lib/xorg/modules/extensions//libdri.so
    (II) Module dri: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension XFree86-DRI
    (II) LoadModule: "dri2"
    (II) Loading /usr/lib/xorg/modules/extensions//libdri2.so
    (II) Module dri2: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DRI2
    (II) LoadModule: "nvidia"
    (II) Loading /usr/lib/xorg/modules/drivers//nvidia_drv.so
    (II) Module nvidia: vendor="NVIDIA Corporation"
    compiled for 4.0.2, module version = 1.0.0
    Module class: X.Org Video Driver
    (II) NVIDIA dlloader X Driver 180.44 Tue Mar 24 05:51:43 PST 2009
    (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    (II) Primary Device is: PCI 02@00:00:0
    (II) Loading sub module "fb"
    (II) LoadModule: "fb"
    (II) Loading /usr/lib/xorg/modules//libfb.so
    (II) Module fb: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    ABI class: X.Org ANSI C Emulation, version 0.4
    (II) Loading sub module "wfb"
    (II) LoadModule: "wfb"
    (II) Loading /usr/lib/xorg/modules//libwfb.so
    (II) Module wfb: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    ABI class: X.Org ANSI C Emulation, version 0.4
    (II) Loading sub module "ramdac"
    (II) LoadModule: "ramdac"
    (II) Module "ramdac" already built-in
    (II) resource ranges after probing:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [5] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [6] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [7] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [8] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [9] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [10] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [11] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [12] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [13] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [14] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [15] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [16] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [17] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [18] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [19] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [20] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [21] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [22] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [23] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    (**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
    (==) NVIDIA(0): RGB weight 888
    (==) NVIDIA(0): Default visual is TrueColor
    (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
    (**) NVIDIA(0): Option "NoLogo" "True"
    (**) NVIDIA(0): Option "TwinView" "0"
    (**) NVIDIA(0): Option "MetaModes" "1280x800_60 +0+0; 800x600 +0+0; 640x480 +0+0"
    (**) NVIDIA(0): Option "TripleBuffer" "True"
    (**) NVIDIA(0): Option "AddARGBGLXVisuals" "True"
    (**) NVIDIA(0): Option "OnDemandVBlankInterrupts" "True"
    (**) NVIDIA(0): Enabling RENDER acceleration
    (II) NVIDIA(0): Support for GLX with the Damage and Composite X extensions is
    (II) NVIDIA(0): enabled.
    (II) NVIDIA(0): NVIDIA GPU GeForce 8600M GS (G86) at PCI:2:0:0 (GPU-0)
    (--) NVIDIA(0): Memory: 524288 kBytes
    (--) NVIDIA(0): VideoBIOS: 60.86.51.00.33
    (II) NVIDIA(0): Detected PCI Express Link width: 16X
    (--) NVIDIA(0): Interlaced video modes are supported on this GPU
    (--) NVIDIA(0): Connected display device(s) on GeForce 8600M GS at PCI:2:0:0:
    (--) NVIDIA(0): LPL (DFP-0)
    (--) NVIDIA(0): LPL (DFP-0): 330.0 MHz maximum pixel clock
    (--) NVIDIA(0): LPL (DFP-0): Internal Dual Link LVDS
    (II) NVIDIA(0): Assigned Display Device: DFP-0
    (II) NVIDIA(0): Validated modes:
    (II) NVIDIA(0): "1280x800_60+0+0"
    (II) NVIDIA(0): "800x600+0+0"
    (II) NVIDIA(0): "640x480+0+0"
    (II) NVIDIA(0): Virtual screen size determined to be 1280 x 800
    (--) NVIDIA(0): DPI set to (98, 96); computed from "UseEdidDpi" X config
    (--) NVIDIA(0): option
    (**) NVIDIA(0): Enabling 32-bit ARGB GLX visuals.
    (--) Depth 24 pixmap format is 32 bpp
    (II) do I need RAC? No, I don't.
    (II) resource ranges after preInit:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [5] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [6] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [7] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [8] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [9] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [10] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [11] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [12] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [13] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [14] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [15] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [16] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [17] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [18] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [19] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [20] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [21] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [22] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [23] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    (II) NVIDIA(0): Initialized GPU GART.
    (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
    (II) NVIDIA(0): may not be running or the "AcpidSocketPath" X
    (II) NVIDIA(0): configuration option may not be set correctly. When the
    (II) NVIDIA(0): ACPI event daemon is available, the NVIDIA X driver will
    (II) NVIDIA(0): try to use it to receive ACPI event notifications. For
    (II) NVIDIA(0): details, please see the "ConnectToAcpid" and
    (II) NVIDIA(0): "AcpidSocketPath" X configuration options in Appendix B: X
    (II) NVIDIA(0): Config Options in the README.
    (II) NVIDIA(0): Setting mode "1280x800_60+0+0"
    (II) Loading extension NV-GLX
    (II) NVIDIA(0): NVIDIA 3D Acceleration Architecture Initialized
    (==) NVIDIA(0): Disabling shared memory pixmaps
    (II) NVIDIA(0): Using the NVIDIA 2D acceleration architecture
    (==) NVIDIA(0): Backing store disabled
    (==) NVIDIA(0): Silken mouse enabled
    (**) Option "dpms"
    (**) NVIDIA(0): DPMS enabled
    (II) Loading extension NV-CONTROL
    (II) Loading extension XINERAMA
    (==) RandR enabled
    (II) Initializing built-in extension Generic Event Extension
    (II) Initializing built-in extension SHAPE
    (II) Initializing built-in extension MIT-SHM
    (II) Initializing built-in extension XInputExtension
    (II) Initializing built-in extension XTEST
    (II) Initializing built-in extension BIG-REQUESTS
    (II) Initializing built-in extension SYNC
    (II) Initializing built-in extension XKEYBOARD
    (II) Initializing built-in extension XC-MISC
    (II) Initializing built-in extension SECURITY
    (II) Initializing built-in extension XINERAMA
    (II) Initializing built-in extension XFIXES
    (II) Initializing built-in extension RENDER
    (II) Initializing built-in extension RANDR
    (II) Initializing built-in extension COMPOSITE
    (II) Initializing built-in extension DAMAGE
    (II) Initializing extension GLX
    (II) config/hal: Adding input device AT Translated Set 2 keyboard
    (II) LoadModule: "evdev"
    (II) Loading /usr/lib/xorg/modules/input//evdev_drv.so
    (II) Module evdev: vendor="X.Org Foundation"
    compiled for 1.6.0, module version = 2.2.1
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 4.0
    (**) AT Translated Set 2 keyboard: always reports core events
    (**) AT Translated Set 2 keyboard: Device: "/dev/input/event1"
    (II) AT Translated Set 2 keyboard: Found keys
    (II) AT Translated Set 2 keyboard: Configuring as keyboard
    (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "us"
    (II) config/hal: Adding input device Macintosh mouse button emulation
    (**) Macintosh mouse button emulation: always reports core events
    (**) Macintosh mouse button emulation: Device: "/dev/input/event0"
    (II) Macintosh mouse button emulation: Found 3 mouse buttons
    (II) Macintosh mouse button emulation: Found x and y relative axes
    (II) Macintosh mouse button emulation: Configuring as mouse
    (**) Macintosh mouse button emulation: YAxisMapping: buttons 4 and 5
    (**) Macintosh mouse button emulation: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device "Macintosh mouse button emulation" (type: MOUSE)
    (**) Macintosh mouse button emulation: (accel) keeping acceleration scheme 1
    (**) Macintosh mouse button emulation: (accel) filter chain progression: 2.00
    (**) Macintosh mouse button emulation: (accel) filter stage 0: 20.00 ms
    (**) Macintosh mouse button emulation: (accel) set acceleration profile 0
    (II) config/hal: Adding input device AlpsPS/2 ALPS GlidePoint
    (**) AlpsPS/2 ALPS GlidePoint: always reports core events
    (**) AlpsPS/2 ALPS GlidePoint: Device: "/dev/input/event9"
    (II) AlpsPS/2 ALPS GlidePoint: Found 5 mouse buttons
    (II) AlpsPS/2 ALPS GlidePoint: Found x and y relative axes
    (II) AlpsPS/2 ALPS GlidePoint: Found x and y absolute axes
    (II) AlpsPS/2 ALPS GlidePoint: Found absolute touchpad
    (II) AlpsPS/2 ALPS GlidePoint: Configuring as touchpad
    (**) AlpsPS/2 ALPS GlidePoint: YAxisMapping: buttons 4 and 5
    (**) AlpsPS/2 ALPS GlidePoint: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device "AlpsPS/2 ALPS GlidePoint" (type: TOUCHPAD)
    (**) AlpsPS/2 ALPS GlidePoint: (accel) keeping acceleration scheme 1
    (**) AlpsPS/2 ALPS GlidePoint: (accel) filter chain progression: 2.00
    (**) AlpsPS/2 ALPS GlidePoint: (accel) filter stage 0: 20.00 ms
    (**) AlpsPS/2 ALPS GlidePoint: (accel) set acceleration profile 0
    (II) config/hal: Adding input device PS/2 Mouse
    (**) PS/2 Mouse: always reports core events
    (**) PS/2 Mouse: Device: "/dev/input/event7"
    (II) PS/2 Mouse: Found 3 mouse buttons
    (II) PS/2 Mouse: Found x and y relative axes
    (II) PS/2 Mouse: Configuring as mouse
    (**) PS/2 Mouse: YAxisMapping: buttons 4 and 5
    (**) PS/2 Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device "PS/2 Mouse" (type: MOUSE)
    (**) PS/2 Mouse: (accel) keeping acceleration scheme 1
    (**) PS/2 Mouse: (accel) filter chain progression: 2.00
    (**) PS/2 Mouse: (accel) filter stage 0: 20.00 ms
    (**) PS/2 Mouse: (accel) set acceleration profile 0
    (II) config/hal: Adding input device A4Tech PS/2+USB Mouse
    (**) A4Tech PS/2+USB Mouse: always reports core events
    (**) A4Tech PS/2+USB Mouse: Device: "/dev/input/event10"
    (II) A4Tech PS/2+USB Mouse: Found 8 mouse buttons
    (II) A4Tech PS/2+USB Mouse: Found x and y relative axes
    (II) A4Tech PS/2+USB Mouse: Found scroll wheel(s)
    (II) A4Tech PS/2+USB Mouse: Configuring as mouse
    (**) A4Tech PS/2+USB Mouse: YAxisMapping: buttons 4 and 5
    (**) A4Tech PS/2+USB Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device "A4Tech PS/2+USB Mouse" (type: MOUSE)
    (**) A4Tech PS/2+USB Mouse: (accel) keeping acceleration scheme 1
    (**) A4Tech PS/2+USB Mouse: (accel) filter chain progression: 2.00
    (**) A4Tech PS/2+USB Mouse: (accel) filter stage 0: 20.00 ms
    (**) A4Tech PS/2+USB Mouse: (accel) set acceleration profile 0
    (EE) A4Tech PS/2+USB Mouse: Read error: Resource temporarily unavailable
    (EE) A4Tech PS/2+USB Mouse: Read error: Resource temporarily unavailable
    I searched the forum and find a wiki page about x11 hotplug and i disabled it, not worked, added this;
    Section "Module"
    SubSection "extmod"
    Option "omit xfree86-dga" # don't initialise the DGA extension
    EndSubSection
    EndSection
    not worked too.
    dmesg | grep -i mouse
    input: Macintosh mouse button emulation as /devices/virtual/input/input0
    mice: PS/2 mouse device common for all mice
    input: PS/2 Mouse as /devices/platform/i8042/serio1/input/input7
    input: A4Tech PS/2+USB Mouse as /devices/pci0000:00/0000:00:04.0/usb4/4-1/4-1:1.0/input/input10
    generic-usb 0003:09DA:000E.0001: input,hidraw0: USB HID v1.10 Mouse [A4Tech PS/2+USB Mouse] on usb-0000:00:04.0-1/input
    Thanks, waiting your helps.
    Eren
    Last edited by eren (2009-04-28 15:27:33)

    new xorg log
    [goku@dragonball ~]$ cat /var/log/Xorg.0.log
    X.Org X Server 1.6.1
    Release Date: 2009-4-14
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 2.6.29-ARCH x86_64
    Current Operating System: Linux dragonball 2.6.29-ARCH #1 SMP PREEMPT Fri Apr 17 14:14:28 CEST 2009 x86_64
    Build Date: 15 April 2009 11:01:49AM
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Sun Apr 26 01:51:28 2009
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) ServerLayout "Layout0"
    (**) |-->Screen "Screen0" (0)
    (**) | |-->Monitor "Monitor0"
    (**) | |-->Device "Device0"
    (**) |-->Input Device "Keyboard0"
    (**) |-->Input Device "Mouse0"
    (**) Option "Xinerama" "0"
    (==) Automatically adding devices
    (==) Automatically enabling devices
    (WW) The directory "/usr/share/fonts/Type1" does not exist.
    Entry deleted from font path.
    (==) FontPath set to:
    /usr/share/fonts/misc,
    /usr/share/fonts/100dpi:unscaled,
    /usr/share/fonts/75dpi:unscaled,
    /usr/share/fonts/TTF,
    built-ins
    (==) ModulePath set to "/usr/lib/xorg/modules"
    (**) Extension "Composite" is enabled
    (WW) AllowEmptyInput is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
    (WW) Disabling Keyboard0
    (WW) Disabling Mouse0
    (II) Loader magic: 0x15c0
    (II) Module ABI versions:
    X.Org ANSI C Emulation: 0.4
    X.Org Video Driver: 5.0
    X.Org XInput driver : 4.0
    X.Org Server Extension : 2.0
    (II) Loader running on linux
    (++) using VT number 7
    (--) PCI: (0@0:1:3) nVidia Corporation MCP67 Co-processor rev 162, Mem @ 0xd0600000/524288
    (--) PCI:*(0@2:0:0) nVidia Corporation G86 [GeForce 8600M GS] rev 161, Mem @ 0xd1000000/16777216, 0xc0000000/268435456, 0xd2000000/33554432, I/O @ 0x00004000/128
    (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    (II) No APM support in BIOS or kernel
    (II) System resource ranges:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [5] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [6] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [7] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [8] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [9] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [10] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [11] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [12] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [13] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [14] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [15] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [16] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [17] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [18] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [19] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [20] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [21] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [22] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [23] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    (II) "extmod" will be loaded. This was enabled by default and also specified in the config file.
    (II) "dbe" will be loaded. This was enabled by default and also specified in the config file.
    (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
    (II) "record" will be loaded by default.
    (II) "dri" will be loaded by default.
    (II) "dri2" will be loaded by default.
    (II) LoadModule: "dbe"
    (II) Loading /usr/lib/xorg/modules/extensions//libdbe.so
    (II) Module dbe: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DOUBLE-BUFFER
    (II) LoadModule: "extmod"
    (II) Loading /usr/lib/xorg/modules/extensions//libextmod.so
    (II) Module extmod: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension MIT-SCREEN-SAVER
    (II) Loading extension XFree86-VidModeExtension
    (II) Loading extension XFree86-DGA
    (II) Loading extension DPMS
    (II) Loading extension XVideo
    (II) Loading extension XVideo-MotionCompensation
    (II) Loading extension X-Resource
    (II) LoadModule: "glx"
    (II) Loading /usr/lib/xorg/modules/extensions//libglx.so
    (II) Module glx: vendor="NVIDIA Corporation"
    compiled for 4.0.2, module version = 1.0.0
    Module class: X.Org Server Extension
    (II) NVIDIA GLX Module 180.44 Tue Mar 24 06:11:47 PST 2009
    (II) Loading extension GLX
    (II) LoadModule: "record"
    (II) Loading /usr/lib/xorg/modules/extensions//librecord.so
    (II) Module record: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.13.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension RECORD
    (II) LoadModule: "dri"
    (II) Loading /usr/lib/xorg/modules/extensions//libdri.so
    (II) Module dri: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension XFree86-DRI
    (II) LoadModule: "dri2"
    (II) Loading /usr/lib/xorg/modules/extensions//libdri2.so
    (II) Module dri2: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DRI2
    (II) LoadModule: "nvidia"
    (II) Loading /usr/lib/xorg/modules/drivers//nvidia_drv.so
    (II) Module nvidia: vendor="NVIDIA Corporation"
    compiled for 4.0.2, module version = 1.0.0
    Module class: X.Org Video Driver
    (II) NVIDIA dlloader X Driver 180.44 Tue Mar 24 05:51:43 PST 2009
    (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    (II) Primary Device is: PCI 02@00:00:0
    (II) Loading sub module "fb"
    (II) LoadModule: "fb"
    (II) Loading /usr/lib/xorg/modules//libfb.so
    (II) Module fb: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    ABI class: X.Org ANSI C Emulation, version 0.4
    (II) Loading sub module "wfb"
    (II) LoadModule: "wfb"
    (II) Loading /usr/lib/xorg/modules//libwfb.so
    (II) Module wfb: vendor="X.Org Foundation"
    compiled for 1.6.1, module version = 1.0.0
    ABI class: X.Org ANSI C Emulation, version 0.4
    (II) Loading sub module "ramdac"
    (II) LoadModule: "ramdac"
    (II) Module "ramdac" already built-in
    (II) resource ranges after probing:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [5] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [6] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [7] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [8] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [9] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [10] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [11] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [12] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [13] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [14] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [15] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [16] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [17] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [18] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [19] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [20] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [21] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [22] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [23] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    (**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
    (==) NVIDIA(0): RGB weight 888
    (==) NVIDIA(0): Default visual is TrueColor
    (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
    (**) NVIDIA(0): Option "NoLogo" "True"
    (**) NVIDIA(0): Option "TwinView" "0"
    (**) NVIDIA(0): Option "MetaModes" "1280x800_60 +0+0"
    (**) NVIDIA(0): Option "TripleBuffer" "True"
    (**) NVIDIA(0): Option "AddARGBGLXVisuals" "True"
    (**) NVIDIA(0): Option "OnDemandVBlankInterrupts" "True"
    (**) NVIDIA(0): Enabling RENDER acceleration
    (II) NVIDIA(0): Support for GLX with the Damage and Composite X extensions is
    (II) NVIDIA(0): enabled.
    (II) NVIDIA(0): NVIDIA GPU GeForce 8600M GS (G86) at PCI:2:0:0 (GPU-0)
    (--) NVIDIA(0): Memory: 524288 kBytes
    (--) NVIDIA(0): VideoBIOS: 60.86.51.00.33
    (II) NVIDIA(0): Detected PCI Express Link width: 16X
    (--) NVIDIA(0): Interlaced video modes are supported on this GPU
    (--) NVIDIA(0): Connected display device(s) on GeForce 8600M GS at PCI:2:0:0:
    (--) NVIDIA(0): LPL (DFP-0)
    (--) NVIDIA(0): LPL (DFP-0): 330.0 MHz maximum pixel clock
    (--) NVIDIA(0): LPL (DFP-0): Internal Dual Link LVDS
    (II) NVIDIA(0): Assigned Display Device: DFP-0
    (II) NVIDIA(0): Validated modes:
    (II) NVIDIA(0): "1280x800_60+0+0"
    (II) NVIDIA(0): Virtual screen size determined to be 1280 x 800
    (--) NVIDIA(0): DPI set to (98, 96); computed from "UseEdidDpi" X config
    (--) NVIDIA(0): option
    (**) NVIDIA(0): Enabling 32-bit ARGB GLX visuals.
    (--) Depth 24 pixmap format is 32 bpp
    (II) do I need RAC? No, I don't.
    (II) resource ranges after preInit:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [5] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [6] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [7] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [8] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [9] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [10] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [11] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [12] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [13] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [14] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [15] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [16] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [17] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [18] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [19] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [20] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [21] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [22] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [23] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    (II) NVIDIA(0): Initialized GPU GART.
    (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
    (II) NVIDIA(0): may not be running or the "AcpidSocketPath" X
    (II) NVIDIA(0): configuration option may not be set correctly. When the
    (II) NVIDIA(0): ACPI event daemon is available, the NVIDIA X driver will
    (II) NVIDIA(0): try to use it to receive ACPI event notifications. For
    (II) NVIDIA(0): details, please see the "ConnectToAcpid" and
    (II) NVIDIA(0): "AcpidSocketPath" X configuration options in Appendix B: X
    (II) NVIDIA(0): Config Options in the README.
    (II) NVIDIA(0): Setting mode "1280x800_60+0+0"
    (II) Loading extension NV-GLX
    (II) NVIDIA(0): NVIDIA 3D Acceleration Architecture Initialized
    (==) NVIDIA(0): Disabling shared memory pixmaps
    (II) NVIDIA(0): Using the NVIDIA 2D acceleration architecture
    (==) NVIDIA(0): Backing store disabled
    (==) NVIDIA(0): Silken mouse enabled
    (**) Option "dpms"
    (**) NVIDIA(0): DPMS enabled
    (II) Loading extension NV-CONTROL
    (II) Loading extension XINERAMA
    (==) RandR enabled
    (II) Initializing built-in extension Generic Event Extension
    (II) Initializing built-in extension SHAPE
    (II) Initializing built-in extension MIT-SHM
    (II) Initializing built-in extension XInputExtension
    (II) Initializing built-in extension XTEST
    (II) Initializing built-in extension BIG-REQUESTS
    (II) Initializing built-in extension SYNC
    (II) Initializing built-in extension XKEYBOARD
    (II) Initializing built-in extension XC-MISC
    (II) Initializing built-in extension SECURITY
    (II) Initializing built-in extension XINERAMA
    (II) Initializing built-in extension XFIXES
    (II) Initializing built-in extension RENDER
    (II) Initializing built-in extension RANDR
    (II) Initializing built-in extension COMPOSITE
    (II) Initializing built-in extension DAMAGE
    (II) Initializing extension GLX
    (II) config/hal: Adding input device AT Translated Set 2 keyboard
    (II) LoadModule: "evdev"
    (II) Loading /usr/lib/xorg/modules/input//evdev_drv.so
    (II) Module evdev: vendor="X.Org Foundation"
    compiled for 1.6.0, module version = 2.2.1
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 4.0
    (**) AT Translated Set 2 keyboard: always reports core events
    (**) AT Translated Set 2 keyboard: Device: "/dev/input/event1"
    (II) AT Translated Set 2 keyboard: Found keys
    (II) AT Translated Set 2 keyboard: Configuring as keyboard
    (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "us"
    (II) config/hal: Adding input device Macintosh mouse button emulation
    (**) Macintosh mouse button emulation: always reports core events
    (**) Macintosh mouse button emulation: Device: "/dev/input/event0"
    (II) Macintosh mouse button emulation: Found 3 mouse buttons
    (II) Macintosh mouse button emulation: Found x and y relative axes
    (II) Macintosh mouse button emulation: Configuring as mouse
    (**) Macintosh mouse button emulation: YAxisMapping: buttons 4 and 5
    (**) Macintosh mouse button emulation: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device "Macintosh mouse button emulation" (type: MOUSE)
    (**) Macintosh mouse button emulation: (accel) keeping acceleration scheme 1
    (**) Macintosh mouse button emulation: (accel) filter chain progression: 2.00
    (**) Macintosh mouse button emulation: (accel) filter stage 0: 20.00 ms
    (**) Macintosh mouse button emulation: (accel) set acceleration profile 0
    (II) config/hal: Adding input device AlpsPS/2 ALPS GlidePoint
    (**) AlpsPS/2 ALPS GlidePoint: always reports core events
    (**) AlpsPS/2 ALPS GlidePoint: Device: "/dev/input/event9"
    (II) AlpsPS/2 ALPS GlidePoint: Found 5 mouse buttons
    (II) AlpsPS/2 ALPS GlidePoint: Found x and y relative axes
    (II) AlpsPS/2 ALPS GlidePoint: Found x and y absolute axes
    (II) AlpsPS/2 ALPS GlidePoint: Found absolute touchpad
    (II) AlpsPS/2 ALPS GlidePoint: Configuring as touchpad
    (**) AlpsPS/2 ALPS GlidePoint: YAxisMapping: buttons 4 and 5
    (**) AlpsPS/2 ALPS GlidePoint: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device "AlpsPS/2 ALPS GlidePoint" (type: TOUCHPAD)
    (**) AlpsPS/2 ALPS GlidePoint: (accel) keeping acceleration scheme 1
    (**) AlpsPS/2 ALPS GlidePoint: (accel) filter chain progression: 2.00
    (**) AlpsPS/2 ALPS GlidePoint: (accel) filter stage 0: 20.00 ms
    (**) AlpsPS/2 ALPS GlidePoint: (accel) set acceleration profile 0
    (II) config/hal: Adding input device PS/2 Mouse
    (**) PS/2 Mouse: always reports core events
    (**) PS/2 Mouse: Device: "/dev/input/event8"
    (II) PS/2 Mouse: Found 3 mouse buttons
    (II) PS/2 Mouse: Found x and y relative axes
    (II) PS/2 Mouse: Configuring as mouse
    (**) PS/2 Mouse: YAxisMapping: buttons 4 and 5
    (**) PS/2 Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device "PS/2 Mouse" (type: MOUSE)
    (**) PS/2 Mouse: (accel) keeping acceleration scheme 1
    (**) PS/2 Mouse: (accel) filter chain progression: 2.00
    (**) PS/2 Mouse: (accel) filter stage 0: 20.00 ms
    (**) PS/2 Mouse: (accel) set acceleration profile 0
    (II) config/hal: Adding input device A4Tech PS/2+USB Mouse
    (**) A4Tech PS/2+USB Mouse: always reports core events
    (**) A4Tech PS/2+USB Mouse: Device: "/dev/input/event10"
    (II) A4Tech PS/2+USB Mouse: Found 8 mouse buttons
    (II) A4Tech PS/2+USB Mouse: Found x and y relative axes
    (II) A4Tech PS/2+USB Mouse: Found scroll wheel(s)
    (II) A4Tech PS/2+USB Mouse: Configuring as mouse
    (**) A4Tech PS/2+USB Mouse: YAxisMapping: buttons 4 and 5
    (**) A4Tech PS/2+USB Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device "A4Tech PS/2+USB Mouse" (type: MOUSE)
    (**) A4Tech PS/2+USB Mouse: (accel) keeping acceleration scheme 1
    (**) A4Tech PS/2+USB Mouse: (accel) filter chain progression: 2.00
    (**) A4Tech PS/2+USB Mouse: (accel) filter stage 0: 20.00 ms
    (**) A4Tech PS/2+USB Mouse: (accel) set acceleration profile 0
    (EE) A4Tech PS/2+USB Mouse: Read error: Resource temporarily unavailable
    (EE) A4Tech PS/2+USB Mouse: Read error: Resource temporarily unavailable
    (EE) A4Tech PS/2+USB Mouse: Read error: Resource temporarily unavailable
    and my xorg.conf
    [goku@dragonball ~]$ cat /etc/X11/xorg.conf
    # nvidia-settings: X configuration file generated by nvidia-settings
    # nvidia-settings: version 1.0 (buildmeister@builder62) Tue Mar 24 06:16:11 PST 2009
    Section "ServerLayout"
    Identifier "Layout0"
    Screen 0 "Screen0" 0 0
    InputDevice "Keyboard0" "CoreKeyboard"
    InputDevice "Mouse0" "CorePointer"
    EndSection
    Section "Files"
    EndSection
    Section "Module"
    Load "dbe"
    Load "extmod"
    Load "glx"
    EndSection
    Section "ServerFlags"
    Option "Xinerama" "0"
    EndSection
    Section "InputDevice"
    # generated from default
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/input/mouse3"
    Option "ZAxisMapping" "4 5 6 7"
    EndSection
    Section "InputDevice"
    # generated from default
    Identifier "Keyboard0"
    Driver "kbd"
    EndSection
    Section "Monitor"
    # HorizSync source: edid, VertRefresh source: edid
    Identifier "Monitor0"
    VendorName "Unknown"
    ModelName "LPL"
    HorizSync 30.0 - 75.0
    VertRefresh 60.0
    Option "DPMS"
    EndSection
    Section "Device"
    Identifier "Device0"
    Driver "nvidia"
    VendorName "NVIDIA Corporation"
    BoardName "GeForce 8600M GS"
    Option "NoLogo" "True"
    Option "TripleBuffer" "True"
    Option "OnDemandVBlankInterrupts" "True"
    Option "AddARGBGLXVisuals" "True"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Device0"
    Monitor "Monitor0"
    DefaultDepth 24
    Option "TwinView" "0"
    Option "metamodes" "1280x800_60 +0+0"
    SubSection "Display"
    Depth 24
    EndSubSection
    EndSection
    Section "Extensions"
    Option "Composite" "Enable"
    EndSection
    My head gonna explode Btw i wonder this problem comes with hwd may be I can't control it again damn!

  • Enemy Territory and CQB Sound

    Hey guys
    Ok basically i downloaded both these games and i have no sound.
    So Far i have tried the following solutions
    http://ubuntuforums.org/showthread.php?t=918344
    http://linuxgamecast.com/2011/04/l-g-c- … attle-cqb/
    I made the launcher and setup the sdl sound launcher for ET, the games run fine themselves. but i cant recieve any sound
    Pulse works fine outside the game and SDL works fine in Nexuiz a different game. and everywhere else pulse works just fine

    ok that solution worked great for getting  the sound to come out of my speakers. but now i have no idea how to get the sound to appear in my headphones, not my speakers

  • ATI and TVout plus games problems

    Hi,
    So I really hate ATI by now but since switching to nvidia ain't and option atm I might as well ask for user input on couple of problems:
    1st: Tvout, I guess to get working tvout i must use fglrx? Tvout works as clone atm but is it possible to get same extended desktop and videos playing in fullscreen tv-overlay as in windows? or atleast how to change the clone-tv-out resolution? any working configs would be appreciated.
    2nd: While fglrx seems to have better fps than opensource ones, why the hell do games (nexuiz, true-combat, flightgear for one) go from 60+ fps to a crawl as soon as some otherplayer/cpu moves at screen?
    Atleast tremulous works just fine.
    Using amd3000 and radeon9600pro with ck kernel and usually resolution off 1680x1050 (although lowering res. doesn't seem to help at all)
    Anyone else experiencing these?
    PS. I could just switch to opensource ati drivers and get compiz and play in windows but then I'd still loose tvout rite? (big minus and ATI really sucks)

    Mikko777 wrote:
    1st: Tvout, I guess to get working tvout i must use fglrx? Tvout works as clone atm but is it possible to get same extended desktop and videos playing in fullscreen tv-overlay as in windows? or atleast how to change the clone-tv-out resolution? any working configs would be appreciated.
    2nd: While fglrx seems to have better fps than opensource ones, why the hell do games (nexuiz, true-combat, flightgear for one) go from 60+ fps to a crawl as soon as some otherplayer/cpu moves at screen?
    Atleast tremulous works just fine.
    Well nevermind my ranting, The more i use linux the more angry i get that things ain't up to windows level
    Answering myself:
    1st: for tvout must use fglrx or opensource drivers with crappy apps like atitvout or gatos. so basically its fglrx only and even that ain't too shabby.
    2nd: No idea, just a crappy driver I think.
    3rd: No compiz without xgl and xgl just plain sux (xfreezes, kernel panicks with opengl apps, not possible to spawn another x screen?)
    So in short buy nvidia / intel.

  • What is fire fox and will it help/hurt my mac

    The kid put fire fox on the mac just want to know what it is

    jeep454x4 wrote:
    The kid put fire fox on the mac just want to know what it is
    Firefox is a highly customizable web browser with a lot of personalized add-ons, persona's and themes, it's the Cadillac of choice amongst web browsers. It can be a little heavy, but that choice is up to the user.
    jeep454x4 wrote:
    I just tried to install ClamXav and couldnt
    ClamXav is a free anti-virus for the Mac to remove Windows malware from files before passing them onto other Windows users, it also can catch any very rare Mac malware that appears once it becomes known.
    Why you couldn't I don't know.
    jeep454x4 wrote:
    Onyx was ok.
    Onyx is a maintainence (rarely) and mostly a troubleshooting program.
    what should I do?
    What are you trying to do? Download free stuff? Should be very careful, a lot of bad stuff out there.
    Only download from safe places like MacUpdate.com, CNET downloads and perhaps Sourceforge, most people here won't trick you as Apple will hang them if they try.
    Here's a couple of free 3D games. Knock yourself out.
    http://www.nexuiz.com/classic.php
    http://sauerbraten.org/

  • Video using too much CPU

    I am not sure at all what is causing this problem.  It is possible that i don't really have a problem.. just an old computer, but it doesn't seem right so i'll ask anyway.
    When i watch videos with a somewhat high resolution (not necessarily hd though..) my computer sputters around alot and uses pretty much all of my CPU.  This also happens when i play games.. even simpler ones (at least to my eyes) like Super Maryo or Pingus.  I am using a 256mb NVIDIA graphics card.. and i THINK that these things should work a little smoother than they are.  I don't really remember it always being this slow, but its been like this for a while so i don't know if it was any certain update that caused it. 
    I used to play Tremulous and Nexuiz on my old installation of Arch and they ran pretty smoothly, but i haven't reinstalled them since i reinstalled arch probably 4 or 5 months ago.  I haven't really searched for an answer because i don't know where to even start, so if you want to at least point me in some direction i can probably try to figure it out on my own.
    I can get any extra info that you might want.  and here is my xorg.conf :
    # nvidia-xconfig: X configuration file generated by nvidia-xconfig
    # nvidia-xconfig: version 1.0 (buildmeister@builder3) Thu Feb 14 18:20:37 PST 2008
    # File generated by xorgconfig.
    # Copyright 2004 The X.Org Foundation
    # Permission is hereby granted, free of charge, to any person obtaining a
    # copy of this software and associated documentation files (the "Software"),
    # to deal in the Software without restriction, including without limitation
    # the rights to use, copy, modify, merge, publish, distribute, sublicense,
    # and/or sell copies of the Software, and to permit persons to whom the
    # Software is furnished to do so, subject to the following conditions:
    # The above copyright notice and this permission notice shall be included in
    # all copies or substantial portions of the Software.
    # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
    # The X.Org Foundation BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
    # WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
    # OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    # SOFTWARE.
    # Except as contained in this notice, the name of The X.Org Foundation shall
    # not be used in advertising or otherwise to promote the sale, use or other
    # dealings in this Software without prior written authorization from
    # The X.Org Foundation.
    # Refer to the xorg.conf(5) man page for details about the format of
    # this file.
    # Module section -- this section is used to specify
    # which dynamically loadable modules to load.
    # Files section. This allows default font and rgb paths to be set
    # Server flags section.
    # Input devices
    # Core keyboard's InputDevice section
    # Core Pointer's InputDevice section
    # Other input device sections
    # this is optional and is required only if you
    # are using extended input devices. This is for example only. Refer
    # to the xorg.conf man page for a description of the options.
    # Section "InputDevice"
    # Identifier "Mouse2"
    # Driver "mouse"
    # Option "Protocol" "MouseMan"
    # Option "Device" "/dev/mouse2"
    # EndSection
    # Section "InputDevice"
    # Identifier "spaceball"
    # Driver "magellan"
    # Option "Device" "/dev/cua0"
    # EndSection
    # Section "InputDevice"
    # Identifier "spaceball2"
    # Driver "spaceorb"
    # Option "Device" "/dev/cua0"
    # EndSection
    # Section "InputDevice"
    # Identifier "touchscreen0"
    # Driver "microtouch"
    # Option "Device" "/dev/ttyS0"
    # Option "MinX" "1412"
    # Option "MaxX" "15184"
    # Option "MinY" "15372"
    # Option "MaxY" "1230"
    # Option "ScreenNumber" "0"
    # Option "ReportingMode" "Scaled"
    # Option "ButtonNumber" "1"
    # Option "SendCoreEvents"
    # EndSection
    # Section "InputDevice"
    # Identifier "touchscreen1"
    # Driver "elo2300"
    # Option "Device" "/dev/ttyS0"
    # Option "MinX" "231"
    # Option "MaxX" "3868"
    # Option "MinY" "3858"
    # Option "MaxY" "272"
    # Option "ScreenNumber" "0"
    # Option "ReportingMode" "Scaled"
    # Option "ButtonThreshold" "17"
    # Option "ButtonNumber" "1"
    # Option "SendCoreEvents"
    # EndSection
    # Monitor section
    # Any number of monitor sections may be present
    # Graphics device section
    # Any number of graphics device sections may be present
    # Standard VGA Device:
    # Device configured by xorgconfig:
    # Screen sections
    # Any number of screen sections may be present. Each describes
    # the configuration of a single screen. A single specific screen section
    # may be specified from the X server command line with the "-screen"
    # option.
    # ServerLayout sections.
    # Any number of ServerLayout sections may be present. Each describes
    # the way multiple screens are organised. A specific ServerLayout
    # section may be specified from the X server command line with the
    # "-layout" option. In the absence of this, the first section is used.
    # When now ServerLayout section is present, the first Screen section
    # is used alone.
    # Section "DRI"
    # Mode 0666
    # EndSection
    Section "ServerLayout"
    # The Identifier line must be present
    # Each Screen line specifies a Screen section name, and optionally
    # the relative position of other screens. The four names after
    # primary screen name are the screens to the top, bottom, left and right
    # of the primary screen. In this example, screen 2 is located to the
    # right of screen 1.
    # Each InputDevice line specifies an InputDevice section name and
    # optionally some options to specify the way the device is to be
    # used. Those options include "CorePointer", "CoreKeyboard" and
    # "SendCoreEvents".
    Identifier "Simple Layout"
    Screen "Screen 1" 0 0
    InputDevice "Mouse1" "CorePointer"
    InputDevice "Keyboard1" "CoreKeyboard"
    EndSection
    Section "Files"
    # The location of the RGB database. Note, this is the name of the
    # file minus the extension (like ".txt" or ".db"). There is normally
    # no need to change the default.
    # RgbPath "/usr/share/X11/rgb"
    # Multiple FontPath entries are allowed (which are concatenated together),
    # as well as specifying multiple comma-separated entries in one FontPath
    # command (or a combination of both methods)
    # FontPath "/usr/share/fonts/Type1"
    # FontPath "/usr/lib/X11/fonts/local/"
    # FontPath "/usr/lib/X11/fonts/misc/"
    # FontPath "/usr/lib/X11/fonts/75dpi/:unscaled"
    # FontPath "/usr/lib/X11/fonts/100dpi/:unscaled"
    # FontPath "/usr/lib/X11/fonts/Speedo/"
    # FontPath "/usr/lib/X11/fonts/Type1/"
    # FontPath "/usr/lib/X11/fonts/TrueType/"
    # FontPath "/usr/lib/X11/fonts/freefont/"
    # FontPath "/usr/lib/X11/fonts/75dpi/"
    # FontPath "/usr/lib/X11/fonts/100dpi/"
    # The module search path. The default path is shown here.
    # ModulePath "/usr/lib/modules"
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/100dpi:unscaled"
    FontPath "/usr/share/fonts/75dpi:unscaled"
    FontPath "/usr/share/fonts/TTF"
    EndSection
    Section "Module"
    # This loads the DBE extension module.
    # This loads the miscellaneous extensions module, and disables
    # initialisation of the XFree86-DGA extension within that module.
    # This loads the font modules
    # Load "type1"
    # This loads the GLX module
    # Load "glx"
    # This loads the DRI module
    # Load "dri"
    Load "dbe" # Double buffer extension
    SubSection "extmod"
    Option "omit xfree86-dga" # don't initialise the DGA extension
    EndSubSection
    Load "freetype"
    # Load "xtt"
    Load "glx"
    EndSection
    Section "InputDevice"
    # Option "Xleds" "1 2 3"
    # Option "LeftAlt" "Meta"
    # Option "RightAlt" "ModeShift"
    # To customise the XKB settings to suit your keyboard, modify the
    # lines below (which are the defaults). For example, for a non-U.S.
    # keyboard, you will probably want to use:
    # Option "XkbModel" "pc105"
    # If you have a US Microsoft Natural keyboard, you can use:
    # Option "XkbModel" "microsoft"
    # Then to change the language, change the Layout setting.
    # For example, a german layout can be obtained with:
    # Option "XkbLayout" "de"
    # or:
    # Option "XkbLayout" "de"
    # Option "XkbVariant" "nodeadkeys"
    # If you'd like to switch the positions of your capslock and
    # control keys, use:
    # Option "XkbOptions" "ctrl:swapcaps"
    # These are the default XKB settings for Xorg
    # Option "XkbRules" "xorg"
    # Option "XkbModel" "pc105"
    # Option "XkbLayout" "us"
    # Option "XkbVariant" ""
    # Option "XkbOptions" ""
    # Option "XkbDisable"
    Identifier "Keyboard1"
    Driver "kbd"
    Option "AutoRepeat" "500 30"
    # Specify which keyboard LEDs can be user-controlled (eg, with xset(1))
    Option "XkbRules" "xorg"
    Option "XkbModel" "pc104"
    Option "XkbLayout" "us"
    EndSection
    Section "InputDevice"
    # Identifier and driver
    # Option "Resolution" "256"
    # Baudrate and SampleRate are only for some Logitech mice. In
    # almost every case these lines should be omitted.
    # Option "BaudRate" "9600"
    # Option "SampleRate" "150"
    # Mouse wheel mapping. Default is to map vertical wheel to buttons 4 & 5,
    # horizontal wheel to buttons 6 & 7. Change if your mouse has more than
    # 3 buttons and you need to map the wheel to different button ids to avoid
    # conflicts.
    # Emulate3Timeout is the timeout in milliseconds (default is 50ms)
    Identifier "Mouse1"
    Driver "mouse"
    Option "Protocol" "Auto" # Auto detect
    Option "Device" "/dev/input/mice"
    # Mouse-speed setting for PS/2 mouse.
    Option "ZAxisMapping" "4 5 6 7"
    # Emulate3Buttons is an option for 2-button mice
    Option "Emulate3Buttons"
    # Option "Emulate3Timeout" "50"
    # ChordMiddle is an option for some 3-button Logitech mice
    # Option "ChordMiddle"
    EndSection
    Section "Monitor"
    # HorizSync is in kHz unless units are specified.
    # HorizSync may be a comma separated list of discrete values, or a
    # comma separated list of ranges of values.
    # NOTE: THE VALUES HERE ARE EXAMPLES ONLY. REFER TO YOUR MONITOR'S
    # USER MANUAL FOR THE CORRECT NUMBERS.
    # HorizSync 30-64 # multisync
    # HorizSync 31.5, 35.2 # multiple fixed sync frequencies
    # HorizSync 15-25, 30-50 # multiple ranges of sync frequencies
    # VertRefresh is in Hz unless units are specified.
    # VertRefresh may be a comma separated list of discrete values, or a
    # comma separated list of ranges of values.
    # NOTE: THE VALUES HERE ARE EXAMPLES ONLY. REFER TO YOUR MONITOR'S
    # USER MANUAL FOR THE CORRECT NUMBERS.
    Identifier "sadf"
    HorizSync 30.0 - 83.0
    VertRefresh 56.0 - 75.0
    EndSection
    Section "Device"
    # The chipset line is optional in most cases. It can be used to override
    # the driver's chipset detection, and should not normally be specified.
    # Chipset "generic"
    # The Driver line must be present. When using run-time loadable driver
    # modules, this line instructs the server to load the specified driver
    # module. Even when not using loadable driver modules, this line
    # indicates which driver should interpret the information in this section.
    # The BusID line is used to specify which of possibly multiple devices
    # this section is intended for. When this line isn't present, a device
    # section can only match up with the primary video device. For PCI
    # devices a line like the following could be used. This line should not
    # normally be included unless there is more than one video device
    # intalled.
    # BusID "PCI:0:10:0"
    # VideoRam 256
    # Clocks 25.2 28.3
    Identifier "Standard VGA"
    Driver "vga"
    VendorName "Unknown"
    BoardName "Unknown"
    EndSection
    Section "Device"
    # unsupported card
    #VideoRam 262144
    # Insert Clocks lines here if appropriate
    Identifier "adf"
    Driver "nvidia"
    EndSection
    Section "Screen"
    Identifier "Screen 1"
    Device "adf"
    Monitor "sadf"
    DefaultDepth 24
    SubSection "Display"
    Viewport 0 0
    Depth 8
    Modes "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 16
    Modes "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 24
    Modes "1440x900" "1280x1024x60" "1024x768" "800x600" "640x480"
    EndSubSection
    EndSection
    Section "Extensions"
    Option "Composite" "Enable"
    EndSection
    thanks alot

    Simple thing to try would be to disable composite and see how you fare then
    Check the logs first, though

  • Please answer, thanks

    I have a macbook pro 13 in. 2.3 ghz with an i5 processor and 4gb ram and I really want to play games on this such as MW2 and black ops and etc. and i was wondering if i could play these games with this laptop please answer, thanks

    The truth is your going to be playing on very low settings.
    Very few 3D games can run well on the Intel HD 3000 integrated graphics, it scores a mere 11 on the Open GL test. I've seen one guy test a few 3D games and the frame rates were pretty poor.
    I'm very sorry, your machine is not a 3D gaming computer, it can play 2D games like the SIMS well
    (FYI the 2.0 ghz 15" scores 18 and the 15" 2.3 Ghz scores 30 on the Open GL tests)
    http://www.cbscores.com/index.php?sort=ogl&order=desc
    However I know of two free 3D games that will run well on your machine, they are very light weight and fun. Small maps, low detail. It's free and pretty good.
    http://sauerbraten.org/
    http://www.nexuiz.com/classic.php
    Enjoy yourself as best as you can.

Maybe you are looking for