Ubuntu Multimedia :: Games Freeze When Minimze Or Select Other Program?

Sep 22, 2010

I have steam running through wine, and i can play empire:total war with out and issue, but if I want to change a song, open a web browser, type in a chat, or anything that would deselect Empire it freezes. If I have empire in windowed mode I can move freely between programs. My system stays fine when empire freezes, have to end the empire process and reopen it. Not sure if the issue is with wine, my computer, or steam.

View 3 Replies


ADVERTISEMENT

Ubuntu :: Fullscreen Games Freeze Computer?

Aug 11, 2011

every time i start up a game like armagetron advanced or blobby volley 2 in full screen it freezes my computer. ill launch the game, and when i do the screen goes black for a moment like its going to full screen but then shows a zoomed up view of the top left of desktop. and thats it, its frozen. i have to restart.

View 5 Replies View Related

Ubuntu :: Downloaded Games Act Strange With Sound Freeze?

Feb 14, 2010

My problem is I downloaded a bunch of games, some work fine, others have no sound, others have sound for a while then have buzzing,screeching noises and can go mute and some of the games freeze. About 7 out of 10 games have this problem. I also have compiz fusion with full animations running with the globe and everything else is running smooth and fine. My computer has a intel media graphics card and its 1.73 ghz celeron processor with 1.5 gigs of ram. This is all just a big issue with games and other programs are fine.

Here is info about my computer.
noname@noname-laptop:~$ lspci
00:00.0 Host bridge: Intel Corporation Mobile PM965/GM965/GL960 Memory Controller Hub (rev 03)
00:02.0 VGA compatible controller: Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller (rev 03)
00:02.1 Display controller: Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller (rev 03)
00:1a.0 USB Controller: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #4 (rev 03)
00:1a.1 USB Controller: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #5 (rev 03)
00:1a.7 USB Controller: Intel Corporation 82801H (ICH8 Family) USB2 EHCI Controller #2 (rev 03)
00:1b.0 Audio device: Intel Corporation 82801H (ICH8 Family) HD Audio Controller (rev 03)
00:1c.0 PCI bridge: Intel Corporation 82801H (ICH8 Family) PCI Express Port 1 (rev 03)
00:1c.1 PCI bridge: Intel Corporation 82801H (ICH8 Family) PCI Express Port 2 (rev 03)
00:1c.2 PCI bridge: Intel Corporation 82801H (ICH8 Family) PCI Express Port 3 (rev 03)
00:1c.3 PCI bridge: Intel Corporation 82801H (ICH8 Family) PCI Express Port 4 (rev 03)
00:1d.0 USB Controller: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #1 (rev 03)
00:1d.1 USB Controller: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #2 (rev 03)
00:1d.2 USB Controller: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #3 (rev 03)
00:1d.7 USB Controller: Intel Corporation 82801H (ICH8 Family) USB2 EHCI Controller #1 (rev 03)
00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev f3)
00:1f.0 ISA bridge: Intel Corporation 82801HEM (ICH8M) LPC Interface Controller (rev 03)
00:1f.1 IDE interface: Intel Corporation 82801HBM/HEM (ICH8M/ICH8M-E) IDE Controller (rev 03)
00:1f.2 IDE interface: Intel Corporation 82801HBM/HEM (ICH8M/ICH8M-E) SATA IDE Controller (rev 03)
00:1f.3 SMBus: Intel Corporation 82801H (ICH8 Family) SMBus Controller (rev 03)
05:00.0 Ethernet controller: Broadcom Corporation NetLink BCM5906M Fast Ethernet PCI Express (rev 02)
06:00.0 Ethernet controller: Atheros Communications Inc. AR5001 Wireless Network Adapter (rev 01)

View 1 Replies View Related

General :: Nvidia Driver - Proprietary - Xorg/KDM - Some Games Freeze Sometimes

Apr 22, 2011

I have a problem that pops up with some games, sometimes: sauerbraten, lugaru, and nexuiz being the ones that pop to mind.

The problem is that when the game starts/loads the mouse "cursor" in the game will not work... the thing is frozen. The "fix" is to jump to a virtual terminal, via alt-ctrl-1, and restart KDM, then I log back into the session and everything is working swell.

