Jump to content

ethraza

Members
  • Posts

    86
  • Joined

  • Last visited

Everything posted by ethraza

  1. Hi! I have a SBLive 5.1 with analogic 5.1 Home-Theter. First of all, I'm confused with all that emu10k1 options at alsamixer. But before a lot of tests I have a config that I think that is good. The most strange things that I trying to understand is that optins that don't have bars, is only things like "Front Out" , "Rear Out" and "Center/LFE" and make the sound change a lot when changed. But when I start to play something like a move with kaffeine or mplayer, I fell the sound changing at start and looking to alsamixer I see that a lot of new options, all named only emu10k1, with strange configs like left bar at 3 and right bar at 17... At this time, playing the move, in a terminal I do "alsactl restore" and the sound change and that new options on alsamixer change too, they become stabilished, so I see thet the sound comed back to my original configs. So... 1- How can I test the sound to know that the 5.1 is right configured and working properly? (Maybe a software like those "speaker testers" like in window$.) 2- Why the configs change when a start to play a move? 3- Someone knows if Unreal 2004 is working in 5.1 in Linux with that OpenAL Sound System that come with? Thanks in advance! [moved from Workbench by spinynorman]
  2. With this part solved, the 'big net saga' continues on: http://mandrakeusers.org/index.php?showtopic=23962
  3. Hi! Look that... :unsure: I have a server with isc dhcpd, squid, shorewall and apache. I have that virtual ips and that dhcpd subnets so the clients cannot see each other. This is working. My only problem is the authenticated proxy part. If I don't use authentication, it become simple. Only a trasparent nat or redirect to port 3128 will work. But if I ant to make the browser require user and pass, it become a little bit more complicated. This is become hard everyday and I become more My wish: That clients can be a new notebook everyday and the only thing that I want to support the owner of that notebook is to put the tcp/ip in dhcp mode to boot in my net. And maybe to put Automattically detect settings in the M$ IE Lan Settings. The notebooks will not see each other. They will see only the server and the proxy that is responding on 3128 port and is authenticating. My problem: Neigther IE or Firefox see the proxy.pac or wpad.dat on my gw server. That proxy server is authenticating and the user must enter username and password to go to internet. The only way to get this work now is manually seting the proxy ip and port on the client. But I don't want to do that. This need to be a automatic thing. My configs for now: > ifconfig eth0 Link encap:Ethernet HWaddr 00:E0:7D:E8:54:5A inet addr:110.10.1.111 Bcast:110.10.1.255 Mask:255.255.255.0 inet6 addr: fe80::2e0:7dff:fee8:545a/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:17683 errors:0 dropped:0 overruns:0 frame:0 TX packets:9096 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:1670342 (1.5 Mb) TX bytes:3432038 (3.2 Mb) Interrupt:18 Base address:0xa000 eth0:1 Link encap:Ethernet HWaddr 00:E0:7D:E8:54:5A inet addr:111.11.1.1 Bcast:111.11.1.255 Mask:255.255.255.0 UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:0 errors:0 dropped:0 overruns:0 frame:0 TX packets:0 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:0 (0.0 b) TX bytes:0 (0.0 b) Interrupt:18 Base address:0xa000 eth0:2 Link encap:Ethernet HWaddr 00:E0:7D:E8:54:5A inet addr:111.11.2.1 Bcast:111.11.2.255 Mask:255.255.255.0 UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:0 errors:0 dropped:0 overruns:0 frame:0 TX packets:0 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:0 (0.0 b) TX bytes:0 (0.0 b) Interrupt:18 Base address:0xa000 eth0:3 Link encap:Ethernet HWaddr 00:E0:7D:E8:54:5A inet addr:111.11.3.1 Bcast:111.11.3.255 Mask:255.255.255.0 UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:0 errors:0 dropped:0 overruns:0 frame:0 TX packets:0 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:0 (0.0 b) TX bytes:0 (0.0 b) Interrupt:18 Base address:0xa000 eth1 Link encap:Ethernet HWaddr 00:E0:7D:AF:58:36 inet addr:200.211.7.6 Bcast:200.211.7.63 Mask:255.255.255.192 inet6 addr: fe80::2e0:7dff:feaf:5836/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:16722 errors:0 dropped:0 overruns:0 frame:0 TX packets:6694 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:2626328 (2.5 Mb) TX bytes:710421 (693.7 Kb) Interrupt:19 Base address:0xc000 > cat /etc/dhcpd.conf ddns-update-style none; option wpad-url code 252 = text; shared-network eth0 { #option domain-name "nome.com"; option domain-name-servers 110.10.1.111; option subnet-mask 255.255.255.0; option routers 110.10.1.111; authoritative; option wpad-url "!http://110.10.1.111/proxy.pac"; subnet 111.11.1.0 netmask 255.255.255.0 { range 111.11.1.2 111.11.1.2; } subnet 111.11.2.0 netmask 255.255.255.0 { range 111.11.2.2 111.11.2.2; } subnet 111.11.3.0 netmask 255.255.255.0 { range 111.11.3.2 111.11.3.2; } } > cat /var/www/html/proxy.pac function FindProxyForURL(url, host) { if (isPlainHostName(host) || dnsDomainIs(host, "ghsix.com.br")) return "DIRECT"; else return "PROXY 110.10.1.111:3128"; } > cat /etc/httpd/conf/vhosts/Vhosts.conf <VirtualHost *> ServerName wpad #AddType application/x-ns-proxy-autoconfig .dat DocumentRoot /var/www/html RewriteEngine On RewriteRule ^/.*$ /var/www/html/wpad/wpad.dat [T=application/x-ns-proxy-autoconfig] </VirtualHost> Any help will be very apreciated. Thanks in advance!
  4. Hi! I'm downloaded and tryed muonline.com here. The official Mu have the GameGuard that don't like something in wine. I got not the same but a similar error, and con't figure out wath is happening. So I send a e-mail to the people from GG and asking for help. I really spect some kind of guidness not only for me but to Linux community. Any answer from the GG people I'll post here to share with all. I'm now playing in an alternative server without GG but I'm now waiting to play on official muonline servers too. My error:
  5. Hi! I'm happy that someone else plays Mu with Linux. :D First of all, I don't play on official server www.muonline.com. In this server your evolution is so slowly that makes you sleep playing. I play on a alternative server, in my case www.b6server.com.br. But exists many others, all of then without GameGuard on main.exe. (ex. muonline.co.uk, muonline.gr) Find one in you contry. :P But if you want to play on original server, I googled and find this about this GG error: This sitation above talk abount running under WinXP or 2000 that have profiles. In Wine is more like Win98, the profiles stay on c:\windows\profiles, I think. Maybe stay there the answer. Maybe GG simple don't like the way that Wine plays with. And read something abount someone playing with a cracked main.exe without GG. Maybe you can go on the site of GG creators and ask for it. N way... Good Look!!!
  6. I changed the Option "nvagp" "3" to Option "nvagp" "0" and it continued to hang. I remover and reinstalled the kernel-source and when try to recomplile the 6629 driver the error: /root/tmp/selfgz19095/NVIDIA-Linux-x86-1.0-6629-pkg1/usr/src/nv/nv.c:2992: w arning: `inter_module_put' is deprecated (declared at include/linux/module.h :578) make[4]: ** [/root/tmp/selfgz19095/NVIDIA-Linux-x86-1.0-6629-pkg1/usr/src/nv /nv.o] Erro 1 make[3]: ** [_module_/root/tmp/selfgz19095/NVIDIA-Linux-x86-1.0-6629-pkg1/us r/src/nv] Erro 2 make[2]: ** [modules] Erro 2 NVIDIA: left KBUILD. nvidia.ko failed to build! make[1]: ** [module] Erro 1 make: ** [module] Erro 2 -> Error. ERROR: Unable to build the NVIDIA kernel module. I changed my ATI radeon for the NVIDIA GeForce becouse ATI don't know how to do drivers for Linux and the NVIDIA comes with that now. What I do? Install a SIS? lol, is this. Thanks the help (F1). I think that the 6629 drivers will not compile with 2.6.11 kernel and I need to wait the next realise from NVIDIA without this bug like in 7167 .
  7. F1 calls Help in almost all Windowze prograns and somes Linuxes prograns. Thanks 4 ur help, I will try that things. My options nvagp was "3", I changed to "0" as u sayd. Give me a day to try. I will post the result here. What means the option nvagp 0, 1, 2 or 3?
  8. Hi! $ uname -r 2.6.11-2mdk $ ls -l /usr/src linux -> linux-2.6.11-2mdk/ linux-2.6.11-2mdk/ RPM/ $ ls -l /lib/modules 2.6.11-2mdk/ 2.6.8.1-12mdk/ I compiled the 7167 in this environment but this is hang up the system, the 6629 die with that error. I need to uninstall 2.6.8.1-12 kernel to compile nvidia drivers on 2.6.11-2? Thx n F1!
  9. Hi! $ uname -r 2.6.11-2mdk $ ls -l /usr/src linux -> linux-2.6.11-2mdk/ linux-2.6.11-2mdk/ RPM/ $ ls -l /lib/modules 2.6.11-2mdk/ 2.6.8.1-12mdk/ I compiled the 7167 in this environment but this is hang up the system, the 6629 die with that error. I need to uninstall 2.6.8.1-12 kernel to compile nvidia drivers on 2.6.11-2? Thx n F1!
  10. Hi everyone. I'm using MDK 10.1 with kernel-2.6.11.2mdk-1-1mdk (Very happy with this kernel, good bttv patchs) and kernel-source-2.6-2.6.11-2mdk. I installed the NVIDIA-Linux-x86-1.0-7167-pkg1.run, and it compilled and installed flawless. But I noticed that sometimes my system hang, when I go to net with Firefox or Konqueror. So I turned to default nv drivers to test, and nothing hanged again. So I decided to back to NVIDIA-Linux-x86-1.0-6629-pkg1.run that worked great without hangs. The tail of my nvidia-installer.log: *** /root/tmp/selfgz21384/NVIDIA-Linux-x86-1.0-6629-pkg1/usr/src/nv/nv.c: In fun ction `nv_agp_init': /root/tmp/selfgz21384/NVIDIA-Linux-x86-1.0-6629-pkg1/usr/src/nv/nv.c:2992: w arning: `inter_module_put' is deprecated (declared at include/linux/module.h :578) make[3]: ** [/root/tmp/selfgz21384/NVIDIA-Linux-x86-1.0-6629-pkg1/usr/src/nv /nv.o] Erro 1 make[2]: ** [_module_/root/tmp/selfgz21384/NVIDIA-Linux-x86-1.0-6629-pkg1/us r/src/nv] Erro 2 NVIDIA: left KBUILD. nvidia.ko failed to build! make[1]: ** [module] Erro 1 make: ** [module] Erro 2 -> Error. ERROR: Unable to build the NVIDIA kernel module. *** Now my options are: Use 7167 and need to put my finger on the power sometimes or use nv drivers without 3D. But I like to play Mu Online with wine and need 3D drivers. :P Only to document, I use xorg-x11-6.8.2-0.3mdk too. Any clue?
  11. New goods for everyone with PAL-M! I installed the new kernel-2.6.11.2mdk-1-1mdk from cooker on my MDK 10.1 and PAL-M comes functional. Thanks cooker people! Don't need to compile anything anymore! :D PS. I'm curious. What program do you used to see the TV in the old days? (deintralace software?)
  12. Is this! (Yes is the right answer.) Thanks 4 the reply, I will need this soon.
  13. How to play Mu on Linux with Wine: My install: MDK 10.1, Kernel 2.6.10, Xorg 6.8.2.0, Wine 20050211-2, NVIDIA acellerated drivers (GeForce MX 4000). 1- The Wine is the normal wine, is not winex or cedega. 2- Install Internet Explorer 6 with the script sidenet 1.8.1. Get this at http://sidenet.ddo.jp/winetips/. 3- Don't let the script Link the Fonts folder. 4- I installed the MS core fonts, but don't know if it is necessary. 5- Copy the fonts from /usr/share/fonts/wine and msttcorefonts (if installed) to ~/c/windows/fonts/. 6- The configs that metters to fonts are this: *** "PerfectGraphics" = "N" <- You can let Y here to gain some glality. "ClientSideWithRender" = "Y" <- N will be a pain, but works too. "ClientSideWithCore" = "N" <- N to gain some frames. "ClientSideAntiAliasWithRender" = "N" <- If Y here the fonts don't apper. "ClientSideAntiAliasWithCore" = "N" <- N to gain some frames. "UseDGA" = "Y" <- Is needed to play games. "Drivers" = "winealsa.drv" <- For good quality sound, but other works too. "Managed" = "N" <- As a option to the launcher may be good. *** 7- Install wine-utils is not necessary but is good. 8- Remeber to put the Mu folder on a place that are seed as a letter drive for wine, ~/c/windows/games/muonline for example is a good place. 9- Go Go Go... Play Mu and be happy. 10- Smile. Ps. All the versions are showed only to documentation, may be work with other packages versions. In resume, wine run Mu, with IE and fonts right configured. :D My entire ~/.wine/config file if you want is attached and is here: WINE REGISTRY Version 2 ;; Powered by Sidenet ;; [url=http://sidenet.ddo.jp/winetips/]http://sidenet.ddo.jp/winetips/[/url] ;; Version 1.8.1 ;; All keys relative to \\Machine\\Software\\Wine\\Wine\\Config ;; If you think it is necessary to show others your complete config for a ;; bug report, filter out empty lines and comments with ;; grep -v "^;" ~/.wine/config | grep '.' [wine] "GraphicsDriver" = "x11drv"; (x11drv, ttydrv) ;"ShowDotFiles" = "1" # [wineconf] [Version] ; Windows version to imitate (win95,win98,winme,nt351,nt40,win2k,winxp,win2k3,win20,win30,win31) ; Set version to win98 is recommended. "Windows" = "win98" ; DOS version to imitate ; Only effect when "Windows" = "win31" ;"DOS" = "6.22" ; Be careful here, wrong DllOverrides settings have the potential ; to pretty much kill your setup. [DllOverrides] ; Some native dlls won't work, so leave these builtin. ; Do not modify these lines. "advapi32" = "builtin";Native version won't work "avicap32" = "builtin";Hardware related "capi2032" = "builtin";Completely implemented "comctl32" = "builtin";Native version cause bugs. "comdlg32" = "builtin";thunk "crtdll" = "builtin";Completely implemented "ctl3d32" = "builtin";thunk "d3d8" = "builtin";Hardware related "d3d9" = "builtin";Hardware related "dbghelp" = "builtin";Native version won't work "ddeml" = "builtin"; "ddraw" = "builtin";Hardware related "ddrawex" = "builtin";Hardware related "dinput" = "builtin"; "dinput8" = "builtin";Hardware related "dispdib" = "builtin";Completely implemented "display.drv" = "builtin";Hardware related "dmusic32" = "builtin";thunk "dplay" = "builtin"; "dplayx" = "builtin"; "dpnet" = "builtin"; "dsound" = "builtin";Hardware related "dswave" = "builtin";Hardware related "dxdiagn" = "builtin"; "gdi.exe" = "builtin";Hardware related "gdi32" = "builtin";Hardware related "glu32" = "builtin";Hardware related "gult32" = "builtin";Hardware related "icmp" = "builtin";Hardware related "icwconn1.exe" = "builtin";Prevent from loading Connection Wizard "ifsmgr.vxd" = "builtin";Completely implemented "imaadp32.acm" = "builtin";Completely implemented "imm" = "builtin";Special hack needed "imm32" = "builtin";Special hack needed "iphlpapi" = "builtin";Hardware related "joystick.drv" = "builtin";Hardware related "kernel32" = "builtin";Hardware related "keyboard.drv" = "builtin";Hardware related "krnl386.exe" = "builtin";Hardware related "lz32" = "builtin";Completely implemented "lzexpand" = "builtin";Completely implemented "mcianim.drv" = "builtin";Completely implemented "mciavi.drv" = "builtin";Completely implemented "mcicda.drv" = "builtin";Completely implemented "mciseq.drv" = "builtin";Completely implemented "mciwave.drv" = "builtin";Completely implemented "midimap.drv" = "builtin";Completely implemented "mmsystem" = "builtin";Hardware related "mouse.drv" = "builtin";Hardware related "mpr" = "builtin";thunk "msacm.drv" = "builtin";Completely implemented "msacm32" = "builtin";thunk "msadp32.acm" = "builtin";Completely implemented "msvfw32" = "builtin";Hardware related "msvidc32" = "builtin";Completely implemented "mswsock" = "builtin";Hardware related "newdev" = "builtin";Hardware related "ntdll" = "builtin";Hardware related "opengl32" = "builtin";Hardware related "psapi" = "builtin";Hardware related "rasapi16" = "builtin";Hardware related "rasapi32" = "builtin";Hardware related "serialui" = "builtin";Hardware related "setupapi" = "builtin";thunk "shell" = "builtin";Special hack needed "shell32" = "builtin";Special hack needed "snmpapi" = "builtin";Hardware related "sound" = "builtin";Hardware related "sti" = "builtin";Hardware related "system.drv" = "builtin";Hardware related "tapi32" = "builtin";Hardware related "toolhelp" = "builtin";Hardware related "twain" = "builtin";Hardware related "twain_32" = "builtin";Hardware related "user.exe" = "builtin";Hardware related "user32" = "builtin";Hardware related "ver" = "builtin";Special hack needed "version" = "builtin";Special hack needed "vnbt.vxd" = "builtin"; "vtdapi.vxd" = "builtin"; "vwin32.vxd" = "builtin";Hardware related "w32skrnl" = "builtin";Hardware related "w32sys" = "builtin";Hardware related "win32s16" = "builtin";Hardware related "win87em" = "builtin";Hardware related "winaspi" = "builtin";Hardware related "wing" = "builtin";Hardware related "winmm" = "builtin";Hardware related "winnls32" = "builtin";thunk "winsock" = "builtin";Hardware related "wintab" = "builtin";Hardware related "wintab32" = "builtin";Hardware related "wnaspi32" = "builtin";Hardware related "wow32" = "builtin"; "wprocs" = "builtin";Hardware related "ws2_32" = "builtin";Hardware related "wsock32" = "builtin";Hardware related ; Windows ODBC ; If you'd like to use UNIX ODBC, remove this line. "odbc32" = "native, builtin" ; Acrobat Reader 6 Plugin ; Currently, this plugin crashes IE6 "acroiehelper" = "builtin" ; MLang ; Builtin mlang.dll can speed up Internet Explorer. ; May cause font corruptions on CJK systems. ;"mlang" = "builtin" ; you can specify applications too ; this one will apply for all notepad.exe ;"*notepad.exe" = "native, builtin" ; this one will apply only for a particular file ;"C:\\windows\\regedit.exe" = "native, builtin" ; default for all other dlls and executables "*" = "native, builtin" [x11drv] ; Number of colors to allocate from the system palette "AllocSystemColors" = "100" ; Use a private color map "PrivateColorMap" = "Y" ; Favor correctness over speed in some graphics operations "PerfectGraphics" = "N" ; Color depth to use on multi-depth screens ;;"ScreenDepth" = "16" ; Allow the window manager to manage created windows ;;"Managed" = "Y" ; Use a desktop window of 640x480 for Wine ;;"Desktop" = "640x480" ; Use XFree86 DGA extension if present ; (make sure /dev/mem is accessible by you !) "UseDGA" = "Y" ; Use XVidMode extension if present "UseXVidMode" = "Y" ; Use XRandR extension if present "UseXRandR" = "Y" ; Use the take focus protocol "UseTakeFocus" = "Y" ; Enable DirectX mouse grab "DXGrab" = "Y" ; Create the desktop window with a double-buffered visual ; (useful to play OpenGL games) "DesktopDoubleBuffered" = "Y" ; Run in synchronous mode (useful for debugging X11 problems) ;;"Synchronous" = "Y" ; ; Use the Render extension to render client side fonts (default "Y") "ClientSideWithRender" = "Y" ; Fallback on X core requests to render client side fonts (default "Y") "ClientSideWithCore" = "N" ; Set both of the previous two to "N" in order to force X11 server side fonts ; ; Anti-alias fonts if using the Render extension (default "Y") "ClientSideAntiAliasWithRender" = "N" ; Anti-alias fonts if using core requests fallback (default "Y") "ClientSideAntiAliasWithCore" = "N" ; ; Use the X Input Method (default "Y") ;;"UseXIM" = "Y" ; XIM Input Style (onthespot, offthespot, overthespot ,root) ;;"InputStyle" = "onthespot" ; ; Codepage for clipboard (0 for ANSI, 20932 for euc-jp) "TextCP" = "0" [fonts] ;Read documentation/fonts before adding aliases ;"Resolution" = "36" "HKEY_CURRENT_CONFIG\Software\Fonts\LogPixels" = "96" ;"Default" = "-adobe-times-" ;[ppdev] ;; key: io-base of the emulated port ;; value : parport-device{,timeout} ;; timeout for auto closing an open device ( not yet implemented) ;"378" = "/dev/parport0" ;"278" = "/dev/parport1" ;"3bc" = "/dev/parport2" ;[spooler] ;;Wine detects CUPS configuration automaticly. ;"FILE:" = "tmp.ps" ;"LPT1:" = "|lpr" ;"LPT2:" = "|gs -sDEVICE=bj200 -sOutputFile=/tmp/fred -q -" ;"LPT3:" = "/dev/lp3" ;[ports] ;"read" = "0x779,0x379,0x280-0x2a0" ;"write" = "0x779,0x379,0x280-0x2a0" ;[Debug] ;"RelayExclude" = "RtlEnterCriticalSection;RtlLeaveCriticalSection" ;"RelayInclude" = "user32.CreateWindowA" ;"RelayFromExclude" = "user32;x11drv" ;"RelayFromInclude" = "sol.exe" ;"SnoopExclude" = "RtlEnterCriticalSection;RtlLeaveCriticalSection" ;"SpyExclude" = "WM_SIZE;WM_TIMER;" [registry] ;These are all booleans. Y/y/T/t/1 are true, N/n/F/f/0 are false. ;Defaults are read all, write to Home ; Where to find the global registries ;"GlobalRegistryDir" = "/etc"; ; Global registries (stored in /etc) "LoadGlobalRegistryFiles" = "Y" ; Load Windows registries from the Windows directory "LoadWindowsRegistryFiles" = "Y" ; Registry periodic save timeout in seconds ; "PeriodicSave" = "600" ; Save only modified keys "SaveOnlyUpdatedKeys" = "Y" [Clipboard] "ClearAllSelections" = "0" "PersistentSelection" = "1" "UsePrimary" = "0" ; List of all directories directly contain .AFM files ;[afmdirs] ;"1" = "/usr/share/ghostscript/fonts" ;"2" = "/usr/share/a2ps/afm" ;"3" = "/usr/share/enscript" ;"4" = "/usr/X11R6/lib/X11/fonts/Type1" [WinMM] ; Uncomment the "Drivers" line matching your sound setting. ;"Drivers" = "wineoss.drv" ; default for most common configurations ;"Drivers" = "winearts.drv" ; for KDE "Drivers" = "winealsa.drv" ; for ALSA users ;"Drivers" = "winejack.drv" ; for Jack sound server ;"Drivers" = "winenas.drv" ; for NAS sound system ;"Drivers" = "wineaudioio.drv"; for Solaris machines ;"Drivers" = "" ; to disable sound "WaveMapper" = "msacm.drv" "MidiMapper" = "midimap.drv" [dsound] ;; HEL only: Number of waveOut fragments ahead to mix in new buffers. ;"HELmargin" = "5" ;; HEL only: Number of waveOut fragments ahead to queue to driver. ;"HELqueue" = "5" ;; Max number of fragments to prebuffer ;"SndQueueMax" = "28" ;; Min number of fragments to prebuffer ;"SndQueueMin" = "12" ;; Forces emulation mode (using wave api) ;"HardwareAcceleration" = "Emulation" ;; Sets default playback device (0 - number of devices - 1) ;"DefaultPlayback" = "0"; use first device (/dev/dsp) ;"DefaultPlayback" = "1"; use second device (/dev/dsp1) ;"DefaultPlayback" = "2"; use third device (/dev/dsp2) ;; Sets default capture device (0 - number of devices - 1) ;"DefaultCapture" = "0"; use first device (/dev/dsp) ;"DefaultCapture" = "1"; use second device (/dev/dsp1) ;"DefaultCapture" = "2"; use third device (/dev/dsp2) [Network] ;; Use the DNS (Unix) host name always as NetBIOS "ComputerName" (boolean, default "Y"). ;; Set to N if you need a persistent NetBIOS ComputerName that possibly differs ;; from the Unix host name. You'll need to set ComputerName in ;; HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\ComputerName\ComputerName, too. ;"UseDnsComputerName" = "N" ;; Application specific configuration ; 3 InstallShield versions who like to put their full screen window in front, ; without any chance to switch to another X11 application. ; So just catch them in a desktop window. ; Note: KDE handles this correctry. ; ;[AppDefaults\\_INS0432._MP\\x11drv] ;"Desktop" = "640x480" ; ;[AppDefaults\\_INS0466._MP\\x11drv] ;"Desktop" = "640x480" ; ;[AppDefaults\\_INS0576._MP\\x11drv] ;"Desktop" = "640x480" ; ;[AppDefaults\\_INS5176._MP\\x11drv] ;"Desktop" = "640x480" ; ;[AppDefaults\\_INS5576._MP\\x11drv] ;"Desktop" = "800x600" ;Disable window management for some apps. ; ;Densi denwachou 2003 [AppDefaults\\Blarea8.exe\\x11drv] "Managed" = "N" ; ;MuOnline - B6 Server [AppDefaults\\b6launcher.exe\\x11drv] "Managed" = "N" ; ;Half Life Demo [AppDefaults\\hldemo.exe\\x11drv] "Managed" = "N" ; ;Real Player 10 [AppDefaults\\realplay.exe\\x11drv] "Managed" = "N" ; ;Winamp [AppDefaults\\winamp.exe\\x11drv] "Managed" = "N" ;;Some apps work better with native comctl32 ;;NOTE: May cause side effects ; ;;Winamp ;[AppDefaults\\winamp.exe\\DllOverrides] ;"comctl32" = "native" ; ;;WinnyP ;[AppDefaults\\winnyp.exe\\DllOverrides] ;"comctl32" = "native" ; ;;Lunascape ;[AppDefaults\\Luna.exe\\DllOverrides] ;"comctl32" = "native" ; ;;Mame file 2 ;[AppDefaults\\mame2.exe\\DllOverrides] ;"comctl32" = "native" ;OpenJane_IE sppedup hack [AppDefaults\\Jane2ch.exe\\DllOverrides] "mlang" = "builtin, native" ;"comctl32" = "native" ;;Internet Explorer ;[AppDefaults\\iexplore.exe\\DllOverrides] ;"mlang" = "builtin, native" ;IE4,5,6 Installer [AppDefaults\\acmsetup.exe\\DllOverrides] "*comctl32" = "builtin" [AppDefaults\\grpconv.exe\\DllOverrides] "*comctl32" = "builtin" [AppDefaults\\iebatch.exe\\DllOverrides] "*comctl32" = "builtin" [AppDefaults\\updcrl.exe\\DllOverrides] "*comctl32" = "builtin" ;Adobe Reader 6.0 [AppDefaults\\AcroRd32.exe\\Version] "Windows" = "win2k" ;;Windows Explorer ;[AppDefaults\\explorer.exe\\DllOverrides] ;"shell32" = "native" ;;Windows Media Player 9 Installer ;;WARNING: Windows Media Player 9 Installer may brake your setup! ;[AppDefaults\\setup_wm.exe\\Version] ;"Windows" = "winme" ;[AppDefaults\\setup_wm.exe\\DllOverrides] ;"msvcrt" = "builtin" ;;Example: Catch setup.exe in a desktop window. ;[AppDefaults\\setup.exe\\x11drv] ;"Desktop" = "800x600" ;;Example: Catch full screen games in a desktop window. ;;Half Life Demo ;[AppDefaults\\hldemo.exe\\x11drv] ;"Desktop" = "640x480" ;;Example: XIM Input Style ;[AppDefaults\\notepad.exe\\x11drv] ;"InputStyle" = "offthespot" ;;Example: Windows version ;[AppDefaults\\sol.exe\\Version] ;"Windows" = "nt40" ;; You can add an AppDefault entry like this for such cases. ;[AppDefaults\\pickygame.exe\\dsound] ;"EmulDriver" = "N" # [/wineconf] ps. Play rWindow$ Games on Linux is more fun. [moved from Games by spinynorman]
  14. About the joypad, it was properly detected by the Linux. The problem is that the Linux games like Chromium simple don't see the joypad and don't have options to this, but I see it working with a jtest /dev/input/js0 if someone wants to know. But the Genius is another stupid company that don't see beyond the nose. I don't know how to get this working with my Linux.
  15. Thanks 4 d reply. I did a tail -f on /dev/ttyS0 and see nothing, is the same with eventx. This config I got from Internet googling about Genius Tablet, but I don't know if this is right. But I noticed that when I click the second button of my PEN, where the cursor is, the hole line get selected, so something is working in some way. Let me see you tablet configs. Who knows...
  16. <--------------------------------------------------------------------------------------------------- Hi, it is me. Is? I made in one of that sites for girls that have a lot of things to edit a little person. So I cuted out only the face and added a tux with the Mandrake star in GIMP. :D
  17. Hi everyone! Someone knows how to get a Genius Tablet USB (WizardPen) to work in Xorg? I'm using MandrakeLinux 10.1 with 2.6.10-1 Kernel. Harddrake has detected the Tablet as a HID device. I put this in my xorg.conf but did nothing: Section "InputDevice" Driver "summa" Identifier "Mouse[3]" Option "Device" "/dev/ttyS0" # It's right to a USB Device? Option "InputFashion" "Tablet" Option "Mode" "Absolute" Option "Name" "EasyPen" Option "Compatible" "True" Option "Cursor" "Stylus" Option "Protocol" "Auto" Option "SendCoreEvents" "on" Option "Vendor" "GENIUS" EndSection Section "ServerLayout" Identifier "layout1" InputDevice "Keyboard1" "CoreKeyboard" InputDevice "Mouse1" "CorePointer" InputDevice "Mouse[3]" "SendCoreEvents" # Tablet Screen "screen1" EndSection I also have a Playstation like joypad by Players and want to know how to get it to work. Thanks in advance. :D
  18. If is usefull 4 n 1: To resolve my won problem the only thing to undestand is that a shared-network statemant refers to a ethernet and not for an IP, so if all virtual IPs are in one ethernet, all configs of subnets must come inside a shared-network statement that refers to the phisycal ethernet.
  19. I need to come here to say that... I changed my ATI Radeon 9200SE 64MB AGP for an "equivalent" Nvidia card. A GeForce MX 4000 64MB AGP. The software of Nvidia is the best, everything works now. Is sad to say but the hardware of Nvidia sucks a lot. In UT2004 at 1024x768 all in High is smoothle in Radeon, with GeForce I put in 800x600, disabled trilinear and this become good but still slow down sometimes. What can we do? I love to have an ATI card with an Nvidia Drive, maybe this work great hehe. Bye
  20. I have installed Doom3... I'm close to cry now. I'm sad to say that in the next days I'll change my ATI Radeon 9200 for an Nvidia card with a great drive for Linux. I'm tyred of black screens, hangs and to wait the programmers of ATI to learn to work. Trying to figure aout ATI drivers I fill like a doing this ATI has lost another costumer for Nvidia. Sad but true. And I emailed ATI to say that, cose they need to know... Who knows, maybe a day they wake up. Bye for everyone.
  21. Thanks 4 the reply but I know do a proxy server, my problem is with the DHCP server and the "Cool Part". I googled this and I think that is is poorly documented. This make the things more complicated. If some one know a good documentation for the DHCP can be a good start. THX
  22. After to compile the 2.6.10-1mdk kernel for me, I started to see this but only sometimes. When the error occurs, if I do as root #alsactl restore I see a error at some line controls. So I did a #rm /etc/asound.state and #alsactl store to create a new asound.state file. Done, if I do a alsactl restore now no error occur, in the boot will be the same. ps. Befor to do a store, configure the sound as you wish with kmix or something so you will store this configs. No need to go back to MDK10.0 only a little of patience needed. :D
  23. I did some google search and found that noone knows what is talking about. My last dhcpd.conf : --- ddns-update-style ad-hoc; shared-network 0 { subnet 192.168.0.0 netmask 255.255.255.0 { option broadcast-address 192.168.0.255; } } subnet 192.168.1.0 netmask 255.255.255.0 { range 192.168.1.2 192.168.1.5; option broadcast-address 192.168.1.255; } subnet 192.168.2.0 netmask 255.255.255.0 { range 192.168.2.2 192.168.2.5; option broadcast-address 192.168.2.255; } --- ifconfig : --- eth1 Encapsulamento do Link: Ethernet Endereço de HW 00:02:44:25:C0:EC inet end.: 192.168.0.1 Bcast:192.168.0.255 Masc:255.255.255.0 endereço inet6: fe80::202:44ff:fe25:c0ec/64 Escopo:Link UP BROADCASTRUNNING MULTICAST MTU:1500 Métrica:1 RX packets:6718 errors:0 dropped:0 overruns:0 frame:0 TX packets:15975 errors:0 dropped:0 overruns:0 carrier:0 colisões:0 txqueuelen:1000 RX bytes:940656 (918.6 Kb) TX bytes:12740022 (12.1 Mb) IRQ:10 Endereço de E/S:0x2000 eth1:1 Encapsulamento do Link: Ethernet Endereço de HW 00:02:44:25:C0:EC inet end.: 192.168.1.1 Bcast:192.168.1.255 Masc:255.255.255.0 UP BROADCASTRUNNING MULTICAST MTU:1500 Métrica:1 RX packets:0 errors:0 dropped:0 overruns:0 frame:0 TX packets:0 errors:0 dropped:0 overruns:0 carrier:0 colisões:0 txqueuelen:1000 RX bytes:0 (0.0 b ) TX bytes:0 (0.0 b ) IRQ:10 Endereço de E/S:0x2000 eth1:2 Encapsulamento do Link: Ethernet Endereço de HW 00:02:44:25:C0:EC inet end.: 192.168.2.1 Bcast:192.168.2.255 Masc:255.255.255.0 UP BROADCASTRUNNING MULTICAST MTU:1500 Métrica:1 RX packets:0 errors:0 dropped:0 overruns:0 frame:0 TX packets:0 errors:0 dropped:0 overruns:0 carrier:0 colisões:0 txqueuelen:1000 RX bytes:0 (0.0 b ) TX bytes:0 (0.0 b ) IRQ:10 Endereço de E/S:0x2000 --- service dhcpd start [Failed] syslog : --- dhcpd: Not searching LDAP since ldap-server, ldap-port and ldap-base-dn were not specified in the config file dhcpd: Wrote 0 leases to leases file. dhcpd: Interface eth1 matches multiple shared networks dhcpd: dhcpd: exiting. dhcpd: dhcpd inmcio failed --- Why?
  24. Ok, please n 1? I started with problens... I'm having problens with dhcpd.conf ... crazy
  25. Thanks 4 this link above. To let easy 4 every one: as root: $ rpm -e fglrx* ($ rpm -qa|grep fglrx to know the rest of the name) $ rm -rf /lib/modules/fglrx $ rpm --replacefiles -ivh --force fglrx_6_8_0-8.8.25-1.i386.rpm (www.ati.com) (if you kernel is 2.6.10, if is 2.6.11 see the link above. $ cat /proc/sys/kernel/osrelease to know the kernel) cd /lib/modules/fglrx/build_mod patch -p0 < fglrx-kernel2.6.10.patch (http://www.stanford.edu/~fenn/linux/fglrx-kernel2.6.10.patch to download the patch) cd /lib/modules/fglrx/build_mod sh make.sh cd /lib/modules/fglrx sh make_install.sh $ fglrxconfig (This will make a /etc/X11/XF86Config-4 you need to copy that to xorg.conf) (Now keep in mind that you need a .conf file, I suffer a lot with this, but drakxconf helped me here.) Good gaming To everyone on this list PS: With this drive, 8.8, if I let the Option in .conf "UseFastTLS" "2", the wine works but the 3D goes to space and if I let "UseFastTLS" "0", wine blank my screen but the 3D works ok. I prefer UT2004 working, and you?
×
×
  • Create New...