This problem does not occur in Osmos, World of Goo, Warzone 2100, or the Linux Ryzom client.

I thought about adding an explicit /etc/init.d/kdm restart in my /etc/kde4/kdm/Xreset file, but that seems too draconian.

This has been a recurring problem on several machines with several 7000, 8000, and 9000 series Nvidia cards running under the proprietary driver, on both 32-bit and 64-bit AMD processors ever since Lenny and up through Wheezy. And it occurs on the following desktop/windowing environments: KDE4.4, icewm, fluxbox, blackbox, E17.

I would guess that it's a driver issue or a driver+xorg configuration issue.

PS: Please don't suggest that I should use the open source driver.

View 4 Replies View Related

Debian Installation :: Select And Install Software Freeze At 1%?

Mar 21, 2011

what's going wrong? :S:S

View 3 Replies View Related

Ubuntu :: Way To Select Which Output Device Program Uses?

Jan 8, 2011

Is there any way to select which output device a program uses? I notice many Ubuntu programs lack the choice to choose where the sound is outputted, for example Rhythmbox and Exaile.I have 3 sound outputs (Internal, PCI, HDMI) connected and I'd like to for example use the PCI card as default audio device but play music from Rhythmbox through the internal motherboard output.

View 2 Replies View Related

Fedora :: Run A 3d Program, Everything Except The Mouse Would Freeze And Become Unresponseive?

May 29, 2010

I am conidering installing Fedora 13, but a while ago, I don't remember if it was F12 or F12 rawhide, but I was having problems with 3d stuff. Whenever I would try to run a 3d program, Everything except the mouse would freeze and become unresponseive, so i reverted to F11. I read somewhere it was because of my GPU. Its an ATI Radeon X600. Has anyone had any trouble with this in F13?

View 7 Replies View Related

Programming :: Select() Call Does Not Detect Data In Pipe Between Parent And Child Program

Sep 23, 2009

i wanted to capture the stdout and stdin of a child process within a parent so that any output of child is sent to the parent and any input taken from the parent. code is simple enough and i have followed all code guidlines on the internet (some guidlines do differ also) my select call either hangs if i do not give a tmeout and with a timeout it returns 0 descriptors to be written to or read from:

below is the simple code for parent:

int main(void)
{
int outfd[2];
int infd[2];

[code].....

why select hangs without a timeout ... why can it not detect that the pipe is write ready i.e parent can write to it ... if it does not detect tha read pipe as having data...

View 5 Replies View Related

Ubuntu Multimedia :: Flash Videos / Games Play Really Bad

May 20, 2010

Last few years (as long as I use linux) I tried several ubuntu/debian installations, on 6-7 different computers (desktops/laptops)What a notice in common on all these installations is that flash videos and games run REALLY bad.Is this a common problem for all debian based distros or I am doing something wrong? I din't give much attention in past (even if tried some repeating flashplayer installations) but last month I'm building a flash arcade site and this flash player problem become a real pain.

View 2 Replies View Related

Ubuntu Multimedia :: Games Freezing On Quit / Resolve This?

Sep 11, 2010

When I play games and want to quit the system freezes and can't exit at any way. Sometimes even freezes while playing. Tried Urban Terror, Enemy Territory. 0 A.D. freezed while playing, but i was running it from terminal and in window mode so Alt+tab helped me out.

I have Ati Radeon HD5650, 4 gb ram Turion P520 in laptop.

Here's exactly what the terminal has put out at 0. AD code...

View 4 Replies View Related

Ubuntu Multimedia :: Games Randomly Close On Xubuntu 9.10?

Sep 27, 2010

my games randomly close on xubuntu 9.10 anyone know why and how to fix it.I have 128mb ram graphics so thats enough for my games i run.

View 2 Replies View Related

Ubuntu Multimedia :: 10.10 Ati X1250 Games - 2D+3D - Flicker But Run Smoothly

Oct 29, 2010

After having a lot of issues with my card on Ubuntu 9.04, I sadly, removed it an installed XP over it. (XP is better than Vista at least, which is what came with my Laptop, I'm still recovering from THAT traumatic experience.) I have an Acer Extensa 4420, which has a Radeon Xpress 1250 Graphics Card. I tried it again with Ubuntu 10.10 and am very pleased, I run Compiz/Desktop Effects just fine, everything is smooth and fast, and most applications run fine.

As of right now, there are two games which will not run properly. Tibia, and Frets on Fire. Both of these (Tibia is 2D Sprite based, Frets on Fire appears to be 3D but might be some sort of isometric 2D variant). They work, but PARTS of the screen flicker. In tibia, the "game window" is fine, runs at a constant 30fps (not bad, it's a slow card after all), but the chat window and inventory windows flicker at a random rate, but usually once or twice per second. On Frets on Fire, it's the colored dots that scroll on the screen, and the stage lights (though those might intentionally flicker, but they seem to follow the pattern of the dots so I'm gonna go with the idea that it's a problem.)

I tried FGLRX for grins, Compiz/etc. still worked but then nothing that used any type of hardware acceleration would even open, so I removed it. Are there any other drivers for the X1250? It's a legacy product, unfortunately. And as ATi is in this war with nVidia right now, with their new 6xxx cards coming out, I don't see any support for my old (it was old when the laptop was new) integrated GPU coming from them.

How can I make it work? Not looking for major 3D gaming here, but I would like those to work!

View 3 Replies View Related

Fedora :: Can't Select A Program From The "System Settings" Dialogue?

Jun 1, 2011

After a new installation with Fedora Core 15 KDE is starting slow. It's now giving me a lot of errors in $HOME/.xsession-errors:

Code:
kwin(5077)/kdeui (KNotification) KNotification::slotReceivedIdError: Error while contacting notify daemon "Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken."The message repeats and repeats. Sometimes I start applications and they timeout with similar messages. To be more precise: I can't select a program from the "System settings" dialogue.

Code:
klauncher(5065)/kio (KLauncher): SlavePool: No communication with slave.
Selinux is off. Any ideas?

View 3 Replies View Related

Ubuntu Multimedia :: Flash / Java Games - Crashes And Cannot Reload

Jan 18, 2010

I play two online games. One uses flash (Habbo), the other java (RuneScape). With the flash one, it loads everything up until the part where it loads the interactive elements (hovering navigators, interactive chat rooms etc), then it crashes and tells me to reload. With the java one, everything loads up until the login screen, but when I actually go to log in, it just sits there and tells me it's connecting but doesn't do anything.

I've asked the support team on Habbo for assistance, but I got a reply telling me to clear my temporary files with instructions for windows machines, even though I specified I was on Ubuntu. I did what they instructed me to (which was clearing everything from my DNS cache to my temporary files), with no amazing results. Runescape was pretty much the same. I think it's something to do with my internet... I'm not really an expert at this.

View 1 Replies View Related

Ubuntu Multimedia :: Sound Is Intermittently Scratchy Or Crackling During Games?

Apr 13, 2010

It seems like it's mostly an issue with playing games. When I play certain 3D games, the audio may work for a little while, but will start getting scratching or full of static. Some times it's a lot, and other times it's just a little bit. Most times, the sound in the game will stop working after a short moment of static/scratchy sound. Then I am left with complete silence.I've seen on other posts that PCM volume may be turned up all the way. I wasn't sure what PCM was, but in the volume controls, I saw that you could adjust each individual application's volume. I assumed that this was PCM, as the game's volume was all the way up.I turned it down some, and I still got some static in the sound, and the sound still disappeared completely after a short time.

View 3 Replies View Related

Ubuntu Multimedia :: GA-770TA-UD3 With ALC888 - Scratchy Sound In Games?

May 27, 2010

I am using 10.04 64-bit on a GA-770TA-UD3 motherboard with onboard Realtek ALC888 audio chip. I'm having scratchy sound with games like World of goo and Penumbra. I solved the problem for Penumbra by selecting OSS option instead of ALSA from the settings menu but I'dont have that option in World of goo (and many other games).I have no problem with video or audio files. The board is [URL]..

View 1 Replies View Related

Ubuntu Multimedia :: Sound And Mouse Glitch When Playing Games?

Dec 8, 2010

I'm running Lucid 10.04, kernel 2.6.32-26, 64-bit, Intel 3400 series chipset. Whenever I run Hedgewars and The Mana World, the volume fluctuates really fast, and the sound applet flashes. Then the mouse pointer freezes up for a second, then moves really slowly. Once I quit the game, everything returns to normal. I've tried disabling desktop effects, changing game settings,

View 1 Replies View Related

Ubuntu Multimedia :: ATI Radeon X1250 - Can't Play Video Or Games

Jan 17, 2011

When I don't install the packages for my ATI graphic cards (xserver-xorg-video-radeon, xserver-xorg-video-ati and radeontool), everything looks fine while my laptop boots and my desktop looks fine when the boot ends. Except that i can't look video or play games cuz it lags too much...which is normal. When I install the packages for my graphic card (xserver-xorg-video-radeon, xserver-xorg-video-ati et radeontool), I can play games, watch videos, but I notice this: when my laptop boot, just before the login screen, I get messy graphic problems...Looks like a broken old tv. Once I login, my background image is covered with white stripes...

View 1 Replies View Related

Debian Multimedia :: Run Games Via Wine - Borked VLC

Sep 5, 2011

i've been experimenting with trying to run games via wine (i don't have windows to do a dual boot with), and i just recently tried to open up a dvd in vlc, and... trouble. it works, but now the player "squishes" the widescreen image into a traditional "tv screen" box. even when do it in fullscreen, it just fills the screen with black and plops the "squished" image in the middle of it. i've watched downloaded mp4 images i got off videos like this, and they look fine, but they're not widescreen images. i'm sure there's something really simple somewhere i gotta fix

View 3 Replies View Related

Ubuntu Multimedia :: Make Games In Wine Not Stretch In Non-native Resolution?

Feb 6, 2010

I'm running WoW in Ubuntu 9.10 with wine. My screen's native resolution is 1920x1200. When I play WoW in Windows I set it to 1920x1080 in fullscreen because that aspect ratio allows me to see more of the playing field. In windows it doesn't stretch the screen so I have a black bar at the top and bottom of my screen.

When I set it to 1920x1080 under wine, it stretches my screen. Is there any way I can make it not stretch?

I tried searching forums/google but I couldn't find anything related to my question.

View 1 Replies View Related

Ubuntu Multimedia :: 10.10 Computer Crashes When In Full Screen Unigine And Some 3d Games

Apr 28, 2011

Like the title states my computer will crash when running fullscreen games and Unigine heaven 2.5 on 1920x1080. I'm using 10.10 64 bit os. I'm fairly new to Linux.

In windowed mode it runs fairly well without crashing.

I would really love to run crysis on this at some point(if you know how let me know)

My system is comprised of the following hardware...

asus M4a78lt-m MB
2 x WD Caviar Blue 500GB HDD in RAID 0
AMD X2 Athlon 3.2ghz Regor (OC'd stable at 3.75ghz)
8GB Ripjaws 1600mhz and 2GB 1333mhz super talent memory = 10gb @ 1333
Nvidia GTX460 SE 1G running a single Acer X203H 1600x900 (270.41.03 Driver)
Dual 480W PSU's
One dvd-rom

View 1 Replies View Related

Debian Multimedia :: Fullscreen Games Cause Big Number On Screen?

Mar 7, 2011

I have recently switched to Debian and got everything working great except for one thing..When I want to kill some time by playing a game (in wine or native) in fullscreen it works fine except for a big number I get in the left corner of my screen that won't go away until I close the game and open the ATI control center.This is very frustrating and quite annoying. I am using a dual monitor setup and I have tried disabling my 2nd monitor when I play a game but that still causes this problem. Also I am using the drivers I got right off the ATI website.

View 2 Replies View Related

Ubuntu Multimedia :: Programs (games,media Center) Does Not Play Well At Nvidia Drivers?

May 23, 2010

i have geforce 8800 gts, ubuntu 10.04 when i don't install nvidia drivers movies plays great ( including HD) but programs (games,media center) does not play well at all choppy when i do install the opposite is correct movies plays choppy but all other progs plays great.

View 1 Replies View Related

Ubuntu Multimedia :: Converting A Program And DVD Making Program?

Jun 23, 2011

i am running ubuntu 10.04. I am looking for a converting program and I also need a DVD making program. I'm unsure if one comes preinstalled already.

View 4 Replies View Related

Debian Multimedia :: 3D Games Fail Recent Squeeze Update?

Apr 16, 2011

I run the 2.6.32-5-686 kernel on Squeeze and the bad nvidia drivers. A recent update, and pardon for not noting which, broke 3d games on my box. From a terminal neverputt yields the following error:

ignatius@lapbox 14:56 [ ~ ]:$ neverputt
X Error of failed request:  BadWindow (invalid Window parameter)
Major opcode of failed request:  137 (NV-GLX)

[code]....

I can mv xorg.conf to xorg.conf-pre and nexuiz will fire-up. Without 3d of course. I spent an hour or so last week going over my xorg.conf but it just ain't broke! Someone else saw it, too, and reported it but his post remains alone in the thread as of 10 minutes ago.

View 5 Replies View Related

Ubuntu Multimedia :: Select DTS/AC3 Track By Default On A MKV Multitrack?

Jan 10, 2010

what can i do if i want that smplayer selects the DTS/AC3 track from a multitrack MKV file by default? for example, i've added for some MKV an AC3 audio track in order to use it with my receiver but on the MKV the "track 0" is on AAC and the "track 1" is on AC3 and always smplayer starts with the "track 0" so smplayer will select the "track 1" doing nothing by me side.

View 4 Replies View Related

Ubuntu Multimedia :: Get USB Headset To Auto Select In Skype?

Feb 20, 2010

I can get my Plantronics USB headset to work with Skype. So far so good.

However if I plug the headset in to use with skype, I have to go to sound preferences to get the usb headset to be the selected audio device. It is automatically detected but is not selected.

Is there a way to have ubuntu netbook remix automatically select the usb headset as soon as it is detected after being plugged in?

Win7 behaves this way and my wife is used to it. Visiting the sound preferences every time the headset is plugged in won't do. Answering a call in Skype requires that the headset be selected straight away. Leaving it plugged in all the time isn't convenient either.

ASUS EeePC 900
Ubuntu Netbook Remix 9.10, recently updated.

Don't want to have to resort to installing Win7 again.

View 1 Replies View Related

Ubuntu Multimedia :: Select A Codec For Ripping A Dvd To In Acidrip?

May 19, 2010

When i try to select a codec for ripping a dvd to in acidrip, there are no codecs in the menu that is meant to be there. I have tried reinstalling mencoder and acidrip but no luck. running lucid with latest updates.this has not worked since i first installed lucid. i also get this when i run mencoder.

MEncoder SVN-r1.0~rc3+svn20090426-4.4.3 (C) 2000-2009 MPlayer Team
Option of: Unknown suboption lavc
Warning unknown option of at line 9
Option format: unknown format name: 'mp4'
Error parsing option lavcopts=format=mp4 at line 10
Exiting... (config file error)

View 1 Replies View Related

Ubuntu Multimedia :: Auto-select USB Mic As Input Device?

Jul 6, 2010

I use a USB webcam with a built in microphone. It works fine, but every time I plug it in I have to go to sound properties and select it as the input device. There are no other input devices present on my system. Since it's the only one there, is there any way to get it to automatically select when I plug it in? If not, I think that would be good functionality to add. Does anyone know who or what team to contact about that?

View 3 Replies View Related

Ubuntu Multimedia :: Skype - Select A Particular Sound Device?

Oct 1, 2010

i know skype on Linux is crap but i have no choice as i now have only Ubuntu installed on this pc & I NEED SKYPE.so with the new version how do i select a particular sound device.i ask because skype only lets me select a specific sound 'platform' (pulseaudio).i have a motherboard with on-board sound & a USB voip phone (us robotics) and it the usb voip phone i want to use solely for skype

so is there something i can tell pulse audio that i want skype to ONLY use the usb phone or do i have to use the stupid sound preferences to change the system wide device to the usb phone which makes the whole thing a hindrance because i have no idea when someone calls me & when i have to quickly change the settings then turn off music then try to answer the call the person calling has gone!!!i like to have music playing in the background out of my hifi & the error noises come out of the usb phone as well when this is selected & to be honest it makes having a pc setup with multiple devices pointless and a hindrance

View 2 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved