/srv/irclogs.ubuntu.com/2007/10/14/#ubuntu+1.txt

yaccinbut why do i have to do all the stuff?01:21
yaccini never can remember all this :(01:21
boselectait's your program?01:21
=== hoora80 [i=hoora@gateway/tor/x-33151c6f4aac1130] has joined #ubuntu+1
yaccinon windows/cygwin i only do gcc wurzel.c and it works... id ont even have to include math.h01:22
yaccinyes01:22
boselectayes well just because something compiles on a given compiler doesn't mean the code is bug-free.01:22
=== lee_ [n=lee@c-71-59-177-24.hsd1.wa.comcast.net] has joined #ubuntu+1
yaccinits the same code our teacher used :(01:24
boselectaplease tell me it's not a university01:24
lee_sorry didnt mean to spam but I am gett highly flusterd  any ways there was a synatax error01:24
yaccinboselecta: it is -_-01:24
yaccinthe teacher spent ~90 minutes on the hello world program01:24
lee_Your selection (1 or 2)? 101:24
lee_/home/lee/Desktop/LiMaO-FF32wPlugins: line 144: syntax error near unexpected token `done'01:24
lee_an how the hadies do I register01:25
=== Scunizi [n=Scunizi@ip72-197-240-36.sd.sd.cox.net] has joined #ubuntu+1
boselecta?REDO FROM START01:25
yaccinLiMaO: what does that script do?01:25
lee_because not being abl to do a tell is right erking me off01:25
=== XsteelWolf [n=XsteelWo@cm171.epsilon107.maxonline.com.sg] has joined #ubuntu+1
yaccinboselecta: i dont even know what is wrong with that code :/01:25
lee_I think its the os that is messed up01:26
lee_I am aobut to get rid of it01:26
boselectaOK. for one thing, main has a return type. so you really want int main(), and not main()01:26
boselectaand before the end of main() you want to return 0.01:26
lee_LiMaO it cam up wint a syntax error01:27
boselectaso that's what it means when it says "control reaches end of non-void function"01:27
=== benny269 [n=kavmeist@bb-87-81-176-169.ukonline.co.uk] has joined #ubuntu+1
pwnt-so I paid for some company broadcasting some tournoment online, and I'm trying to watch their broadcast right now, It doesn't work. is it from linux? :<01:27
boselectayou have to return an int for main. and its good practise to advertise that (main is perhaps the one example where you can return something without saying so)01:27
lee_how do I register this stupid thing01:27
benny269 any networking/wireless help? my wireless is broadcasting and ubuntu is configured for it, wireless light comes on but no internet?!01:28
pwnt-it doesn't say plugin missing or anythin01:28
=== firefox90 [n=john@c-67-165-141-242.hsd1.il.comcast.net] has joined #ubuntu+1
yaccinboselecta: ok but why do i have to use that many options?01:28
pwnt-tournoment is October 14-20, 2007.01:28
firefox90What is the cmd to install Compiz manager for gutsy?01:28
pwnt-is it october 14th in the united states yet?01:28
pwnt-cause here in my country its already 14 Oct.01:28
yaccinfirefox90: sudo apt-get install compizconfig*01:29
firefox90thanks01:29
boselectayaccin: man gcc. but -W -Wall -pedantic -ansi are there to tell you if you've done something non-standard (extra warnings)01:29
turgonWould it work in Gutsy the 64-bit debian package available at WineHQ for Feisty amd64?01:29
boselecta-O3 is optimized code01:29
lee_so omne was askig waht is the code for..its supose to run soe tht 64 bits can run the 32 bit version of fire fox and have flash and java01:29
boselecta-lm tells it that it has to link against the math library01:29
=== Timbooooo [n=Goatsex@adsl-75-42-225-90.dsl.austtx.sbcglobal.net] has joined #ubuntu+1
Timbooooodid the new install of ubuntu help with wireless?01:30
boselectaand -o gives it the name of the executable output01:30
firefox90yaccin, it said it couldn't find package compizconfig01:30
=== frostburn [n=frostbur@cpe-74-74-196-185.rochester.res.rr.com] has joined #ubuntu+1
yaccinboselecta: why do i have to tell gcc to link against math library?01:30
lee_ok how aobut it I get rid of KDE01:30
firefox90did I need that * at the end?01:30
yaccinfirefox90: compizconfig*01:30
yaccinnot compizconfig01:30
benny269timbooooo: mine stopped working with the new version?01:30
lee_and go with ubunto 64 bit01:30
firefox90oh got it, thanks01:30
Timbooooobenny269 that isnt good..01:30
boselectahow is it supposed to know, otherwise?01:30
lee_or send tht old code through01:31
yaccin#include <math.h>01:31
yaccin:)01:31
benny269i know i dont know how to fix it?01:31
yaccinthats how gcc should be supposed to know ^^01:31
LiMaOyaccin: it installs firefox32 + java + flash + mplayer plugins01:31
=== vorian [n=vorian@ubuntu/member/pdpc.supporter.active.Vorian] has joined #ubuntu+1
pwnt-I have ident2 installed, and port forwarded for identd. but why it's still not working, can someone help me with this plx01:32
boselectathere are two distinct steps going on. the #include declares the function you need for compiling. once it's compiled, it links. you're just doing it all on the same line01:32
yaccinLiMaO: sudo apt-get install kubuntu-restricted*01:32
LiMaOlee_: first thing, when you run something, READ IT, but do not paste it all in the channel.. that's flooding01:32
yaccin:P01:32
=== Aranel [n=Aranel@unaffiliated/aranel] has joined #ubuntu+1
LiMaOyaccin: on a 64bit machine, that is01:32
yaccinLiMaO: ah ok01:32
LiMaOlee_: are you there?01:32
yaccinboselecta: hmm but when i say, that i need that for compiling it should be obvious, that i need it for linking also?01:33
pwnt-SO identd help?01:33
=== d4rkmonkey [n=Jared@CPE000bcd15b4ae-CM00195efba7ac.cpe.net.cable.rogers.com] has joined #ubuntu+1
yaccinso  #include <math.h> should imply -lm01:34
yaccinbut obviously it doesnt...01:34
lee_yes Iam here I found a secndary terminal01:34
MisterNyaccin: quite obviously01:34
MisterNyaccin: compile and link are separate and separable steps01:35
yaccinMisterN: only on linux it seems01:35
firefox90yaccin, does this mean a correct installation? "ldconfig deferred processing now taking place"01:35
yaccinsomebody should have told me :(01:35
yaccinfirefox90: yes01:35
yaccini also got that ^^01:35
MisterNyaccin: well, other systems don't separate the math library from the c library01:35
LiMaOlee_: wait a second, i'm fixing that syntax error and will resend you the script, ok?01:35
lee_LiMaO Iam here I found a second console utillity that is different01:35
boselectayaccin no #include <math.h> does not imply -lm01:36
lee_ok01:36
boselectayou're right that somebody should have told you01:36
yaccinboselecta: on windows it does :(01:36
lee_ok I trashed it01:36
yaccinnow i know more then my teacher :D01:36
LiMaOlee_: what was the script asking you when it gave the error?01:36
MisterNyaccin: no it doesn't01:36
MisterNyaccin: windows has no -lm01:36
lee_erg01:37
yaccinyes01:37
lee_something aobut line 144 or something01:37
firefox90What is the super key?01:37
MisterNyaccin: but this is no C channel01:37
boselectaand i wish i could come up with the reason it's like that, but the best i can do is that there are separate steps going on. #include is about compiling. -lm is about linking. if you wanted, you could do this on two separate lines, and then it would be more apparent.01:37
firefox90nvm01:37
yaccinthats why i didnt even thought about that linux had something like -lm01:37
lee_if you still there can you scroll up01:37
yaccinsorry :)01:37
lee_seeing how that boot ereased my lines01:37
MisterNyaccin: it's documented01:37
MisterNyaccin: but  of course, some things you just stumble upon and don't know before01:37
yaccinthanks :)01:38
lee_I think I just turned off the remeber line lol01:38
lee_oh wait never mind01:38
lee_oh wait jsut a sec Ill get it off my card01:38
LiMaOlee_: i understand it's line 144, but what was it asking you? did the script ask you if you wanted to make firefox32 the default browser?01:38
boselectacompile: gcc -W -Wall -ansi -pedantic -O3 -c wurzel.c01:39
boselectalink:  gcc -lm wurzel.o -o wurzel01:39
lee_it was asking if I wanted to to this yes  or no01:39
boselectathe linking step doesn't see the source code01:39
lee_when I said yes that is where the line errored at01:39
lee_it was right at the beginning01:39
LiMaOok, i'll send you the script again01:39
LiMaOyou run it01:40
LiMaOand tell me if it gives any error01:40
LiMaObut please READ what it will write on your screen01:40
lee_ok01:40
LiMaOi'm sending you the file, accept it01:40
lee_Your selection (1 or 2)? 101:41
lee_/home/lee/Desktop/LiMaO-FF32wPlugins: line 144: syntax error near unexpected token `done'01:41
lee_taht is what it gave me01:41
=== rust [n=sgarner@host-81-20-37-12.eckoh.com] has joined #ubuntu+1
LiMaOlee_: but what was it asking?? selection 1 or 2 is to install or uninstall and is not connected to line 14401:42
LiMaOi need to know WHAT the script asked you.. you answered 1 to WHAT question?01:42
rusthey, does anybody know where XGL writes it's logs when it's automatically started in gusty?01:43
rustI can't get xgl to start01:44
=== emet [n=emet@unaffiliated/emet] has joined #ubuntu+1
LiMaOlee_: run the new script i just sent you.. tell me if it gives the same error01:44
yaccinxgl sucks use aiglx :P01:44
lee_section 101:44
lee_ok01:44
yaccinrust: what graphics card do you use?01:44
rustyaccin: Probably will do from monday/tuesday!01:44
rustyaccin: ati, need to use fglrx01:45
yaccinwhy do you NEED fglrx=01:45
yaccin?01:45
=== nomasteryoda [n=nomaster@ip68-225-112-12.mc.at.cox.net] has joined #ubuntu+1
rustno aiglx support for my card in the open drive01:46
lee_wahts the comand for changing to desktop?01:46
rustyaccin: at least that's why I assume I NEED it :)01:46
lee_Just a sec I am down loading the other console01:46
LiMaOlee_: RIGHT CLICK on the script file and chose RUN IN TERMINAL01:47
LiMaOno need to use command line01:47
LiMaOlee_: wait, trash (delete) that script i sent you01:48
LiMaOgotta change something01:48
lee_ok I think I found the issue, I do not have terminal and Iam dl right now01:48
boselectayaccin: sorry i'm not a registered user. i can't msg you (although i have sent several)01:48
yaccinlee_: terminal = konsole01:48
LiMaOlee_: you did have terminal.. terminal = console = konsole01:48
lee_oh eh wel lIhave 2 now lol01:49
yaccinboselecta: ah its ok, i think i got an explanation in #gcc :)01:49
lee_scrpt deleted and ereased01:49
=== matysek [n=matysek@68.Red-88-14-182.dynamicIP.rima-tde.net] has joined #ubuntu+1
lee_eh well I have terminal now lol01:50
LiMaOlee_: i'll send you the correct script, with everything fixed01:51
lee_ok01:51
=== Dannilion [n=danni@149.254.200.220] has joined #ubuntu+1
LiMaOlee_: accept the file01:52
LiMaOafter it's finished downloading, just right click on it01:52
lee_I did and it over wrote the other01:52
LiMaOare you sure it wrote over?01:52
firefox90Where is the setting where I can change the number of desktops I have?01:53
LiMaOlee_: now right click the file and choose 'run in terminal'01:53
yaccinfirefox90: in compiz?01:53
yaccingeneral settings01:53
firefox90Yes01:53
yaccin*general options01:53
LiMaOlee_: are you still with me?01:53
yaccinon the "Desktop Size" tab01:53
=== disconnected [n=kavmeist@bb-87-81-176-169.ukonline.co.uk] has joined #ubuntu+1
firefox90Ok nvm, how do I change the number of regular old desktops01:54
firefox90(bottom right corner)01:54
yaccingnome or kde?01:54
LiMaOfirefox90: right click the bottom right corner icon01:54
LiMaOfirefox90: and choose preferences01:55
firefox90ah01:55
lee_its executing01:56
yaccinLiMaO: apt-get install kubuntu-restricted-extras should work for 64bit, shouldnt it?01:56
lee_and at 100 percent by the time Ima finished01:56
disconnectedmy wireless doesnt work with - wep protection any idea why?01:56
LiMaOthere's no 64bit java01:56
LiMaOlee_: is it done?01:56
LiMaOlee_: i recommend you to choose to make firefox32 your default browser01:56
lee_no its munching still01:57
yaccinLiMaO: so what happens when you try to install kubuntu-restricted-extras on a 64bit kubuntu? ^^01:57
lee_I will01:57
LiMaOyaccin: i dunno.. i don't use kubuntu here =/01:57
lee_I chose 101:57
lee_hers the screwy thing it accept the file form the card not the desk top01:58
lee_now isnt that a screwy t hing01:58
rust*bump* anybody had problems with xgl starting with fglrx?01:58
lee_its still munching01:59
rustI used to run the trevinos repo and have already removed all the old compiz packages and reinstalled.01:59
rustI'm not using my old xgl gdm session, just the default gnome one01:59
lee_ERROR: Certificate verification error for help.ubuntu.com: unable to get local issuer certificate02:00
lee_lol02:00
=== buzztracker [n=buzztrac@pelikan.garga.net] has joined #ubuntu+1
rustfglrxinfo says im running the fglrx driver (not mesa) and glxinfo reports that I have direct rendering.02:00
lee_eh it didnt alow me to say y lol02:00
LiMaOlee_: oh well, let me use another source for that download02:01
lee_it jsut ran over its self02:01
LiMaOwait a second and i'll send you a new version02:01
lee_ok02:01
rustI have uninstalled xgl-server and reinstalled and still nothing02:01
=== Demize [n=demize@CPE000d881fcf75-CM0011e67c122f.cpe.net.cable.rogers.com] has joined #ubuntu+1
rustwhen I try to log in it waits for about 10 seconds then gdm restarts.02:01
LiMaOlee_: delete that script02:02
=== disconnected [n=kavmeist@bb-87-81-176-169.ukonline.co.uk] has joined #ubuntu+1
lee_Idid02:02
DemizeI've found a bug in Gusty, where do I file it?02:02
disconnecteddoes anybody else know of the bug where the login name and password are oversized for the dialog box?02:03
lee_ok I delted it from my card..it seems that this thing prefers cards then the desktop methid lol02:03
rustdisconnected: do you mean why?02:03
lee_I actaully dragged and dropped it into the conole02:04
disconnectedrust: well yes are you familiar with it and know how to solve it?02:04
rustdisconnected: im no ubuntu guru  but I've had something very similar02:04
rustdisconnected: it also knackered subtitles in VLC02:04
=== Reaby [n=reaby@dsl-kpogw1-fe2edf00-76.dhcp.inet.fi] has joined #ubuntu+1
=== cyclonut [n=tristan@65-183-133-47-dhcp.burlingtontelecom.net] has joined #ubuntu+1
rustdisconnected: it was gnome mis-detecting my DPI.02:05
LiMaOlee_: accept the new script file and run it02:05
lee_Ihad to save it though it seems that I don't have the right click option02:05
rustdisconnected: (you know what that means?)02:05
disconnectedrust: dont have vlc yet but when i type in my username the letters behind the letterbox are huge and you can only see an edge or 2 to make out what it is? same thing you had?02:05
LiMaOlee_: run the new version now02:05
rustdisconnected: sounds the same02:05
disconnectedrust: have you fixed it or not?02:06
rustdisconnected: I have, just trying to remember how02:06
rustdisconnected: it was simple (to forget!)02:06
disconnectedrust: i cant even think how to word the problem to google it? :S02:08
=== joe_ [n=joe@24-119-238-3.cpe.cableone.net] has joined #ubuntu+1
rustdisconnected: dpi ubuntu huge font02:09
rustdisconnected: im sure that's how I found it02:09
rustdisconnected: here you go: http://www.extremetech.com/article2/0,1697,2126521,00.asp02:09
lee_its executing though it said file already found lol but its over riding it02:10
lee_is the "yes on the finaly part auto"?02:11
=== levander [i=cponder@user-1121qke.dsl.mindspring.com] has joined #ubuntu+1
rustdisconnected: I'm pretty sure that the command listed worked for me.  But im not giving any guarantees :)02:11
LiMaOlee_: i did not understand your question02:11
levanderHas anyone gotten instiki up and running on Gutsty?  I've got it up and running (from Rubygems) on Feisty, but no idea if I'll lose all my stuff because instiki won't run on Gutsy.02:11
lee_tar: Error is not recoverable: exiting now02:11
DemizeHas anyone other than me experienced a black window when a window is opened, sometimes updating when the window is moved and sometimes staying black?02:11
Demize!bugreport02:11
ubotuSorry, I don't know anything about bugreport - try searching on http://ubotu.ubuntu-nl.org/factoids.cgi02:11
Demize!bug02:12
ubotuIf you find a bug in Ubuntu or any of its derivatives, please file a bug report at: http://bugs.ubuntu.com/  -  Bugs in/wishes for the bots can be filed at http://launchpad.net/products/ubuntu-bots02:12
lee_jsut a sec scanning the the hting02:12
rust!xgl02:12
ubotuCompiz (compositing window manager) and XGL (X server architecture layered on top of OpenGL) - Howto at http://help.ubuntu.com/community/CompositeManager - Help in #ubuntu-effects02:12
lee_my question was was the last option that siad yes or no was it an automatic yes?02:12
LiMaOlee_: no automatic thing, you gotta answer it02:13
lee_because I was cahtitng and it did even alow me to answer it02:13
lee_ok it never allowed me to02:13
lee_on the final part02:13
lee_shoud I try executing the browser>?02:13
disconnectedrust: which of these commands am i using?02:14
lee_wahts the comand line for fire fox02:14
lee_firefox32?02:14
LiMaOlee_: if you chose to make it your default browser just open firefox how you would before running the script02:14
LiMaOor use firefox3202:14
rustdisconnected: actually I've just seen it in the new appearance tab02:14
lee_so either way then ok02:15
lee_testing it02:15
rustdisconnected: go to the system menu -> preferences -> appearance02:15
LiMaOlee_: yesterday you followed my instructions and got it working. we're gonna make it work today again hehe02:15
rustdisconnected: then the fonts tab, then click the details button02:15
disconnectedrust: what's your setting?02:16
rustdisconnected: and there is a box for resolution (DPI).  Depends on your monitor.02:16
=== dublpaws [n=none@207.3.149.84] has joined #ubuntu+1
rustdisconnected: start with 96.02:16
joe_does anyone know anything about dual booting I just installed gutsy on my laptop w xp02:16
disconnectedrust: my monitor is a 15.4 wide and 96 works fine for me, its just the login i want to change, not anything else?02:16
usserjoe_: windows was there before gutsy?02:17
lee_trying to ecute fire fox3202:17
joe_I created a fat32 partition during the gutsy install.  the fat32 shows up in windows but not in ubuntu?02:17
usserjoe_: then everything should be dandy02:17
Ximalhi guys02:17
lee_didnt run02:17
joe_yes windows was there first02:17
LiMaOlee_: let me fix it for you02:17
lee_and that other way said plug ins needed02:17
usserjoe_: windows boots fine?02:17
LiMaOlee_: first thing, you gotta follow my next instructions precisely02:17
rustdisconnected: I have no idea on the maths.02:17
Ximalyou gotta mount it joe..02:17
LiMaOlee_: do you want me to access your computer and fix it for you?02:17
usserjoe_: u most likely have to add it to fstab manually02:17
lee_ok you want me to just remove fire fox?02:17
Ximalyeah..02:17
lee_and relaod it02:18
Ximaltryo using gparted02:18
LiMaOlee_: no, do not remove it02:18
joe_usser how do I do that?02:18
Ximalgparted will show if the partition is even showing up02:18
rustdisconnected: and you have a point about setting it in gnome02:18
lee_ok02:18
LiMaOlee_: there's no need to uninstall anything02:18
LiMaOlee_: i will give you some commands to type on the terminal02:18
lee_ok02:18
=== ibara [n=ibara@cpe-74-75-208-191.maine.res.rr.com] has joined #ubuntu+1
LiMaOyou type it02:18
lee_ok02:18
usserjoe_: install gparted02:18
=== albert23 [n=albert@86.81.99.204] has left #ubuntu+1 []
disconnectedrust: well no problem but like i said changing the dpi changes the WHOLE desktop and its only the login letterbox we want to change02:18
LiMaOand i'll see your computer screen, ok?02:18
lee_ok I cleared that line02:18
usserjoe_: sudo apt-get install gparted02:18
rustdisconnected: sorry I, can't remember how I fixed it exactly but it was definately with a dpi setting02:18
rustdisconnected: yep, you need to set the dpi for X not gnome02:19
LiMaOlee_: type on the termina:  sudo apt-get install x11vnc02:19
lee_by the way it likes the card that I have been using lol..it executes everytime02:19
usserjoe_: when installed open it up and find your fat32 partition name02:19
disconnectedrust: what is X?02:19
rustdisconnected: im not a guru, maybe somebody else knows?02:19
XimalQuick question guys...02:19
=== Demize [n=demize@CPE000d881fcf75-CM0011e67c122f.cpe.net.cable.rogers.com] has left #ubuntu+1 []
rust!X02:19
ubotuThe X Window System is the part of your system that's responsible for graphical output. To restart your X, type  sudo /etc/init.d/?dm restart  in a console - To fix screen resolution or other X problems: http://help.ubuntu.com/community/FixVideoResolutionHowto02:19
usserjoe_: after that try sudo mount /dev/partname /mnt02:19
usserjoe_: see if it mounts ok02:19
LiMaOlee_: i do not understand what you mean by 'card'02:19
rustdisconnected: read the message from ubotu02:19
Ximalis there any way to build a box ... that is linux specific friendly with the hardware ?02:19
LiMaOlee_: type    sudo apt-get install x11vnc02:20
LiMaOon the konsole02:20
usserjoe_: if it does gksu gedit /etc/fstab02:20
lee_my sd card02:20
=== slackern [n=slackern@81.94.93.216] has joined #ubuntu+1
lee_its executing02:20
LiMaOlee_: ok, tell me when it's done02:21
lee_its done02:21
usserjoe_: and add something like that /dev/partname /media/winshare      auto    defaults        0       202:21
disconnectedrust: the fixvideoresolution bit?02:21
dublpawswhich kernel is gutsy going to ship with?02:21
rustdisconnected: you asked what X was.02:21
Ximalnot sure02:21
usserdublpaws: 2.6.22-14 probably02:21
Ximalbut gutsy is My favorite edition of linux..02:21
usserjoe_: ?02:22
dublpawsthanks usser02:22
Ximalit's the nicest one and it works with my wireless laptop02:22
Ximallol02:22
joe_working on it02:22
joe_thanks02:22
rustdisconnected: it's not your solution.  but this might be http://xubuntulinux.blogspot.com/2006/07/ubuntu-set-correct-dpi-for-x-server.html02:22
LiMaOand tell me when it's done02:22
lee_wahts taht?02:22
usserjoe_: oh ok02:22
LiMaOlee_: that's the command needed for me to view your screen and help you02:22
pwnt-whats the different between "update-manager -d -c" & "update-manager -d"02:23
lee_ok02:23
pwnt-i mean what is -c02:23
Ximalis there a way to take all the installed apps and get them burned to a disc ... including special drivers ... so that when you reinstall buntu on a newer machine you can keep them.. kindof like a package install ?02:23
LiMaOthen after you type that, just keep looking at your screen, and do not be afraid, i'm gonna fix it for you02:23
lee_so now waht do I executeok02:23
lee_will do I understnad what it is02:23
Ximalerrr when you install applications.. are they saved to a certain folder ?02:23
Ximalthat might be easier to answer02:23
usserXimal: u want aptoncd02:24
lee_can you see waht I have up so far?02:24
=== riotkittie [n=tracy@cpe-72-228-37-187.nycap.res.rr.com] has joined #ubuntu+1
LiMaOlee_: no man, wait02:24
usserXimal: and yes they are saved in /var/cache/apt/archive02:24
ussers02:24
joe_usser how do I find gparted once its installed02:24
LiMaOlee_: did you type the command i gave you?02:24
ussererr archives02:24
lee_yes02:24
Ximalthank you usser02:24
LiMaOthe command that starts with    x11vnc02:24
=== ConstyXIV [n=andrew@74-138-236-52.dhcp.insightbb.com] has joined #ubuntu+1
usserjoe_: just type in console gparted02:24
Ximaljoe _ : go to terminal and type gparted02:24
LiMaOyou gotta type it in konsole02:24
Ximalit's also in system menu02:25
LiMaOand do not close konsole02:25
usserLiMaO: lol its never gonna work, he's probably behind the router of some sort02:25
Ximalorgasm !02:25
Ximalerr !orgasm02:25
=== axjv [n=angelic@c-76-26-9-254.hsd1.fl.comcast.net] has joined #ubuntu+1
Ximal!orgasm02:25
ubotuSorry, I don't know anything about orgasm - try searching on http://ubotu.ubuntu-nl.org/factoids.cgi02:25
Ximallol02:25
LiMaOusser: well, let's test it hehe02:25
lee_I cut and pasted it02:25
usserXimal: but aptoncd is better option02:25
axjvO_O02:25
Ximalyes... usser it is.. it just saved me ALOT of problems !02:25
usserXimal: no messing around02:25
axjv!anything02:25
ubotuSo, you wanted to lure me into saying I don't know anything about anything? Yeah, that would be funny, of course. Now leave me alone.02:25
axjv=(02:26
Ximallol @ botu02:26
usserahahaha02:26
ussersmarty pants02:26
lee_Unpacking x11vnc (from .../x11vnc_0.8.2-2_amd64.deb) ...02:26
lee_Setting up x11vnc (0.8.2-2) ...02:26
Ximalowner of ubotu ... show yurself !02:26
axjvThe bot is mean.02:26
Ximallol02:26
lee_taths waht it gave me02:26
LiMaOlee_: that's ok02:26
Ximalthe bot owner is watching us.. LOL02:26
LiMaOnow there's one more command02:26
pwnt-My gutsy has problems, I click "Show hidden files" while im browsing in file browser. And it doesn't show them. WHY02:26
LiMaOi cannot write it in the channel02:26
LiMaOso pay attention to the tabs02:26
LiMaOi will send a private message02:27
=== Zasch [n=Zasch@c-98-202-29-80.hsd1.ut.comcast.net] has joined #ubuntu+1
lee_ok02:27
usserjoe_: hows it going?02:27
axjv!ubotu02:27
ubotuI am ubotu, all-knowing infobot. You can browse my brain at http://ubotu.ubuntu-nl.org/factoids.cgi - Usage info: http://wiki.ubuntu.com/UbuntuBots02:27
ZaschHello. When Gutsy comes out in a bit, what exactly is it going to change? Am I going to have to reinstall Ubuntu or anything?02:27
Ximal!hello ubotu02:27
ubotuSorry, I don't know anything about hello ubotu - try searching on http://ubotu.ubuntu-nl.org/factoids.cgi02:27
Ximalughh..02:27
LiMaOlee_: did you see the tab with my name?02:27
Ximalok.. nough playing around.. sorry usser02:27
LiMaOlee_: read what's written on it02:27
XimalI was hoping it had some type of interaction/karma system02:27
lee_success02:27
lee_to much to read lol02:28
LiMaOlee02:28
LiMaOdid you typed that command?02:28
lee_ok02:28
lee_yes02:28
joe_usser : found the name /dev/hda4 but having issue in terminal, one minute02:28
=== Powerking [n=root@c-67-163-250-25.hsd1.pa.comcast.net] has joined #ubuntu+1
disconnectedrust: that link just gives you cmdline to change the dpi same as in the system>prefs menu02:28
LiMaOlee_: the one i wrote on the private message?02:28
LiMaOwhat happened after you typed it?02:29
rustdisconnected: the first one does, try the last link I sent02:29
lee_it executed a bunch of code02:29
Danniliondoes anyone know why I get sound but only a green fuzzy picture when trying to watch videos on my gutsy desktop box? It's on every player I have on there.02:29
=== Vorian [n=Steve@ubuntu/member/pdpc.supporter.active.Vorian] has joined #ubuntu+1
=== jtt [n=jtholmes@adsl-065-006-144-253.sip.asm.bellsouth.net] has joined #ubuntu+1
lee_13/10/2007 17:27:41 deleted 0 tile_row polling images.02:29
lee_whit that at the ending02:30
rustdisconnected: it's for X.  Like I said im not at the compu I had a problem with so I can't check what I did and I can't remember, but it was to do with DPI02:30
lee_something aobut rena mming mouse02:30
rustdisconnected: just keep searching google for ubuntu huge fonts login02:30
lee_and  jsut a sec02:30
LiMaOlee_: you want an honest suggestion? reinstall your system. use a 32bit system.02:31
lee_ok it gave me this02:31
lee_13/10/2007 17:27:41 passing arg to libvncserver: -f02:31
lee_13/10/2007 17:27:41 passing arg to libvncserver: -passwd02:31
LiMaOlee_: download 32bit feisty02:31
LiMaODO NOT FLOOD THE CHANNEL02:31
LiMaOthere's no need to paste the command output02:31
lee_no I was giving 2 lines only02:32
lee_how did we have it opperational last time?02:32
lee_or is my system goin into security of somekind02:32
=== mnoir [n=bos@h69-131-75-137.69-131.unk.tds.net] has joined #ubuntu+1
joe_usser:  says-   mount point /mount does not exist02:33
lee_I have it on disk Ill ge tit02:33
lee_grrrrrr02:33
Ximalusser : why won't it let me select non-free's ?02:33
lee_hiow aobut if I go with 64 bit fiesty02:33
lee_and trash k?02:33
lee_or waht ever this thing is?02:34
LiMaOlee_: run the script i gave you (the latest version).. and choose OPTION 2 (uninstall) .. then try it again and choose OPTION 1 (install)02:34
disconnectedis there any simple solution for all the added extras needed on a fresh install.......ie codecs, support for file formats, useful progs etc?02:34
usserjoe_: what was the command that gave u this?02:34
LiMaOlee_: try what i just said...02:34
usserXimal: non-free's?02:34
lee_I delted the last version02:34
LiMaOlee_: i'll send it again02:34
LiMaOi'm sending it, accept it02:34
joe_what irc app is there to use in ubuntu gutsy.  I'm using Konversation on my other machine?02:34
Ximallike flash plugin02:34
lee_ok02:34
Ximali don't wanna have to grab it later.. grrr02:34
Powerkingjoe, should be GAIM02:35
Dannilionxchat?02:35
Powerkingor Pidgin, if they used that, (I dont have Gutsy just yet)02:35
Powerkingmight be xchat as well02:35
axjvjoe_: I use chatzilla (firefox plugin, allows me to browse at the same time02:35
joe_usser sudo mount /dev/hda4 /mount02:35
LiMaOif anyone here needs java + flash + mplayer plugins on a 64bit system, just let me know, i have a script that will do it all02:35
usserjoe_: oh u have to create /mount first02:35
axjvErr, firefox EXTENSION, I mean.02:35
=== Reaby [n=reaby@dsl-kpogw1-fe2edf00-76.dhcp.inet.fi] has joined #ubuntu+1
usserjoe_: but one already exists /mnt02:35
usserjoe_: so try to mount it there02:36
usserXimal: hm apt-get flashplugin-nonfree ?02:36
axjvDo you guys know of any fixes for the video not staying on the cube face in compiz?02:36
axjvLike, if I play a video.02:36
axjvIn mplayer, vlc, or totem.02:37
joe_usser like so:  sudo mount /dev/hda4 /mnt02:37
LiMaOlee_: read your private message02:37
usserjoe_: yep02:37
Powerkingaxjv, thats an issue with compiz, from what i've been told its a problem they do not have a fix for02:37
Ximalusser : hmm.. i wanna BackUP the non-free plugins/aps02:38
PowerkingIt deals with the app, some Java apps do that (if not all Java Apps)02:38
axjvPowerking: Oh, so the bug will still be present in the official release?02:38
LiMaOlee_: are you there??02:38
=== Hamra [n=willy@205.177.186.130] has joined #ubuntu+1
usserXimal: oh that never happening :)02:38
jttsince the RC is out can anyone tell me how it differs from the daily cdimages?02:38
Powerkingaxjv: I would suppose so02:38
lee_yeah I am here02:38
LiMaOlee_: read my tab, the private message02:39
lee_It uninstaleld02:39
Ximalit will if i got something to do about it.. I just wish I knew the command/way to alter aptoncd to remove protection02:39
usserXimal: what does it say anyway?02:39
Ximal* guess it's time to buy "hacking ubuntu" *02:39
LiMaOlee_: now read the private message02:39
usserXimal: hang on02:39
LiMaOlee_: i need you to type that command (the one in the private message)02:39
lee_it has been typed in02:40
usserjoe_: once u done that if there was no error do cd /mnt02:40
LiMaOok, now wait02:40
=== [MH] NarcismLapto [n=narcism@70.54.9.178] has joined #ubuntu+1
lee_and exectuted02:40
usserjoe_: and sudo mkdir aaa02:40
LiMaOlee_: the last command?02:40
usserjoe_: if u see that aaa there then it mounted fine02:40
LiMaOlee_: can you read my private messages?02:40
lee_13/10/2007 17:39:51 deleted 0 tile_row polling images.02:40
LiMaOlee_: the command was different02:41
LiMaOlee_: you probably typed the same command from before02:41
LiMaOlook carefully at the command, and type it in your konsole02:41
lee_I actually cut and pasted it02:41
LiMaOlee_: but did you read the latest message that i sent you?02:42
pwnt-why does ubuntu make everything in one partition, I'm confused02:42
lee_yes02:42
joe_usser: I did that, where am I supposed to see the aaa or my drive?02:42
lee_I tpyed the whole thing in02:42
lee_or pasted it..02:42
LiMaOlee_: try running the script i sent you.. choose to INSTALL it now (option 1)02:43
LiMaOif it doesn't work, give up and download ubuntu feisty 32bit02:43
LiMaOand you will have no problems with it02:43
lee_ok02:43
lee_I wish I new why my stem was locking you out02:43
nomasteryodaoh my... still working that firefox32?02:43
nomasteryodahehe02:43
LiMaOlol02:44
LiMaOnomasteryoda: you see how patient i am02:44
nomasteryoda+D02:44
LiMaOheheh02:44
nomasteryodadang right02:44
usserjoe_: the mount didnt give any errors?02:45
usserjoe_: open up file manager as root and navigate to that /mnt folder02:45
LiMaOthe script is suberb.. it almost talks to the user.. and still he gets errors heh02:45
[MH] NarcismLaptoAnyone know why 7.10 install crashes after in LiveMode after it checks my partitions?02:45
nomasteryodahey, let it install festival and it could .. .hehe02:45
lee_mkdir: cannot create directory `/usr/local/': File exists02:45
usserjoe_: did u fat32 partition have any files before, u should see them in /mnt02:46
pwnt-so why nobody answer me here. My 4th question and it got ignored too.02:46
lee_but its continuing02:46
joe_usser no errors02:46
pwnt-am I invisible02:46
rustpwnt-: why wouldn't you want everything in 1 partition?02:46
lee_ok now taht it has done this02:46
joe_usser how do I open file manager as root?02:46
LiMaOlee_: oh wait02:46
LiMaOlee_: let me change something02:46
usserjoe_: so it probably worked, gksu nautilus02:46
pwnt-rust: I want swap for ram. and saparate partition for /home incase I want a recovery or something bad happens.02:46
lee_ok  unistalling it then02:46
rustpwnt-: Is there no way during the install of doing that?  (Can't say I've installed ubuntu from scratch in quite a while)02:47
usserpwnt-: ubuntu is aimed at users most of them dont know about partitioning so it doesnt bother with partitioning02:47
rustpwnt-: it should have set you up a swap partition during the install02:47
Powerkingrust, you need to manually partition your drives during install02:48
joe_usser: found it02:48
pwnt-rust: no i have no swap02:48
rustPowerking: really, get that.  I've only ever installed ubuntu twice, once on my home and once at work!02:48
lee_ok I have had no problems once isaved it to the card ad do things02:48
LiMaOlee_: uninstall it... and delete that script.. i'l send you one that will get it done02:48
lee_when it comes from any other fil ....ferget it02:48
usserjoe_: so u're convinced its your partition? ;)02:48
=== Pseudo [n=sam@h83.41.255.206.cable.lngv.cablelynx.com] has joined #ubuntu+1
pwnt-usser: I checked up my partitions. I have no swap. no other partition, everything is on 1 single partition.02:48
Powerkingrust: relax, I used the wrong user :p02:49
rustlol02:49
[MH] NarcismLaptoMy install doesn't go that far, I crash after it starts the partitioner...02:49
usserpwnt-: its the default scheme as ppl mentioned u should have selected manual partitioning during setup02:49
=== axjv [n=angelic@c-76-26-9-254.hsd1.fl.comcast.net] has left #ubuntu+1 []
joe_usser: yes it is 55 gig and has some folders I put onit02:49
lee_ok it is deletd02:49
LiMaOlee_: i'm sending you the new file, accept it02:49
usserpwnt-: theres a way to change the partitions once ubuntu installed but its not at all trivial02:49
PseudoAlright, I was told compiz fusion was pre-packaged with Ubuntu 7.10 beta, but compiz --replace isn't working and  I don't have the preferences. Any ideas?02:49
rustPowerking: I wasn't being sarky, i didn't remember you had to manually do it02:49
=== tatters [n=test@ACD49487.ipt.aol.com] has joined #ubuntu+1
usserjoe_: so now lets move to fstab02:50
usserjoe_: gksu gedit /etc/fstab02:50
usserjoe_: make sure /dev/hda4 isnt there already02:50
tattersis the Encrypted Filesystems Installer available in gutsy already?02:50
Powerkingrust: its all cool :D02:50
rustpwnt-: on the bright side, if you nuke your install you can always boot a live cd to get your /home files/02:50
usserjoe_: add this to the end /dev/hda4 /winshare     auto    defaults        0       202:51
=== Davy_Jones [n=ad@89.108.15.160] has joined #ubuntu+1
pwnt-rust: how do i get my home files on livecd when they are all in same partition i dont get it02:51
pwnt-usser: can i fix my partitions after installation and not lose updates/files etc?02:51
joe_usser: quick question first-  hda1 which is my windows ntfs part shows up on the desktop and in media.  When we are done wil this part be there too?02:51
usserjoe_: dont forget to create a mount point. sudo mkdir /winshare02:51
rustpwnt-: I guess there was an assumption there that you have a USB key or Cd writer02:51
pwnt-I don't even have gutsy livecd. I got fiesty and upgraded to gutsy with "sudo update-manager -d"02:51
Davy_Jonesi wanna request a feature in evince.. is this the right channel?02:52
usserjoe_: yea sure we arent changing it02:52
lee_it executed and completed02:52
usserpwnt-: yes u can but its not trivial02:52
LiMaOlee_: now close all your firefox02:52
lee_with no pauses in its execion02:52
rustpwnt-: you can recover files from an ubuntu install using a suse live cd if you wanted.02:52
lee_eh fir fox was aloready closed02:52
LiMaOnow run it02:52
LiMaOeither with firefox3202:53
rustpwnt-: to be honest it's probably not worth worrying about until it happens.02:53
lee_any o way02:53
LiMaOor if you made it the default browser just load it normally02:53
pwnt-rust: allright02:53
lee_ok02:53
joe_usser: no I mean Is there a way for the fat32 part to be on desktop and media so its easily accessible?02:53
pwnt-usser: how to check on my all partitions?02:53
rustpwnt-: and if it IS worth worrying about then just putting it on another patition wouldn't cut it, you should be backing it up!02:53
pwnt-rust: back it up in where? a cd or online?02:54
usserjoe_: yes u can add it there i dont know how its done in gnome in kde u can just right click and *add link to device* to the desktop02:54
rustpwnt-: either.02:54
lee_no go02:54
pwnt-rust: what you usually do to backup your files.02:55
LiMaOlee_: run the script again02:55
lee_what was the verry first script you enst me taht worked?02:55
LiMaOuse the INSTALL option02:55
lee_ok02:55
LiMaOlee_: that 1st script does the same as this one02:55
rustpwnt-: At home I only back up my photos, and they go on an external hard disk02:55
rustpwnt-:  and CD, and a website!02:55
lee_ok going to it closing fire fox or leave it open02:55
LiMaOclose it all02:55
LiMaOrun the script and tell me what happens02:56
LiMaOno need to paste02:56
tattersis encrypted filesystem installer an option yet in gutsy installation process?#02:56
lee_ok02:56
LiMaOjust tell me if it asks everything, if it does everything02:56
joe_usser, If I have everything working in gnome like I want it, like wireless and media (flash, wmv) and I add on the kde desktop should everything still work fine?02:56
=== usser [n=dcherniv@ool-18b8e9e6.dyn.optonline.net] has joined #ubuntu+1
=== dav-e [i=dave@ip68-14-92-6.ri.ri.cox.net] has joined #ubuntu+1
lee_ok closing everything including the chat02:56
Davy_Jonesi wanna request a feature in evince.. is this the right channel?02:56
=== just-nj [n=neil-j@137.Red-80-33-138.staticIP.rima-tde.net] has joined #ubuntu+1
=== wabz [n=wabz@c211-30-185-177.artrmn2.nsw.optusnet.com.au] has joined #ubuntu+1
Powerking89670Davy_Jones: This is the Ubuntu Gutsy Help Channel02:57
just-njHi there, just installed gutsy on my acer aspire and the usb ports have stopp02:58
usserjoe_: hows it going?02:58
just-njed working02:58
just-njHey joe02:58
wabzhi, I'm trying to upgrade to gutsy, the updater thing has been sitting on upgrading gcj for a good half hour now (and doesn't seem to be getting anywhere) - what should I do?02:58
rustdavy_jones: try http://www.gnome.org/projects/evince/02:58
Davy_JonesPowerking89670: there doesn't seem to be a #evince channel02:58
Davy_Jonesthansk rust02:58
Davy_Jonesthanks*02:58
rustDavy_Jones: np02:58
boselecta15 seconds to comply02:58
joe_usser:  I'm used to using kde but in ver 6.10 I could never get wireless working on my hp laptop.  with gutsy gnome I was surprised how easy it was.02:59
dav-eAre there any plans to fix https://bugs.launchpad.net/ubuntu/+source/kdebase/+bug/24124 ?  I just got hit by that bug and it ruined by ubuntu installation...02:59
ubotuLaunchpad bug 24124 in kdebase "Screen Saver doesnt unlock during upgrade" [Medium,Incomplete] 02:59
rustouch!02:59
joe_usser: working on it.02:59
dav-eer, my installation03:00
=== buzztracker [n=buzztrac@pelikan.garga.net] has joined #ubuntu+1
Powerking89670dav-e: Thats a nasty bug, it destoryed the recovery console and everything?03:01
TreMobylDavy_Jones: #evince on irc.gnome.org03:01
=== lee_ [n=lee@c-71-59-177-24.hsd1.wa.comcast.net] has joined #ubuntu+1
lee_it failed but..03:02
Davy_JonesTreMobyl: perfect03:02
lee_I think there is a reason why03:02
TreMobylDavy_Jones: de nada03:02
lee_Your selection (y/n): connected.03:02
lee_HTTP request sent, awaiting response... 301 Moved Permanently03:02
joe_usser:  in fstab I think hda4 may already be there?03:02
usserjoe_: whats the line?03:03
usserjoe_: paste it here03:03
lee_301 moved permently is not a good thing to have lol03:03
dav-eI was able to get in recovery console, but not launch the gui or anything.  So ATM I'm just going to wipe that partition and start anew, once I can figure out a way to customize the CD with what to install from within XP03:03
=== XsteelWolf [n=XsteelWo@cm171.epsilon107.maxonline.com.sg] has joined #ubuntu+1
wabzthis is gay, how do I make the distribution upgrade continue past gcj?03:03
LiMaOlee_: PLEASE, reinstall your system. download Ubuntu (with gnome) FEISTY 32bit03:04
lee_erg03:04
lee_ok03:04
lee_wht the heck is it doing?03:04
LiMaOis WHAT doing?03:04
lee_ok shutitng down and rein stalling03:04
LiMaOok03:04
lee_my computer03:05
Powerking89670wabz: gcj is the gnu java compiler03:05
Davy_Jones/server irc.gnome.org03:05
lee_assside form being a total ...03:05
Powerking89670wabz: Do you plan on compiling any Java?03:05
joe_usser:  I cant paste or copy.   thats why Im a little slow.  using Konversation on another machine.  I don't know how to find the irc client on gutsy knome03:05
lee_ok shutting down03:05
usserjoe_: is there like a long line UID="..." and on the line after that #/dev/hda403:06
wabzPowerking89670: Yes I do, I know what gcj is, the problem is that the update process is stuck on it (dpkg has been going on it for quite a while now)03:06
Davy_Jones103:06
usserjoe_: UUID03:06
ussersorry03:06
Powerking89670wabz: give me 30seconds to check something so your entire installation is not ruined :p03:07
=== orionr [n=zabin@c-68-59-20-128.hsd1.sc.comcast.net] has joined #ubuntu+1
orionrhey03:07
joe_usser:  # /dev/hda4 then a line under uuid=457...    /windows  vfat  defaults... 0    103:07
orionrim having a problem with my ati card and desktop effects when i click enable it says "component extension is not available"03:07
orionri have an ati video card03:08
usserjoe_: can u pastebin it from that other machine03:08
rustOk people, I'm begging now.  Does anybody know about XGL (im in xgl hell)03:09
usserjoe_: www.pastebin.ca03:09
Powerking89670wabz: I'm looking into weither pressing ctrl + c will skip that one installation, or cancel the entire upgrade03:09
wabzthe "Distribution Upgrade" window has become unresponsive btw03:10
joe_usser: 73598503:11
Powerking89670Ahh, well then, I suppose we have no other options then...are you setup for pm's? (IE Registered on this server)03:11
wabzyes03:11
Powerking89670okay I'm going to continue this in Pm03:11
wabzcan't wait ;)03:11
joe_http://www.pastebin.ca/73598503:11
=== tatters [n=test@ACD49487.ipt.aol.com] has left #ubuntu+1 ["Kopete]
joe_usser:  I think it was already mounted, I just didn't know how to find it.  I found it now uner /windows03:12
usserjoe_: oh u're all set man, it was there from the beggining03:12
usserjoe_: yea :)03:12
usserjoe_: can u create files there though03:13
=== just-nj [n=neil-j@137.Red-80-33-138.staticIP.rima-tde.net] has left #ubuntu+1 []
joe_usser: let my try03:13
=== mendred [n=mendred@59.93.77.204] has joined #ubuntu+1
=== VousDeux [n=CroiX@24-236-210-3.dhcp.cdwr.mi.charter.com] has joined #ubuntu+1
=== bqmassey [n=brandon@ip-66-241-168-226.cmts-dhcp.way.huntel.net] has joined #ubuntu+1
=== MTecknology [n=MTecknol@host-114-111-111-24.midco.net] has joined #ubuntu+1
=== rust [n=sgarner@host-81-20-37-12.eckoh.com] has left #ubuntu+1 []
=== akrill [n=krill@24.143.85.194] has joined #ubuntu+1
MTecknologyI installed git, but I can't use the command git03:17
bqmasseyhow do i get a mac style toolbar, as can be seen in this video: http://www.youtube.com/watch?v=E4Fbk52Mk1w03:17
=== mendred [n=mendred@59.93.77.204] has joined #ubuntu+1
joe_usser: yeah I saved on office document there.  any idea in gnome how put the drive on desktop or places like the ntfs is?03:18
=== PSPJunkie [n=julius@pool-71-188-87-205.cmdnnj.east.verizon.net] has joined #ubuntu+1
PSPJunkieHey03:18
usserjoe_: try rightclicking see if it lets u add shortcuts/links03:19
=== Davy_Jones [n=ad@89.108.15.160] has left #ubuntu+1 []
=== macogw [n=maco@161.253.8.116] has joined #ubuntu+1
PSPJunkieI was having problems with my wifi card in the first beta of kubuntu, so i updated to the rc and now that works. Unfortunately, my laptop will not charge anymore. Has anyone had similar problems?03:19
=== Winball [i=Winball@er.ut.ro] has joined #ubuntu+1
=== mattg [n=mattg@ip68-104-158-11.ph.ph.cox.net] has joined #ubuntu+1
mattgso why should i upgrade???03:20
=== mattg [n=mattg@ip68-104-158-11.ph.ph.cox.net] has left #ubuntu+1 ["Leaving"]
=== stunatra_ [n=stunatra@116.sub-70-213-68.myvzw.com] has joined #ubuntu+1
PSPJunkieHm. No one?03:24
PSPJunkieIt's a rather important feature with a laptop xD03:24
DannilionI have no idea why your laptop has stopped charging03:24
bqmasseythere any good download managers for ubuntu?03:24
Powerking89670PSPJunkie: I agree it is important, but I cannot help you :p03:24
DannilionI would have thought that was a hardware problem rather than a software problem03:24
Danniliondoes it still charge when the laptop is switched off>03:24
Dannilion?03:24
Powerking89670mattg: http://www.ubuntu.com/testing/710rc03:24
PSPJunkieDannilion: I haven't tried, i'll check next time i turn it off03:25
Powerking89670nvm03:25
DannilionI cannot see why Linux would stop it charging03:25
Dannilion(though it may stop reporting it's charging- but that's a different problem)03:25
=== Reaby [n=reaby@dsl-kpogw1-fe2edf00-76.dhcp.inet.fi] has joined #ubuntu+1
PSPJunkieWell, personally, that's what I think it is03:26
PSPJunkieBecause it isn't as if it dies and turns off when i unplug it03:26
joe_usser: no luck yet but thanks.  if I mounted it on /media/hda4 like nfs shows in fstab would that do it?03:26
PSPJunkieBut it always reports a 0% charge03:26
Dannilionmy power thingie often goes weird- reporting there is no battery and stuff... but a restart cures that03:26
Dannilionwhat's the output of acpi on the console?03:26
PSPJunkieWell, I haver restarted many times03:26
PSPJunkiehold on03:26
PSPJunkieI need to reinstall yakuake D:03:27
Powerking89670*sigh* whistles waiting for the .iso to finish downloading! :p03:27
Powerking89670PSPJunkie: yakuake FTW03:27
pwnt-Powerking89670: what are u downloading03:27
PSPJunkieDannilion: http://pb.malloc.us/m4c65193b03:28
Powerking89670pwnt-: Gutsy Gibbon03:28
=== MisterN__ [n=MisterN_@p5B2FE0CD.dip.t-dialin.net] has joined #ubuntu+1
pwnt-Powerking89670: final or beta?03:28
PSPJunkieYeah, yakuake saves a ton of headaches. Much faster than launching konsole every time xD03:28
Powerking89670beta final isnt out for 5days03:28
Powerking89670beta; final*03:29
Dannilionokay... that page isn't loading for me PSPJunkie03:29
pwnt-Powerking89670: cool, but you had fiesty why not just upgrade? Instead of downloading a beta iso03:29
Powerking89670pwnt- fiesty wont boot properly, login screen is fubar03:29
usserjoe_: im not sure what are u talking about?03:29
Powerking89670I'm in recovery console atm03:29
pwnt-Powerking89670: ic03:29
=== stiev3 [n=steve@ip24-253-156-128.hr.hr.cox.net] has joined #ubuntu+1
Dannilionokay... something's wrong with acpi03:31
PSPJunkieDannilion: odd.... http://rafb.net/p/O3KPfC41.html03:31
Dannilionthough I get quite a bit03:31
Dannilion(sorry... other computer hogging all the bandwidth)03:31
PSPJunkieAh, gotcha03:31
bqmasseycan someone help me install DJVu for Firefox?  i did what I thought i was supposed to, but it hasn't worked03:31
PSPJunkieCan I update acpi?03:31
Dannilionwhat does it say when you take the charger out?03:32
Dannilion(and since it's only one line you can probably get away with pasting straight in here :p)03:32
PSPJunkie"Battery 1: discharging, 0%,  remaining"03:32
bqmasseythat's a reporting error i'm sure03:32
PSPJunkieDannilion: I know xD I just like pastebins, pasting in irc is annoying03:32
DannilionI agree for more than one line03:32
PSPJunkieEven so, its' a habit03:33
Dannilionjust with my current bandwidth problem it's easier for you to post in here :p03:33
PSPJunkieHeh03:33
PSPJunkieNoted :P03:33
Dannilionyeah... that's a reporting error- can't remember how I fixed that03:33
Dannilionlast happened to me in Dapper03:33
Dannilion(mine now just tells me there is no battery... when I'm running from it :P)03:34
PSPJunkieWell, it actually worked fine in 7.04, until i let adept update all my packages03:34
PSPJunkieThen it I updated to rc, and it still doesn't work03:34
=== SeanConnery [n=sean@d205-250-110-102.bchsia.telus.net] has joined #ubuntu+1
Dannilionyeah03:36
bqmasseyanyone familiar with djvu?03:37
joe_usser: that ok, thanks for all your help.  I found it in the places menu so thats easy enough to find,  thanks again03:38
=== usser [n=dcherniv@ool-18b8e9e6.dyn.optonline.net] has joined #ubuntu+1
=== Winball [i=Winball@er.ut.ro] has left #ubuntu+1 []
=== BaD_CrC [n=john@c-67-171-0-49.hsd1.wa.comcast.net] has joined #ubuntu+1
LiMaOdo you people know of the flight simulator in google-earth?03:46
MisterN__yep03:46
=== se7en^Of^9 [n=se7enofn@125-24-132-70.adsl.totbb.net] has joined #ubuntu+1
LiMaOso cool =D03:47
=== jewbilee [n=ian@jewbilee.rh.rit.edu] has left #ubuntu+1 []
joe_anyone i just installed gutsy w gnome desktop and got the wireless working on my hp laptop.  if I load the kde desktop is there any chance this will mess up the wireless03:48
=== PSPJunkie [n=julius@pool-71-188-87-205.cmdnnj.east.verizon.net] has joined #ubuntu+1
PSPJunkiesudo apt-get remove acpi; sudo apt-get install acpi03:50
PSPJunkie^^ didn't work03:50
=== nosrednaekim [n=michael@04-047.200.popsite.net] has joined #ubuntu+1
=== bretzel [n=bretzel@74.15.133.128] has joined #ubuntu+1
bretzelhi I need to know where can I get the "rmev" program supposedly comming with gpm... not there... ( mev does not work in X ( xterm... )03:51
PSPJunkieI dunno, I can't seem tjuliusing via googleo find anyth03:51
PSPJunkie:|03:51
PSPJunkieI can't seem to find anything via google *03:51
bqmasseywould someone mind helping me install djvu?03:52
Powerking89670bqmassey, whats the the problem?03:52
joe_I installed gutsy 7.10 rc.  It is so much easier to get everything up and running than 6.10 was.  Gutsy is a great improvement.03:52
bqmasseyi did "sudo apt-get install djvulibre-plugin03:53
Powerking89670joe_: thanks for the consoling words as I will be going down for the install very soon03:53
bqmasseyi did "sudo apt-get install djvulibre-plugin"03:53
bqmasseyand it didn't work.. i don't know why... i saw it download the package03:54
bqmasseybut the plugin isn't showing up in firefox03:54
Powerking89670gimme a sec03:54
=== boselecta [i=zSbmbx0J@S0106000ea628ca81.ed.shawcable.net] has joined #ubuntu+1
stiev3is there typically a final release that differs from the release candidate the day of release?... In general terms, is there a reason to hold off another 5 days?03:55
boselectafor some reason firefox keeps trying to open realmedia streams (from the BBC website) using the mplayer plugin03:55
boselectaany help?03:55
boselectai have installed the realplayer stuff03:55
joe_powerking:  really 6.10 was my first time using linux.  It was weeks with the learning curve just trying to get flash movies to play in firefox.03:55
Powerking89670stiev3: the idea of a release cantidate is to do bug checking on a massive scale, if something major needs changed, there will likely be a differance03:56
Powerking89670joe_ : I was more lucky, I picked up linux in < 2 hours...it just seemed so natural03:56
Powerking89670bqmassey: I'm still working :D03:56
bqmasseyPowerking89670: :) thanks03:56
Powerking89670bwmassey: where did you install the plugin from? Is it in the default respositories?03:57
boselectaweird: according to about:plugins, for some reason realmedia is owned by the mplayer plugin. how do i change that?03:57
joe_powerking: and I never could get the wireless working on my hp laptop, broadcom wireless, but in gutsy it prompted me for everything and showed the restricted package i would need for wireless03:58
Powerking89670joe_ : wireless is the one thing I have not done, and dread the most03:58
Powerking89670bqmassey: where did you install the plugin from? Is it in the default respositories?03:58
bqmasseyi just typed what i told you earlier03:58
bqmasseyafter enabling Universe03:59
joe_powerking: the firefox plugins load real easy to like flash wmv divx media etc03:59
=== buzztracker [n=buzztrac@213.251.133.67] has joined #ubuntu+1
=== MrMazda [n=fmcz@user-142grmk.cable.mindspring.com] has left #ubuntu+1 []
Powerking89670bqmassey try the following: "sudo aptitude purge djvulibre-plugin"04:01
Powerking89670and then try "sudo aptitude install djvulibre-plugin"04:01
Powerking89670if that does not work, I do not know :-/, sorry04:01
=== Laibsch [n=Laibsch@212.17.244.31] has joined #ubuntu+1
Powerking89670( I prefer aptitude because it is smarter than apt-get)04:02
stiev3more noob questions: will there be any benefit to starting with a fresh install?  So used to reformatting when going from one version to another on other operating systems.04:02
nosrednaekimstiev3: not really.04:02
Powerking89670stiev: the new OS smell04:02
nosrednaekimstiev3: sometimes upgrades break.. but then you just do a  clean install04:02
nosrednaekim(and they always break immediately)04:03
=== stunatra [n=stunatra@116.sub-70-213-68.myvzw.com] has left #ubuntu+1 ["Leaving"]
bqmasseyPowerking89670: ok.. the install is going04:04
bqmasseyPowerking89670: what's all of this doing differently that what I typed in?04:04
bqmasseyit's installing konquerer04:04
Powerking89670bqmassey: the first command removed everything of the first install, the second command is installing it with aptitude, which is like apt-get only in my opinion better because it finds dependancies alot more efficiently04:04
bqmasseyic04:05
Powerking89670bqmassey: yea, it may do that...just do a "sudo aptitude purge konqueror" if you dont want konqueror after the djvu install04:05
Powerking89670this MAY or may not work, I've never used djvu :p04:05
joe_powerking: really was a breeze, gutsy told me I needed some broadcom fwcutter package.  i downlowded then it sent me to the firmware and it was working and broadcom is the worst for compatabilty w linux04:06
bqmasseyi'm only want it cause a helicopter magazine i read put's the issues online in DJVu for free04:06
Powerking89670bqmassey : you could try getting the converter instead of the plugin04:06
bqmasseyyeah, i might try that04:07
Powerking89670bqmassey: I think it is djvulibre-bin04:07
Powerking89670bqmassey: do a "sudo aptitude search [string]  to have aptitude look in your repositories04:07
Powerking89670.iso burn almost complete04:08
Powerking89670bqmassey: I will (soon) be rebooting into the live CD of Gutsy, after I get into Gutsy I will come in here, so dont think I've left because I disappear for 5-8min04:10
bqmasseyPowerking89670: cool, thanks for the help04:10
Powerking89670bqmassey: no problem, I'm bored waiting for this iso to burn anyways :p04:10
bqmasseyhahahaha...   I just saw another hilarious Captain commercial04:10
Powerking89670okay...I'll be back in approx 8min04:11
bqmasseyPowerking89670: i couldn't stand the live cd for very long.. its such a slow way to work04:12
bqmasseygood luck04:12
boselectawhy in the heck is it so hard to get realplayer working with BBC Website04:13
=== pope [n=pope@68-117-36-3.dhcp.roch.mn.charter.com] has joined #ubuntu+1
pope hi, i'm having a problem with ubuntu 7.1/ GNOME 2.2:  Full screen Apps only fill 1/2 the screen. Any reason why?04:13
=== nomasteryoda|w [n=nomaster@ip68-225-112-12.mc.at.cox.net] has joined #ubuntu+1
=== riotkittie [n=tracy@cpe-72-228-37-187.nycap.res.rr.com] has joined #ubuntu+1
|neon|have anyone try vdkb2 with gutsy i installed it but it wont run this is the output http://paste.ubuntu-nl.org/40594/04:15
joe_k04:16
=== Powerking89670 [n=ubuntu@c-67-163-250-25.hsd1.pa.comcast.net] has joined #ubuntu+1
Powerking89670I like gutsy so far, lets see how the install goes :D04:17
=== IcemanV9 [n=jwvehrs@75.21.205.0] has joined #ubuntu+1
=== TreMobyl is now known as Solarion
stiev3can I expect a more textmate-esque gedit in gutsy?04:18
Powerking89670hmmm, lets see04:18
bqmasseyis there an undo function in the terminal?04:19
popeanyone have any suggestions for non-working full screen?04:19
Powerking89670define textmate-esque04:19
Powerking89670bqmassey: what do you mean?04:19
bqmasseythat didn't work04:20
=== Vuen [n=nick@74.14.132.149] has joined #ubuntu+1
bqmasseyit installed a lot of things though.. i just wondered if there was a rollback kind of command04:20
bqmassey(i'm new to linux)04:20
bqmasseybut i can just purge them all individually04:20
Powerking89670bqmassey: hmm, stupid aptitude and its desire to install everything on the face of the earth04:20
riotkittieno, there's no roll back command :o04:20
=== atselby [n=47604d9d@titus.nswebhost.com] has joined #ubuntu+1
Powerking89670I'll need to make note of this : Do not use aptitude when you need to install a plugin. Okay :D04:21
Powerking89670just use remove on the ones you do not need04:21
stiev3from what little I've read it handles themes a lot better... guess that applies across the board for gnome2.2 or whatever04:21
Powerking89670watch your purges :p04:21
Powerking89670I hope it does stiev3...thats why I lost my old install....the theme killed my login screen...which meant I couldnt use it at all04:22
popehow did you install them?  if you installed them through terminal, scroll back through your commands and replace 'install' with 'remove'....i use that method sometimes04:22
bqmasseykcontrol, kdebase-data, kfind, kicker, konqueror, libarts1-mpeglib, libavcodec1d, libavutil1d, libgsm1, libpostproc1d, libxine1-ffmpeg, mpeglib04:22
Powerking89670ahh, I see why, its a kde plugin, and your running gnome :p04:22
bqmasseylol yep04:22
atselbyhello, i was in the middle of dist-upgrading to gutsy RC, when my laptop unexpectadly shut off and now i am having problems with GDM. It tells me that the greeting manager has crashed, and wants to try an alternative, but i dont think i have one, or that is not working either. can anyone help me?04:22
bqmasseywell.. djvu isn't i dont think...04:23
bqmasseymaybe so04:23
Powerking89670atselby: give me a minute, I need to find the force command for apt-get04:23
=== joe1 [n=c@24-119-238-3.cpe.cableone.net] has joined #ubuntu+1
atselbypowerking89670, okay thanks.04:23
=== usser [n=dcherniv@ool-18b8e9e6.dyn.optonline.net] has joined #ubuntu+1
Powerking89670okay, atselby: try this, open a terminal04:24
atselbyhold on, need to boot it.04:24
Powerking89670kk :D04:25
atselbyand i cant open a terminal by the way.04:25
Powerking89670okay, when you start booting04:25
atselbyhow can i go to terminal on boot?04:25
Powerking89670you get to the grub boot loader correct?04:25
atselbyyes04:25
Powerking89670okay, when it starts ticking off 3, 2, 1 hit esc04:25
atselbyk04:25
atselbyrecovery mode?04:26
Powerking89670and choose the recovery console for your kernel (usually right under it)04:26
Powerking89670indeed04:26
atselbyokay04:26
Powerking89670it'll boot, and then it will come to a point and ask you for the root password, do you know your root password?04:26
atselbyyes04:26
Powerking89670okay, at that point you'll enter the password04:26
Powerking89670and you'll be a terminal :D04:26
atselbyokay, i couldnt remember if recovery was terminal or not. thanks.04:26
atselbyso now what?04:26
Powerking89670at the terminal type04:27
Powerking89670apt-get update04:27
Powerking89670then after that is done04:27
Powerking89670apt-get upgrade04:27
atselby"dpkg was interrupted, you must manually run 'dpkg --configure =a" to correct this problem."04:27
Powerking89670okay, do that04:27
atselbyk04:28
=== chris_ [n=chris@pool-71-102-115-51.sttlwa.dsl-w.verizon.net] has joined #ubuntu+1
atselbyi want to install the package maintainers version right?04:28
boselectaeven though i started with linux at 0.99pl18, i think it's terrible that a modern distribution still won't play news clips from the BBC website. that's my litmus test.04:28
=== Demize [n=demize@CPE000d881fcf75-CM0011e67c122f.cpe.net.cable.rogers.com] has joined #ubuntu+1
chris_this touch pad problem is really annoying me... how do i recompile my synaptic driver?04:28
Powerking89670atselby: yes04:28
atselbyokay.04:29
Demizequit (Just testing my client, name too un-family-friendly to say here)04:29
atselbyso, just so i get whats going on, im basically finishing the install now?04:29
Powerking89670yup04:29
chris_i get lots of these..., [  117.856000]  psmouse.c: TouchPad at isa0060/serio4/input0 lost sync at byte 1 <new line> [  117.856000]  psmouse.c: issuing reconnect request04:29
atselbyokay04:29
chris_anyone want to help me recompile psmouse.c?04:30
atselbychris_ was this for a touchpad? did you use synaptics?04:30
Powerking89670chris_: I would, but I hate compiling :p04:30
chris_it is a synaptic touchpad....04:30
chris_i have not edited anything as i have never needed 2....04:31
atselbywait, sorry must have misread that... thought oyu were trying to install synaptics package.04:31
atselbyi can't help on compiling, sorry.04:31
chris_no no no..., i just downloaded ubuntu rc1 i guess it would be from ubuntu.com and i installed it and i am getting all of these errors in dmesg....04:32
bqmasseyhow would i go about starting firefox in a way that i can rear any error messages04:32
Powerking89670start it in the terminal04:32
chris_bqmassey, from the terminal04:32
bqmasseyok.. just run 'firefox' from the terminal?04:32
Powerking89670bqmassey: yes04:32
atselbyif its from a fresh install.04:32
bqmasseyok.. it opened up firefox.. no returns... just a new line04:33
Powerking89670then there are no errors04:33
chris_all this is from a fresh install......04:33
bqmasseymk04:33
d4rkmonkeymine says stuff04:33
bqmasseyi wonder if there's a debug mode04:33
atselbyfirefox -h for help or options? im not sure04:33
Powerking89670d4rkmonkey: how many lines?04:34
d4rkmonkeyPowerking89670 like 504:34
Powerking89670hmmm...where is that pasteboard04:34
d4rkmonkey4 of them have to do with errors I think, first was like.. loaded md5 or something04:34
atselby!pastebin04:34
ubotupastebin is a service to post large texts so you don't flood the channel. The Ubuntu pastebin is at http://paste.ubuntu-nl.org (make sure you give us the URL for your paste - see also the #ubuntu channel topic)04:34
atselby?04:34
=== quigz [n=quigz@pool-71-177-226-16.lsanca.fios.verizon.net] has joined #ubuntu+1
d4rkmonkeywhatever my firefox runs fine04:34
Powerking89670oh, alright then :D04:34
Powerking89670Gutsy Gibbin: INSTALLING! WOOT!04:35
d4rkmonkeyhmm, except...04:35
Powerking89670d4rkmonkey: goto http://paste.ubuntu-nl.org and then give me the link you get after you paste it :D04:35
d4rkmonkeynone of the videos from gametrailers will play on my comp, unless I download the wmv or quicktime, turn off compiz, and play them there... my flash works fine though for things like youtube and google video.. I'm thinking that the gametrailers video player is poorly coded04:36
chris_this is what my dmesg says...... http://paste.ubuntu-nl.org/40596/04:36
Powerking89670compiz has problems with videos, thats normal; however it may be poorly coded04:36
atselbyd4rkmonkey: are the videos flash based?04:37
chris_compiz + moving stuff = BAH!!! lol04:37
quigzlol04:37
d4rkmonkeyatselby yeah, the gametrailers one, I have to download non-flash one to play it...04:37
atselbyhuhm...04:37
=== elkbuntu [n=melissa@ubuntu/member/elkbuntu] has joined #ubuntu+1
atselbyi've actually never had problems with compiz and video, it just took some config, but i cant think of the options.04:37
Powerking89670chris_: when do you get all this?04:37
d4rkmonkeyatselby I dunno, my chipset was blacklisted I think because of video issues, and I just commented out the line...04:37
chris_when my mouse messes up04:37
wabzPowerking89670: the update-manager ended up completely locking up my machine - mouse wasn't responsive, couldn't ssh to it, so I hit the restart button, got a console, ran dpkg --configure -a and it seemed to continue the upgrade without a problem, all working now04:38
Powerking89670have you reported it as a bug?04:38
=== lakin [n=lakin@S01060013101832ce.cg.shawcable.net] has joined #ubuntu+1
chris_no..., there are like 8 other things like this....04:38
chris_but on older versions form what i can tell...04:38
Powerking89670wabz: Lucky I had that convo with atselby then eh?04:38
Powerking89670:p04:38
=== whiteOwl [n=jperry@146-115-228-134.c3-0.frm-ubr1.sbo-frm.ma.cable.rcn.com] has joined #ubuntu+1
d4rkmonkeygamevideos.com work fine, but gametrailers.com doesn't...04:38
atselbysame thing wabz ?04:38
wabzcompiz doesn't work (don't get window decorations), but that's a good thing04:38
wabzI dunno I haven't read that convo yet04:39
atselbyah. my machine actually just shut off in teh middle of installing the upgrades.04:39
Powerking89670wabz: nevermind, I had him do what you did, didnt know you did it on your own :p04:39
chris_should i rereport it?, ive found bugs like it but all deal with 7.04 and under....04:39
=== kcs80 [n=kcs80@c951b254.virtua.com.br] has joined #ubuntu+1
nosrednaekimchris_: absolutely04:39
Powerking89670if its for gutsy gibbon why not04:39
Powerking89670bug reporting is a great way to help out a project04:40
=== billytwowilly [n=chris@S01060016b649355d.ed.shawcable.net] has joined #ubuntu+1
Powerking89670I personally have no idea what all this code errors means, but I'm sure a developer does04:40
atselbypowerking89670, cant apt-get update, evidently no internet connection.04:40
Powerking89670you installing from cd?04:41
atselbyno, dist upgrade.04:41
chris_what package would this be???04:41
Powerking89670dist-upgrade is upgrading from the only repositories04:41
=== thompa [n=ubuntu@c-76-22-143-152.hsd1.tn.comcast.net] has joined #ubuntu+1
=== steve [n=steve@68-118-74-18.dhcp.mdfd.or.charter.com] has joined #ubuntu+1
Powerking89670online*04:41
stevehow do I get rid of pidgin without it killing gaim too? I had gaim before I upgraded to gutsy but now I just have this crap04:41
whiteOwlalas gutsy seems too gutsy - My Averatec laptop can no longer boot the install cd - X won't start properly - this is a regression from 7.04 and yes I filed a bug. The 7.10 beta would not boot even in safe graphics mode. I just wasted 2 hours playing with the new 7.10 release candidate and it does eventually get to a warning box (easily 5 or more mins) IF I boot with vga=771 - the warning says I'm in low res mode a04:41
Powerking89670steve: what is wrong with pidgin?04:41
ussersteve: what?04:41
chris_steve, gaim changed its name to pidgin....04:42
SeanConnery steve pidgen *is* gaim...04:42
steveI am aware of that04:42
ussersteve: pidgin is gaim04:42
nosrednaekimchris_: just say its the kernel.04:42
ussersteve: and theres no gaim in gutsy04:42
thompai am installing the latest daily build and the fonts and some things look better04:42
PseudoHow would i add a plugin to pidgin manually?04:42
atselbypowerking89670, so what should i do? skip update/upgrade? i already had downloaded all of the updates, itwas just in the middle of installing them.04:42
steveI want to know why it replaced a program I didn't want it to04:42
ussersteve: which one?04:42
SeanConnerysteve, if you want to use an earlier version, you have to compile it yourself or get the deb from somewhere04:42
Powerking89670atselby: yes then :D04:42
ussersteve: gaim?04:42
SeanConnerysteve, the gaim package was likely updated to pidgin04:42
thompamy question is, why the upgrade did not change this04:42
stevehrm.04:42
atselbyokay. so, whatw was next then?04:43
SeanConnerythompa, yeah I'd like to know why as well04:43
atselbyreboot and gdm should be fine?04:43
Powerking89670atselby: I can only hope so :p04:43
atselbyokay, thanks.04:43
SeanConnerythompa, my guess is that if you rm -rf $HOME then your fonts will be ok04:43
thompai need to find out what is not updated. like a fix-fonts graphic driver or something04:43
steveis there a way to prevent it from changing it in the future? this isn't my main system and I can just format it with feisty again04:43
SeanConnerythe configuration hell hole that is gconf-editor warrants that04:43
Powerking89670atselby: no problem, If not I did my best :-/04:43
atselbysteve, gaim was upgraded to pidgin in gutsy.04:43
SeanConneryunless someone can tell me that gconf-editor is really file-based04:43
steveI understand that04:43
steveI don't want it04:44
thompaSeanConnery: or just create a new user04:44
atselbyif you want the old appearence of gaim theres a skin of it somewhere.04:44
ussersteve why?04:44
SeanConnerythompa, yes04:44
chris_how do i file a bug report for gutsy?04:44
nosrednaekimsteve: if you just install gaim.. I don't think it will prompt you to upgrade it to pidgin04:44
SeanConnerysteve, I don't think you can pin a package version04:44
nosrednaekim!bugs04:44
ubotuIf you find a bug in Ubuntu or any of its derivatives, please file a bug report at: http://bugs.ubuntu.com/  -  Bugs in/wishes for the bots can be filed at http://launchpad.net/products/ubuntu-bots04:44
thompaso is the problem gdm only04:44
atselbyyeah it shouldnt ask you to do that.04:44
atselbysteve, what dont you want in pidgin?04:44
stevewhat if I made an equivs dummy package of pidgin? would that just shut it up?04:44
thompai am still running live and its awesome 6404:44
SeanConnerysteve, why are you fighting the package maintainers04:45
steve'cause gaim isn't broken04:45
nosrednaekimsteve: install gaim and lock its version04:45
atselbypowerking89670, still crashing.. :( do you know of a way to bypass gdm via terminal?04:45
stevehey, a helpful answer, thanks04:45
=== pvl1 [n=pavel@71.175.24.250] has joined #ubuntu+1
nosrednaekim=)04:45
Powerking89670atselby: get back into the recovery console04:45
atselbyk04:45
steveI'm mostly worried about my laptop, I haven't upgraded it yet and may not at this rate04:46
pvl1Anyone mind helping me with a weird sound issue?04:46
=== Kazuma [i=Kazuma@unaffiliated/kazuma] has joined #ubuntu+1
atselbysteve, i wouldnt yet. looks like there've been some problems with laptops and gutsy. ..04:46
=== jrr [n=jrr@74-132-232-5.dhcp.insightbb.com] has joined #ubuntu+1
nosrednaekimpvl1: what is it04:46
nosrednaekimatselby: working fine here on my acer04:46
steveI'm just afraid every time I go into #ubuntu with a question everyone will just tell me to upgrade XD04:46
jrrthe upgrade to gutsy seems to have broken my LVM04:46
Powerking89670atselby: laptops and linux tend to hate each other, its not gutsy :p04:47
=== kri__ [n=kri@p5B293EFD.dip0.t-ipconnect.de] has joined #ubuntu+1
stevefunny, feisty works more or less fine04:47
Powerking89670steve: sorry, I was just wondering what was bad about it, so I could see if it buged me :p04:47
pvl1nosrednaekim i cant record from my microphone. i went into alsamixer nd turned up the recording level, and the sound from my microphone is amplified to my speakers. but my computer wont record sound04:47
atselbytrue. but for me dapper through feisty worked fine04:47
nosrednaekimpvl1: what program are you using to record?04:47
stevenothing's wrong with it, I just like gaim, but having pidgin makes me unable to use gaim, therefore it needs to die04:48
pvl1nosrednaekim well im just using w/e recorded came with the system, i havent gotten around to gettin audacity04:48
atselbypidgin is gaim....04:48
atselbygranted its got a stupid skin and name. but eh.04:48
stevethat's like saying "vista is XP"04:48
steve:P04:48
nosrednaekimpvl1: see if somehwere in there (I use KDE so I haven't a clue where) there is a recoding input device.04:48
stevewell, not really04:48
usseromg steve u're hardcase arent u :)04:49
atselbypowerking89670 what was i needing to do next? to bypass gdm or disable it?04:49
stevebut they're not identical04:49
Powerking89670steve: you cant compare two working programs to two crappy OS's04:49
pvl1nosrednaekim: there is and ive been messin with that too04:49
stevewell, yeah04:49
Powerking89670atselby: type 'startx'04:49
nosrednaekimpvl1: thats my best guess04:49
atselbyk04:49
steveI just hate when something that works is replaced with something else for no real reason04:49
=== purpleblu [n=chatzill@CPE-72-135-237-93.wi.res.rr.com] has joined #ubuntu+1
pvl1nosrednaekim aight thanks04:49
usser!gens04:49
ubotuSorry, I don't know anything about gens - try searching on http://ubotu.ubuntu-nl.org/factoids.cgi04:49
atselbythanks04:49
chris_one last bug...., master volume control does nothing.....04:49
Powerking89670steve: It has the ability to use more IM programs04:49
stevenone I was missing before04:50
Powerking89670steve: most importantly Google Talk :p04:50
steveanywhoo04:50
chris_i press mute and i still hear sound....04:50
Powerking89670steve: to each his own04:50
stevegoogle talk sucks penises and is no use to me04:50
purplebluI have a P3 800mhz 128mb computer, and I was wondering if that is adequate to to run 32bit gutsy Desktop/Alternative?04:50
nosrednaekimyou can actually speak with pidgin now?04:50
atselbyalthought powerking89670, im in xfce not gnome. but i'll see what i can do now. thanks04:50
steveanyone know why gutsy is trying to update a laptop touchpad driver on my desktop?04:50
=== VousDeux [n=CroiX@24-236-210-3.dhcp.cdwr.mi.charter.com] has joined #ubuntu+1
nosrednaekimpurpleblu: better get xubuntu04:50
usserpurpleblu: take a lok at xubuntu04:50
Powerking89670atselby: no problem I thought GUI might make things a tiny bit easier on you :p04:50
atselbygrah. it just shut off again.04:50
atselbyokay well, ill give it a try, think my battery is giving out.04:50
atselbythanks.04:51
purplebluI dont want to run xubuntu if I dont have to.  Well it just use swap? Or will it have major hickups04:51
Powerking89670atselby: yea, be sure to make sure you have a stable power connection next dist-upgrade :p04:51
=== Kazuma [i=Kazuma@unaffiliated/kazuma] has left #ubuntu+1 []
steveare the debs for all my packages stored somewhere local?04:51
chris_is there anyway to fix the sound master control and the fact that it is useless?04:51
steveI might just save my gaim one and pin it04:51
atselbyhaha. i figured it said i had 3 hours, i would be good.. guess not04:51
atselbythanks04:51
SeanConnerysteve, I'm running gutsy on a laptop right no04:51
nosrednaekimsteve: /var/cache/apt/archives04:51
SeanConneryww04:51
atselbyhopefully i wont have to come back.04:51
atselbyhaha. thanks04:52
SeanConnerysteve, hibernate/suspend work perfectly04:52
usserpurpleblu: it will be sloow04:52
stevewhat04:52
purplebluis xubuntu xfce enviroment?04:52
steveoh, ok04:52
SeanConnerydid I stutter?04:52
SeanConnerylol04:52
d4rkmonkey...04:52
d4rkmonkeypurpleblu no, but it should be.04:52
d4rkmonkeywaite.04:52
d4rkmonkey*wait04:52
d4rkmonkeyI mean..04:52
d4rkmonkeyyes.04:52
chris_hello???04:52
Powerking89670SeanConnery: I thought I heard a bit of a stutter...you might want to articulate a bit better next time :p04:53
d4rkmonkeyI was thinkign xkcd I was like... huh?04:53
=== Null_Session [n=roswell@bal-bb-cable-4-356.dsl.airstreamcomm.net] has joined #ubuntu+1
SeanConneryPowerking89670, I'll do my b-b-b-est04:53
=== jrr2 [n=jrr@74-132-232-5.dhcp.insightbb.com] has joined #ubuntu+1
=== jrr2 is now known as jrr
jrrD/04:53
purplebluI am fixing an XP machine for my in-laws.   So what is the performance difference ubuntu versus xubuntu?04:54
=== atselby [n=selby@pool-71-96-92-25.dfw.dsl-w.verizon.net] has joined #ubuntu+1
Powerking89670xubuntu runs better on older machines, ubuntu is better supported, and in my opinion better :D04:54
Powerking89670atselby: you came back!04:54
jrryou can use the WM of your choice in ubuntu04:54
jrrxfce speeds things up significantly over gnome, and can be configured to look similar04:55
purplebluin-laws are running XP so how would ubuntu gnome compare with performance?04:55
Powerking89670We'll, Gutsy install is complete...I'll be back up in a little under 2min04:55
Powerking89670purpleblu: hold that thought :p04:55
SeanConnerypurpleblu, depends, if they are good with XP, then performance should be comprable04:55
SeanConneryno not true04:55
chris_anyone wanna help me with my sound issue?04:55
SeanConnerymy downstairs dual-boot xp has gotten slower and slower even though there isn't any sh*t on it04:56
purplebluI mean in comparison to load times.  Xp versus Gnome.  If they want to run say firefox.  How would gnome firefox compare to xp firefox?04:56
SeanConnerypurpleblu, I think its similar04:56
purplebluso would xbuntu be dramatically faster using that scenario?04:57
SeanConneryI JUST HEARD THE UBUNTU BONGOS04:57
SeanConneryBONgo bongo bongo04:57
SeanConnery\o/04:57
=== weirdbro [n=jesse@pool-141-151-88-43.phlapa.east.verizon.net] has joined #ubuntu+1
nosrednaekimpurpleblu: yeah... it would be noticabley smoother04:57
weirdbroI've got a dns cache problem04:57
atselbyi can not find login window/gdm config anywhere...04:57
SeanConnerypurpleblu, in the end its not going to matter *one bit* dude04:58
weirdbroGutsy sometimes give dns records of sites I've recently accessed to the wrong domain04:58
chris_:-\04:58
nosrednaekimSeanConnery: what?04:58
SeanConnerynosrednaekim, do you think its going to matter whether ff takes 1.1s to load v 1s?04:58
=== EnsGabe [n=ensgabe@cpe-74-67-113-127.stny.res.rr.com] has joined #ubuntu+1
nosrednaekimSeanConnery: lol....04:59
SeanConnerywhats going to matter though is the ease of maintenance04:59
kcs80lol04:59
nosrednaekimSeanConnery: it will be awhole lot more dramitc than that04:59
=== selby [n=selby@pool-71-96-77-157.dfw.dsl-w.verizon.net] has joined #ubuntu+1
purplebluwell I dont want to run DSL distro or puppy. so I was wondering.  If they are accustomed to XP on this hardware.  Just wondering how much performance gain would I expect among they other x11 enviroments04:59
|neon|i am running a putty fasr puter and i tell you by far kubuntu is faster than xp and not even go to vista :)04:59
=== pvl1 [n=pavel@71.175.24.250] has joined #ubuntu+1
pvl1nosrednaekim: i came back just to tell ya that i fixed it! this makes me really happy, now i can really work with my guitar] ] 05:00
=== Powerking89670 [n=richard@c-67-163-250-25.hsd1.pa.comcast.net] has joined #ubuntu+1
=== buzztracker [n=buzztrac@pelikan.garga.net] has joined #ubuntu+1
nosrednaekimpvl1: lol... I was messing around with my guitar... there are some pretty interesting apps out there.. check out cleox05:00
SeanConnerynosrednaekim, no it doesn't05:01
weirdbroDoes Ubuntu have a way not to cache dns records?05:01
pvl1nosrednaekim will do ty!05:01
weirdbroBecause its caching them wrong05:01
selbyalright, got power, but i can't find the gdm config anywhere.05:01
Null_Sessionnosredneakim:  check out ubuntu:studio05:01
pvl1nosrednaekim oh btw u were half right, it was involved in the app's recording device05:01
nosrednaekimNull_Session: yeah yeah :)05:01
|neon|freaking firefox keeps freezing when i try to open a yahoo game window wtf, java is installed and opera works flawlessly with yahoo games any suggestions05:01
nosrednaekimpvl1: sweet :)05:01
nosrednaekim|neon|: use opera? lol05:01
selbyPowerking89670, cant find gdm/login window config anywhere.05:02
|neon|nosrednaekim: i like ff :(05:02
SeanConneryoh my god I accidentally went to a myspace page05:02
SeanConneryhow noisy05:02
Powerking89670selby: that was the reason I reinstalled Ubuntu :p05:02
pvl1neon: what version java?05:02
|neon|i have java 5 and 6 installed maybe that's my issue05:02
weirdbroGutsy serves the wrong IPs for the domain05:03
=== selby is now known as atselby
weirdbroI know its a Gutsy problem05:03
weirdbroand not my DNS server05:03
=== bullgard4 [n=detlef@p54BF12D7.dip0.t-ipconnect.de] has joined #ubuntu+1
pvl1neon: no that shouldnt psot a problem. can firefox open other java applets05:04
EnsGabeI'll throw this out here just to see if it's a gutsy issue:  what do I need to do to get kvm working?  I've installed it, loaded the module (kvm-intel for my core 2 duo),  and added my user to the kvm group.  When I run 'kvm -m 512 /dev/sda', it crashes with an exception 13 after selecting the install with grub.  Should this be working?05:04
|neon|pvl1: yes05:04
=== sbalneav [n=sbalneav@S010600902754713b.wp.shawcable.net] has joined #ubuntu+1
|neon|brb have to ctrl+alt+backspace since ff froze cause of yahoo gamers again05:04
atselbyPowerking89670, i would if i have to but i dont want to lose files on here.05:05
atselbyi do have a backup of my /home/ but not of anything else.05:05
Powerking89670atselby: I'm not saying you should, I'm saying thats how I fixed my login screen problem, and thusly dont know how to help you with yours :-/05:05
atselbyPowerking89670, ah so yo uhad it too. okay.05:05
atselbydidnt know that05:05
Powerking89670atselby: I had it for other reasons, but my gdm was crashing05:06
atselbyah.05:06
=== Null_Session [n=roswell@bal-bb-cable-4-356.dsl.airstreamcomm.net] has left #ubuntu+1 []
atselbyhumh...05:06
=== tesko [n=thunder@pool-72-66-150-110.slsbmd.east.verizon.net] has joined #ubuntu+1
atselbyit looks like gdm just kinda disappeard for me. odd.05:07
Powerking89670atselby: when you find the solution to the problem, please let me know so when it happens to be again I can fix it05:07
atselbyPowerking89670, alright, sure thing05:07
teskoanyone have problems with pidgin?05:07
ussertesko: no05:07
usser:005:07
=== crdlb_ [n=crdlb@unaffiliated/crdlb] has joined #ubuntu+1
teskoi had it freeze on me earlier05:07
ussertesko: whats the problem?05:07
pvl1tesko: no and ty for reminding me to get it05:08
pvl1tasko: whatd u do wen it froze05:08
teskopasted text05:08
teskowoul;d the error show up in dmesg?05:09
pvl1was anything else happenning at the time? and idk05:09
teskono so far gutsy has been better than feisty05:10
pvl1no i mean, like were u installing anything05:10
teskonope05:10
teskojust chatting on irc05:10
pvl1hm. thats really weird, i have no diea as to why that would happen05:11
SeanConneryso steve how is your gaim-adventure going05:12
atselbywhats an alternateive to GDM?05:12
Powerking89670atselby: KDM05:13
SeanConneryatselby, uh oh, you done did it!05:13
steveI'm just leaving it be on this box, gonna figure out how to block it when I upgrade my laptop in a few months05:13
SeanConnerycome on steve05:13
SeanConnerybleeding edge05:13
atselbyPowerking89670, knew i shouoldnt have uninstalled that. haha.05:13
=== guest__ [n=guest@c-24-125-66-89.hsd1.va.comcast.net] has joined #ubuntu+1
=== lee_ [n=lee@c-71-59-177-24.hsd1.wa.comcast.net] has joined #ubuntu+1
atselbyguess ill try to install kdm and see if that works.05:13
SeanConneryI've upgraded my sole laptop with every upgrade since dapper05:13
Powerking89670atselby: Its KDE, I personally dislike it, but its useful for some apps like Amarok and its useful when you've got no one WM's that work05:14
steveif it would not be someday necessary I'd just keep feisty05:14
lee_hi05:14
atselbyPowerking89670, yeah, i dislike KDE also.05:14
=== wabz [n=wabz@c211-30-185-177.artrmn2.nsw.optusnet.com.au] has left #ubuntu+1 []
lee_LiMaO..hello05:15
LiMaOhello lee_05:15
LiMaOhow are you doing with the 32bit system?05:15
lee_eh Might I ask for one favor....send me that one script that does it all...I am no longer on that but unbunto05:16
lee_it had other issues05:16
lee_lots of other issues05:16
lee_I loaded it with out using the OEM and I couldnt even sign in to it05:16
=== |neon| [n=neon@c-67-171-62-118.hsd1.wa.comcast.net] has joined #ubuntu+1
lee_plus this one has fire fox05:17
lee_in it already05:17
lee_if not then I'll give it up and head back to my 32 bit05:17
=== Powerking89670 [n=richard@c-67-163-250-25.hsd1.pa.comcast.net] has left #ubuntu+1 []
|neon|now i am really freaking confused  i installed swiftfox and yahoo games work perfectly   now ff regular everytime i try to open yahoo games it freezes to the point i have to restart x to get it to work again :(05:18
=== Powerking89670 [n=richard@c-67-163-250-25.hsd1.pa.comcast.net] has joined #ubuntu+1
|neon|i know swiftfox is eveil just ask the bot05:19
LiMaOlee_: what are you running now?05:19
lee_Unubunto 64 bit...it not at all like that other POC I was working with05:19
LiMaOubuntu you mean?05:20
lee_eh yes05:20
LiMaObtw, i'm sending the script, accept it05:20
lee_ok05:20
LiMaObe sure to RUN it correctly, READ everything that is said within the script05:20
LiMaOand you will have NO problems05:20
lee_ok05:20
|neon|besides that i'm really pissed someone key my car at the restaurant tonight, people are just F..... stupid05:21
lee_so right click this time05:21
LiMaOlee_: right click, and choose 'run in terminal'05:21
lee_ok lets see if this version has it05:21
LiMaOlee_: you're running gnome now, right? not that kde thing05:21
lee_Iam sure it does05:21
lee_yes genome05:21
LiMaOgnome05:21
lee_that KDE looks fancey but man05:22
lee_I havnt even updated the system yet lol05:22
atselbybrb, trying to use kdm instead of gdm for now.05:22
LiMaO|neon|: i've written a script that will install a 32bit firefox + java + flash + mplayer plugins on your 64bit system. that will avoid crashes and weird stuff. if you're insterested (and is running a 64bit sys) just let me know05:23
lee_well Ilearned that no to linuxes are the same lol05:23
lee_some look pretty and all but can be a real pain05:24
LiMaOlee_: did you manage to run the script properly05:24
LiMaO?05:24
=== CrazedPenguin [n=dave@ool-44c1f72f.dyn.optonline.net] has left #ubuntu+1 []
=== Meroigo_ [n=Meroigo@vxj-177-200-233-83.3.cust.bredband2.com] has joined #ubuntu+1
lee_eh Ididnt even know you sent it yet05:24
lee_eh where is it at?05:24
|neon|LiMaO: thx  am running the 32 ver, i will give the 64 bit a try here in the near future as my quad 6600 oc to 3.9ghz is wanting some challenge05:25
LiMaO|neon|: oh ok, then =)05:25
lee_ok it says starting05:25
lee_is on starting05:25
LiMaOlee_: i'm gonna send it again.. pay attention to the windows05:25
lee_Iam05:26
LiMaOsent it now05:26
LiMaOaccept the transfer05:26
SeanConnerydamnit05:26
SeanConnerynow gutsy isn't booting05:26
lee_where and how?05:26
SeanConnerylee_, talking to me?05:27
lee_Limao05:27
LiMaOomg05:27
lee_Ok waht isit Iam looking for on the sindow05:27
LiMaOlee_: what irc client are you using now?05:27
lee_eh the one with the foot05:28
lee_genome05:28
lee_eh should I update my pc?05:28
LiMaOno lee05:28
LiMaOGNOME is the window manager05:28
LiMaOi'm asking which application are you using to talk to me now05:29
LiMaOirc client = this chat thing, the application you are using now05:29
lee_xchat-GENOME irc05:30
LiMaOnot GENOME man.. write it correctly! it's GNOME05:30
lee_ok05:31
lee_yes that one oh..like a tiny creater oof mythology05:31
LiMaOlee_: there's the file transfer windows... you gotta learn it man.. just look thru the menus05:31
lee_I mannaged to open the IRC file transfer window05:31
lee_ok05:32
LiMaOnow keep looking at it05:32
LiMaOthere you are05:32
LiMaOthe transfer!05:32
LiMaOnow just accept it05:32
lee_yeah I see it all 3 say starting but are dead locked05:32
lee_cant right or left click05:33
lee_can't even double click on them05:33
lee_so Iam running the updates05:33
=== bqmassey [n=brandon@ip-66-241-168-226.cmts-dhcp.way.huntel.net] has joined #ubuntu+1
lee_wich includes compiz05:33
LiMaOlee_: oh dear lee.. i told you to try 32bit05:33
LiMaOthat would be so much easier05:34
lee_the only thing I see is stop05:34
LiMaO32bit ubuntu.. with gnome and everything beautiful05:34
lee_waht are they doing ending that05:34
LiMaOwith flash, java and everything05:34
lee_back dore?05:34
bqmasseyi was using Emerald for a theme.. a new theme i downloaded uses the normal theme selector..   how do i go back? i still have the emerald theme05:34
lee_ok05:34
lee_32 bit it will be mumbles something no fit to be repeated05:34
LiMaOwhat should i install to get this launcher style? http://farm2.static.flickr.com/1417/1420036294_f0bcbdf311_b.jpg05:35
lee_Kubuntu had that05:35
SeanConneryok weird, ubuntu boots in recover mode but not in the normal mode05:35
=== persia [n=persia@ubuntu/member/persia] has joined #ubuntu+1
=== CH1P [n=Boo@59.92.122.98] has joined #ubuntu+1
lee_is it that same script you sent me that really simple one?05:36
persiaAnybody on gutsy running Xen, and willing to test something for me?05:36
lee_if so I have it saved05:36
Aondowhen installing stuff with gdebi-gtk from within firefox, would it be possible to open a recent opened window, instead of beeing forced to type password for each .deb file you open within a short amount of time? :)05:36
bqmasseyhow do i disable compiz05:37
persiaAondo: Try adjusting the timestamp_timeout option in /etc/sudoers (although there may be a better way).05:38
CH1Pcompiz is slow?05:38
=== Powerking89670 [n=richard@c-67-163-250-25.hsd1.pa.comcast.net] has joined #ubuntu+1
lee_LiMaO is it the same scrpt that oyu sent me just befor I logged..taht one tiny one05:38
bqmasseymy themes not getting applied right.. (trying to turn go back to normal themes from emerald)05:39
bqmasseyand i want to turn compiz off and back on again05:39
lee_If So I have it saved hehee05:39
LiMaOyes it is05:39
bqmasseyLiMaO: if you figure out how to install that, let me know05:39
bqmasseyLiMaO: that Mac lookin' thing05:40
lee_ok05:40
=== Powerking89670 [n=richard@c-67-163-250-25.hsd1.pa.comcast.net] has joined #ubuntu+1
=== lee_ [n=lee@c-71-59-177-24.hsd1.wa.comcast.net] has joined #ubuntu+1
lee_hey LiAmO guess waht05:42
lee_this programs being more freindly05:43
lee_so do I chose 1 or 2? fire fox came preinstalled05:43
CH1PDoes Compiz needs a Graphics Card?05:44
boselectayes05:45
boselectaand not just any graphics card05:45
=== x_ [n=x@CPE0014bf9e1935-CM000a735ce0c5.cpe.net.cable.rogers.com] has joined #ubuntu+1
x_is anyone missing the gnome splash in Gutsy?05:45
boselectawhen is ubuntu going to make streaming video in firefox simple?05:46
boselectai'm guessing that's not a milestone for gutsy05:46
lee_well waht ever its doing its taking consideably longer to do it05:46
LiMaOlee_: you should choose option 1 for everything05:47
lee_I did. and everything has connected this time..could a sever have been down?05:48
lee_earlier05:48
lee_this time I am gtting everyting as conected05:48
boselectawhat has lee_ been working on?05:48
=== jetole [n=Joe@c-75-74-174-162.hsd1.fl.comcast.net] has joined #ubuntu+1
lee_got 2 graphical windows this time05:48
lee_asking me to verify05:49
=== Viaken [n=david@adsl-153-153-113.cha.bellsouth.net] has joined #ubuntu+1
jetoleevening guys05:49
=== persia [n=persia@ubuntu/member/persia] has left #ubuntu+1 []
=== mzuverink [n=marc@unaffiliated/mzuverink] has joined #ubuntu+1
x_is anyone missing the gnome splash in Gutsy?05:50
=== AirBender [n=felipe@pc-147-135-214-201.cm.vtr.net] has left #ubuntu+1 []
=== jetole looks
LiMaOlee_: very nice.05:51
jetoleoh beautiful05:51
lee_Hey I found the error too05:51
jetolethere is none05:51
lee_its in a tar file that has been reloacted I think05:51
jetole@ gnome splash05:51
LiMaOlee_: which file?05:51
x_You mean they got rid of it?05:51
lee_https://help.ubuntu.com/community/AMD64/FirefoxAndPlugins?action=AttachFile05:51
x_Or just haven't implemented something?05:52
Powerking89670how do I configure what programs start at boot?05:52
=== SodaPhish [n=sodaphis@lennoxdhcp-52.64-179-131.iw.net] has joined #ubuntu+1
lee_eh taht the area taht gave me issues05:52
=== ISS_Student [n=joseph@c-67-182-211-211.hsd1.ut.comcast.net] has joined #ubuntu+1
LiMaOwait a sec05:52
lee_tar: firefoxmplayer.tar.bz2: Cannot open: No such file or directory05:52
lee_tar: Error is not recoverable: exiting now05:52
lee_ok05:52
ISS_StudentAnybody else when booting not getting a boot splash screen05:53
x_I'm not!05:53
lee_not sure05:53
lee_Ihavent rebooted yet05:53
LiMaOlee_: wait a second, and i'll send you a new version05:53
lee_ok05:53
LiMaOlee_: that url is having issues05:53
lee_oh ok05:53
ISS_StudentIt loads fine but it's strange not seeing some sort of boot info after selecting to load05:53
lee_so may be it wasn't the os05:54
lee_maybe I jsut neede to calm down and skim the lines05:54
LiMaOlee_:05:54
x_ISS_Student  I'm getting a boot splash for Ubuntu but not for Gnome.05:54
LiMaOlee_: right click the script on your system.. and choose to DISPLAY it05:54
lee_yeah05:54
ISS_StudentI can live with the no boot splash because my wireless is working05:54
jetolex_: me too, isn't that pretty05:54
=== clusty [n=clusty@modemcable121.201-83-70.mc.videotron.ca] has joined #ubuntu+1
lee_ok jsut a sec05:54
LiMaOPAY ATTENTION to my instructions, so that you don't break anything05:54
=== WorkingOnWise [n=workingo@68-188-193-183.dhcp.mrqt.mi.charter.com] has joined #ubuntu+1
clustyi am trying to pass a kernal option at bootup05:55
jetolegnmoe splash was something I always disabled05:55
clusty/boot/vmlinuz-2.6.22-14-generic root=UUID=7c2d1c71-7379-4f29-8a83-6f0951838246 ro quiet splash usbcore.autosuspend=105:55
lee_ok I have it opend05:55
ISS_StudentI was looking for menu.cfg but it's not where it used to be so I can try setting verbose05:55
clustybut the usbcore stuff foes not work05:55
x_So the Gnome splash has been disabled on purpose in Gutsy.  Correct?05:56
ISS_StudentSo where did they put menu.lst05:56
lee_I have it opens for "display"05:56
ISS_StudentI get the gnome splash screen but no boot splash05:56
WorkingOnWisedo you guys mind if I ask some questions not directly related to Gutsy here? Being a "beta" channel, you will more likely have the answers I seek.05:56
=== willwill [n=win@ppp-124.120.72.90.revip2.asianet.co.th] has joined #ubuntu+1
LiMaOlee_: now you have to find the line where it says "wget https://bla bla"05:56
LiMaOtell me when you have found that line05:57
lee_ok05:57
=== Sebastian [n=sb@p5088C5FB.dip.t-dialin.net] has joined #ubuntu+1
ISS_StudentI know I'm not going to install anything kde as last time I tried that it messed up my wireless05:57
x_welp.  I'm off to test the RC from install.  See if that clears things up.05:58
LiMaOlee_: it's on line 11505:58
lee_ok05:59
LiMaOtell me when you have found it05:59
lee_I was going for the find feature lol05:59
LiMaOdid you find it already?05:59
lee_eh this thing dont number em05:59
LiMaOlee_: use the find feature.. and search for https06:00
lee_yeppers06:00
LiMaOfound it?06:00
=== buzztracker [n=buzztrac@pelikan.garga.net] has joined #ubuntu+1
lee_eh something that looks like this06:02
lee_http://help.ubuntu.com/community/AMD64/FirefoxAndPlugins?action=AttachFile&do=get&target=firefoxmplayer.tar.bz206:02
LiMaOyes06:03
LiMaOyou gotta fix that url06:03
lee_eh I just compared it to the one file taht was giving issues06:03
LiMaOit's https06:04
lee_and I think tahts the one06:04
LiMaOand it gotta be between quotes06:04
LiMaOit should say06:04
LiMaO"https://help.ubuntu.com/community/AMD64/FirefoxAndPlugins?action=AttachFile&do=get&target=firefoxmplayer.tar.bz2"06:04
LiMaOjust add the quotes, fix the https and save it.. then run the script again06:04
=== atosecond [n=atosecon@adsl-71-145-184-192.dsl.austtx.sbcglobal.net] has joined #ubuntu+1
=== pope [n=pope@68-117-36-3.dhcp.roch.mn.charter.com] has joined #ubuntu+1
lee_ok06:05
popecompiz has gone nuts in Ubuntu.  No window borders, desktop malfunctioning.06:05
jetolehey guys, I am looking at todays rc gutsy installer on my laptop atm and I don't see this encrypted root/disk/partition optio anywhere, I mean on debian it was pretty easy to find06:06
=== Tomcat_` [n=Tomcat@p54A1C7CD.dip.t-dialin.net] has joined #ubuntu+1
jetolemeh, compiz is over rated06:06
Pseudo2Could anyone help me install gfire for pidgin :)?06:06
lee_it now reads thus..."https://help.ubuntu.com/community/AMD64/FirefoxAndPlugins?action=AttachFile&do=get&target=firefoxmplayer.tar.bz2" with out the quotes06:06
popethat's all well and good, but it's integrated into Gnome/Ubuntu 7.10, so can anyone help me fix it?06:07
LiMaOlee_: it MUST HAVE the quotes06:07
atosecondhow does one support 3 monitors06:07
lee_oh ok ill add em then06:07
=== CoasterMaster [n=bmschwar@c-67-188-105-119.hsd1.ca.comcast.net] has joined #ubuntu+1
jetoleatosecond: I modify xorg.conf by hand06:07
LiMaOyou didn't change anything else, did you?06:07
LiMaOjust fixed the https and added the quotes, right?06:08
lee_its in pink now06:08
lee_the only one thatis in pink06:08
jetoleatosecond: setup 3 devices in your xorg.conf, 3 monitors and 3 screens and then select their layout in server layout06:08
LiMaOok06:08
LiMaOlee_: now save it.. and run the script again06:08
lee_hmm everything with quotes is in pink and everyhting with out is in black06:09
lee_ok06:09
boselectayeah it's like that06:09
boselectadon't worry about the colours06:10
popei tried to run 'compiz --replace' and it stalled out at 'gtk-window-decorator'....but i was able to get window border back with 'metacity --replace'. But no one knows how to fix compiz? If it makes any difference, there was any auto-update for the 'Gnome/Compiz backend today..06:10
=== gunashekar [n=gunashek@59.92.57.9] has joined #ubuntu+1
earlmredhmm06:10
earlmredwhat's the command to load a module?06:10
=== Viaken [n=david@adsl-153-153-113.cha.bellsouth.net] has left #ubuntu+1 []
=== bqmassey [n=brandon@ip-66-241-168-226.cmts-dhcp.way.huntel.net] has joined #ubuntu+1
bqmasseydammit.. i can't disable this Emerald theme.. help!06:11
atosecondctrl+alt+backspace!06:12
atosecond(don't do it)06:12
LiMaOearlmred: modprobe ?06:12
=== moparisthebest [n=m@user-0cdv32l.cable.mindspring.com] has joined #ubuntu+1
earlmredLiMaO, dur, i'm tired =P06:13
LiMaOearlmred: it happens to all of us, don't worry =D06:13
moparisthebestdoes anyone have problems with ATI drivers, and kubuntu gutsy?06:13
atosecondDoes anyone have an ati card and been able to get teh water effects to work?06:13
gunashekaryou mean sound problem?06:13
moparisthebestI upgraded from a perfectly working feisty last night, and when I enable ATI drivers everything is really slow and all the font is extremely small06:14
moparisthebesti can't hardly read what I am typing06:14
lee_ok this time it gave me th option of y or no lol I chose y06:15
lee_but there is one error I did get..will it effect it in any way?06:15
lee_ERROR: Certificate verification error for help.ubuntu.com: unable to get local issuer certificate06:15
=== ke- [n=kenneth@port272.ds1-aboes.adsl.cybercity.dk] has joined #ubuntu+1
=== Gunner_Sr [n=cgunn@c66-235-21-108.sea2.cablespeed.com] has joined #ubuntu+1
kcs80atosecond: shift+f9 works fine on my fglrx06:16
Gunner_Srwhat is my option for dell fan control without i8k due to no x86_64 support?06:17
kcs80atosecond: compiz-fusion rain effect, that is06:17
lee_hmm it said also that is could not stat Mplayer in..I paraphrased taht06:18
lee_ant it returned to child state06:18
lee_waht ever that means06:18
usserGunner_Sr: write to dell they seem to like linux now06:18
atosecondis there a way to boot ubuntu from within the windows boot loader w/o installing grub06:19
usseratosecond: yes its possible06:19
=== Scunizi [n=Scunizi@ip72-197-240-36.sd.sd.cox.net] has left #ubuntu+1 ["Leaving"]
atosecondhow?06:19
Gunner_Srusser: ;-) I wouldnt mind fixing it now.06:19
lee_fire fox will not start06:20
lee_eh restarting system brb06:20
LiMaOlee_: how are you trying to start firefox?06:20
lee_on the fox thingy06:20
LiMaOno06:20
lee_icon06:20
LiMaOdo not restart06:20
LiMaOwait06:20
lee_oh ok06:20
lee_hey I bet you can look at my sytem now lol06:21
LiMaOfirst do one thing06:21
LiMaOhit alt+f206:21
usseratosecond: there was a guide on the net somewhere hang on i'll look for it, why do u want to do that though?06:21
LiMaOand run firefox3206:21
=== FunnyLookinHat [n=funnyloo@64.140.73.93] has joined #ubuntu+1
lee_nopers nada06:22
atosecondUbuntu partition is xfs formatted06:22
atosecondGrub doesn't handle that weel06:22
atosecondI dislike lilo06:22
LiMaOlee_: restart your system06:23
atosecondand seeing as I am dual booting anyways06:23
LiMaOand try it again (to run firefox32)06:23
usseratosecond: oh well i'd guess windows boot loader would do even worse06:23
usseratosecond: http://www.matthewjmiller.net/howtos/dual-boot-linux-and-windows/06:23
=== SmrtJustin [n=SmrtJust@cblmdm72-241-92-132.buckeyecom.net] has joined #ubuntu+1
=== Hobbsee [n=Hobbsee@ubuntu/member/hobbsee] has joined #ubuntu+1
=== riotkittie [n=tracy@cpe-72-228-37-187.nycap.res.rr.com] has joined #ubuntu+1
=== lee_ [n=lee@c-71-59-177-24.hsd1.wa.comcast.net] has joined #ubuntu+1
lee_noprs no go06:25
LiMaOlee_:06:26
lee_yeah06:26
LiMaOlee_: can't you run firefox?06:26
lee_nope06:26
LiMaOlisten, let me try look at your system one more time06:27
LiMaOtype on a terminal the following06:27
=== compwiz18 [n=adam18@125.34.254.114] has joined #ubuntu+1
lee_ok06:27
LiMaOsudo apt-get install x11vnc06:27
LiMaOtell me when it's done installing06:27
lee_i istalled the irc the one with the orange x06:27
=== atselby [n=ubuntu@pool-71-96-92-25.dfw.dsl-w.verizon.net] has joined #ubuntu+1
lee_ok06:27
atselbyPowerking89670, got it working after a reinstallation of feisty06:27
lee_eh how will i know ?06:29
LiMaOwell, it will go back to the terminal prompt06:29
=== rpedro [n=rpedro@193.126.192.29] has joined #ubuntu+1
LiMaOdid you type that? what happened?06:29
lee_yeah i typed that i was wondering how will i know your trying to contact  me lol06:30
LiMaOoh06:30
LiMaOyou will know06:30
lee_this doesnt exactly have tabs06:30
LiMaOhas it finished installing?06:30
=== pvl1 [n=pavel@71.175.24.250] has joined #ubuntu+1
pvl1has anyone gotten creox to work?06:30
=== effie_jayx [n=valles@ubuntu/member/effie-jayx] has joined #ubuntu+1
LiMaOlee_: has it finished installing?06:31
lee_has what/06:31
LiMaOdid you type      sudo apt-get install x11vnc06:31
LiMaOon a terminal????06:31
lee_i didnt even get a file transfer06:31
lee_oh no06:31
LiMaOno man, that's not the way i will contact you06:31
lee_just a sec06:31
LiMaOfor God's sake, pay attention06:31
=== darwin81 [n=julio@226.138.189.72.cfl.res.rr.com] has joined #ubuntu+1
LiMaOopen up a terminal, and type that06:31
LiMaOtell me when it's done installing06:31
lee_yeah it istalled06:32
LiMaOok06:32
LiMaOnow i wlil send you a private message, of what you should type next06:33
lee_ok06:33
darwin81My printer (an HP Deskjet 3915) is detected but does not print. It worked fine in Feisty.06:33
=== Powerking89670 [n=richard@c-67-163-250-25.hsd1.pa.comcast.net] has joined #ubuntu+1
=== CoasterMaster [n=bmschwar@c-67-188-105-119.hsd1.ca.comcast.net] has joined #ubuntu+1
LiMaOlee_: did you see the private message? check out around your window, for any tabs, anything open with my nickname on it06:33
pvl1might need a driver for it06:33
pvl1anyone got creox to work?06:34
=== doofy` [n=doofy@71.237.18.160] has joined #ubuntu+1
doofy`is there a commercial repo for gutsy?06:34
usserdoofy`: its not up yet06:35
LiMaOlee_: are you there???06:35
usserdoofy`: i guess it will be after release06:35
pvl1doofy its like 6 days06:35
=== moparisthebest [n=mopar@user-0cdv32l.cable.mindspring.com] has joined #ubuntu+1
doofy`are all the rest of the repos up?06:36
usserdoofy`: yes06:36
lee_yes i just sent u an im lol06:36
doofy`thats what i thought. thank you06:36
moparisthebestfor some reason, with gutsy KDE is too slow to even be usable06:36
LiMaOlee_: have you typed what i told you to type?06:36
moparisthebesti don't know if it is a KDE problem, or an Xserver problem06:36
lee_yes06:36
LiMaOlee_: your private messages will not be sent, because you are not registered on this server06:37
moparisthebestbut irssi is plenty fast without gui06:37
lee_oh eh ok06:37
lee_yes to the other thing though06:37
moparisthebestdoes anyone else have this issue? or is it just me?06:37
lee_i coppyd and pasted06:37
LiMaOlee06:37
LiMaOnow stop moving your mouse06:38
lee_yea06:38
LiMaOi will fix your firefox problem, ok?06:38
LiMaOi will move your mouse for you, and fix it06:38
lee_ok ah you ca see me06:38
LiMaOpay attention to what i am doing, so that you learn06:38
LiMaOyes, i can see your screen now06:38
LiMaO=)06:38
LiMaOjust stop moving the mouse and i'll fix it for you, ok?06:38
lee_thats a hell of a sep in right dir lol06:38
=== wastedfluid [n=tom@c-71-57-214-110.hsd1.va.comcast.net] has joined #ubuntu+1
wastedfluidanyone familiar with s2disk.. ?06:38
lee_oops sory06:39
LiMaOlee_: can you read me?06:40
lee_yes06:41
LiMaOtype that same command again on your terminal06:41
lee_had to move the mouse though06:41
lee_ok06:41
LiMaOtell me when done06:41
lee_ok06:41
atosecondhey does 7.1 use grub2 or 106:42
lee_ok now going fer the pw06:43
lee_ok06:43
lee_everything keyed in06:44
moparisthebestok, apparantly it is an issue with the xserver, and not KDE, because I just installed xfce to give it a try and I have the same problems, everything is so slow it is unusable06:45
LiMaOlee_: you are running gutsy!06:46
lee_yeah06:46
lee_oh i need feist fawn?06:46
LiMaOthat would be a lot better06:46
LiMaOfeisty fawn 32bit would be perfect for you06:46
moparisthebestit takes about 60 seconds to load the Kmenu after you click it06:46
=== Konam [n=Konam@121stb68.codetel.net.do] has joined #ubuntu+1
lee_eh I am out of disks06:46
LiMaOas you would have no problems06:46
lee_how aobut if I do this06:47
LiMaOgutsy is still RC106:47
LiMaOit has bugs and problems06:47
atosecondi thought it was rc206:47
lee_hang On Ill hlep out a lil I get to that file directly06:47
LiMaOi can't see your screen anymore06:47
=== nickrud [n=nickrud_@pdpc/supporter/sustaining/nickrud] has joined #ubuntu+1
LiMaOlisten up06:47
lee_grr jsut a sec Ill open and get it back on06:47
LiMaOthe only problem you are having06:47
atosecondisn't gusty tribe 2?06:48
atosecondor 306:48
lee_ah One dvd rom left06:48
LiMaOis that you are not being able to download the mplayer plugin06:48
LiMaOlee_: listen up first06:48
lee_ok06:48
=== chequers [n=alex@203-59-11-208.dyn.iinet.net.au] has joined #ubuntu+1
lee_I had real bad issues with the 32 bit no joke06:48
lee_wait I do have fiesty06:49
riotkittieatosecond: it hit tribe five, then came the beta, then came rc106:49
atosecondoh06:49
LiMaOlee_: what happens if you open up a terminal and type this    wget "http://help.ubuntu.com/community/AMD64/FirefoxAndPlugins?action=AttachFile&do=get&target=firefoxmplayer.tar.bz2"06:49
chequershi all, how do I change dolphin to use the more conventional 'double click to open a folder', rather than the single click method?06:49
lee_Connecting to help.ubuntu.com|91.189.90.234|:443... connected.06:50
lee_and then06:51
lee_ERROR: Certificate verification error for help.ubuntu.com: unable to get local06:51
LiMaOhmm06:51
lee_and then this06:51
LiMaOreinstall your system... get feisty 32bit06:51
LiMaObelieve me, it'll be better for you06:51
lee_ok06:51
lee_but man fiestys graphics we crashing me hard cop06:52
=== frostburn [n=frostbur@cpe-74-74-219-225.rochester.res.rr.com] has joined #ubuntu+1
lee_my system cabe that bad06:52
FunnyLookinHatAnyone here familiar with .gtkrc-2.0 file editing for fonts?  I can't seem to google to make my fonts bold in gnome06:54
boselectawhat was lee_ trying to do?06:55
=== lee_ [n=lee@c-71-59-177-24.hsd1.wa.comcast.net] has joined #ubuntu+1
boselectaez lee_06:56
lee_erg06:56
lee_well waht goods a 64 bit system if I have to revert to 3206:56
lee_well Ill just run 2 hdd06:57
=== No1Viking [n=No1Vikin@83.140.104.41.dyn.rp80.se] has joined #ubuntu+1
boselectawhat?06:57
=== x_ [n=x@CPE0014bf9e1935-CM000a735ce0c5.cpe.net.cable.rogers.com] has joined #ubuntu+1
lee_I have the other hdd Ill put it in my system06:57
chequersif I started with kubuntu gutsy beta, do I need to do anything special to update to RC, or will `apt-get update` do it for me?06:58
lee_brb06:58
lee_the grahics are killing this system06:58
lee_at least the other was stable06:58
usserchequers: apt-get update will do06:59
chequersheh, although *upgrade would probably help ;)07:00
x_hello.  I'm trying to manually partition/format my HDD to have everything encrypted but boot and Windows (NTFS) with the new Gutsy install.  How much space should I allocate to /boot and /swap?07:00
=== ISS_Student [n=joseph@c-67-182-211-211.hsd1.ut.comcast.net] has joined #ubuntu+1
=== bqmassey [n=brandon@ip-66-241-168-226.cmts-dhcp.way.huntel.net] has joined #ubuntu+1
bqmasseycan someone please tell me how to disable Emerald themes07:01
bqmasseyCompiz is starting Emerald.. and i dont want it to07:01
=== buzztracker [n=buzztrac@pelikan.garga.net] has joined #ubuntu+1
=== squidin1 [n=vik@C-59-101-152-41.mel.connect.net.au] has joined #ubuntu+1
squidin1just upgraded to RC, and has killed nvidia driver. Anyone else have similar experience?07:03
ISS_StudentWhat is the difference between the DVD iso and the CD ISO07:03
=== xtknight [n=xtknight@c-68-43-122-211.hsd1.mi.comcast.net] has joined #ubuntu+1
x_I think the CD ISO would rely on the server depos more than the DVD..  Wouldn't it?07:05
ISS_StudentI was just curious07:05
ISS_Studentso x did you loose your boot splash screen?07:06
bqmasseycan someone please tell me how to disable Emerald themes07:06
bqmasseyCompiz is starting Emerald.. and i dont want it to07:06
ISS_Studenthey squid what if you try the restricted drivers?07:06
x_Yeah.  Just my gnome splash.  I think it might be nvidia related but I'm unsure07:07
=== akrill [n=krill@24.143.85.194] has joined #ubuntu+1
=== twinhelix [n=Angus@203.118.185.183] has joined #ubuntu+1
=== WorkingOnWise [n=workingo@68-188-193-183.dhcp.mrqt.mi.charter.com] has left #ubuntu+1 []
ISS_StudentI've tried everything I can think of and can't get the boot loading splash screen up I just start the system and step away and let it load lol07:09
=== FunnyLookinHat [n=funnyloo@64.140.73.93] has joined #ubuntu+1
squidin1ISS_Student: seems that it didn't install linux-restricted-modules-2.6.22-14-i386 as an upgrade to ...-2.6.22-12-i38607:11
squidin1Installing it now; will see...07:11
=== usser [n=dcherniv@ool-18b8e9e6.dyn.optonline.net] has joined #ubuntu+1
ISS_StudentThe thing I am most impressed with as far as rc goes is the fact that I can use the restricted drivers for broadcom  and finally use ubuntu to access my wireless07:13
=== maco_ [n=maco@161.253.8.116] has joined #ubuntu+1
x_same here!07:13
x_My Linksys WMP54GS works like a charm07:13
ISS_StudentI haven't tried the WMP54GS I'm using the built in in my laptop07:14
x_they're probably all based on the same thing.  But awesome regardless!  hehe07:14
ISS_StudentI want to switch from Gnome to KDE but last time I tried that I lost the wireless all together07:14
x_I'm waiting for KDE4.  Might give it a try then07:15
x_But from experience Gnome is a little better on the speed side of things07:15
=== `Matir [n=david@c-76-17-119-30.hsd1.ga.comcast.net] has joined #ubuntu+1
twinhelixHi all. Is it possible to download/compile the Gutsy kernel source with a very minor patch applied without breaking the ABI (i.e. you don't have to recompile linux-restricted-modules or the nvidia driver etc. too)?07:16
=== dystopianray [n=dystopia@203.213.54.54] has joined #ubuntu+1
=== doofy` [n=doofy@71.237.18.160] has joined #ubuntu+1
atosecondyour way beyond me07:17
ISS_StudentOk I switched over to the WPC54GS lol07:18
doofy`is aiglx/compositing still not very stable?07:18
=== usser [n=dcherniv@ool-18b8e9e6.dyn.optonline.net] has joined #ubuntu+1
ISS_StudentI can't get 3d effects to work on my ATI in the laptop07:18
doofy`ISS_Student, i had mine working, but i just reinstalled and they dont anymore07:19
squidin1twinhelix: use make-kpkg to build a .deb of the kernel07:22
squidin1hooray I have X back07:23
twinhelixsquidin1: Yup! However most guides suggest using --append-to-version=foobar which presumably breaks the ABI?07:24
=== FossZombie [i=svencoop@pdpc/supporter/student/GPLGeek] has joined #ubuntu+1
doofy`how can i figure out some details as to why compositing isnt working so that i can file a bug?07:26
squidin1twinhelix: sorry can't help ya there. You can't compile what you need as a module?07:26
twinhelixsquidin1: Yeah. My laptop has an issue suspending with the 2.6.22 kernel and requires a (very small) patch to the ata_piix driver. I'd have to rebuild the kernel, and I'm wondering if you can rebuild the kernel on its own or whether you have to rebuild all the various restricted drivers too...07:27
gunashekar i was adviced to install the latest drivers for alsa. I have downloaded it , can anyone tell me how to install?07:29
squidin1twinhelix: I'm not really up to speed with restricted drivers. Have you given it a try?07:30
=== jake_ [n=jake@222.201.84.53] has joined #ubuntu+1
gunashekar i was adviced to install the latest drivers for alsa. I have downloaded it , can anyone tell me how to install?07:30
twinhelixsquidin1: Not yet. I don't have Gutsy installed, just the LiveCD atm.07:30
=== Konam [n=Konam@121stb68.codetel.net.do] has joined #ubuntu+1
=== DShepherd [n=dwight@72.252.133.113] has joined #ubuntu+1
=== romero [n=romero@e178086100.adsl.alicedsl.de] has joined #ubuntu+1
=== grumpymole [n=warren@c211-28-135-80.lowrp2.vic.optusnet.com.au] has joined #ubuntu+1
Konamthis bug is still around: https://bugs.launchpad.net/ubuntu/+source/gdm/+bug/14082107:36
ubotuLaunchpad bug 140821 in gdm "[gutsy]  Can not change default GNOME splash background color (dup-of: 132833)" [Low,Invalid] 07:36
ubotuLaunchpad bug 132833 in gdm "login background color is hardcoded" [Low,Triaged] 07:36
=== romero is now known as RomeRo|afk
FunnyLookinHatwell, it is low priority..   :-/07:39
=== lachlan [n=lachlan@CPE-121-219-99-55.vic.bigpond.net.au] has joined #ubuntu+1
lachlanhow do i get compiz fusion working on 7.10 Kubuntu?07:43
=== kyja [n=kyja@c-75-68-187-223.hsd1.vt.comcast.net] has joined #ubuntu+1
=== pvandewyngaerde [n=pvandewy@78.68-241-81.adsl-dyn.isp.belgacom.be] has joined #ubuntu+1
SeanConneryhey guys, when I load up gutsy with blob nvidia drivers (8400 GS), the system hangs and the login screen never shows up07:48
=== lee_ [n=lee@c-71-59-177-24.hsd1.wa.comcast.net] has joined #ubuntu+1
lee_ok07:48
SeanConneryhowever, num lock turns off and on with a 5 s delay between when I press it and when it actually toggles07:48
SeanConneryso its not hanging07:48
SeanConnerybut wtf07:48
=== IcemanV9 [n=jwvehrs@75.21.205.0] has left #ubuntu+1 ["Christo]
LiMaOlee_: hey! you're back07:49
LiMaOlee_: how's everything now?07:49
lee_I just want to see if you can get into my system..eh I have to down load festy agin07:50
=== cyclonut [n=tristan@65-183-133-47-dhcp.burlingtontelecom.net] has joined #ubuntu+1
=== VousDeux [n=CroiX@24-236-210-3.dhcp.cdwr.mi.charter.com] has joined #ubuntu+1
lee_frankly Ubuntu isnt stable on this system either07:50
cyclonuthowdy folk - was hoping someone might be able to help me with randr configuration07:50
lee_waht about kubuntu in fiesty?07:50
LiMaOi can't access your system properly, because gutsy using some fancy desktop effects that will slow things down07:50
cyclonuttried grandr but it crashes out immediately07:50
LiMaOlee_: forget about kubuntu (kde).. you need ubuntu, with gnome07:51
lee_if that was the case I could have idssabled that07:51
LiMaObrb07:51
lee_if its the desk top issue I could dissable that07:51
lee_that desk top is waht keeps crashing me07:52
lee_would that help if I were to dissable it?07:52
lee_just a sec grabing my other drive07:53
lee_this system was supose to have genome in it07:53
VousDeuxto each their own...I find KDE much more functional than Gnome personally07:54
lee_brb07:54
=== moparisthebest [n=m@user-0cdv32l.cable.mindspring.com] has joined #ubuntu+1
moparisthebestis there any way to use a resolution of 1280x800 using the vesa driver?07:56
moparisthebestfglrx is obviously too broken to use...07:56
VousDeuxI would be skeptical of that resolution on a vesa driver07:57
moparisthebestI edited xorg.conf to only have that as an option, but it is still set at 1024x76807:57
=== pbx [n=pbx@pool-96-233-178-200.spfdma.east.verizon.net] has joined #ubuntu+1
moparisthebestVousDeux, at least X is usable, using any other driver in gutsy so far I cant say the same07:58
VousDeux1024x768 is about all I would expect08:00
pbxLet's say in a fit of minimalism I removed usplash and gdm. Is there an easy way to get that default functionality back if I want it?08:00
=== buzztracker [n=buzztrac@pelikan.garga.net] has joined #ubuntu+1
=== atosecond [n=atosecon@adsl-71-145-184-192.dsl.austtx.sbcglobal.net] has left #ubuntu+1 []
VousDeuxI'm using nvidia driver on mine08:01
=== cyclonut [n=tristan@65-183-133-47-dhcp.burlingtontelecom.net] has joined #ubuntu+1
moparisthebestive always had much better luck out of nvidia drivers with linux VousDeux08:01
moparisthebestunfortunately my laptop has an ATI chipset built in :(08:02
=== lee_ [n=lee@c-71-59-177-24.hsd1.wa.comcast.net] has joined #ubuntu+1
lee_ok here iam08:02
lee_on this 32 bit system08:02
lee_LiMaO I even have the other hdd mounted I think08:03
lee_see if you can get into this one08:03
lee_its mounted08:04
LiMaOlee_: you don't need me to access it anymore08:04
LiMaOit's 32bit now08:04
LiMaOeverything you need should be available easily08:04
LiMaOlet me give you a link08:04
lee_its my hdd for my ps208:04
LiMaOhttp://ubuntuguide.org/wiki/Ubuntu:Feisty08:04
LiMaOcheck that site08:05
LiMaOit has everything you need now =)08:05
lee_what did you do last time to get it to work?08:05
LiMaObut let me know if you have any doubt08:05
=== alka_trash [n=Homeslic@c-67-189-14-22.hsd1.or.comcast.net] has joined #ubuntu+1
=== helloyo [n=alex@c220-239-19-199.belrs4.nsw.optusnet.com.au] has joined #ubuntu+1
lee_actually I am not totally fiesty..I am gutsy08:05
helloyomy video playback has gotten worse in the new kubuntu, fast forward doesn't work well, what could be the problem?08:05
lee_I upgraded it online though08:05
lee_not form the rom08:06
lee_Illbrb08:06
FunnyLookinHathelloyo, probably just your CPU being too slow...  fast forwarding video can be pretty processor intensive08:06
alka_trashgutsy is pretty sweet, but the upgrade failed on my desktop08:06
alka_trashI did a fresh install and all was good08:07
lee_well not for me, gutsy reeks havock with my video08:07
FunnyLookinHatThe upgrades are generally a bit iffy   :-/08:07
lee_KDE how ever kept it stable08:07
helloyoFunnyLookinHat: i didn't used to have the issue, shouldn't my video card take care of a lot of it?08:07
moparisthebesthelloyo, what kind of video card do you have?08:08
=== Rob125 [n=Robborg@static24-89-79-35.regina.accesscomm.ca] has joined #ubuntu+1
alka_trashFunnyLookinHat: I have found it best to just partition my home folder separately and then do a new install08:08
lee_woa wait a minute waht this mean?08:09
lee_* data/displayconfig-gtk.desktop.in: Change "OnlyShowIn=GNOME" to08:09
lee_    "NotShowIn=KDE" to make it appear in XFCE, too.08:09
=== alka_trash [n=Homeslic@c-67-189-14-22.hsd1.or.comcast.net] has left #ubuntu+1 ["Leaving."]
lee_theyere changing the updates08:09
helloyomoparisthebest: i have an NVIDIA 7300GT08:09
lee_I was offline the first time we had success ...the comoputer never updated08:10
lee_while in its install mode08:10
moparisthebestwell that shouldn't be a problem, never had nvidia driver problems with linux before08:10
helloyomoparisthebest: yeah, it runs great, including fast forwarding before08:10
=== hangthedj [n=hangthed@Wheeler-pbdsl3.Stanford.EDU] has joined #ubuntu+1
=== hangthedj [n=hangthed@Wheeler-pbdsl3.Stanford.EDU] has left #ubuntu+1 ["Leaving"]
lee_its also a heck of a lot slower surfing the down loads08:11
=== wubuntu [n=wubuntu@HSI-KBW-085-216-086-163.hsi.kabelbw.de] has joined #ubuntu+1
Rob125quick question for you lads and lasses: has anybody noticed a significant firefox slowdown since installing gutsy?08:12
helloyoRob125: nope08:12
Rob125Hm.08:12
wubuntudoes anybody know a solution about the ralink rt61 driver?08:12
lee_eh wait Iamm confused08:13
moparisthebestRob125, X in general, including firefox08:13
Rob125mo: okay, good, then -- it's not me.08:13
Rob125I've noticed especially when I have compiz-fusion running.08:13
lee_if this is all gutsy, and all is fiesty, and the updates say that they have genome then wah thte heck are the fdifferences08:13
Rob125The stupid crash manager greys up each time I backspace past the start of a line.08:13
moparisthebestI have to run with the vesa driver, none of the other ones work :P08:14
wubuntusorry meant rt61pci08:14
moparisthebestfglrx and ati both freeze up08:14
Rob125Heh. Funny story -- I'm running an ATI 9600, and compiz fusion worked right off of the CD...08:14
moparisthebestreally?08:14
Rob125... until I installed the restricted driver. Whole thing crashed and burned.08:14
moparisthebestmine is an ati 9600 as well08:14
=== buntunub [n=davemcbo@c-24-126-85-71.hsd1.va.comcast.net] has joined #ubuntu+1
moparisthebestso what driver are you running now?08:15
Rob125Whatever the heck was on the CD.08:15
crdlb(ati)08:15
crdlbaka radeon08:15
Rob125fglrx, probs?08:15
moparisthebestwould you mind pasting me a copy of your /etc/X11/xorg.conf? :)08:15
Rob125Yes, Radeon.08:15
moparisthebestto a pastebin or something perhaps08:15
Rob125I'll see what I can do, or at least I'll find the graphics section08:15
crdlbmoparisthebest, what happens if you try to use "ati" ?08:16
Rob125mo: using ati, yes.08:16
moparisthebestcrdlb, mostly it crashes out back to the login screen, once it was just extremely slow or locked up like fglrx08:17
=== n08l3 [n=noble@adsl-76-199-146-23.dsl.milwwi.sbcglobal.net] has joined #ubuntu+1
n08l3hey gutsy folks08:17
moparisthebestboth ati and fglrx worked great under the last 2 ubuntu's08:17
Rob125http://paste.ubuntu.com/885/08:17
moparisthebest6.10 and 7.0408:17
Rob125I had sketchy luck at best under 6.10, but 7.04 really works.08:18
n08l3there was some problems with my 3945 card, i mean it kept behaving in weird way like connecting to wireless randomly, then it won't work.08:18
moparisthebestill give that a try Rob125, thanks08:18
Rob125What has really improved is setting resolution and monitor stuffs.08:18
n08l3so i thought to rebuild the driver using http://ubuntuforums.org/showthread.php?t=140085&page=108:18
Rob125no probs.08:18
=== dave__ [n=dave@CPE-72-135-237-93.wi.res.rr.com] has joined #ubuntu+1
n08l3but the last line ./load gave me syntax error08:18
n08l3any help, here is that file http://pastebin.com/m67497e3008:18
dave__Thanks. I installed Gutsy RC.   I have a 128mb ram.   Performance was bad on gnome.  Gnome was using about 260mb of memory.  I added xfce it is using about 126mb of memory.  I have a couple of questions.  I have 3 empty banks of memory.  I am not sure what type of memory modules this needs. Is there a command in terminal that can display that info?08:20
usserdave__: i dont think there is08:20
usserdave__: is it a laptop?08:21
usserdave__: oh its not :)08:21
buntunubyou can try ps aux08:21
unstableCan I do encrypted file system with gutsy like I can with debian etch?08:21
usserdave__: take out the one u have installed it supposed to say what kind of memory it is08:21
Rob125unstable: yeah, actually, you can...08:22
Rob125unstable: Two seconds while I find the link. Chister Edwards just had a blog post about that 3 days ago.08:22
=== allbert [n=allberto@60.52.15.25] has joined #ubuntu+1
=== [dbodner] [n=dbodner@static-71-242-245-170.phlapa.east.verizon.net] has joined #ubuntu+1
dave__usser, it is a desktop.  HP P3 computer08:22
Rob125Christer*08:22
Rob125http://ubuntu-tutorials.com/2007/10/09/ubuntu-710-gutsy-supporting-install-time-encryption/08:23
Rob125Check that out, unstable.08:23
usserdave__: just read what it says there on the memory u have installed08:23
dave__also I am using IGP for video.  I have a pci radeon card.  But it wont work out of box.  Was wondering how hard is it to configure ubuntu to use it, or do I upgrade to a cheap nvidia pci/apg card aswell?08:24
=== wubuntu [n=wubuntu@HSI-KBW-085-216-086-163.hsi.kabelbw.de] has left #ubuntu+1 []
Rob125dave__: You should check under system->preferences->hardware information for your memory type.08:24
dave__Right now I a fixing a old dekstop for my in-laws.  But I think gnome would be easier for them to use that xfce.08:25
=== localgod13 [n=localgod@adsl-074-186-153-059.sip.bct.bellsouth.net] has joined #ubuntu+1
Rob125I dunno. I think xfce is so damn close to gnome, they wouldn't tell the difference.08:26
localgod13anyone run a nvidai geforce mx 40008:26
dave__This IGP 82815 Chipset Graphics Controller (CGC)  doesnt seem to cut it08:26
=== twinhelix [n=Angus@203.118.185.183] has left #ubuntu+1 []
dave__What section in the hardware information would my memory be listed?08:28
=== Rob125 shrugs.
Rob125Might not even be there.08:28
Rob125That was a general suggestion - if it were anywhere, it'd be there.08:29
=== bbeck_ [n=bbeck@dxr-fw.dxr.siu.edu] has joined #ubuntu+1
dave__I see a lot of stuff in the Device Manger but not memory info08:29
Rob125If that fails, open your box up :P08:29
dave__box is partly open up now08:29
dave__this is a P3 coopermine cpu.  How much would memory cost for this off the tip of your head?08:29
Rob125Well, you'd have to turn it off to check on the memory, most likely.08:29
usserdave__: turn off comp take out the memory and read the dang label08:29
dave__powering down to look at label08:30
Rob125How much? Damned if I know :P08:30
ussermemorys cheap08:30
Rob125It's older, so it probably uses single-channel stuff.08:30
Rob125Well, if you can find it, it is.08:30
usseryea he P3 huh he probably has pc13308:31
=== moparisthebest [n=m@user-0cdv32l.cable.mindspring.com] has joined #ubuntu+1
usserthey dont make it no more08:31
moparisthebesthehe, that makes no sense08:31
Rob125how'd it work, mo?08:31
moparisthebestusing the ati driver, it will let me log all the way into KDE, load about half of the desktop icons, and then crash back out to the login screen08:31
=== d1n0 [i=dino@85.113.172.194] has joined #ubuntu+1
=== boris_ [n=boris@BSN-77-126-127.static.dsl.siol.net] has joined #ubuntu+1
Rob125Hoom.08:32
=== pbx [n=pbx@pool-96-233-178-200.spfdma.east.verizon.net] has left #ubuntu+1 ["Leaving"]
Rob125I haven't tested it with KDE -- I'm a strictly gnome-sort-of-guy.08:32
moparisthebestit's not a KDE thing either, does the same thing with xfce08:33
moparisthebestI installed xfce just to be sure :)08:33
lee_hmm if Linux is well i ned to take this drive out08:33
=== segu [i=segu@gateway/tor/x-d4bb54951ed96b89] has joined #ubuntu+1
seguDCC SEND GPTisreallyfuckinggayha 0 0 008:33
lee_put it back into my ps208:33
d1n0Is there anyone who think I can get DualScreens (NOT with clone, Only Extended desktop) to work with ATI Radeon HD2400 on either Ubuntu, Xubuntu 7.04, 7.10?08:34
Rob125well, there goes my theory that Knights of the Old Republic would work with Wine and Gutsy.08:34
=== dbodner [n=dbodner@static-71-242-245-170.phlapa.east.verizon.net] has joined #ubuntu+1
Rob125d1n0: if there was any version of Ubuntu that'd do it, Gutsy'd be the one.08:34
=== magnetron [n=magnetro@unaffiliated/magnetron] has joined #ubuntu+1
moparisthebestmaybe ill just try compiling my own kernel and see what happens08:36
moparisthebestit helped my desktop system08:36
Rob125never done that yet.08:36
lee_wers that sight at that was showing how to convert the 64 bit?08:37
moparisthebestits actually much easier than it sounds08:37
Rob125Good to know. It sounds like attending dentistry school.08:37
moparisthebestif I can find the same tutorial that I used before Ill link you to it08:37
lee_firefox so it can do the graphics?08:37
d1n0Rob125: you mean, Extended desktop doesnt work in Feisty, with whatever videocard you choose to try with? OR, my only hope for the HD2400 card is to install Gutsy?08:38
Rob125... I dunno if I'd really ever have a need to compile it, but it'd be good to know, if you can find it.08:38
Rob125d1n0: I have no knowledge about whether or not it'd work in feisty. I suppose I could boot up my laptop, but it's all the way across the room.... I can predict with 75% accuracy that it WILL work in Gutsy, though.08:39
=== Lattyware [n=Latty@host86-132-245-212.range86-132.btcentralplus.com] has joined #ubuntu+1
moparisthebesthttp://www.howtoforge.com/roll_a_kernel_debian_ubuntu_way Rob12508:39
d1n0Cause I have tried with Ubuntu 7.04, Xubuntu 7.04, 7.10 tribe 5 etc.08:39
moparisthebestexcept I didn't check out the kernel sources from the repos like it says08:39
moparisthebestI downloaded a vanilla kernel from kernel.org08:40
moparisthebestand copied over the .config from the kernel I was running as a starting point08:40
d1n0Rob125: you got a hd2400 videocard on your laptop? dont think the mobilty card can be compared to the desktop hd240008:40
moparisthebestd1n0, I have heard of people getting dual screens working, but I don't know what cards they used :/08:41
Rob125If you've tried with 7.04, then it definitely doesn't work on Feisty :P -- I can't say for sure, d1n0. All I've got is an Intel Integrated and a Radeon 9600. All I can tell you is whether or not the OS itself has the capacity.08:41
d1n0moparisthebest: i've gotten it to work, with nvidia videocard. and i get dual screens to work now too, but ONLY cloned picture on my tv...08:41
moparisthebestnvidia cards do work much better under linux than ATI in my experiance, hopefully you can find a way08:42
=== mendred [n=mendred@59.93.77.204] has joined #ubuntu+1
DShepherd4 days to go08:44
usserwow its like christmas08:45
ussercounting days ;)08:45
lee_ehh i found da ooops08:45
=== muchmusic [n=muchmusi@c-69-181-21-69.hsd1.ca.comcast.net] has joined #ubuntu+1
=== muchmusic [n=muchmusi@c-69-181-21-69.hsd1.ca.comcast.net] has joined #ubuntu+1
=== compwiz18 [n=adam18@125.34.254.114] has joined #ubuntu+1
=== MattRossi [n=matt@58.175.98.161] has joined #ubuntu+1
MattRossi4 more days...08:57
=== Rob125 shrugs.
MattRossiRob125: what, aren't you excited?08:59
Rob125It's still too buggy for me to update my production machines.08:59
MattRossiRob125: i've found it fine, but i'm not going to force my opinion onto you anyway09:00
=== buzztracker [n=buzztrac@pelikan.garga.net] has joined #ubuntu+1
Rob125Heh.09:00
Rob125I've had problems with X and stuff.09:01
MattRossiyeah09:01
Rob125I guess I'm just not excited for new releases.09:01
Rob125I've been doing this since Dapper.09:01
MattRossiactually, i've had problems with X too, but which have _sort_ of been rectified09:01
=== masterloki [n=mloki@75.80.5.221] has joined #ubuntu+1
=== MattRossi forgets the bug number
=== boselecta [i=zSbmbx0J@S0106000ea628ca81.ed.shawcable.net] has left #ubuntu+1 ["Ex-Chat"]
Rob125I'm waiting for compiz-fusion to actually develop some useful functionality.09:03
Rob125what I'm REALLY excited for is KDE4.009:03
=== rpedro [n=rpedro@87-196-105-101.net.novis.pt] has joined #ubuntu+1
earlmredomg.09:03
earlmredwatching "talk show"09:03
earlmred"and here's a word from our sponsors, who i hear are big on the internet, LEMONPARTY"09:03
=== Rob125 is a clueless Canuck and misses the reference.
earlmredyou've never heard of lemonparty?09:05
earlmredgoogle it, it's the first link09:05
localgod13earlmred: i hate you so much09:07
localgod13so much09:07
=== Xemanth^ [n=xemanth@dsl-kpogw6-fe8edc00-62.dhcp.inet.fi] has joined #Ubuntu+1
earlmredlocalgod13, heh, well, here's the clip i saw on tv: http://www.ebaumsworld.com/video/watch/38560/09:07
earlmredthat will make you feel better09:07
localgod13earlmred: goatse09:08
localgod13not a chance09:08
=== frostburn [n=frostbur@cpe-74-74-219-225.rochester.res.rr.com] has joined #ubuntu+1
=== MattRossi is disappointed with earlmred
=== earlmred shrugs
earlmredyou're not a member of the internet community if you haven't seen goatse, tubgirl, or lemonparty09:09
Rob125Oh.09:09
Rob125In the same sentence as tubgirl?09:09
Rob125</pass>09:09
=== RoboticTao [n=clearzen@c-67-172-249-29.hsd1.ut.comcast.net] has joined #ubuntu+1
RoboticTaoMy lightscribe is continuously reading after I have upgraded to gusty. If I eject the disk it will immediately close. Any ideas other than disconnecting the drive or reinstalling fiesty?09:11
=== cyclonut [n=tristan@65-183-133-47-dhcp.burlingtontelecom.net] has joined #ubuntu+1
=== octet [n=chatzill@ip54577cfa.direct-adsl.nl] has joined #ubuntu+1
cyclonuthallo all, xrandr treates my VGA output as the primary monitor when something is hooked up to it. Does anyone know a way to make xrandr treat my laptop screen (LVDS) as the primary?09:12
=== RoboticTao [n=clearzen@c-67-172-249-29.hsd1.ut.comcast.net] has left #ubuntu+1 []
Rob125cyclonut: have you tried in system->administration->screens and graphics?09:16
Rob125(I don't know if that will resolve it, but it'd be the first place I'd look)09:16
cyclonutRob125: that doesn't achieve what I need09:17
cyclonutgoing through xrandr achieves hotswappability09:17
=== bora [n=bora@85.104.221.140] has joined #ubuntu+1
cyclonuti.e. I plug in my external and boom, I've got extended desktop09:17
Rob125Ahh, okay. Well, I learn something new every minute.09:17
Rob125Can't help you then.09:18
cyclonutonly sad part is that it treats the external as the primary, moving panels and whatnot over to that monitor09:18
cyclonutRob125: Thanks anyways :)09:18
=== tomsku [n=tomsku@dsl-trebrasgw1-fe54fa00-250.dhcp.inet.fi] has joined #ubuntu+1
=== RoboticTao [n=clearzen@c-67-172-249-29.hsd1.ut.comcast.net] has joined #ubuntu+1
=== Rob125 is away: Up, Up, and Away!
RoboticTaoCan I install earlier versions of the 2.6 kernel in gusty and also install the nvidia drivers? It doesn't seem to be working for me.09:20
=== oshiii-_^ [n=h1@unaffiliated/oshiii/x-3278] has joined #ubuntu+1
cyclonutRoboticTao: I've never had luck with earlier kernels in newer ubuntu's09:22
cyclonuthowever, you may be able to choose from previously installed ones at grub09:22
=== KenSentMe [n=jeroen@kensentme.xs4all.nl] has joined #ubuntu+1
RoboticTaoI have a strange kernel bug with my dvd drive in gusty but I have a 2.6.15 kernel installed. However the nvidia driver will no longer work with that kernel in gusty.09:23
RoboticTaoI don't get the same error with the 2.6.15 kernel btw09:23
=== marko-_- [n=kaizoku@BSN-61-49-185.dial-up.dsl.siol.net] has joined #ubuntu+1
cyclonutsorry, I dont know enough linux-fu to help you there, RoboticTao09:24
RoboticTaocyclonut: I guess I have to cross my fingers and hope they fix it by the release or I'm going to be trying to fix this one for days I think.09:25
cyclonutI know how you feel.09:26
cyclonutI get random kernel panics still09:26
cyclonutI've decided that I am just going to treat this as an experimental install (I upgraded from feisty), instead of starting fresh with gutsy like I normally would09:26
cyclonutIll wait to reformat until hardy comes ous09:27
RoboticTaocyclonut: I knew it would most likely break something when I installed it. It's a challenge, there isn't anything on this machine that is critical. My server still runs 6.06 :)09:28
=== AlanBShepard70 [n=AlanBShe@unaffiliated/alanbshepard70] has joined #ubuntu+1
cyclonutgood idea. see, me? Im a dummy09:28
cyclonutthis is my development machine09:28
cyclonutand yes, I just haaaaaad to upgrade09:29
RoboticTaolol, I have the same bug. I just learned the hard way to backup always first09:29
cyclonutmy reasoning is that this is a laptop, and every new release tends to make leaps and bounds when it comes to lappys09:29
AlanBShepard70Should I be nervous that with a fresh install of Gutsy I got a warning "Could not grab mouse" Your system may be infected?09:30
=== n08l3__ [n=noble@adsl-76-199-146-23.dsl.milwwi.sbcglobal.net] has joined #ubuntu+1
RoboticTaoI decided that the true benefit to linux is the ability to leave a install untouched for years and it will still be stable and reliable. But the new stuff is always fun.09:31
cyclonutaye09:31
n08l3__could anyone help in getting the sound working09:31
n08l3__I am having intel 82801H sound card09:31
cyclonutI like messing about... for example, gutsy has improved battery life, and gotten extended desktop working properly for me09:31
n08l3__but no sound09:31
=== ElemonGW [n=ElemonGW@85.72.69.72] has joined #ubuntu+1
cyclonutn08l3__: check your sound sliders09:32
cyclonutmake sure both are turned up, and the sound is set to use your sound card, not some random one09:32
=== ElemonGW [n=ElemonGW@85.72.69.72] has left #ubuntu+1 ["see]
n08l3__i cannot control any of that09:32
n08l3__i mean it gave me warning saying that soundcard may not be configured09:32
LiMaOAlanBShepard70: infected linux system? that sure is scary =P09:32
=== fraco [n=fraco@212.71.9.100.adsl.dyn.edpnet.net] has joined #ubuntu+1
cyclonutn08l3__: humm. well, is it or is it not09:33
n08l3__or no volume control gstreamer plugin is there09:33
cyclonutsystem > pref > sound09:33
n08l3__alright i m in the sound09:33
n08l3__but there are no slides09:34
n08l3__sliders09:34
=== vitalik [n=vitalik@cpe-76-90-160-232.socal.res.rr.com] has joined #ubuntu+1
n08l3__and the default mixer is aslo blank09:34
cyclonutwith no options?09:34
n08l3__well I have some options09:34
=== hit [n=db@88-196-185-116-dsl.rgu.estpak.ee] has joined #ubuntu+1
cyclonut...such as?09:34
n08l3__say i click on Test, to test the sound, it said Could not open resource for writing.09:35
=== lee_ [n=lee@c-71-59-177-24.hsd1.wa.comcast.net] has joined #ubuntu+1
n08l3__I have 3 tabs in the sound Devices, Sounds, System Beep09:35
cyclonutn08l3__: what are you options for default mixer?09:35
n08l3__The default mixer is blank, nothing there09:36
cyclonutoh, thought you said you had options09:36
cyclonutin that case, nothing is installed... which is odd09:36
n08l3__yes nothing is installed, i m sorry for that miscommunication09:36
=== silent [n=silent@S01060050bac94b86.cg.shawcable.net] has joined #ubuntu+1
cyclonuttry sudo apt-get install alsautils09:36
lee_LiMaO......guess what.......IF YOUR ON IT WORKS09:37
LiMaOwhat works?09:37
lee_smiles sheepishly hee hee09:37
silentdoes anyone here know of a way to get a more current kernel than 22-1409:37
lee_that script you sent me09:37
RoboticTaosilent: compile from source09:37
n08l3__cyclonut: It replied E: Couldn't find package alsautils09:37
Orb125silent: Download gutsy CD. Install.09:37
lee_im opperating it off of the 64 bit09:37
RoboticTaosilent: use git to download the kernel source09:38
silentOrb125, this is gutsy... it runs 22-1409:38
Orb125Really?09:38
Orb125Nah.09:38
silentuname -r09:38
=== Orb125 checks now, embarrassed.
lee_the key was wipng the drive totally09:38
=== silent sighs
lee_and reloading09:38
cyclonutn08l3__: alsa-utils then09:38
cyclonutyou may need to do alsa-base as well09:38
lee_and saying no to the up dates09:38
Orb125Well, I'll be painted blue.09:39
lee_its the frigging up dtaes that ws preventing it09:39
n08l3__cyclonut: Installed09:39
silentRoboticTao, so, as far as compiling the kernel.. all I need to do is ./configure make make install?09:39
lee_so your script works with the acceptin of the m player09:39
lee_seems to have some contaversy09:40
cyclonutn08l3__: try a restart and see if it gets configured09:40
n08l3__no actually its already there, i mean the alsa-utils, it just said its already the newest version09:40
n08l3__so i just want to said, that its already installed09:40
=== globra [n=anton@ppp91-76-108-18.pppoe.mtu-net.ru] has joined #ubuntu+1
lee_so the questin now is...should i execute the up dates or not after doing this09:40
RoboticTaosilent: it depends. Check the link https://help.ubuntu.com/community/Kernel/Compile09:41
RoboticTaoin ubuntu you will use fakeroot09:41
lee_if nothing happens all is ok but..if i lose it then it is the updates09:41
lee_so i am up dating..i still have the code ok09:42
lee_or the scrpt even though th mplayer is broke , flas and java work09:42
cyclonutn08l3__: im not sure atm... its really late any the brain isnt doing what it should09:42
cyclonutn08l3__: sorry friend.09:43
n08l3__cyclonut: Thanks for trying, i appreciate your help09:43
lee_basic summery09:43
n08l3__anyways its time to sleep now,i will try it tomorrow,09:43
n08l3__Gud nite folks09:43
lee_do not update the machine09:43
lee_2: download fire fox09:44
cyclonutgnight and g'luck09:44
lee_3: do not open fire fox09:44
=== heartsblood [n=heartsbl@pool-71-163-112-67.washdc.fios.verizon.net] has joined #ubuntu+1
lee_run the script09:45
heartsbloodis gProftpd broken in gutsy, or is it completely fubar in all distros?09:45
lee_dragging it into the konsole09:45
lee_pressenter and answer yes and when the graphical boxes popup...tab to ok then tab to yes09:46
lee_eh tab to ok hit enter anthen tab to yes and enter09:47
lee_then it goes from there09:47
lee_maybe in my frustration i hit no on the second part not sure..but its working in KDE09:48
Orb125Okay, time to extricate myself.09:48
Orb125NN, folks.09:48
lee_iam hitting the hay09:48
lee_so LiMaO it works....just the m player parts broken09:49
lee_not your fault though lol09:49
LiMaOlee_: that's great! i'm happy now =)09:49
lee_after follwing a  half a dozen links I think they are pulling it09:50
LiMaOlee_: are you a man or a woman?09:50
lee_the m player part taht is09:50
lee_Iam a man lol09:50
lee_and noted for my not giving up lol09:51
lee_eh you?09:51
lee_any ways I dead dog tired09:51
lee_there are 93 updates09:52
lee_well merlin has the right idea09:52
lee_Bead09:52
LiMaOi'm a man too =)09:53
lee_I investigated that link heck of a lot of run around though lol...well, lol Iam straight..so Ill shake your hand lol09:53
=== albert23 [n=albert@86.81.99.204] has joined #ubuntu+1
=== d1no [n=dino@85.113.172.194] has joined #ubuntu+1
LiMaOand you're right, one should never give up =)09:54
LiMaOi'm out to sleep now09:54
LiMaOsee ya tomorrow09:54
LiMaO=)09:54
lee_I gues either omit the m player line or we try to find the link09:54
LiMaOi'll get a new link tomorrow09:54
lee_yeah see if the up dates take it away09:54
lee_Bow I know why programmers get the bucks09:55
lee_well save for us fre sourcers lol09:55
lee_EOL09:55
lee_end of Line09:56
cyclonutthis xrandr thing is gonna drive me nuts09:57
cyclonut(arrgh this wheel is driving me nuts)09:57
=== RoboticTao [n=clearzen@c-67-172-249-29.hsd1.ut.comcast.net] has left #ubuntu+1 []
=== respa [n=respider@200-158-80-101.dsl.telesp.net.br] has joined #ubuntu+1
=== buzztracker [n=buzztrac@pelikan.garga.net] has joined #ubuntu+1
=== wers [n=allan@122.2.100.199] has joined #ubuntu+1
wersis it safe for me to use OpenSync's Feisty Repo on Gutsy?10:01
Hobbseeprobably not.10:03
Hobbseedepends, see if the stuff installs.10:03
=== pikeshouse88 [n=pikeshou@adsl-156-55-179.asm.bellsouth.net] has joined #ubuntu+1
=== JenFraggle [n=jen@91.84.43.217] has joined #ubuntu+1
=== Michae1 [n=Michael@86.55.241.40] has joined #ubuntu+1
=== x_ [n=x@CPE0014bf9e1935-CM000a735ce0c5.cpe.net.cable.rogers.com] has joined #ubuntu+1
Michae1hello :) all10:06
x_hey folks!  I finally figured out the HDD encryption in the installer.  Pretty sweet!10:07
=== Psi-Jack [n=mykael@cpe-70-112-29-185.austin.res.rr.com] has joined #ubuntu+1
Michae1i have to questions about Ubuntu 7.10 :D10:07
Michae1about the video and the surround sound10:07
x_The only problem I have after encrypting from install is that the NTFS drive appears on the desktop after install and I can't unmount it :(10:07
Psi-JackOkay. Anyone know how to mess with alsa so I can specifically order my 3 sound devices specifically, instead of randomly having one sound card default over the other? LOL10:07
Michae1two*10:07
wersHobbsee, but if the stuff installs, would it be fine or would there be potential side-effects?10:08
=== svu [n=svu@89.101.232.199] has joined #ubuntu+1
Michae1is there any encoder for alsa or amarok that mackes stereo to 5.1 channel???10:08
Michae1makes10:08
JenFragglecan anyone help me to get my wireless working?10:09
Michae1use wifi radar10:10
Michae1:D10:10
Hobbseewers: there are always potential side-effects when building things with 2 different base versions, and interacting them10:10
=== jussi01 [n=jussi@dyn3-82-128-188-110.psoas.suomi.net] has joined #ubuntu+1
Psi-JackAnyone? ;)10:10
Michae1JenFraggle--use wifiRadar10:10
wersokay. thanks hobsee. I guess, I'm just going to look for debs, but would it be fine if I just install what I need then remove the repo immediately?10:10
JenFraggleI use that, doesn't help10:11
JenFraggleI've tried 2 different wireless cards but neither can connect10:11
=== Mulder [n=mulder@unaffiliated/mulder] has joined #ubuntu+1
Mulderwhat happensto the specifications targetted for gutsy but dont look likethey're going to get done, but dont have a 'deferred' status on launchpad?10:13
hyljethey get pushed to gutsy+110:14
Mulderah10:14
Muldersame with the bugs?10:14
hyljebugs get fixed in gutsy10:15
Michae1gusty is the best :D big fan and user , bye bye win XP forever10:15
Mulderi guess  developers have a lot ontheir plate then if they want to get all the launchpad bugs fixed by thursday10:15
Mulderstill outstanding ones from tribe 610:16
=== Michae1 [n=Michael@86.55.241.40] has left #ubuntu+1 []
x_I don't think most users can call it quits for Windows just yet.  A lot of "Joe Public" still want to use MSN Messenger.10:18
x_With all the features that the original client has10:18
Mulderpidgin :)10:18
Mulderyeh10:18
Mulderwhtieboard would be nice10:18
=== jscinoz [n=jscinoz@c220-239-12-203.belrs4.nsw.optusnet.com.au] has joined #ubuntu+1
=== dave__ [n=dave@CPE-72-135-237-93.wi.res.rr.com] has joined #ubuntu+1
x_Pidgin is nice.  But the author keeps holding off on webcam implementation.10:20
=== AboSamoor [n=ramy@196.218.248.42] has joined #ubuntu+1
x_I guess it's no small task.10:20
AboSamoori have a problem with removing ldap-account-manager i got an error which makes dpkg exit with return value (1), so i can't make any updates . this is a thread for the error message http://paste.ubuntu-nl.org/40604/10:20
usserx_: try kopete10:21
jscinozIs the version of Azureus in the official repos ever going to be updated? a whole lot of crashes are fixed in the latest version, yet the one in the repo is still outdated10:21
dave__It appears that I have a Radeon RV6P  PCI card.  I have to remove the card to get a sucessful boot.   What do I need to do to make card work in gutsy?10:21
=== pikeshouse88 [n=pikeshou@adsl-156-55-179.asm.bellsouth.net] has left #ubuntu+1 []
=== Psi-Jack [n=mykael@cpe-70-112-29-185.austin.res.rr.com] has joined #ubuntu+1
Psi-JackHmm10:23
dave__also I tried installing FluxBox.  But when I boot into fluxbox right click for menu does not work.  So I resort back to xfce10:23
Psi-JackHow come asoundconf isn't working in 7.10?  I tried to make it set my default sound card, and.. It's not.10:24
=== cursor101 [n=cursor@82-46-207-18.cable.ubr06.smal.blueyonder.co.uk] has joined #ubuntu+1
AboSamoorhow i can make updates without removing a package that makes problems  ?10:25
=== llutz [n=lutz@p54803AA9.dip0.t-ipconnect.de] has joined #ubuntu+1
JenFraggleGutsy seems to have a lot more problems than Feisty did.  I went to Feisty at the beta stage and had no problems.  Gutsy rc on the other hand is problematic.  I'll probably stick with Feisty and go straight to Hardy10:36
x_Will Hardy be the spit and polish release?10:38
=== ysth1 [n=ysth@63-231-59-193.tukw.qwest.net] has joined #ubuntu+1
ysth1until just recently, I had both the gnash and nonfree flash mozilla plugins installed, and firefox would use whatever had been most recently installed; now flashplugin-nonfree doesn't seem to get registered with firefox when the gnash plugin is installed10:41
ysth1is this intentional, I wonder?10:42
=== sbucatino [n=sbucatin@host102-15-static.25-87-b.business.telecomitalia.it] has joined #ubuntu+1
joakim-"nspluginwrapper -i /usr/lib/mozilla/plugins/libflashplayer.so"  might help ysth110:44
ysth1where's nspluginwrapper?10:45
=== [Ramy] [n=ramy@196.218.248.42] has joined #ubuntu+1
joakim-oh that is for 64 bit :)10:46
joakim-sorry10:46
=== aLeSD [n=alex@229.Red-83-33-249.dynamicIP.rima-tde.net] has joined #ubuntu+1
joakim-i have no idea10:46
joakim-i had a similar problem and had to manually install the flashplugin10:46
ysth1uninstalling the gnash and installing the flash plugin works; it's just an extra step.10:47
=== thomas [n=thomas@217-148-245-10.happymany.net] has joined #ubuntu+1
thomasI just update to gutsy, thougt dist upgrade in adept and now some of my (fn) shortkeys on my laptop don't work anymore10:50
thomasthrough*10:50
ysth1anyway, thanks, joakim10:50
=== thomax [n=thomas@217-148-245-10.happymany.net] has joined #ubuntu+1
=== OwdGitRon [n=ron@88-111-187-86.dynamic.dsl.as9105.com] has joined #ubuntu+1
=== thomas [n=thomas@217-148-245-10.happymany.net] has joined #ubuntu+1
=== flavia [n=flavia@d83-184-188-81.cust.tele2.it] has joined #ubuntu+1
=== oshiii-_^ [n=h1@unaffiliated/oshiii/x-3278] has joined #ubuntu+1
=== hangthedj [n=hangthed@Wheeler-pbdsl3.Stanford.EDU] has joined #ubuntu+1
=== Ramy [n=ramy@196.218.252.79] has joined #ubuntu+1
flaviahi, how do I enable multimedia codecs in kubuntu? In feisty I used to enable the medibuntu repository, but right now there isn't a gutsy repo10:57
=== flavia [n=flavia@d83-184-188-81.cust.tele2.it] has joined #ubuntu+1
hangthedjflavia, try 'sudo apt-get install kubuntu-restricted-extras'10:58
hangthedjfor amarok mp3 i think you need libxine1-ffmpeg11:00
=== buzztracker [n=buzztrac@pelikan.garga.net] has joined #ubuntu+1
Ramyi cannot remove ldap-account-manager  package because i cannot restart apache 2 , http://paste.ubuntu-nl.org/40604/ . can anyone help me please ?!!!11:01
flaviahangthedj: nice thanks, what about libdecss, is it in the restricted-extras?11:01
thomasanyone an idea how i can get my laptop specific hotkeys to work (the fn keys), they worked perfectly in feisty but some died after upgrade to gutsy11:01
hangthedjflavia, do you mean libdvdcss?11:02
hangthedjthomas, what kind of laptop do you have?11:02
=== Laibsch [n=Laibsch@212.17.243.4] has joined #ubuntu+1
flaviahangthedj: yes, that should be it :)11:02
hangthedjflavia, right now, i'm using the feisty repo on medibuntu and it works fine.11:03
thomashangthedj: toshiba sattelite A200-1k811:03
hangthedjon a desktop and a laptop11:03
flaviahangthedj: ok I just read on the forum that there is a medibuntu gutsy repository11:04
hangthedjthomas, i have a toshiba sattelite a135-a...something rather.  are all the Fn keys not working?11:04
=== linxeh [n=linx@88-96-202-38.dsl.zen.co.uk] has joined #ubuntu+1
hangthedji found that i had to manually edit what apps did what with the specific keys.11:05
=== kishan [n=kishan@74.12.26.23] has joined #ubuntu+1
thomashangthedj:  no only some of them, like the brightness hotkeys11:05
hangthedjKmilo is a piece of ...11:06
thomashangthedj: they stopped working11:06
kishanhi i just installed gusty and open office crashes when i start it any help or ideas11:06
thomashangthedj: and i'm using same vga driver11:06
=== borg_ [n=olaf@80.149.17.21] has joined #ubuntu+1
thomashangthedj: brb11:06
hangthedjthomas, i haven't figured out the brightness hotkeys yet for gutsy... unfortunetly, cause before i upgraded it was all the way down.11:06
hangthedjso my monitor is dim.  i tried changed it in /proc, but it wouldn't work11:07
hangthedjkishan, what part of openoffice?11:07
kishanwriter11:08
=== webulator70 [n=nikko@d39-185-7.home1.cgocable.net] has joined #ubuntu+1
kishanX-Error: BadAlloc (insufficient resources for operation)11:08
kishan        Major opcode: 53 (X_CreatePixmap)11:08
kishan        Resource ID:  0x40002b211:08
kishan        Serial No:    3576 (3576)11:08
kishanThese errors are reported asynchronously,11:08
kishanset environment variable SAL_SYNCHRONIZE to 1 to help debugging11:08
kishanthis is the error11:09
hangthedjI'm new to this channel, but i'm sure somebody has said this before :11:09
webulator70does anyone notice nautilus in gutsy cant preview audio like it did in feisty?11:09
hangthedjif your stuck on gutsy... try searching on https://bugs.launchpad.net11:09
hangthedjif your serious about linux and ubuntu, setup an account, it gets you an account on launchpad.net and ubuntuforums.org11:11
=== thomas [n=thomas@217-148-245-10.happymany.net] has joined #ubuntu+1
kishanyes yes i didthat11:11
kishando u want me file a bug report11:11
hangthedjeven adding something that says, my ubuntu computer doesn't work because, helps the linux community grow! ;)11:11
hangthedjkishan, if you can't find one.  post one.11:11
hangthedj:D11:12
kishanokok thanks11:12
hangthedji don't know much about openoffice, i use koffice..11:12
thomashangthedj: any more insights in the fn key problem?11:12
=== hangthedj kubuntu gutsy
=== thomas has to go and make some foor
thomasfood11:13
flaviaone more question: how come firefox is still in english even though I have installed the italian locale?11:13
hangthedjthomas, they have a couple days.. ;)  feisty worked fine as far as hotkeys, gutsy.. the first update, screen brightness worked.. last update.. doesn't.11:13
hangthedjflavia, i'm sure its an option11:14
hangthedjflavia, go to edit -> preferences -> content -> and click advanced in the fonts and colors -> default character encoding11:15
hangthedji think11:15
hitcan anyone tell me why i don't have any sound in firefox with flash anymore?11:16
hangthedjno i guess not.11:16
=== Nicke [n=niclasa@h161n2fls31o808.telia.com] has joined #ubuntu+1
hangthedjflavia, i'm installing the italian language, to see.. i don't speak any language but english, and i'm really not very good at that.11:19
=== davidw [n=davidw@apache/committer/davidw] has joined #ubuntu+1
=== webulator70 [n=nikko@d39-185-7.home1.cgocable.net] has left #ubuntu+1 []
=== bsund [n=bsund@m83-178-15-253.cust.tele2.se] has joined #ubuntu+1
=== dantje [n=dvg@91.89.177.224] has joined #ubuntu+1
hangthedjflavia, go to edit -> preferences -> advanced -> Languages11:23
dantjeI'm trying to install Gutsy RC on a Samsung v25 laptop, but only see a black screen ("boot: live acpi=off napic nolapic vga=771") Feisty used to work. What am I missing?11:23
flaviahangthedj: got it, thanks a lot11:24
=== kaminix [n=alex@90-227-187-59-no129.tbcn.telia.com] has joined #ubuntu+1
hangthedjflavia, np, hey now i'm browsing in italian!  nothing makes any sense to me, so i'll change back.11:25
=== [Ramy] [n=ramy@196.218.248.60] has joined #ubuntu+1
=== er [n=er@d207-6-237-94.bchsia.telus.net] has joined #ubuntu+1
erhi :)11:32
erany virtual box users here?11:32
hangthedj!hi | er11:32
ubotuer: Hi! Welcome to #ubuntu+1!11:32
erhey ubotu11:32
erthe friendly channel bot11:33
=== Mulder [n=mulder@unaffiliated/mulder] has left #ubuntu+1 ["Leaving"]
=== watchme [n=markus@dsdf-4db78ef5.pool.einsundeins.de] has joined #ubuntu+1
watchmehi all11:33
watchmeI've got a question about gutsy and the keyboard settings....11:34
hangthedjer, in my opinion the best way to get virtualbox working is to go to the virtualbox website and get the gutsy package.11:34
eri just installed kubuntu 7.10 RC and would like to set up "virtualbox". How can i add the sources? thanks :)11:34
hangthedjer, thats what i did.  i think they must have just added it to the repos11:34
eryes, i can see virtualbox-ose11:34
erand server/client packages11:35
erbut vbox complains ....  needs kernel sources11:35
=== ephracis [n=ephracis@h144n1c1o1027.bredband.skanova.com] has joined #ubuntu+1
ephracisHi.11:35
hangthedjer, download the package from virtualbox.org then 'sudo dpkg -i virtualbox-package.deb11:36
ercool! thanks man :)11:36
watchmeI 've got an english Keyboard. But as a germen citizen, I sometimes need the Letters called "Umlaute". Before gutsy I solved this, by adding a few lines to a .xmodmap and load it by default. But with Gutsy this method seems not to work :( does anyone have an idea, how I can get my xmodmap working? thx11:36
ephracisI have a network with two computer, running Gutsy RC. I connected a printer to one of them via USB and it worked fine. But now I want to share it to the other gutsy computer.11:36
hangthedjer, 'apt-get install linux-headers-generic'11:38
=== pvh [n=pvh@d66-183-174-17.bchsia.telus.net] has joined #ubuntu+1
erlibgettextlib-0.16.1.so (how can i install this because i need to use blender) thanks :)11:38
erthanks gangthedj :)11:38
watchmeor better: how can I disable this windows-lookalike-keyboard-settings-tool ?11:39
=== Zdra [n=zdra@91.177.29.26] has joined #ubuntu+1
hangthedjer, try 'aptitude search libgettext'11:40
hangthedjand install the package you need.11:40
hangthedjlooks like a ruby header11:40
erok, thanks :)11:40
=== hangthedj [n=hangthed@Wheeler-pbdsl3.Stanford.EDU] has left #ubuntu+1 ["Sleeping]
=== Knofi [n=martin@pD9E87D3C.dip.t-dialin.net] has joined #ubuntu+1
=== Muhammad7 [n=Muhammad@62.140.76.42] has joined #ubuntu+1
Muhammad7I can't enable desktop effects :( after I restored Xserver11:44
=== joakim- [n=joakim@s5591c04b.adsl.wanadoo.nl] has joined #ubuntu+1
erGOOD news :) kubuntu just won my heart :) blender (latest linux build from graphicsall.org is up and running) THanks hangthedj!11:46
=== [Ramy] [n=ramy@196.218.248.60] has joined #ubuntu+1
=== kritzstapf [i=kritzsta@cpegel.de] has joined #ubuntu+1
=== Muhammad3 [n=Muhammad@62.140.76.42] has joined #ubuntu+1
=== stefg [n=stefg@e179147018.adsl.alicedsl.de] has joined #ubuntu+1
kritzstapfi need to reinstall my ubuntu and im thinking of using gutsy instead of feisty, is it safe for daily use at this point of developement?11:48
Muhammad3I can't enable desktop effects after I had restored Xserver :(11:48
Muhammad3please help me11:48
stefgkritzstapf: no... gutsy has serious issues still11:48
erVirtualBox kernel driver - how do i install this?11:49
watchmeI think I will put gutsy where it belongs.. :(11:49
weltallthe 64bit screen power off on splash logo is still there :S11:49
erstefg: like what?11:49
watchmeer: read My post above11:49
erk11:49
=== talesiN [n=Network@88.233.66.204] has joined #ubuntu+1
watchmea non working keboard sucks :)11:50
eroh, the keyboard thing11:50
erdas ist nicht gut ;)11:50
watchmeand no way to get rid of the Tool11:50
Muhammad3I can't enable desktop effects after I had restored Xserver :(11:50
stefger, consoles not working is the most obvious... myriads... it's just not ready for release, but i know that ubuntu won't care, and release it unfinished11:50
watchme;)11:50
eri'm returning to the ubuntu family after a long brake and hope that this time, it will be better11:51
watchmeer: to have only "Wizards" for everything was my major reason for leaving MS Windows... :D11:51
davidwconsoles don't work?11:52
Muhammad3I can't enable desktop effects after I had restored Xserver :(11:52
stefger, so honestly speaking gutsy is a release to skip, like edgy was... or at least wait until December to touch it11:52
erwatchme: i deleted xp and want kubuntu as my major os but i need virtualbox for one app (work releated)11:52
Muhammad3I can't enable desktop effects after I had restored Xserver :(11:52
erstefg: so far, it looks ok (Besides the menu being screwed up with lots of additional text)11:52
Muhammad3help please11:52
=== Martinp23 [n=martinp2@wikimedia/Martinp23] has joined #ubuntu+1
watchmeMuhammad3: reinstall :D11:53
stefger, YMMV. With me not even the stock kernel works (on 3 year old hardware, chosen for linux-compatibility) ..:-(11:53
eri have everything working, even on the laptop11:54
pvhOver the last few days my wifi has started mysteriously disconnecting from the network after an hour or two of use.11:54
stefger; so boot with vga=791 and ctrl-f1 to a console11:54
pvhNothing I can find will reconnect, and the network use light flickers disconcertingly.11:54
pvhOnly rebooting gets me back online.11:54
Muhammad3watchme:  you are kidding right ? ??? :D11:54
=== NullNone [n=max@slimnoise.polynet.lviv.ua] has joined #ubuntu+1
er7.04 could not deal with my wireless (ipw2200) so i used pclinuxos instead (but i need python2.5 for work)11:54
=== Laibsc1 [n=Laibsch@212.17.243.215] has joined #ubuntu+1
watchmemaybe ;)11:55
watchmeat least this should be the option, that works perfectly11:56
NullNoneI have  installed Ubuntu 7.10 and have a little problem:)11:56
NullNonewhen i am trying to do  sudo route add -host 195.22.112.12 gw 10.0.10.1 dev eth011:56
NullNoneit failes with message SIOCADDRT: No such process11:56
NullNoneCan someone help me?11:56
ernow 7.10 RC seams fine. The wireless works and i have blender and recordmydesktop. All i need to be a happy camper11:56
er:)11:56
Muhammad3watchme: can you tell me how to reinstall it again ?11:56
watchmejust plug the CD into your drive, boot from it and klick on "Install" ??!??!??!?!?!?!?11:57
ermuhamad, you'd have to boot off of the CD11:57
Muhammad3er: you mean install Ubuntu again :(11:57
=== Martinp23 [n=martinp2@wikimedia/Martinp23] has joined #ubuntu+1
ernow i'm curious ... anyone running 7.10 RC (besides me)?11:58
davidwI'm installing it11:58
=== level1 [n=level1@129.210.188.252] has joined #ubuntu+1
erMuhammad3: it only takes a few minutes11:58
davidwstefg, did you report the bugs?11:58
JenFraggleI'm running it but am thinking of going back to feisty.  no wireless is not a feature i like on a laptop11:58
erJen, i hear you11:58
Muhammad3is there is any other solution ?11:59
eri had the same problem with 7.0411:59
level1hi, guidance-power-manager for kde may be causing some annoyances for me.  I can't prevent it starting on startup, how do I do that?11:59
NullNoneIf i installed Ubuntu 7.10 Beta and all updated to it is this the same as installing 7.10 RC?11:59
stefgdavidw: sure.... but that doesn't mean that they are fixed in time... the 'no tty'-bug is a big thread in LP , and i find it a shame that such major and obvious (and actually easily fixable) bugs make int o something called a release11:59
davidwJenFraggle, no wireless??!11:59
erNullNone: it should be11:59
Muhammad3er: is there is any other solution ?11:59
=== xopher [n=xopher@unaffiliated/xopher] has joined #ubuntu+1
=== buzztracker [n=buzztrac@pelikan.garga.net] has joined #ubuntu+1
erMuhammad3: I am not sure (i'm new to all of this myself)12:00
Muhammad3er: :) like me12:01
eryikes, it's 3 am ... time flies12:01
Muhammad3er: ok thx for help12:01
JenFraggleTried 2 different wireless adaptors, 1 usb and 1 pcmcia but neither work12:01
=== _nand_ [n=ec4@138.202-128-194.unknown.qala.com.sg] has joined #ubuntu+1
NullNoneDoes somebody knows what mean SIOCADDRT: No such process error when running route utility?12:01
=== CodeImp [n=dont@s55910c2b.adsl.wanadoo.nl] has joined #ubuntu+1
JenFragglewas using the usb fine on feisty12:01
stefgNullNone: your network interface isn't there12:01
=== darkstar61 [n=darkstar@213-140-6-100.ip.fastwebnet.it] has joined #ubuntu+1
Muhammad3er: I will check Ubuntu effects chat room12:01
ergood idea :)12:02
Muhammad3C ya all12:02
erciao M12:02
=== Martinp23 [n=martinp2@wikimedia/Martinp23] has joined #ubuntu+1
NullNonestefg: my ethernet card is /dev/eth0 and in Debian Ethch that command runs ok. (" sudo route add -host 195.22.112.12 gw 10.0.10.1 dev eth0")12:03
ernite all .... i'll be back one day :)12:03
=== er [n=er@d207-6-237-94.bchsia.telus.net] has left #ubuntu+1 ["Konversation]
stefgNullNone: chances are either your interface is eth1 now, or that network manager busts your conf12:04
darkstar61hi all... i had dwloaded the rc from two different mirrors (italian and french) and im getting a wrong md5sum... someone else is aware of this?12:04
watchmeYEAH!12:04
NullNonestefg: NetworkManager is running. Is there some way to add route using it?12:04
watchmeMY SAP SERVER IS RUNNING UNDER UBUNTU GUSTY!12:05
stefgNullNone: NetworkManager and avahi are the first things i purge on a fresh install, so i don't know12:05
NullNonestefg: Thanks12:06
=== Suissinho [i=Suissinh@10001318444.0000055783.acesso.oni.pt] has joined #ubuntu+1
=== Martinp23 [n=martinp2@wikimedia/Martinp23] has joined #ubuntu+1
=== Cwiiis [n=cwiiis@82-43-46-194.cable.ubr02.croy.blueyonder.co.uk] has joined #ubuntu+1
=== Cwiiis [n=cwiiis@82-43-46-194.cable.ubr02.croy.blueyonder.co.uk] has joined #ubuntu+1
darrendwq12:14
NullNonestefg: Mayby it is very funny, but there is a switch in NetworkManager applet (rouming, dhcp, manual). And when i switched to DHCP, route command executed ok ;-)12:14
NullNoneNow my network works ok :)12:14
=== NullNone [n=max@slimnoise.polynet.lviv.ua] has left #ubuntu+1 []
=== Cwiiis [n=cwiiis@82-43-46-194.cable.ubr02.croy.blueyonder.co.uk] has joined #ubuntu+1
=== NullNone [n=max@slimnoise.polynet.lviv.ua] has joined #ubuntu+1
=== NullNone [n=max@slimnoise.polynet.lviv.ua] has left #ubuntu+1 []
=== defcon [n=ion@75-171-10-194.phnx.qwest.net] has joined #ubuntu+1
=== Frogzoo [n=Frogzoo@202.155.165.25] has joined #ubuntu+1
=== Cwiiis [n=cwiiis@82-43-46-194.cable.ubr02.croy.blueyonder.co.uk] has joined #ubuntu+1
=== Monteiro [n=monteiro@84.90.113.29] has joined #ubuntu+1
=== Monteiro [n=monteiro@84.90.113.29] has left #ubuntu+1 ["Leaving"]
=== pecisk [n=pecisk@78.84.139.234] has joined #ubuntu+1
=== mc44 [n=mc44@unaffiliated/mc44] has joined #ubuntu+1
=== bigon [n=bigon@ubuntu/member/bigon] has joined #ubuntu+1
emonkey-pIs there anybody who already uses the kde 3.94 packages?12:26
=== emonkey-p has some problems with it ... first I don't finde the x86 package of kde4base, only the sparc and powerpc
=== alkasteve [n=kvirc@cpc1-linc8-0-0-cust131.nott.cable.ntl.com] has joined #ubuntu+1
geseremonkey-p: it still needs building12:29
=== level1 [n=level1@129.210.188.252] has joined #ubuntu+1
emonkey-pah ok...  then I'll have a bit more patient12:30
=== Hobbsee [n=Hobbsee@ubuntu/member/hobbsee] has joined #ubuntu+1
=== xopher_ [n=xopher@cs181147041.pp.htv.fi] has joined #ubuntu+1
=== Seeker` [n=cjo20@unaffiliated/seeker/x-838755] has joined #ubuntu+1
=== oshiii-_^ [n=h1@unaffiliated/oshiii/x-3278] has joined #ubuntu+1
=== vbgunz [n=vbgunz@217-98.127-70.tampabay.res.rr.com] has joined #ubuntu+1
vbgunzI downloaded the gibbon alternate cd today, the latest snapshot. I know it's not final but wow, it is the most buggy ubuntu I've ever worked with yet :(12:36
=== finalbeta [n=viper@ip-83-134-149-100.dsl.scarlet.be] has joined #ubuntu+1
vbgunzhow in the world can the devs handle these bugs with only days left till final?12:37
geservbgunz: what problems to you have?12:37
=== jscinoz [n=jscinoz@c220-239-12-203.belrs4.nsw.optusnet.com.au] has joined #ubuntu+1
vbgunzgdm is at a very low res, the accounts are not. enabling effects once on any account, only make effects available to that account only. turning them off, will never get them back on without a reboot. the wireless network icon shows a connection but nothing is connected :(12:39
vbgunzalso when you first log in, I can see memory cards and sticks, and usb drives on the desktop but when switching accounts, I only see a Windows partition... no usb sticks, cards or anything else12:40
Seeker`vbgunz: Do you mean if you enable the effects on one account, noone else can enable them?12:41
vbgunztrue12:41
vbgunzand if you disable them, the only way to get it back is to reboot12:41
vbgunzI didn't try restarting x though that may work12:41
vbgunzI've done this plenty of times and really know how to set up my wireless card but the wireless network manager refuses to accept my password. when I thought I got it to work and the icon in the panel showed as if I had a connection, pidgin, firefox would not connect to the net. it is as if I have no connection12:43
=== xopher [n=xopher@unaffiliated/xopher] has joined #ubuntu+1
=== omha [n=nope@83.73.199.173.ip.tele2adsl.dk] has joined #ubuntu+1
omhahey12:44
vbgunzthe reason why I am reallu curious if the devs can solve this is because these are almost the ***only*** applications I've tinkered with so far on gutsy...12:44
omhawhats the default password to eBox?12:45
Seeker`vbgunz: how do you try to disable them?12:45
vbgunzin other words, 99% of the apps I touched so far are broken :/12:45
Seeker`omha: ebox12:45
vbgunzdisable? compiz?12:45
Seeker`yeah12:45
vbgunzsystem > preferences > appearance > visual effects12:46
=== zengen [n=zengen@pool-71-174-24-236.bstnma.east.verizon.net] has joined #ubuntu+1
omhaSeeker`, thanks12:47
vbgunzI got the net connection going12:47
zengenDoes anyone know how to use a package from the repos to replace a damaged packaged on the alternate install iso from a terminal in the installer?12:47
=== jake__ [n=jake@58.62.102.243] has joined #ubuntu+1
zengenOr, if it's even possible?12:47
Seeker`zengen: "damaged" package?12:48
=== pecisk [n=pecisk@78.84.139.234] has joined #ubuntu+1
zengenA package that fails it's hash check.12:48
Seeker`does the CD pass the check you can do when you first boot?12:49
vbgunzis there a way to get the icons on the desktop for memory cards and usb devices to who up on another account. as far as I am concerned both accounts have the exact same privileges. the only thing is, the second account to log in does not have access to them12:49
=== Paddy_EIRE [n=patrick@78.148.111.37] has joined #ubuntu+1
zengenNo, 2 packages fail.12:49
Seeker`that tends to imply that the CD is faulty12:50
=== hmusche [n=hendrick@pD9E4FA49.dip.t-dialin.net] has joined #ubuntu+1
zengenI thought that, too, but then I remembered I used the same cd to instal on this computer yesterday.  Just wondered if I could try replacing the 2 packages during the install.12:51
Seeker`i'm not sure. Did the CD get scratched or anything?12:51
zengenNot that I can see.  And the same 2 packages failed before I installed on this one yesterday.  It installed without any problems, though.12:52
Seeker`i'd check the md5 of the iso you used, and reburn it, see if that fixes it12:53
=== Amaranth [n=travis@ubuntu/member/Amaranth] has joined #ubuntu+1
zengenThat's odd, too.  The iso file itself passes, but if I extract the files to the hard drive those packages fail.  I'm about halfway through downloading another copy.12:54
Seeker`:s12:54
=== FallenHitokiri [n=blitz@p54ACE586.dip.t-dialin.net] has joined #ubuntu+1
=== h1st0 [n=histo@unaffiliated/h1st0] has joined #ubuntu+1
=== finalbeta [n=viper@ip-83-134-149-100.dsl.scarlet.be] has joined #ubuntu+1
vbgunzI've been meaning to ask this... is it possible to let an unprivileged account install anything they wish without actually infecting the main system? is this possible in any way?12:57
FallenHitokirii've copied a handler for deskbar to /usr/lib/deskbar-applet/modules-2.20-compatible but it is not recognized (and no .pyc was created). after that I moved it to .gnome2/deskbar-applet/modules2-20-compatible and .pyc was created but i cannot select it in the preferences of deskbar-applet. someone a idea how I can use it?12:58
savvasvbgunz: well.. you could allow them to use sudo in /etc/sudoers and restrict them to use some applications12:58
FallenHitokirivbgunz: yeah if they install it to their local directory, why not?12:58
vbgunzbut they need sudo to install anything from the repos.12:59
=== elate [n=Elate@85-211-246-174.dsl.pipex.com] has joined #ubuntu+1
vbgunzI don't wish to grant them sudo but at the same time do not wish to be pestered a dozen times to install something12:59
savvaslol12:59
FallenHitokirivbgunz: oh you want the repos,...12:59
savvasvbgunz: as I said, you can RESTRICT them to some applications01:00
FallenHitokirivbgunz: give every user their own vserver? (they doesn't take much performance)01:00
=== buzztracker [n=buzztrac@pelikan.garga.net] has joined #ubuntu+1
vbgunzI am at a lost as to what to google for in this regards, can ya help out with a link to more info ?01:00
Seeker`vbgunz: I have no idea if this is right, but would chroot be the sort of thing you need?01:01
vbgunznot sure01:01
savvaschroot can restrict them to specific folders01:01
hmuschevbgunz: do the users have graphical login? or is it just remote login?01:01
Hobbseevbgunz: chroot, and then bindmount their home dir.  *shrug*01:01
Hobbseebit nasty for X stuff, though01:02
=== savvas still votes for: man sudoers
Hobbseesavvas: have you considered making them use virtualbox or something?01:02
=== Kejk_PL [n=konrad@staticline23715.toya.net.pl] has joined #ubuntu+1
vbgunzI just have an account to a kid. this kid likes to experiment and I doubt anything in the repos is really harmful. rather than limit the kids experience I'd like to allow him to install anything he wants... just not on the main system01:02
vbgunzlocal login, graphical01:02
=== derblubber [i=derblubb@alster088.server4you.de] has left #ubuntu+1 []
Hobbseeoh, you can screw up with the stuff in the reops01:02
Hobbseeif you decide to purge bits, etc01:02
=== level1_ [n=level1@129.210.188.252] has joined #ubuntu+1
savvasHobbsee: it's not me who wants to use it :P01:02
Hobbseewell, yeah :P01:03
Seeker`vbgunz: Use qemu, and tell him he can do anything he likes in there01:03
vbgunzyeah but without sudo powers, what much can they do but be pestered with password boxes or worse, nothing? at least that is what I am thinking01:03
vbgunzSeeker, so true01:03
savvasvbgunz: then they have to compile it themselves, or use a virtual machine as everyone says. Virtualbox takes 20 seconds to install, and it's almost automatic01:04
vbgunzis vbox in the repos now?01:04
savvasdunno, www.virtualbox.org01:04
savvasyou have a deb package for ubuntu there01:04
=== Hobbsee likes virtualbox
=== TheInfinity [n=TheInfin@bchm-4d091b12.pool.mediaWays.net] has joined #ubuntu+1
Hobbseeconfigure it so that he has auto-sudo rights.  *shrug*01:05
vbgunzI have vbox on kubuntu, this install is for my wife and I plan on helping a friend out soon who has kids... just he never been on linux and the password box though I love it, I don't think I'll be able to convince him, that when 1 of his 5 kids will need him to install stuff :/01:05
savvasparental ubuntu.. pubuntu :)01:06
savvasnice name :P01:07
=== hmusche [n=hendrick@pD9E4FA49.dip.t-dialin.net] has left #ubuntu+1 []
level1_I've been having some real annoying problem with alsa in every version of linux I've ever used.  Basically, I alsa does some weird stuff with LFE that makes it difficult to use mute01:08
vbgunzheh01:08
vbgunzanybuntu needs some extremely strong parental/user control wizards, guis, fine tuned controls01:09
=== xopher_ [n=xopher@cs181147041.pp.htv.fi] has joined #ubuntu+1
=== soul9 [i=none@unaffiliated/soul9] has joined #ubuntu+1
vbgunzhow do I get the gdm login screen to show up at 1280x1024?01:11
soul9Hi everyone01:11
=== ephracis [n=ephracis@h144n1c1o1027.bredband.skanova.com] has left #ubuntu+1 ["Konversation]
soul9anyone got their desktop to disappear following latest updates?01:11
soul9I've got a black background instead of mu usual desktop01:12
savvassoul9: alt-f2 and type: killall nautilus01:12
soul9doesn't seem to help any01:13
soul9oh, nautilus wasn't actually running I think01:13
soul9I just started it and my desktop appeared01:13
savvassoul9: then alt-f2 and try type "nautilus"01:13
soul9yep01:14
soul9that worked01:14
savvasnautilus is the app for the desktop, hopefully that should fix it01:14
savvasthe gnome panels are ok?01:14
soul9so should I add that to my session or should this be fixed by an update?01:14
soul9no, not all of them01:14
soul9oh, yes01:14
savvassoul9: try reboot01:15
soul9yes, the panel applets seem to work fine01:15
=== flavia [n=flavia@83.189.221.207] has joined #ubuntu+1
=== tech0007 [n=mommy@121.1.53.32] has joined #ubuntu+1
tech0007hi everyone01:18
flaviahi, is amule crashing when downloading the server list a known problem?01:18
=== yeager [n=yeager@ubuntu/member/yeager] has joined #ubuntu+1
=== Cwiiis [n=cwiiis@82-43-46-194.cable.ubr02.croy.blueyonder.co.uk] has joined #ubuntu+1
=== tretle__ [n=tretle@78.16.89.133] has joined #ubuntu+1
=== Kill_X [n=kill_x@p5B166F55.dip.t-dialin.net] has joined #ubuntu+1
vbgunzanybody know how to fix the gdm resolution?01:23
vbgunzit is currently lower than I think it should be01:23
=== MrStein [n=stein@cpe-90-157-156-176.dynamic.amis.net] has joined #ubuntu+1
=== MrStein [n=stein@cpe-90-157-156-176.dynamic.amis.net] has left #ubuntu+1 []
Seeker`vbgunz: I think it needs to be set in oyur xorg.conf01:23
vbgunzI think so too, something about virtual maybe, am googling to no avail01:23
Seeker`by gdm, do you mean the login screen?01:24
vbgunzgot it I think01:24
savvasvbgunz: try limit the modes to only 1280x102401:24
vbgunzyeah01:24
=== Toma- [n=e17@124-169-251-199.dyn.iinet.net.au] has joined #ubuntu+1
Seeker`vbgunz: What does your "Screen" section say?01:24
=== fyrestrtr [n=burhan@pdpc/supporter/student/fyrestrtr] has joined #ubuntu+1
vbgunznot sure01:25
vbgunzI'll check01:25
=== FallenHitokiri [n=blitz@p54ACE586.dip.t-dialin.net] has left #ubuntu+1 ["Verlassend"]
vbgunzjust had modes, 1280, 1024, 800, etc01:27
=== Psi-Jack [n=mykael@cpe-70-112-29-185.austin.res.rr.com] has joined #ubuntu+1
Psi-JackAnyone here know how it's possible, for my USB headset, to have IT's volume buttons control the headset volume instead of the default sound master volume?01:27
Seeker`vbgunz: Can you pastebin what it says?01:28
=== bintut [n=bintut@cm2.gamma181.maxonline.com.sg] has joined #ubuntu+1
=== No1Viking [n=No1Vikin@83.140.104.41.dyn.rp80.se] has joined #ubuntu+1
vbgunzSeeker`: yeah, one sec, this is on another machine01:31
=== JohnFlux [n=JohnFlux@konversation/developer/JohnFlux] has joined #ubuntu+1
JohnFluxHey all01:31
JohnFluxIs there a way for a package to modify the bashrc scripts?01:32
jussi01JohnFlux: IIRC they are in ~/.bashrc01:32
JohnFluxIn particular:  I wrote a bash function to do autocomplete for qdbus01:33
jussi01but I m not certain of that01:33
JohnFluxSo it would be nice to 'install' this function when you install qdbus01:33
JohnFluxbut I'm not sure if there's a nice place for a package to just drop in a file01:33
HetaUmais there any known issue with vncviewer? I run it and can't type in the host address01:34
fyrestrtrHetaUma: are you running it with screen effects?01:35
fyrestrtrJohnFlux: probably editing /etc/bash.bashrc would do the trick.01:35
HetaUmafyrestrtr, yeap01:36
=== karmue [n=karli@e178179020.adsl.alicedsl.de] has joined #ubuntu+1
JohnFluxfyrestrtr: hum, seems dodgy for an installer to do that though01:36
fyrestrtrHetaUma: try disabling effects.01:36
fyrestrtrJohnFlux: I agree.01:36
vbgunzhttp://www.pastey.net/7529001:36
fyrestrtrJohnFlux: you could add your aliases/autocomplete stuff to a file, place it in /etc/yourpackagename/foo and print instructions for users to source the file if they want autocompletion.01:37
Seeker`vbgunz: Create a backup, and remove all resolutinos apart from what you want?01:37
HetaUmafyrestrtr, yeap it worked. ty. I imagine tho they are planning to fix it right ?01:37
vbgunzi can try01:37
fyrestrtrwow this is some sour coffee01:38
savvasJohnFlux: what fyrestrtr said, you also have /etc/bash_completion and /etc/bash_completion.d/ :)01:38
JohnFluxjust looking at that now01:38
bintuthhmmm.. xen is not yet updated to 3.1.1?  :(01:38
JohnFluxhmm it does seem possible to just drop the file in /etc/bash_completion.d/01:39
fyrestrtrHetaUma: I'm not sure; as I have faced this issue with other programs as well.01:39
=== ompaul [n=ompaul@freenode/staff/gnewsense.ompaul] has joined #ubuntu+1
fyrestrtrHetaUma: I just disable effects when I'm in 'work mode'.01:40
HetaUmafyrestrtr, I guess it's due to java01:40
fyrestrtrHetaUma: in other words, this is not an issue that is local to vncviewer01:40
fyrestrtryes, it is. There is a work around for it though.01:40
vbgunznope, removing all resolutions other than 1280x1024 did not solve the gdm lower resolution issue :(01:40
JohnFluxsavvas: although it's all disabled by default :(01:40
JohnFluxsavvas: I wonder why that is01:40
=== penguincentral [n=matt@58.175.98.161] has joined #ubuntu+1
vbgunzits cool, I will have to look into this later, hopefully I'll get it fixed soon enough :)01:42
ArafangionHey, any Upstart gurus here/01:42
penguincentralno01:42
ArafangionI just want to see why Upstart (specifically logd) doesn't work.01:42
Arafangionpenguincentral: Damn enter key decided to depress too early. :(01:43
=== penguincentral forgives Arafangion and gives him a cookie
=== aoupi [n=aoupi@c-ad65e253.357-1-64736c10.cust.bredbandsbolaget.se] has joined #ubuntu+1
fyrestrtrHetaUma: if you really want it to work with desktop effects, there are work arounds.01:43
ArafangionI've tried to strace it, and ti appears that the connect to the anonymous namespace /com/ubuntu/logd (Pretty sure that's what it was), resulted in an EADDRINUSE.01:43
ArafangionAnd since I called logd manually from the console, after starting the kernel with init=/bin/bash, I'm wondering how the heck that can happen?01:44
=== Arafangion thanks penguincentral for the cookie, quietly passing it to someone else, who knows how many people have touched channel-cookies. ;)
penguincentral:)01:45
penguincentralit's chocolate ;)01:45
=== jrib [n=jrib@upstream/dev/jrib] has joined #ubuntu+1
Arafangionpenguincentral: Ahh, so it's brown and therefore can't tell if it's actually dirty?01:46
penguincentralArafangion: yep01:46
=== penguincentral can't satisfy Arafangion
=== tech0007 [n=mommy@121.1.53.32] has left #ubuntu+1 []
=== daekdroom [n=marcos@189.27.2.45.adsl.gvt.net.br] has joined #ubuntu+1
Arafangionpenguincentral: And I'll bet it's poisoned.01:47
Arafangionpenguincentral: I'm allergic to milk, you know!01:47
=== penguincentral doesn't do poison
penguincentralArafangion: sorry01:48
Arafangionpenguincentral: Just so you know, I'll be paying particular attention to you if you ever come near food again!01:48
penguincentrallol01:48
ArafangionAnyone ELSE familiar with Upstart?01:48
penguincentralgoogle is your friend...01:48
Arafangion(You know, that program that allows Ubuntu to boot?)01:48
Arafangionpenguincentral: Try it, see what docs you can find. ;)01:48
penguincentralnow i know what Upstart is01:49
=== clyons [n=clyons@unaffiliated/clyons] has joined #ubuntu+1
penguincentralhttp://upstart.ubuntu.com/01:49
Hobbseesource code probably says a fair bit.  *shrug*01:50
=== penguincentral bets that Arafangion knows about that website
Hobbseekeybuk may be around to debug that with you sometime during the week.  or the week after, more likely.01:51
mc44Hobbsee: no one documents source code ;P01:51
=== webulator70 [n=nikko@d39-185-7.home1.cgocable.net] has joined #ubuntu+1
=== Pete__ [n=pete@nock.demon.co.uk] has joined #ubuntu+1
=== Marsmensch [n=daniel@dslb-084-056-093-107.pools.arcor-ip.net] has joined #ubuntu+1
webulator70i think me and a few others found a fix for a bug in nautilus on gutsy and id like to see if someone here can try it out too, any takers?01:51
fyrestrtrwebulator70: what is the bug?01:52
ArafangionHobbsee: Yes, the source code has a fancy comment that basically says "We use the anonymous namespace here".01:52
Pete__Does anyone else find Konqueror in gusty slow to resolve sites? (Firefox works fine, entering ip addresses in Konqueror works fine)01:52
Hobbseeoh yay01:52
Arafangionpenguincentral: Click on the documentation link, and let me know what you find.01:53
webulator70fyrestrtr: one that feisty sort of had too but its worse here, mouse over sound previewing01:53
penguincentralArafangion: what documentation link?01:54
webulator70i have it going now and i know how i got it going but i cant backtrack to reproduce the problem and formatting is to tedious if it can be avoided01:54
fyrestrtrPete__: are your dns servers okay?01:54
Arafangionpenguincentral: Exactly. ;)01:54
penguincentralArafangion: i see01:54
fyrestrtrPete__: ff might be looking up cached results.01:54
Pete__fyrestrtr: Yes, feisty still works fine, dig works fine01:54
=== penguincentral is oblivious to upstart anyway
Arafangionpenguincentral: Actually, it's possible to find documentation on Upstart, but unfortunately it's almost completely just titles and section headers - with no content!01:54
penguincentralheh01:54
webulator70any takers with testing this fix out?01:56
Arafangionwebulator70: Can you reproduce the issues with a particular live cd?01:56
=== xjkx [n=xjkx@201009009018.user.veloxzone.com.br] has joined #ubuntu+1
fyrestrtrwebulator70: how to reproduce the bug?01:56
webulator70Arafangion:  havent tried yet as id really rather not restart for the time being01:56
webulator70ive got some things going on01:57
webulator70fyrestrtr: if your on gutsy and you mouse over an audio file does it show a bubble?01:57
webulator70(this is about more then just the bubble so bear with me please)01:58
fyrestrtrwebulator70: no01:58
xjkxubuntu's old versions (until 7.04) do not work for me, they claim i have I/O errors and don't boot the livecd, i suppose that it does not have the proper module to " IDE interface: Silicon Integrated Systems [SiS]  5513 [IDE] ". On other systems i had this I/O errors too, i solved it after i recompiled the kernel, thats why i am sure about the reason, question is, how does gutsy support me?01:58
Pete__Ugh, what is going on with konqueror, this is annoying01:59
webulator70 fyrestrtr: good, then im sure its a univeral gutsy bug, everyones in that boat... ok now to solve it01:59
fyrestrtrwebulator70: to be honest, I never had a bubble in fiesty.01:59
webulator70fyrestrtr: can you please try to install these to packages:01:59
xjkxthe other systems i meant other distributions, and even though they gave that I/O errors, at least i could install the system, so i could compile the kernel. But ubuntu does not let me install it, it sumply does not boot02:00
webulator70fyrestrtr: thats fine its messed in feisty too02:00
fyrestrtrokay02:00
fyrestrtrxjkx: have you tried the alternate cd?02:00
=== buzztracker [n=buzztrac@pelikan.garga.net] has joined #ubuntu+1
Pete__Doesn't seem to be my nameserver02:00
webulator70fyrestrtr: pulseaudio-esound-compat and the pulseaudio it needs02:00
webulator70can you please install these?02:00
fyrestrtrokay02:01
xjkxfyrestrtr, no02:01
fyrestrtrxjkx: try that.02:01
webulator70fyrestrtr: thanks now after they are done, can you close any nautilus windows , open one wiht a sound file and mouse over it?02:01
xjkxfyrestrtr, http://www.ubuntu.com/getubuntu/download where02:02
=== level1_ [n=level1@129.210.164.214] has joined #ubuntu+1
xjkxalso, where isgutsy?02:02
fyrestrtr!alternate | xjkx02:02
ubotuxjkx: The Alternate CD (available as of Dapper) is the classical text-mode installation CD. Use it if you wish to upgrade via CD, or for an "expert" mode install. For normal installs, use the Desktop CD, which is also a "Live" CD - See also !Minimal02:02
xjkxfyrestrtr, i know what it is, not where it is02:03
fyrestrtrwebulator70: I get the bubble now.02:03
=== RivaeAerya [n=robin@h8441230009.dsl.speedlinq.nl] has joined #ubuntu+1
fyrestrtrxjkx: at the download page, there is an option to download the alternate cd.02:03
webulator70fyrestrtr:  still no sound correct?02:04
fyrestrtrxjkx: its a check box.02:04
RivaeAeryais it safe to update to kubuntu gutsy now?02:04
xjkxuhmm02:04
fyrestrtrwebulator70: no sound; but I have a bubble.02:04
RivaeAeryais it safe to update to kubuntu gutsy now?02:05
daekdroomRivaeAerya: Gutsy is stable enough.02:05
webulator70fyrestrtr: ok now can you go into edit/preferences in nautilus, then go to the preview tab and set sound files to always?02:05
daekdroomI don't know about KDE but Ubuntu itself is stable.02:05
fyrestrtrwebulator70: okay, done.02:06
RivaeAeryadaekdroom: hmm and what bugs are there?02:06
webulator70oh btw does esound-common comes with feisty?02:06
webulator70its crucial that i know if it does or not02:06
fyrestrtrby comes do you mean installed by default?02:06
=== murlidhar [n=murlidha@59.93.113.139] has joined #ubuntu+1
webulator70yes02:06
Pete__Right, I'm going to reinstall again, see if it makes any difference.02:07
fyrestrtrstill no sound.02:07
webulator70sorry, gutsy i mean02:07
webulator70fyrestrtr: ok, thats fine, now can you install mpg321 from apt?02:07
daekdroomRivaeAerya: I have no idea. Almost any package has bugs, no? (even in stable versions..)02:07
RivaeAeryadaekdroom: hmm and what bugs are there?02:07
RivaeAeryaoops02:07
murlidharmy start up takes a good 5minutes with nothing on the screen till the login windows .02:07
RivaeAeryadaekdroom: ok02:07
xjkxfyrestrtr, is there a documment help for alternate cd install ?02:07
fyrestrtrxjkx: yes, its in the wiki.02:08
=== Pete__ [n=pete@nock.demon.co.uk] has left #ubuntu+1 ["Kopete]
fyrestrtrmurlidhar: did you upgrade or do a clean install?02:08
xjkx!wiki alternate install02:08
murlidharfyrestrtr: upgrade02:08
fyrestrtrwebulator70: okay done.02:08
=== jenofonte [n=jenofont@201.244.234.191] has joined #ubuntu+1
fyrestrtrwebulator70: and now it works :)02:08
jenofonte(topic02:08
webulator70fyrestrtr:  install sox for .wav and vorbis-tools for .ogg files to preview too :)02:09
webulator70fyrestrtr:  only one problem now? wich files made it work? its hard to tell since there are so many extra libs and whatnot that installed02:09
=== squidy [n=alipio@201-34-222-106.cbace700.dsl.brasiltelecom.net.br] has joined #ubuntu+1
fyrestrtrwebulator70: you should add this to the wiki, I normally disable previews in nautilus.02:09
RivaeAeryaWhat advantages does Gutsy have over Feisty?02:09
fyrestrtrwebulator70: after install mpg321 it works.02:10
fyrestrtrRivaeAerya: updated core programs, integrated desktop effects, better printing.02:10
RivaeAeryafyrestrtr: and Kubuntu Gutsy?02:10
webulator70fyrestrtr: thats good but where there any dependancies with those things i asked you to install?02:10
fyrestrtrwebulator70: yes, tons.02:10
fyrestrtrwebulator70: I can pastebin it if you want.02:11
webulator70fyrestrtr: and the trick now is to find out which ones are the ones that matter02:11
fyrestrtras i have it in the buffer.02:11
murlidharmy start up takes a good 5minutes with nothing on the screen till the login windows .02:11
fyrestrtrRivaeAerya: I am not sure, as I don't use kubuntu.02:11
webulator70fyrestrtr: sure if you want, the prob is, if we uninstall those things now it will still show a bubble making it hard to reproduce02:11
fyrestrtrmurlidhar: did you do an upgrade or a clean install.02:11
RivaeAeryafyrestrtr: where can i find out?02:11
murlidharfyrestrtr: upgrade02:11
fyrestrtrmurlidhar: what video card do you have?02:11
fyrestrtrwebulator70: well, I can tell you easily.02:12
fyrestrtrwebulator70: after the first install, I got the bubble. After the second install, I got sound.02:12
murlidharfyrestrtr: the in built of intel 84502:12
daekdroomRivaeAerya: Better printing support, less bugs (atleast in official release) and such stuff.02:12
webulator70fyrestrtr: but what files in that whole list of dependencies where responsible for making it go?02:12
fyrestrtrwebulator70: and I bet this bad coffee that it is "libgstreamer-plugins-pulse0.10-0" that is required.02:13
RivaeAeryadaekdroom: and in Kubuntu?02:13
daekdroomRivaeAerya: But that's about kubuntu02:13
webulator70fyrestrtr: ah, thats a start02:13
webulator70fyrestrtr: required for the bubble to show?02:13
daekdroomRivaeAerya: Everything that wasn't limited by the change of GNOME to KDE is still applied to Kubuntu =P02:13
fyrestrtras iirc nautilus uses gstreamer; because video files that have no gstreamer codec install will not show previews.02:13
RivaeAeryadaekdroom: hmm.. better printing support, okay, that's just what i need.. and what else? better videocard support? better hardware support?02:13
fyrestrtrwebulator70: yes.02:14
RivaeAeryabetter browser? better firefox?02:14
daekdroomRivaeAerya: New Kernel = better hardware support.02:14
RivaeAeryabetter konqueror?02:14
fyrestrtrRivaeAerya: why don't you go and read the website.02:14
fyrestrtrRivaeAerya: all this is mentioned there.02:14
RivaeAeryafyrestrtr: link me, please :)02:14
webulator70fyrestrtr: the odd thing is now that ive uninstalled tha i still see the bubble02:14
murlidharfyrestrtr: last time in feisty somebody told me to modify in the grub menu to by pressing e and removing some word which i don't remember right now02:14
fyrestrtr!gutsy02:14
ubotuGutsy Gibbon is the code name for the next release of Ubuntu (7.10) | (due October 18th, 2007) | It is development software, and as such unstable, support _only_ in #ubuntu+1 | See https://wiki.ubuntu.com/GutsyGibbon for more information02:14
webulator70fyrestrtr: ive uninstalled everything i had before and i see the bubble still02:14
fyrestrtrRivaeAerya: there you are02:14
=== dennda [n=dennda@ubuntu/member/dennda] has joined #ubuntu+1
murlidharfyrestrtr: this time i have gutsy02:15
webulator70fyrestrtr: but on a fresh install, there is no bubble for everyone i talk to02:15
RivaeAeryafyrestrtr: and where can i find the info?02:15
RivaeAeryathere's only a download link and the release schedule02:15
RivaeAeryaand goals02:15
fyrestrtrRivaeAerya: https://wiki.ubuntu.com/GutsyGibbon02:15
denndaHi there. Any idea why suspend2ram still doesn't always work? (screen is not turned on again) - Any ideas how to fix it?02:15
fyrestrtrwebulator70: uninstall these> libsamplerate0 pulseaudio pulseaudio-esound-compat02:15
fyrestrtrwebulator70: with --purge02:15
webulator70fyrestrtr: i already did before talking to you02:16
fyrestrtrhrmm.02:16
daekdroomHm. Rythmbox is bugged here, is there another audio player that i can use?02:16
=== ompaul [n=ompaul@freenode/staff/gnewsense.ompaul] has joined #ubuntu+1
RivaeAeryafyrestrtr: there's no info t here02:16
webulator70fyrestrtr: that definatly fixes it but why would it not unfix on uninstall02:16
daekdroomRivaeAerya: That's valid to Ubuntu, Kubuntu and Xubuntu (except GNOME related stuff)02:17
RivaeAeryadaekdroom: what'svalid to that?02:17
fyrestrtrwebulator70: if I had to guess; I think that installing it probably creates a symlink somewhere to the necessary libs for nautilus, and uninstalling doesn't delete the symlink.02:17
webulator70fyrestrtr: its almost as if it overwrites a problem file or gconf key and leaves it in a working state after uninstall02:17
ArafangionBleh, why don't people in here understand Ubuntu's *own* init program?02:17
fyrestrtrwebulator70: but just stabbing in the dark.02:17
daekdroomRivaeAerya: What is said in that webpage is valid to Ubuntu, Kubuntu and Xubuntu Gusty.02:17
RivaeAeryadaekdroom: there's only this:02:18
fyrestrtrwebulator70: an easy way to figure it out is to do a search for all changed files before and after install.02:18
mc44RivaeAerya: http://www.ubuntu.com/testing/710rc02:18
xjkxis it safe to use the release candidate?02:18
RivaeAeryaThe name "Gutsy Gibbon" was announced [WWW]  in the mailing lists by MarkShuttleworth.02:18
RivaeAerya Gutsy goals are recorded in [WWW]  Launchpad.02:18
RivaeAerya download link : [WWW]  http://cdimage.ubuntu.com/releases/gutsy/02:18
webulator70fyrestrtr: your stabbing in the same direction i am, and this makes me want to somehow get a hold of a dev that codes nautilus on ubuntu02:18
RivaeAeryamc44: thanks :)02:18
fyrestrtrwebulator70: then compare it to the files that are changed after uninstalling. The culprit file will not have its modtime changed.02:18
daekdroomxjkx: It's not too buggy.02:18
webulator70fyrestrtr: how do i do this?02:18
daekdroomxjkx: But you might not want to install it in a workstation computer02:18
=== Hobbsee_ [n=Hobbsee@ubuntu/member/hobbsee] has joined #ubuntu+1
xjkxall i fear is to lose data, if its not going to happen i should be ok02:19
fyrestrtrwebulator70: I seem to recall a utility that scans for filesystem changes.02:19
xjkxis it safe in terms of what i said?02:19
fyrestrtrwebulator70: but a hack would be to diff the output of find before and after the changes (using a modtime filter on find)02:19
daekdroomxjkx: If you do know how to install it without losing data i think there's no problem.02:19
xjkx:)02:19
=== boris_ [n=boris@BSN-77-126-127.static.dsl.siol.net] has joined #ubuntu+1
webulator70fyrestrtr: hmmm02:20
xjkxis this the first rc?02:20
daekdroomyes.02:20
webulator70fyrestrtr: is there any dev i could  contact about this seeing is how this is boredering on what i can and cant do?02:20
webulator70*as how02:20
penguincentralif I have done _all_ updates, then I should have rc running02:21
penguincentralright?02:21
fyrestrtrwebulator70: I would ask in the gnome channel first, they may be able to tell you the file that is responsible for the bubble.02:21
xjkxdaekdroom, is it comming out this month or there are comming more rcs?02:21
webulator70fyrestrtr: i understand what your telling me to do full well but i dont know how to do it02:21
=== Frogzoo [n=Frogzoo@202.155.165.25] has joined #ubuntu+1
webulator70fyrestrtr: ok, sounds good, and thats just #gnome on this server?02:21
daekdroomxjkx: as i know the official release is 4 days ahead02:21
fyrestrtrwebulator70: oh, and the utility is fschange ( http://stefan.buettcher.org/cs/fschange/index.html )02:22
fyrestrtrwebulator70: I believe so.02:22
webulator70fyrestrtr: fschange, thanks, ill try to do what i can02:22
xjkxdaekdroom, 4 days to come out ? is it what you mean with "ahead?" ah ! then i won't install the RC today, that makes no sense02:22
fyrestrtrxjkx: I would suggest you do it today; as on the day of release the servers will be overloaded. So, if you install RC now, you will just download any updates on release day, which will reduce the amount of stuff you need to download to bring you up to date.02:23
daekdroomxjkx: yes that's what i meant02:23
squidyhi.. is anyone here using dolphin in kubuntu? i've copied my personalized menus from konqueror to dolphin servicemenus folder, but nothing appears..02:23
=== murlidhar [n=murlidha@59.93.113.139] has joined #ubuntu+1
=== xet7 [n=xet7@a91-155-3-69.elisa-laajakaista.fi] has joined #ubuntu+1
IdleOnexjkx: best to install today and then just do the few updates on the day of release. like fyrestrtr said servers will get hammered on the 1802:24
xjkxwhat would i need on rc to get it to be release? apt-get dist-upgrade only?02:24
daekdroomI have to download updates almost 2 times per day here. T_T02:24
IdleOnexjkx: yes02:24
xjkx:D ok :)02:25
webulator70hmm maybe i can save some times and ask another person to try it with fyrestrtr:02:25
webulator70erm.. with fschage i mean02:25
murlidharmy booting takes place a good 5 minutes even my windows takes 1.50 min to boot . what is the problem02:25
penguincentralIdleOne, xjkx, and anyone else who cares to read: When my friend was downloading the updates for edgy to feisty on the first day, i chatted to him for a bit.  he was saying that the servers were _really_ slow02:25
webulator70does anyone here have a moment to help squash a gutsy bug?02:25
=== penguincentral has a bug, but forgets the number
daekdroompenguincentral: but it's way better to download some packages in a slow speed than a big ISO @ slow speed =P02:26
webulator70i need someone to reproduce it while they are  scanning the fs for changes02:26
penguincentralyep02:26
webulator70i cant do it on mine unless i reformat02:26
IdleOnepenguincentral: on the day of release for feisty I had aleady been running 7.04 for a month and was not getting any headaches about " Why cant I download 7.04 "02:27
murlidharmy booting takes place a good 5 minutes even my windows takes 1.50 min to boot . what is the problem?02:28
penguincentralIdleOne: the day of the feisty release i was on dial-up and effectively was _unable_ to connect to the modem because i have a winmodem.  now that i have broadband, it's all better now and i am immersed in the goodness of linux02:28
IdleOnepenguincentral: :)02:28
xjkxpenguincentral, oh, so apt will be slow too :>02:29
=== Pete__ [n=pete@nock.demon.co.uk] has joined #ubuntu+1
=== larson9999 [n=larson@74-129-100-183.dhcp.insightbb.com] has joined #ubuntu+1
murlidharcan anybody solve my problem?02:29
XsteelWolfbtw is ubuntu 7.10 official?02:29
XsteelWolfor do i have to wait 4 days later02:30
=== AnRkey [n=AnRkey@87-194-62-131.bethere.co.uk] has joined #ubuntu+1
=== KenSentMe [n=jeroen@kensentme.xs4all.nl] has joined #ubuntu+1
Pete__Not yet, still RC02:30
=== martyna [n=martyna@staticline23715.toya.net.pl] has joined #ubuntu+1
XsteelWolfonly after 4 days later?02:30
larson9999we just bought a game cube(we're on the trailing edge) with metroid prime.  my 6 year just stared at the intro with bug eyes for about 5 minutes.  then he said, "get going, you can do it."02:30
RivaeAeryaHow do i update to Kubuntu Gutsy? (in KDE)02:31
mc44XsteelWolf: when it's released02:31
XsteelWolfafter it's released,then it will be consider official?02:31
=== EnderW [n=w00t@ti500710a080-0176.bb.online.no] has joined #ubuntu+1
=== filthpig [n=carl@ti0010a380-5429.bb.online.no] has joined #ubuntu+1
XsteelWolfbut it;s only 4 days to release, i don't think any bugs would be finalised during this 4 days yea?02:31
mc44there may still be updates02:32
fyrestrtrRivaeAerya: sudo update-manager -d02:32
RivaeAeryafyrestrtr: in kubuntu?02:32
XsteelWolf4965 agn intel wireless card02:32
RivaeAeryaadept right?02:32
fyrestrtryes02:32
XsteelWolfis it working on ubuntu 7.10 release?02:32
XsteelWolfi download rc 1 month ago02:32
XsteelWolfkde manager doesn't work for me02:32
RivaeAeryaor is adept too unstable?02:32
IdleOnepenguincentral: shipit has just accepted my request for cd's :))02:32
larson9999huh, the graphics card on this dell inspiron still isn't working :(02:32
penguincentralcool02:32
RivaeAerya(adept crashes here often)02:33
murlidharmy booting takes place a good 5 minutes even my windows takes 1.50 min to boot . what is the problem?02:33
=== penguincentral wonders if Shipit has accepted his request for cds
denndaHi there. Any idea why suspend2ram still doesn't always work? (screen is not turned on again) - Any ideas how to fix it?02:33
IdleOnepenguincentral: go make request now02:33
RivaeAeryafyrestrtr: ping02:33
EnderWgot a problems with ubuntu 7.10RC messing up boot entries/MBR when installing...how do I file a bug on launchpad? or help otherwise? seems to be dozens of projects called ubuntu on launchpad02:34
daekdroomdamn gutsy, my printer isn't working02:35
penguincentralIdleOne: they haven't accepted my request yet :(02:35
EnderWone thing is that it wouldn't boot, but it wrecked vistas bootmanager aswell02:35
mc44EnderW: https://launchpad.net/ubuntu/+filebug/+login02:35
EnderWthanks02:35
IdleOnepenguincentral: :( where do you live?02:36
EnderW(or gave it a wrong entry)02:36
penguincentralIdleOne: in the "land down under"02:36
fyrestrtrRivaeAerya: I'm sorry, I do not use KDE.02:36
fyrestrtrRivaeAerya: perhaps someone else that uses it will be able to help you.02:36
IdleOnepenguincentral: dont know what to tell you02:37
RivaeAeryaWho here uses KDE?02:37
=== dmace [n=dmace@c-68-58-174-165.hsd1.sc.comcast.net] has joined #ubuntu+1
=== xhaker [n=xhaker@a213-22-74-189.cpe.netcabo.pt] has joined #ubuntu+1
fyrestrtrRivaeAerya: try #kubuntu02:37
penguincentralIdleOne: Australia is a great place... full of water restrictions02:37
XsteelWolfRivae, I do02:37
RivaeAeryafyrestrtr: ok :)02:37
dmacei've attached an external lcd monitor to my laptop to test dual head in 7.10RC. my laptops' native res is 1680x1050, and the external LCD is 1280x1024. the only mod i've made to my xorg.conf file is to add a Virtual section to set the desktop size to 3360x1050. when i connected the monitor and booted up, my laptop's resolution seems correct, but gnome/metacity is constrained to a small portion of the screen (like, the panel extends on02:37
dmacely to about 3/4 across the screen, and maximizing stuff fills up only that area). displayconfig-gtk and the screen resolution applet are saying my max res are something strange like 1280x950 (cant remember or sure and can't get to the applet now). the external LCD is not getting a signal. i tried xrandr to just turn off the external lcd, and now the panel etc aren't even visible on the laptop LCD, and I can't seem to get things back t02:37
dmaceo normal. wth?02:37
RivaeAeryaXsteelWolf: oh :D02:37
filthpigshouldn't really the kubuntu team have a #kubuntu+1 channel?02:37
=== xhaker [n=xhaker@a213-22-74-189.cpe.netcabo.pt] has left #ubuntu+1 ["Leaving"]
dmacexrandr output: http://pastebin.com/m3b1866802:37
RivaeAeryaXsteelWolf: how's Gutsy with KDE? oh, and, how do you upgrade to Kubuntu Gutsy?02:37
XsteelWolfIt's great02:37
penguincentral!pastebin | dmace02:38
ubotudmace: pastebin is a service to post large texts so you don't flood the channel. The Ubuntu pastebin is at http://paste.ubuntu-nl.org (make sure you give us the URL for your paste - see also the #ubuntu channel topic)02:38
=== ipx [n=ipx@c-c0fee455.41-2-64736c10.cust.bredbandsbolaget.se] has joined #ubuntu+1
XsteelWolfbut im having problems with my intel 4965agn wireless card02:38
XsteelWolfseems like its kde network manager problem02:38
fyrestrtrdmace: what video card?02:38
=== wabz [n=wabz@c211-30-185-177.artrmn2.nsw.optusnet.com.au] has joined #ubuntu+1
dmacefyrestrtr: intel 945 GM using the intel driver02:38
XsteelWolfwhen it's official release02:38
fyrestrtrXsteelWolf: does it work when you disable the network manager?02:38
dmacefyrestrtr: i got dual head working w/ xrandr at work using an external LCD on this thing whose native resolution matches02:38
XsteelWolfyou can do a apt-get install upgrade02:38
webulator70fyrestrtr: you see my pm?02:39
XsteelWolfnah it doesn't, i didn't try ndiwswrapper though02:39
IdleOnepenguincentral: you guys in a drought right now? we dont have water restrictions but perhaps we should. people water the lawn here still and it is october 14th02:39
dmacefyrestrtr: with 7.04 and upgraded X though. this is the first time i've tried it with 7.10 and an LCD whose rez is different than the laptop's02:39
=== Jaymac [n=Jaymac@82-46-66-41.cable.ubr11.azte.blueyonder.co.uk] has joined #ubuntu+1
fyrestrtrdmace: I have always had issues with running dual head with different resolutions (using nvidia, ati and intel chipsets) in the end I just used the common denominator resolution. fwiw, in Vista, it automatically adjusts my laptop's resolution to match that of the external screen when doing dual head.02:40
XsteelWolfkde sure do look nicer than gnome02:40
fyrestrtrwebulator70: are you identified?02:40
ipxSoon this channel will be all dead - again. : ) *mohahaha*02:40
dmacefyrestrtr: XP never has any trouble :-/02:40
webulator70fyrestrtr: identified?02:40
fyrestrtrwebulator70: with nickserv02:40
dmacefyrestrtr: any idea how i can at least get this stuff back to normal without rebooting?02:40
fyrestrtrdmace: logout, restart X, login again.02:41
IdleOneipx: for a day then ubuntu 8.04 starts :)02:41
webulator70 fyrestrtr: no02:41
ipxIdleOne: ;)02:41
dmacefyrestrtr: or without doing that? :) i'd like to know what the problem is rather than relying on a magical fix02:41
=== IdleOne is looking forward to beta testing 8.04
=== rocky [i=rocky@conference/plone/x-0668308ad04b7e0b] has joined #ubuntu+1
=== rocky [i=rocky@conference/plone/x-0668308ad04b7e0b] has left #ubuntu+1 []
=== rocky [i=rocky@conference/plone/x-0668308ad04b7e0b] has joined #ubuntu+1
fyrestrtrdmace: I'm not sure what is the cause of the issue; I'm sure its drivers. To adjust your resolution while in X, you can use ctrl+alt+numpad+ and numpad-02:42
dmacefyrestrtr: that's the weird thing, the resolution is correct02:42
dmacefyrestrtr: it's like the WM or whatever manages this thinks the other screen is still available02:42
wabzhi, when I enable desktop effects, I don't have any window decorations, what's up with that?02:42
dmacefyrestrtr: and is putting my panels over there02:42
fyrestrtrdmace: hrmm.02:42
IdleOnewabz: #ubuntu-effects for effects help02:43
fyrestrtrdmace: not sure what is going on there.02:43
wabzgood god02:43
=== wabz [n=wabz@c211-30-185-177.artrmn2.nsw.optusnet.com.au] has left #ubuntu+1 []
dmacefyrestrtr: another interesting note is that the wallpaper is stretched as if the resolution were doubled along the x axis02:43
martynaHi, I found ugly regression in HAL package. I have laptop - Benq A53 - and when I (dis)connect AC adapter it is recognized by monitor software, but keyboard and touhpad works VERY laggy. Installig hal package from feisty resoves the problem02:44
dmacefyrestrtr: this particular part of the behavior happened after i tried an xrandr command to put the ext. lcd right of the internal one02:44
dmacefyrestrtr: so i figured an xrandr --output LVDS --auto would bring it back to normal02:44
dmacebut no luck02:44
fyrestrtrmartyna: please file a bug02:44
=== OleMoudi [n=tk422@197.Red-83-43-220.dynamicIP.rima-tde.net] has joined #ubuntu+1
=== mohan_ [n=ubuntu@219.91.136.17] has joined #ubuntu+1
=== fyrestrtr rofl @ Mr. Bean
=== mohan_ [n=ubuntu@219.91.136.17] has left #ubuntu+1 ["Konversation]
dmacefyrestrtr: ah ha! xrandr --output VGA --off02:47
martynafyrestrtr: of course i will. Maybe some useful information (script name etc) can I provide?02:47
=== finalbeta_ [n=gggggggg@ip-83-134-149-100.dsl.scarlet.be] has joined #ubuntu+1
fyrestrtrmartyna: just provide the description as you have pasted it here, the devs will assign it to the appropriate component.02:49
dmacefyrestrtr: this page describes how someone managed to use mismatched resolutions: http://www.jimmy.co.at/weblog/?p=7302:50
dmacei am gonna go experiment with it. brb02:50
martynafyrestrtr: heh, thanks. I filled few bugs, but it always took long time. I have only one week to fix it :(02:50
=== gr1m [n=gr1m@212.117.84.40] has joined #ubuntu+1
murlidharmy booting takes place a good 5 minutes even my windows takes 1.50 min to boot . what is the problem?02:55
=== dbglt [n=Drossos@60.242.135.20] has joined #ubuntu+1
fyrestrtrmurlidhar: disable silent boot and see what is taking so long.02:57
dbgltsince upgrading to gusty, there seems to be something wrong with my network: knetworkmanager is not showing any available wireless networks (although I know at least two are in range)02:57
dbgltdoes anyone know what I can do to fix this?02:57
murlidharfyrestrtr: how to do that?02:57
Pete__Konqueror seems to take 5 seconds or so to start loading a site if a dns name is used, ip addresses works fine, firefox also works. Is anyone else experiencing this?02:57
fyrestrtredit /boot/grub/menu.lst and disable the silent option.02:57
=== _bt [n=bt@unaffiliated/bt/x-192343] has joined #ubuntu+1
=== PriceChild [n=pricechi@ubuntu/member/pdpc.supporter.student.PriceChild] has joined #ubuntu+1
=== dbkim [n=dbkim@60-242-85-50.tpgi.com.au] has joined #ubuntu+1
dbkimhi02:59
dbkimis there anyone tried 7.10?03:00
_bthi, adobe flash is not available on 64 bit systems so why does firefox provide it as an option (and install it) when i browse to a flash based site?03:00
dbkimI know it's going to be release 4 days later but I can't wait until that time!! =P03:00
murlidharfyrestrtr: u mean the quiet word in menu.lst03:00
murlidhar?03:00
Hobbsee_bt: gnash?03:00
=== buzztracker [n=buzztrac@213.251.133.67] has joined #ubuntu+1
dbkimanyone?03:00
Hobbsee!patience | dbkim03:00
ubotudbkim: The people here are volunteers, your attitude may determine how fast you are helped.  Not everyone is available all the time, likewise not every answer is available instantly. See also http://wiki.ubuntu.com/IrcGuidelines03:00
Hobbseedbkim: most people here are using it.03:01
_btHobbsee: i know i can use gnash, but adobe flash should NOT be provided as an option on 64 bit systems as this only serves to confuse people03:01
dbkimoh really03:01
webulator70fyrestrtr: its definatly pulseaudio that makes the needed change03:01
dbkimHobbsee, I'm worrying about serious problems03:01
dbkimHobbsee, is there any serious problem or bug on 7.10?03:01
=== vmlinuz- [n=org@adsl32-100.qualitynet.net] has joined #ubuntu+1
Hobbseedbkim: there are some bugs.  *shrug*03:02
fyrestrtrwebulator70: okay, now you can find out what files it changes.03:02
dbkimHobbsee, oh really03:02
=== Latty [n=Latty@host81-154-243-214.range81-154.btcentralplus.com] has joined #ubuntu+1
Hobbseehm, i wonder why we're bulding this for amd64 now03:02
dbkimHobbsee, then I should be patience until 7.10 is came out03:02
webulator70fyrestrtr: getting there but i need a deb of fschange03:02
Hobbseebug #13345203:03
ubotuLaunchpad bug 133452 in flashplugin-nonfree "gutsy amd64: flashplugin-nonfree not working" [Undecided,Fix released]  https://launchpad.net/bugs/13345203:03
Hobbseedbkim: it wont change much now03:03
dbkimHobbsee, hum...03:03
dbkimHobbsee, that's true03:03
dbkimHobbsee, thanks I will install 7.10 right now =)03:03
fyrestrtrwebulator70: here are the files for pulseaudio > http://packages.debian.org/etch/pulseaudio/i386/filelist03:04
Hobbsee_bt: it definetly doesnt work on 64bit systems?03:04
Hobbseeit seems that people think ht has started to03:04
webulator70fyrestrtr: oh man thats alot of files03:04
_bthobsee, no i had to run nspluginwrapper -i .....03:04
Hobbsee  * debian/control: produce amd64 binaries and depend on03:05
Hobbsee    nspluginwrapper [amd64]  to make this feasible.03:05
Hobbseehm, apparently i'ts supposed to work.03:05
=== magnetron [n=magnetro@unaffiliated/magnetron] has joined #ubuntu+1
_bthobsee: "I did the trick simply by removing: .mozilla/plugins, Maybe .mozilla/plugins was created by an old version of nspluginwrapper and not needed anymore."  << from that bug report, i think this applies to me03:06
=== unggnu [n=unggnu@unaffiliated/unggnu] has joined #ubuntu+1
unggnuhi all, anybody here with a Sony laptop03:07
Pete__unggnu: Yep, I am03:07
Pete__I have*03:07
unggnuPete__, cool, does your brightness work?03:08
unggnuHow much modi do you have?03:08
Pete__unggnu: I use a utility called smartdimmer for it, and yes.03:08
Pete__unggnu: FE21M03:08
Pete__Does not work on FZ series I believe03:08
unggnudamn, nvidia card :(03:09
Pete__unggnu: Which model do you have?03:09
unggnuTX203:09
unggnuAnyone else with a Sony laptop :)03:09
unggnuPete__, Your laptop doesn't use the sony-laptop interface since it has an nvidia card I guess.03:10
Pete__Yep, I guess so. You are an intel onboard then?03:11
daekdroomDoes envy support gutsy?03:14
=== xsacha [n=ubuntu@CPE-58-161-226-145.nsw.bigpond.net.au] has joined #ubuntu+1
Pete__daekdroom: What is wrong with the repo drivers?03:15
Seeker`does anyone know where the shortcut win+c is defined - it seems to center my mouse on the screen03:15
daekdroomPete__: they seem to don't support 3D acceleration.03:15
=== murlidhar [n=murlidha@59.93.113.139] has joined #ubuntu+1
Pete__daekdroom: nvidia or ati?03:16
=== arcil [n=arcil@unaffiliated/arcil] has joined #ubuntu+1
=== kingrayray [n=raybot@c-24-16-13-220.hsd1.mn.comcast.net] has joined #ubuntu+1
daekdroomPete__: ATI x110003:16
arcilwhere can i file bugs for packages?03:16
Pete__I think I remember a modification for envy to let it work with gusty03:17
daekdroomPete__: XORG is using "ati" drivers, i've no idea why i can't use compiz fusion.03:17
murlidharfyrestrtr: nothing on the screen. have removed the work ' quiet ' from menu.lst still can't see anything until the login windows shows up03:17
=== Powerking89670 [n=richard@c-67-163-250-25.hsd1.pa.comcast.net] has joined #ubuntu+1
xsachadaekdroom: because those drivers only support up to x105003:18
xsacharadeon 7000 -> x105003:18
=== xotl [n=chatzill@82-36-240-85.cable.ubr04.camd.blueyonder.co.uk] has joined #ubuntu+1
daekdroomxsacha: damn.03:19
daekdroomxsacha: so i've to install ATI drivers?03:19
xsachaunfortunately :(03:19
daekdroomxsacha: ah ye, x1100 = x20003:19
unggnuPete__, yes03:19
xsachayeah x200m is the exception -- unsupported for 3d03:19
daekdroom.... damn.03:19
xsachax1100 is the same03:19
xsachashould work with the closed drivers tho :)03:20
daekdroomwell, as i can't use envy and Ubuntu proprietary driver tool doesn't work here...03:20
daekdroomI'm going to download them at ati.com =P03:20
xsachammm restricted drivers dont work?03:20
xsachai dont recommend ati.com03:20
xsachatry n get restricted working?03:20
Seeker`I seem to be unable to define shortcuts in amarok03:20
daekdroomi'm using those which come with ubuntu03:21
xsachai know03:21
xsachabut you can go to restricted in ubuntu and get the fglrx driver03:21
daekdroombut restricted drivers tool don't start here.03:21
daekdroomand when i try to change into fglrx driver.. wel.. nothing happens.03:21
murlidharcan't see anything on my screen till the login window comes up . Why . Somebody help me and the boot up time takes a long time03:21
daekdroomi downloaded the packages using synapitc.03:21
xsachamm no good :( thats with the RC?03:22
daekdroomDo i have to close X to change teh drivers?03:22
daekdroomyes03:22
xsachamust be bug i guess, i havent tried03:22
xsachayeah X needs to be restarted if you change xorg.conf03:22
daekdroomwhen i try System > Adm > Screen and Graphics it doesn't do anything03:23
daekdroomRC isn't  a good option when you have hardware compatibility problems..03:23
daekdroomI needed to try 5 tutorials till i got my USB modem working03:23
xsachahehe03:23
=== aLeSD [n=alex@229.Red-83-33-249.dynamicIP.rima-tde.net] has joined #ubuntu+1
=== joakim- [n=joakim@s5591c04b.adsl.wanadoo.nl] has joined #ubuntu+1
daekdroomxsacha: i have to edit the "/etc/x11/ one or the one that is at "/usr/share/xresprobe/" ?03:25
aLeSDlittle problem03:25
xsachathe /etc/X1103:25
aLeSDgreeter crashs in my system after an update03:25
=== sebsebseb [n=sebastia@82-46-9-58.cable.ubr05.azte.blueyonder.co.uk] has joined #ubuntu+1
daekdroomxsacha: so after i modify it i press Crtl + alt + backspace?03:27
=== mirak [n=mirak@m207.net81-66-74.noos.fr] has joined #ubuntu+1
=== jon9314 [n=jon9314@cpe-71-74-157-222.neo.res.rr.com] has joined #ubuntu+1
=== penguin42 [n=kvirc@tu006.demon.co.uk] has joined #ubuntu+1
Pete__Hmm, its not just konqueror, adept manager/updater is slow also03:28
sebsebsebstupid me,  let's  test the trying to send something to the deleted items,  from the NTFS partition,  that I am now able to do stuff with in Gutsy.   oh  damn deleted something I wanted to keep really.  it's not in deleted items in Gutsy.  will it be in Vista's  recyle bin, I guess not.  is  there any way I can get it back?  without needing to download it again03:28
penguin42yeesh - nope, don't like kvirc - time to try a different one03:28
jon9314i have gutsy rc1 installed and my /home partition is on a second hard drive. when finnal release comes out i wan't to clean install. will i be able to save my /home easily?03:29
Powerking89670sebsebseb: because of the way it was deleted, it is likely gone forever; if it IS in the recycle bin let me know so i can say "WTF!"03:29
=== CodeImp [n=dont@s55910c2b.adsl.wanadoo.nl] has joined #ubuntu+1
sebsebsebwhat way was it deleted?03:30
sebsebsebalso if I am doing stuff with the NTFS partition in Gutsy,  when I try and boot up Vista later on,  it might not like it I think?03:31
=== stoney [n=andre@217.16.121.215] has joined #ubuntu+1
Powerking89670sebsebseb: it was actuallyed DELETED; windows moves the files you "delete" into the recycle bin first, the NTFS partition handler for linux will not do that03:31
sebsebsebI see03:32
sebsebsebeven though it says it is being sent to delete items hummmmmm03:32
Powerking89670sebsebseb: As long as you dont mess with any system settings, or know what your doing, yes it may flip out03:32
=== patjoh [n=patjoh@c83-248-232-88.bredband.comhem.se] has joined #ubuntu+1
sebsebsebyes exactly at the moment seems I can delete anything I want from inside Linux with that NTFS partition.  I am not stupid enough to delete some system file myself for Vista,  but something could happen I guess,  and one or more gets deleted.03:33
xsachavirus could delete it03:33
sebsebsebexactly03:33
xsachabecause other partitions dont have same protection03:33
sebsebsebaltough there aren't that many viruses for Linux?03:33
Powerking89670sebsebseb: they exist, but not like on windows03:34
Pete__especially ones that go hunting for NTFS partitions ;)03:34
sebsebseband I would have to pretty much say,  yes install this virus in Linux?03:34
=== xsacha [n=ubuntu@CPE-58-161-226-145.nsw.bigpond.net.au] has left #ubuntu+1 []
Powerking89670sebsebseb: You would have to be pretty damn stupid to get one :p03:34
sebsebsebwas that a joke Pete___ ?03:34
Powerking89670sebsebseb: or, perhaps you anger someone who knows linux very well...that wouldnt be a smart idea either03:35
Powerking89670:p03:35
Pete__Yes, I wouldn't personally worry about something going for your vista partition, you could mount it read only?03:36
Powerking89670sebsebseb: the only thing I can advice is to be careful :p03:36
sebsebsebin the past I had my  Gutsy alpha something partition (which later removed, and re installed Feisty,  and yesterday upgrade to Gutsy RC)  and  before the reinsalling of course I had data to back up so on.03:36
sebsebseband this computer only has one CD drive,  so coudn't simpally put in a Live CD,  and burn stuff with K3B03:36
=== penguin42 [n=dg@tu006.demon.co.uk] has joined #ubuntu+1
sebsebsebso  I tryed out an  Ext2/3 driver in Vista,  that made it so I could  do anything I wanted with my  Ext3  Linux partition of the time03:36
sebsebsebincluding deleting system stuff.  and now basically I got the reverse here in Gutsy03:37
sebsebsebwith my NTFS partition03:37
sebsebsebsurely I can set up permission on the NTFS partition,  and so no I just want to read these folders?03:37
sebsebseband say03:37
sebsebsebno I Just want to read these folders03:37
Powerking89670sebsebseb: yes, you can mount the drive as read-only03:38
=== Ballena [n=ballena@h129n2fls311o1100.telia.com] has joined #ubuntu+1
=== daekdroom [n=marcos@189.27.8.141.adsl.gvt.net.br] has joined #ubuntu+1
=== Ballena [n=ballena@h129n2fls311o1100.telia.com] has left #ubuntu+1 ["Konversation]
daekdroomhow do i active compiz fusion?03:38
Powerking89670sebsebseb: someone else should help you with that mounting bussiness; it gives me a headache locally as it is :P03:38
sebsebsebnot sure how to do that,  but it does become a bit more convient now if I can write to say my documents and what not in Vista,  from Linux03:38
sebsebsebaltough I got a 40GB or so Fat32 for sharing files between both OS's03:39
=== Ximal [n=paducahg@c-68-63-251-132.hsd1.ky.comcast.net] has joined #ubuntu+1
jon9314i have gutsy rc1 installed and my /home partition is on a second hard drive. when finnal release comes out i wan't to clean install. will i be able to save my /home easily?03:40
sebsebsebif you got home in it's own partition03:40
sebsebsebyou can just upgrade RC103:40
sebsebsebyes  if you upgrade Gutsy it will upgrade to the final03:40
sebsebsebif you want to do a proper clean install you should be able to just delete the Gutsy partitions whilst keeping your home03:41
sebsebseband then re install and you got your home partition still there and working yes03:41
=== xotl [n=chatzill@82-36-240-85.cable.ubr04.camd.blueyonder.co.uk] has joined #ubuntu+1
jon9314anything specal during the install?03:41
=== patjoh [n=patjoh@c83-248-232-88.bredband.comhem.se] has left #ubuntu+1 ["Ex-Chat"]
sebsebsebwhy do you want to clean install?  why not just apply all updates03:42
sebsebsebthen you get the final03:42
sebsebsebthat's easier03:42
Powerking89670job9314: dont format the old /home partition, and use it as your new /home partition03:42
jon9314restricted drivers arn't working. not sure if it is somthing i did.03:42
Powerking89670its like you've got 4 partitions, /, boot, home, and swap03:42
Powerking89670you wipe /, boot, and swap, but dont wipe home03:43
penguin42has anyone seen 'kbuildsycoca: WARNING: Parse error in /home/dg/.config/menus/applications-merged/xdg-desktop-menu-dummy.menu, line 1, col 1: unexpected end of file' - it seems to be an empty file03:43
denndaHi there. Any idea why suspend2ram still doesn't always work? (screen is not turned on again) - Any ideas how to fix it?03:43
sebsebsebsuspend 2 ram?03:43
denndasebsebseb: yes03:43
sebsebsebsleep mode?03:43
jon9314so it wont be hard at all?  thanks03:43
denndasebsebseb: the correct term is suspend to ram, but yes. sleep03:43
denndaanything stops working except RAM03:43
Powerking89670dennda: I had that same problem back in fiesty, it may be a hardware issue, but i'm not certain03:44
sebsebsebsame here,  altough not tryed with03:44
sebsebsebupgrade to Gutsy RC03:44
sebsebsebaltough I think same thing will apply03:44
denndaPowerking89670: well, it worked in gutsy some updates ago. but now it always fails03:44
sebsebsebif I put in sleep mode03:44
Powerking89670jon9314: nope, thats the purpose of putting it onto the new partition :p03:44
sebsebsebit seems to do it all,  but then I carn't get it back on again working,  altough it works fine in Vista of course on this same computer03:44
denndathis is gutsy with latest updates03:44
Powerking89670dennda: same here, but I'm not gonna test mine atm....I dont want to reboot just yet :p03:44
jon9314great thanks03:45
=== jon9314 [n=jon9314@cpe-71-74-157-222.neo.res.rr.com] has left #ubuntu+1 ["Time]
sebsebsebdennda:  I guess there isan't a driver for yours and my computer hence why sleep dosan't work for us03:45
denndasebsebseb: as i said: it worked once in gutsy but does no more03:45
Powerking89670sebsebseb & dennda: I'm not sad about it not working...I hope to get new hardware soon anyway :D03:45
denndait worked perfectly well with tribe 5 + some updates. but then, after updating further it keeps failing03:45
sebsebsebit don't work for you also?03:45
sebsebsebpowerking03:46
=== Skiessi [n=qwe@dsl-roibrasgw1-ff90c100-219.dhcp.inet.fi] has joined #ubuntu+1
Powerking89670sebsebseb: I doubt it, I havent tested though03:46
sebsebseband this computer is from March or so, so resaonblly new hardware I guess, altough quite standard PC really03:46
sebsebseband sleep works fine in Vista on here03:46
sebsebsebdamn useful feature to03:46
Powerking89670sebsebseb: you dont want to know my specs...you just dont :p03:46
sebsebseb128MB RAM :d03:47
denndai will try it with fglrx, although i doubt it works03:47
Powerking89670512 :p03:47
sebsebseb1GB here of course since this comp came with Visduh shit Home Premium03:47
=== boteeka [n=boteeka@cl-86-125-152-187.cablelink.mures.rdsnet.ro] has joined #ubuntu+1
Powerking89670Just install XP over the Vista03:48
sebsebseb,but my old computer had 128MB or so yes03:48
sebsebsebVista is better than XP in certain ways,  but03:48
boteekaHello everyone03:48
sebsebsebI would rather use Ubuntu or some other Linux distro like that, over  Vista or XP any day :)03:48
Powerking89670sebsebseb: or do what I did, just install Gutsy...I dont have windows at all...except for that Virtual Machine :p03:48
boteekaHave you ever tinkered with pulseaudio?03:49
Powerking89670boteeka: Just ask your question, if anyone can answer it; they will :D03:49
=== unggnu [n=unggnu@unaffiliated/unggnu] has left #ubuntu+1 ["Ex-Chat"]
boteekaI have installed pulseaudio from the default gutsy repos, but sometimes randomly the sound is broken with it03:50
Pete__Problem all along was IPv6, working now!03:50
boteekathere is a problem with the playback speed03:50
boteekait plays too fast03:50
=== VousDeux [n=CroiX@24-236-210-3.dhcp.cdwr.mi.charter.com] has joined #ubuntu+1
Powerking89670sebsebseb: why are you CTCP'ing my Version and Ping :p03:50
boteekaI have an onboard nvidia soundstorm audio system with opensource intel drivers03:51
sebsebseb,because I love you why else ha ha :d03:51
Powerking89670:p03:51
=== grazie [n=grazie@88-110-179-34.dynamic.dsl.as9105.com] has joined #ubuntu+1
=== soul9 [i=none@unaffiliated/soul9] has joined #ubuntu+1
soul9hi!03:52
soul9isn't the new intel driver supposed to be able to give dinamically set up dual-screen?03:52
soul9because in the graphics settings I can't do a dual-monitor set-up03:53
soul9either it's the internal monitor, either it's the external crt, but not both?03:53
soul9s/?/.03:53
=== Kejk_PL [n=konrad@staticline23715.toya.net.pl] has joined #ubuntu+1
=== murlidhar [n=murlidha@59.93.113.139] has joined #ubuntu+1
murlidharhow can i enable my startup screen ??????? please tell me plus there is no shutdown screen too03:57
murlidhar:(03:57
soul9what's a startup screen?03:58
soul9you mean you have text scrolling when starting your machine and you want a picture?03:58
murlidharno i don't have that too03:58
soul9wtf?03:59
=== uga [n=uga@unaffiliated/uga] has joined #ubuntu+1
murlidharA graphical screen tthat tells me the position of the ubuntu loading03:59
soul9what do you have instead?04:00
murlidharsoul9: ^04:00
murlidharnothing04:00
soul9that's impossible04:00
murlidharjust a blank till the login screen comes04:00
soul9what graphics card do you have?04:01
murlidharwell the inbuilt one in intel 84504:01
=== pxwpxw [n=pxwun@ppp121-44-218-216.lns1.hba1.internode.on.net] has joined #ubuntu+1
=== joakim- [n=joakim@s5591c04b.adsl.wanadoo.nl] has joined #ubuntu+1
soul9that's strange04:01
soul9!paste04:01
ubotupastebin is a service to post large texts so you don't flood the channel. The Ubuntu pastebin is at http://paste.ubuntu-nl.org (make sure you give us the URL for your paste - see also the #ubuntu channel topic)04:01
murlidharwhat should i paste?04:01
soul9paste your /boot/grub/menu.lst file there please04:01
murlidhark04:02
=== buzztracker [n=buzztrac@pelikan.garga.net] has joined #ubuntu+1
=== bsund [n=bsund@m83-178-15-253.cust.tele2.se] has left #ubuntu+1 ["Leaving"]
=== daekdroom [n=marcos@189.27.9.38.adsl.gvt.net.br] has joined #ubuntu+1
=== pxwpxw [n=pxwun@ppp121-44-218-216.lns1.hba1.internode.on.net] has left #ubuntu+1 []
=== dzzsky [n=sky@5ac33488.bb.sky.com] has joined #ubuntu+1
murlidharsoul9: http://paste.ubuntu-nl.org/40626/04:03
=== ikonia [n=mattd@88-97-208-57.dsl.zen.co.uk] has joined #ubuntu+1
=== amr [n=amr@41.205.101.159] has joined #ubuntu+1
daekdroomhow do i active compiz fusion?04:04
amrhi, i am haviing problem with gusty , when i start gusty the 2 boxes where i type username and password , the fonts of user and password ar so big and when i log in the title bar of all windows are very big and i am having a fresh install and that problem in both live cd and fresh install any one knows how can i fix it04:04
amrand when i restart x the problem solved for windows only but not the user and password box04:05
penguin42amr: Which graphics card do you have and what res monitor?04:05
amrintel graphic media accelerator04:06
joakim-i have a problem with setting up two monitors in gutsy04:06
amr1280x80004:06
joakim-the settings i make in displayconfig-gtk doesnt seem to be saved04:06
joakim-works nice when i test it through there04:06
amrdidn't try to use 2 monitors04:06
soul9murlidhar, what resolution do you use?04:07
joakim-but its not saved04:07
murlidharsoul9: 1440X90004:07
=== dug_ [n=ubuntu-@c-98-202-28-57.hsd1.ut.comcast.net] has joined #ubuntu+1
soul9wow04:07
penguin42amr: OK go to the system menu then administration ->Screens and Graphics04:07
soul9same as me :-)04:07
murlidhar:004:07
murlidhar:)04:07
amrok done04:08
soul9murlidhar, so in that file, try changing every vga=773 to vga=79104:08
penguin42has the video problem with the Intel drivers been fixed? I dropped back to the i810 driver04:08
soul9then try it04:08
penguin42(video as in video playback)04:08
murlidharsoul9: in feisty it was fine04:08
murlidharsoul9: k04:08
soul9well, dunno04:08
soul9for me it was fine in feisty and it's fine in gutsy too :-/04:09
soul9actually I think it's a lot prettier in gutsy04:09
murlidharbrb04:10
soul9penguin42, nope, the intel drivers are still crap04:12
amrplease any one can help me to mute my laptop speakers when plugin my headphone04:12
soul9no dual-screen display04:12
soul9and video playback sucks too04:12
=== Lerris [n=Lerris@71-11-252-178.dhcp.stls.mo.charter.com] has joined #ubuntu+1
soul9how long will these drivers remain beta?04:13
=== dzzsky [n=sky@5ac33488.bb.sky.com] has left #ubuntu+1 ["Ex-Chat"]
=== dennda [n=dennda@ubuntu/member/dennda] has joined #ubuntu+1
=== Konam [n=Konam@115stb68.codetel.net.do] has joined #ubuntu+1
LerrisOut of curiosity does anyone have k3b burning dvds using a sata dvd recorder on an amd64 platform?  I'm having no luck, and its not the recorder since I got what I needed done with an old 32bit knoppix lusb thumbdrive.04:15
penguin42soul9: Oh well, I'll stick to the i810 drivers, they're pretty solid04:15
soul9yeah04:15
soul9penguin42, though dual-display sucks even more on that one04:15
penguin42soul9: With the Intel ones being the default we're going to have a hell of a lot of traffic on here in a week or so then!04:15
=== murlidhar [n=murlidha@59.93.113.139] has joined #ubuntu+1
murlidharsoul9: it gave me a message " undefined code . please change the number. " and then booted but nothing on the screen again04:17
soul9lol04:17
soul9murlidhar, hmm, strange04:17
soul9try vga=ask04:18
soul9it'll then give you options04:18
soul9iirc04:18
murlidharin the terminal?04:18
murlidharsoul9: ^04:19
soul9no04:20
=== andrea__ [n=andrea@host37-206-dynamic.9-87-r.retail.telecomitalia.it] has joined #ubuntu+1
murlidharwhere then?04:20
soul9in that /boot/grub/menu.lst file04:20
soul9change vga=whatever to vga=ask04:20
murlidhark04:20
soul9for the first kernel only, you don't need it for the rest04:20
soul9it's just to find out which one works04:20
soul9then just try them out, memorize their numbers and put the number of the one that worked in menu.lst04:21
murlidharbrb04:22
kingrayraysometimes when i am trying to define custom actions for a specific filetype in nautilus it says it cant add the applicatoin to the database04:24
kingrayraydoes the same thing when i try to make wine handle .exe files04:24
kingrayraylike, do i have to make a .desktop file in /usr/share/applications or something? its just a shell script i'm trying to use :/04:26
=== OSUKid7 [n=OSUKid7@acm.bw.edu] has joined #ubuntu+1
kingrayrayhttp://kingrayray.wallooza.org/Screenshot.png <- like that04:29
=== scipio [n=c@cpe-75-85-206-61.dc.res.rr.com] has joined #ubuntu+1
=== boteeka [n=boteeka@cl-86-125-152-187.cablelink.mures.rdsnet.ro] has left #ubuntu+1 []
=== murlidhar [n=murlidha@59.93.113.139] has joined #ubuntu+1
murlidharsoul9:  the codes that i have got is very much different04:32
=== Laser87 [n=joe@pD9EE0104.dip0.t-ipconnect.de] has joined #ubuntu+1
murlidharsoul9:  the codes are like 0f07 - 80X6004:33
Laser87Hi!04:33
soul9murlidhar, I think those codes work too, if you put them after vga04:34
Laser87I have probs with Gran Paradiso04:34
soul9I'm not really sure, though04:34
Laser87Anybody using it?04:34
soul9I'll look around04:34
soul9Laser87, is it working nice?04:34
soul9murlidhar, have you found any mode that works for you?04:34
murlidharno i there are many so tried few of them there04:35
soul9I don't know, do you have the usplash package installed?04:35
Laser87soul9: No, I have no files, edit... on the top. Only when I move mouse over it04:35
Laser87It's firefox3.0a804:36
soul9that might be a feature04:36
Laser87and no tabs are shown - never...04:36
=== paducahguy [n=paducahg@c-68-63-251-132.hsd1.ky.comcast.net] has joined #ubuntu+1
soul9that's strange04:37
Laser87soul9: That's why I asked, if anybody else uses Gran Paradiso and if  there is the same prob04:39
daekdroomHow do i active compiz-fusion?04:39
soul9you active compiz-fusion?04:40
gnomefreakdaekdroom: system>prefferences>apprearnce04:40
=== penguin42 thought he tried gran paradiso a few weeks ago; I thought it worked for me
paducahguyfreak .. i need your help.. lol04:40
daekdroomgnomefreak: it's not working04:40
boris_get open source driver (if u got ati card) and then u can start in in system>preferences>appearance>visualization04:40
paducahguyok04:40
paducahguyhmm04:40
daekdroomboris_: i'm using fgrlx and i still can't active it04:41
gnomefreakdaekdroom: what video card do you have? did you install drivers? can you give me an error? how did you install the drivers?04:41
=== paducahguy is now known as ximal
Laser87penguin42: yeah, it has been alright til last week - now it is alpha8 instead of alpha7  and these probs04:41
=== jake_ [n=jake@222.201.84.22] has joined #ubuntu+1
ximalfreak you there ?04:41
boris_daekdroom fglrx for ati doesnt work04:41
daekdroomgnomefreak: X1100 onboard, yes, "desktop effects can't be activated", synapitc04:41
daekdroomboris_: so what do i have to install?04:41
boris_wait a sec ill get u a link04:41
=== pierre__ [n=pierre@o207.orange.fastwebserver.de] has joined #ubuntu+1
boris_daekdroom https://help.ubuntu.com/community/RadeonDriver04:42
boris_i got compiz fusion workin on ati rv35004:42
=== pierre__ is now known as Pierre
boris_but i dont know how to get fusion workin with nvidia04:43
boris_this guide worked for me04:43
mc44daekdroom: you need to get xserver-xgl04:43
daekdroomboris_: it says 2D acceleration only: "200M Northbridge integrated", x1100 is x200 :/04:43
=== hetauma [n=hetauma@dsl-254-112.diodos-gsrt-gr.duth.gr] has joined #ubuntu+1
boris_sorry then04:44
ximali got irssi working ... but umm.. heh... i accidentally got it auto-joining ubtuntu also.. lol04:44
hetaumahow can I use in oOffice times new roman or other true type fotns?04:44
ximalhow do i remove some channels from auto join ?04:44
=== jake_ [n=jake@222.201.84.22] has joined #ubuntu+1
boris_daekdroom does fglrx driver work for 3D games ?04:44
=== saeed [n=saeed@c-67-184-45-4.hsd1.il.comcast.net] has joined #ubuntu+1
daekdroomno idea04:45
mc44hetauma: the msttcorefonts has fonts such as times new roman04:45
saeedhi, anyone knows how to setup compiz-fusion in kubuntu?04:46
saeedI have installed gutsy04:46
gnomefreakgutsy?04:46
saeedyes04:46
boris_saeed what graphic card ?04:46
gnomefreakinstall the packages install your video card driver using restricted-manager04:47
saeedintel 91504:47
hetaumamc44, ty04:47
boris_gnomefreak im not sure if propietary drivers work04:47
=== _dan_ [n=dan@unaffiliated/dan/x-128397] has joined #ubuntu+1
daekdroomboris_: yes they don't04:47
=== jake_ [n=jake@222.201.84.22] has joined #ubuntu+1
gnomefreakboris_: for the 915 either they are installed already or he uses the xserver-xorg-video-intel (name of package might be wrong)04:48
daekdroomgnomefreak: I'm using them, because the "Ati" one screws up brightness configuration xD04:48
saeedbut how do I start the darn thing?04:48
saeedI read there's compiz-icon04:48
boris_just a sec04:48
gnomefreaksaeed: no not yet and havent heard if or not04:48
saeedthat allows u to switch between kwin and compiz04:48
saeedLOL04:48
boris_Compiz Fusion Icon is a tray icon that provides quick access to CCSM, Emerald Theme Manager, and basic functions (eg. switching WMs or decorators). For debian sid users, it is included in shame's repo. To install from git, "sudo apt-get install git-core" then do the following: git clone git://anongit.opencompositing.org/users/crdlb/fusion-icon && cd fusion-icon && sudo make install04:48
saeedit's been out for a long time now04:48
gnomefreaksaeed: we have somthing already that does that from mouth of compiz devel04:49
saeedI had it running in Sabayon Linux04:49
daekdroomboris_: no 3d acceleration, no way to run it here.04:49
saeedhow do I get it please?04:49
boris_get what ?04:49
gnomefreaksaeed: read the instructions above04:49
=== murlidhar [n=murlidha@59.93.113.139] has joined #ubuntu+1
saeedthanks guys04:50
saeedat least I got some answers here04:50
gnomefreaksaeed: my suggestion is to set up compiz first04:50
saeedhow do I do that?04:50
gnomefreaksaeed: ask in right channel you will04:50
saeedI have no idea how to do it04:50
gnomefreaksaeed: install it04:50
gnomefreakinstall your drivers if not already04:51
saeedI installed everything related to compiz and compiz-fusion04:51
=== jake_ [n=jake@222.201.84.22] has joined #ubuntu+1
boris_daekdroom you should get a new card or something04:51
gnomefreaksaeed: on kde its different on gnome you would have it runing by default but you need to find in menu something for appearance and there should be somthing there04:52
boris_but i hear ati is going to release propietary drivers that work with compiz fusion04:52
murlidharsoul9:  i have a few doubts in the synaptic there are currently three kernels installed 2.6.22-14 ,   2.6.22-15   2.6.22-16 and in the menu i see only 2.6.22-1404:52
saeedI have nothing like that in kubuntu04:52
saeednothing that mentions desktop effects04:52
mc44boris_: they already work with it, but you need to use xgl. They are going to have aiglx drivers soon04:52
boris_mc44 well thats it04:53
gnomefreaksaeed: did you install the kdeconfigure package for compiz?04:53
saeedI guess the kubuntu developers don't care much about 3d effects04:53
mc44saeed: try asking in #kubuntu04:53
saeedI have been there04:53
boris_mc44 xgl is worse than aiglx, much worse04:53
gnomefreaksaeed: they are waiting for kwin04:53
=== lonran [n=Lone@80.174.15.68] has joined #ubuntu+1
gnomefreakmc44: no04:53
saeedthey know nothing about compiz04:53
Konamwhere can I change the shades on comments in compiz-fusion?04:53
soul9murlidhar, yeah, that sounds like no good04:53
KonamI think that options seems to be causing me problems: http://img107.imageshack.us/img107/3956/pantallazoml6.png04:53
saeedI have install ALL compiz-packages04:53
murlidharsoul9:  i also have starup-manager04:53
soul9murlidhar, you could try duplicating the lines of that kernel and changing -14 to -16..04:53
gnomefreaksaeed: ther eis a kde package for compiz make sure you have it than it will give you a menu item04:53
soul9murlidhar, what's that?04:54
saeedI have installed all of them04:54
saeedwhich one do u have in mind?04:54
murlidharsoul9: it is the graphical end to grub.menu04:54
gnomefreaksaeed: than there IS  a menu item you just have to find it04:54
soul9murlidhar, oh04:54
boris_saeed try searching 'compiz kde'04:54
=== muchmusic [n=muchmusi@c-69-181-21-69.hsd1.ca.comcast.net] has joined #ubuntu+1
soul9murlidhar, well, I don't now, I like editing textfiles, at least I see what's happening. I wouldn't let a graphical tool mess up my menu.lst..04:55
saeedhere's what I have in my menu relating to compiz : ccsm and emerlad04:55
boris_yo ppl04:55
gnomefreaksaeed: compiz-kde compizconfig-settings-manager libcompizconfig-backend-kconfig04:55
murlidharbut that's how i came to know that there are 3 kernels installed04:55
murlidharsoul9: ^04:55
boris_it seems beryl is gone in synaptic04:55
=== paducahguy [n=paducahg@c-68-63-251-132.hsd1.ky.comcast.net] has joined #ubuntu+1
boris_whys that ?04:56
mc44boris_: beryl doesn't exist any more04:56
gnomefreaksaeed: ccsm is nto a package in gutsy04:56
boris_emerald themes package is gone as well04:56
=== jake_ [n=jake@222.201.84.22] has joined #ubuntu+1
boris_mc44 but emerald does04:56
soul9murlidhar, whatever04:56
gnomefreakis not04:56
soul9murlidhar, look in /boot, in /04:56
soul9check if you have the same in menu.lst04:56
mc44boris_: compiz fusion is beryl/compiz04:56
boris_mc44 yes i know04:57
saeedI have ALL packages related to compiz installed04:57
saeedALL of them04:57
murlidharsoul9: it shows all three of them04:57
mc44boris_: then why ask where beryl is04:57
boris_mc44 but emerald themes are gone and emerald is included in fusion04:57
murlidharnow04:57
boris_well04:57
gnomefreaksaeed: you also have packages that are not in gutsy installedd that can be causing conflict04:57
soul9murlidhar, what does?04:57
=== paducahguy [n=paducahg@c-68-63-251-132.hsd1.ky.comcast.net] has joined #ubuntu+1
boris_mc44 they could keep it04:57
gnomefreaksaeed: and you cant have all of them installed anyway04:57
soul9well, this is too mch for me04:57
murlidharsoul9: all the three kernels04:57
saeedI have everything installed, the only ones missing are for development04:58
murlidharsoul9: should i go and uninstalled the old kernels04:58
gnomefreaksaeed: read the docs or uninstall them and reinstall them04:58
saeedand I am not a compiz developer04:58
soul9murlidhar, no04:58
murlidhark04:58
soul9murlidhar, uname -a should tell you what kernel you're running04:58
gnomefreaksaeed: pastebin the output of dpkg -L compiz*04:59
murlidharright now its 1404:59
murlidhari guess04:59
soul9so start 16?04:59
=== Ximal [n=paducahg@c-68-63-251-132.hsd1.ky.comcast.net] has joined #ubuntu+1
murlidharit's 1504:59
gnomefreaksorry its dpkg -l compiz*04:59
boris_i want windows to burn (in compiz fusion) when i minimize them, is it possible05:00
murlidharshall i first try 16 and the grub ? soul905:00
murlidharat*05:00
soul9well, try to boot the -16 kernel05:00
=== buzztracker [n=buzztrac@pelikan.garga.net] has joined #ubuntu+1
mc44boris_: use compizconfig-settings-manager05:00
=== ayobdk [n=ayobdk@hd5b90c5b.c45-01-02.dyn.perspektivbredband.net] has joined #ubuntu+1
murlidharbrb05:00
ayobdkhello05:00
soul9I'm not sure that'll help you, but it might05:00
saeedhttp://pastebin.ca/73642405:00
boris_mc44 do you think im stupid or what ? it doesnt work i tried it05:01
ayobdkany way to have an ati card diaplay a 1440x900 resolution_05:01
saeedhere's what I get when I run dpkg -l compiz*05:01
ayobdk?05:01
mc44boris_: you set minimize animation to burn?05:02
gnomefreaklibcompizconfig-backend-kconfig saeed install it05:02
saeedI have it installed05:02
saeedI checked in adept manager05:02
saeedit's there05:02
gnomefreakdpkg -l libcompizconfig-backend-kconfig05:03
gnomefreakwhat version is installed05:03
=== webulator70 [n=nikko@d39-185-7.home1.cgocable.net] has left #ubuntu+1 []
saeedhttp://pastebin.ca/73642605:04
saeedhere's what I get when I search for that package05:04
gnomefreaksaeed: there is a  menu entry (should be without that package anyway afaik) but you are saying its not there so either its a bug that needs to be filed or you are not looking hard enough did you try starting it from terminal?05:04
saeednope05:05
saeedhow do I start it from konsole?05:05
gnomefreakcompiz (not sure if you would use --replace-kwin or not) try compiz to run it05:05
gnomefreaksaeed: also assuming you are using kde 3.5.705:06
saeedyes05:07
gnomefreaksaeed: errors here will help if any05:07
gnomefreakbrb smoke05:07
=== Ximal [n=paducahg@c-68-63-251-132.hsd1.ky.comcast.net] has joined #ubuntu+1
Ximalguess what ! muhahaha.. I got my irssi configred finally..05:08
Ximallol05:08
=== tazz [n=gaurav@203.199.114.33] has joined #ubuntu+1
Ximalhey pricechild ! how ya been ?05:08
tazzi installed gutsy last night with netinstall but it is taking too long to boot now....05:09
tazzit took 50 min too boot in single user mode....05:09
=== hydrogen [n=hydrogen@c-75-68-33-130.hsd1.nh.comcast.net] has joined #ubuntu+1
tazzany one wanna help me debug?05:09
XimalWould someone be willing to take the time to answer a couple size and partition questions ?05:10
=== babbsagg [n=tom@ip-90-187-179-174.web.vodafone.de] has joined #ubuntu+1
KonamXimal just ask05:10
XimalI need to know when I rip/decrypt movies that I am being told I am out of harddrive space ?05:10
tazzXimal, is some on can answer they will, so ask :-)05:10
Ximalkonam thanks , but sometimes you guys are so busy helping others.. my trivial issues are not of a big concern.. just little tweaks..05:10
Ximalthanks konam and tazz ;)05:11
tazzXimal, you are sure you have enough disk space?05:11
Ximalyes.. lemme open gpart05:11
Konamyou're being told when you're running out of space05:11
tazzwhy do you need gpart?05:12
Ximalno.. just that I don't have enough space05:12
Ximali don't need it.. i installed it as a secondary tool.. to show me hard drive statistics ;)05:12
Ximalok .. why do i have /dev/sda2 and sda4 ... with 2 swaps ?05:12
KonamXimal if you don't have enough space and your home is in the same partition as root, you will be warned before you start the process05:13
Ximalare from different possible installs ? i don't get it..05:13
Ximali see two swaps.. i thought i needed only 105:13
=== MukiEX [n=muki@adsl-69-209-227-192.dsl.chcgil.ameritech.net] has joined #ubuntu+1
KonamXimal am I getting you wrong?05:13
=== darich [n=trickyki@78.149.125.60] has joined #ubuntu+1
Laser87Ximal: u get 2 swaps from different installations when running automatic installation05:13
Ximalhmm05:14
Ximalbut i always deleted old swaps.. etc05:14
Ximali only have 1 installation i thought..05:14
Laser87Ximal: when u choose: installation on biggest free space05:14
Ximalyeah05:15
XimalI did .. lol05:15
Ximalbut i chose the remaining free space..05:15
Ximaland I would delete the last partitions not related to windows..05:15
Laser87Ximal: then u still have the old installation and on the biggest free space a brand new installation, including a brand new swap05:15
Ximalhmm05:16
Ximalso ...05:16
Ximalshould i delete old partitions ?05:16
Ximali don't know what to do..05:16
Laser87Ximal: if u don't need em anymore... b shure to keep your /home :-)05:17
Ximalwell05:17
Laser87-h05:17
Ximali figured the one with the most USED space is the partition i should not bother/edit05:18
Ximallol05:18
Ximalso i'd delete the other one..05:18
Laser87Ximal: at least u can delete one swap05:18
Ximaland then ..05:18
Ximaljoin the free space with the larger one05:18
Laser87<- beer is empty b***s***05:19
=== RivaeAerya [n=robin@h8441230009.dsl.speedlinq.nl] has joined #ubuntu+1
RivaeAeryaHow do i make the updater stop asking me questions? I'm upgrading to Gutsy and it's stopping all the time just because it's overwriting some config files or i have to configure something..05:19
RivaeAeryaand, can i use my computer while it's upgrading?05:19
tazzRivaeAerya, sure you can use your comp05:20
RivaeAeryatazz: ok :)05:20
RivaeAeryatazz: and how do i stop that updater from asking me questions?05:20
tazzyou may have to reboot your comp once you are done upgrading though.05:21
tazzRivaeAerya, try the -F option.05:21
Ximali'm sorry if i didn't reply.. would someone mind telling me how to scroll up in irssi to see what i missed ?05:21
RivaeAeryatazz: it's already busy05:21
Ximalughh nm05:21
RivaeAeryatazz: i can't abort it05:21
tazzXimal, page up button.05:21
Ximalhaha.. so simple it's not funny05:21
Ximallol05:22
Ximalok05:22
Ximalgoing to do some surgery on my partitions.. wish me luck guys ;)05:22
tazzRivaeAerya, you can but i would not advice that. :-)05:22
=== tazz wishes Ximal luck.
RivaeAeryatazz: where would i use that -F option?05:22
sleepynateg'luck ximal05:22
Ximalwait..05:22
Ximaldo i just JOIN both of the swaps together ?05:22
tazzRivaeAerya, you would use the -f option in commandline.05:22
RivaeAeryatazz: on what program?05:23
=== Suissinho [i=Suissinh@10001318444.0000055783.acesso.oni.pt] has joined #ubuntu+1
Ximalwhat's the need of swap ?05:23
Ximaldoes larger swaps make a difference /.05:23
Ximal?05:23
Laser87Ximal: swap should be around twice of ram05:23
tazzRivaeAerya,  umm the commandline as in konsole i guess. but you are using gui arnt you?05:23
RivaeAeryatazz: yep05:23
LiMaOLaser87: that's not the recommended setting anymore, is it?05:23
tazzXimal, just keep the swap size below 1 gb05:24
=== finalbeta [n=viper@ip-83-134-149-100.dsl.scarlet.be] has joined #ubuntu+1
tazzRivaeAerya, then you will have to search for -F option.05:24
Laser87LiMaO: it's been always just a suggestion05:24
LiMaOLaser87: i should increase my swap size then =P05:25
RivaeAeryaLaser87: what happens if you increase swap size?05:25
=== MukiEX [n=muki@adsl-69-209-227-192.dsl.chcgil.ameritech.net] has left #ubuntu+1 []
RivaeAeryatazz: but it's already busty05:25
RivaeAeryabusy*05:25
Ximalhmm05:25
Ximalso 1 gig then on the swap05:25
Laser87Ximal: u can watch what swap is used and then make it smaller05:25
Ximalgive the rest to the main partition ?05:25
Ximalhow do I KNOW ? which one05:26
boris_mc44 yes but it didnt work05:26
=== murlidhar [n=murlidha@59.93.113.139] has joined #ubuntu+1
mc44boris_: then perhaps your card can't handle that animation05:26
Ximalim going to assume the one with the LOCK next to it ?05:26
Laser87RivaeAerya: here I just have 256 ram - I need swap - up to 80%05:26
murlidharsoul9: now it's working the splash is working05:26
murlidhar:)05:26
RivaeAeryaLaser87: i have 512MB RAM05:26
RivaeAeryaLaser87: what's the needed swap for me?05:26
hydrogenwow...05:27
hydrogenmirrors.kernel.org sucking toda05:27
Laser87RivaeAerya: suggestion is 1 GB05:27
=== schreder [n=pixl@c-1d97e255.175-1-64736c14.cust.bredbandsbolaget.se] has joined #ubuntu+1
=== hydrogen is getting a whole 490 BYTES/second
boris_mc44 my card can handle it for sure, about a month ago when i had feisty and beryl it worked05:27
boris_im not sure if month ago05:27
Ximalwell ? please sirs ?05:27
tazzhydrogen, i get that on my GPRS phone ;-)05:27
mc44boris_: well it works in compiz fusion here05:27
nanonymeheh05:28
nanonyme3g <305:28
=== sleepynate contemplates swapping in a 256mb radeon 9800 on his 733 p3
boris_mc44 what should i type for Window match?05:28
sleepynatevideo card would have as much ram as the rig ;D05:29
murlidharok i have only ubuntu and i can see the Three kernels in the grub menu list can i remove the the remaining one from synaptic????????05:29
mc44boris_: the default should be fine05:29
boris_well there is no default05:29
mc44boris_: press the little brush icon thingy05:29
Laser87murlidhar: I always keep the newest Kernel and the one before for security...05:30
boris_if i do everything is back to default and fire effect is gone, there is just Zoom05:30
murlidharLaser87: but i have there so do i remove the oldest one?05:30
mc44boris_: then just change zoom to burn05:30
murlidharLaser87: got three 3 kernels05:31
boris_mc44 now it wokrs05:31
boris_works05:31
=== Seveas [n=seveas@ubuntu/member/seveas] has joined #ubuntu+1
Laser87murlidhar: ya, u can remove the oldest Kernel05:32
sleepynatemurlidhar: if you really feel they've got to go... sudo rm /boot/vmlinuz-x.xx.xx or whatever it is05:32
murlidhar thanks guys05:33
Laser87murlidhar: should be possible in Synaptic too. the one with the smallest number :-)05:33
sleepynateoh yea05:33
sleepynatethat too :D05:33
murlidhar:)05:33
RivaeAeryamc44: may i use my computer while it's upgrading?05:33
murlidharright away05:34
tazzLaser87, right lick uninstall kernel in synaptic.05:34
boris_mc44 thanks for help05:34
Laser87murlidhar: and u r still here :-D05:34
mc44boris_: no problem05:34
murlidharRivaeAerya: since in upgrading it removes many services it is better if u don't use your comp05:34
RivaeAeryamurlidhar: hmm and this chat?05:35
RivaeAerya(konversation)05:35
murlidharLaser87: my home channel :)05:35
Laser87tazz: don#T know, I use the terminal, but I didn't know what way murlidhar prefers05:35
tazzapt-get remove from terminal05:36
RivaeAeryamurlidhar: can i still use konversation?05:36
RivaeAeryamurlidhar: and konqueror?05:36
tazzoh that was for murlidhar sorry ;-)05:36
murlidharLaser87: i prefer GUI05:36
Laser87murlidhar: Just wanted to say that u didn't crash your system :-D05:36
=== Pumpitup [n=martin@74.59.145.220] has joined #ubuntu+1
murlidharnaah i did uname -a Laser87 ;)05:37
Konamwhere can I change the shades on comments in compiz-fusion?05:37
=== mluser-home [n=mluser-h@ip68-0-70-23.tu.ok.cox.net] has joined #ubuntu+1
KonamI mean, turn off the shades on comments05:38
Ximalok guys05:39
Ximali deleted the inactive partition...05:39
Ximalnow it won't let me kill the partition that's swap05:39
Ximali have 205:39
Ximal1 is 869 one is 1.6 gigs..05:39
Ximalthe 1.6 doesn't have a lock next to it.. it's inactive.. but it's giving me a 5 code05:39
Ximalsomething about unmounting it05:40
Laser87Ximal: u just can delete (or move or increase) partitions that are not mounted05:40
=== geser [i=mb@ubuntu/member/geser] has joined #ubuntu+1
Ximalno... i'm asking .. is it mounting both upon boot ?05:41
Laser87so u 1st have to unmount it or (my way) use the gparted-live-cd05:41
Ximalhmm05:42
murlidharLaser87: i uninstalled the other kernels but is it better to reinstall the current kernel since with the old kernel uninstallation several packages like linux-genaric-image and some others were also removed05:43
Ximalok laser87  : i'm saying the one without the lock gives me the option to swap on ..05:43
XimalI don't know why..05:43
Ximalbut it won't let me delete it05:43
Ximaldo i go to terminal and do /unmount /dev/sda505:43
=== varka [n=varkatop@p54A57E0C.dip.t-dialin.net] has joined #ubuntu+1
=== markelhas [n=markelha@89.181.97.54] has joined #ubuntu+1
=== dave__ [n=dave@CPE-72-135-237-93.wi.res.rr.com] has joined #ubuntu+1
Ximalhow do i unmount the partiton ? unmount isn't working05:45
Ximaldo i change to it's directory first ?05:45
Laser87sry for the late replies - I have to go to work in a few minutes...05:45
murlidharfor resizing the partitions gparted-live-cd is the best option05:45
=== Frogzoo [n=Frogzoo@202.155.165.25] has joined #ubuntu+1
Ximali'm not resizing..05:45
=== logreeval [n=logan@c-24-5-153-186.hsd1.ca.comcast.net] has joined #ubuntu+1
Ximali'm using gparted05:46
Ximali'm deleting a swap..05:46
Laser87murlidhar: normally everything that is removed belongs to just this Kernel, so don't worry05:46
Ximalthen changing the active to 1gig05:46
Ximalthen goign to delete and merge freespace05:46
dave__I have Ubuntu 7.10 with Fluxbox 1.0 .   When I log in, I can't get that drop down menu to work.  I have used flux a while back, and I right click with the mouse and no menu comes up.  I tried different combinations with my 2 button mouse and no luck.05:46
Laser87Ximal: ya, unmount the swap u don't need, then delete it05:47
logreevalHello, I tried the Gutsy RC on the regular start/install, and when it tried to load the screen would "freeze" and then refocus and it just kept doing it, the only way to get it to work was in safe graphics mode...does anyone know what the problem is?05:47
vmlinuz-please I really do need a help. I bought a broadcast online streaming video that covers a tournoment in the united states of america, however they cover the tournoment via online video somehow, I log into the PAGE with my username it says05:48
vmlinuz-The ActiveX components did not initialize.05:48
vmlinuz-If you are running Internet Explorer on an MS Windows PC,05:48
vmlinuz-you can install the component manually by clicking here.05:48
vmlinuz-Then reload this page.05:48
Ximalhow do i unmount it please ?05:48
vmlinuz-sry for the paste. im really sorry05:48
LiMaOvmlinuz-: you probably need some plugin, probably a video player plugin05:48
Ximalvmlinuz do you have any java or flash installed ? are you using firefox ?05:48
vmlinuz-but yeah im using firefox here on ubuntu system, still can't view the streaming online video. can you help me05:48
gnomefreakumount is used to unmount something05:48
vmlinuz-i pay money for this event05:48
Laser87logreeval: try the alternate-cd to install - the desktop-cd I don't like and has bugs (I heard)05:48
Ximali got it limao ;)05:48
vmlinuz-Ximal: yep have both installed05:48
Ximalok05:48
mc44vmlinuz-: if you need activex you need to use IE05:49
vmlinuz-yea plugin probably but which05:49
Ximalwhat error is your browser giving you ?05:49
logreevalLaser87: ok, but may i ask why so many bugs on the regular one?05:49
Ximalcheck and see what plugin it is .. then tell us05:49
=== kRush [n=krush@f054221166.adsl.alicedsl.de] has joined #ubuntu+1
Ximalclick on the box at the top of firefox that pops up05:49
vmlinuz-I'm on linux mc44, isnt' there activex for firefox or anyway for me to view this video at all? I don't own a microsoft pc05:49
LiMaOXimal: i'll be here if needed =)05:49
Ximallike when firefox blocks the popups05:49
vmlinuz-ok i'll click the link and see the filename05:49
vmlinuz-one second thank you05:49
Ximali wanna try helping it..05:49
mc44vmlinuz-: no, activex is not on linux05:49
Ximalthis be the first time :)05:49
vmlinuz-Thats its name. InstallUniDownloadPack3.exe05:49
LiMaOXimal: sure, that makes me proud of you =)05:49
vmlinuz-thats the file needed to be installed for IE05:49
Ximalmc44 ....05:49
Ximalok05:49
vmlinuz-can it be covered for firefox?05:49
Ximalwhat's the maker's website..05:50
Ximali'll check for you05:50
vmlinuz-https://www.onthenetsports.com/viewer.asp05:50
vmlinuz-this05:50
Ximalit should give you info in the error line05:50
Ximal1 moment05:50
Ximallemme check it out bro05:50
Laser87logreeval: don't ask me - but I guess it's a great Live-CD but not really good for installation05:50
vmlinuz-thanks Ximal05:50
vmlinuz-i dont want to miss this event -.-05:50
Ximalok05:50
vmlinuz-i almost fly for it to the united states if not my work.. >_<05:51
Ximalit's not loading for me either... in the demo one.. i get a blank black screen.. gonna scan the page source for extension..05:51
Ximalit may be an on the fly wmv server video..05:51
logreevalLaser87: ok, im just trying out gutsy i got to excited ;)05:51
Ximalwhich means you'll exclusively need windows..05:51
Ximal1 moment05:51
vmlinuz-yea same blank/grey screen for me05:51
=== jake_ [n=jake@222.201.84.22] has left #ubuntu+1 ["Konversation]
mc44vmlinuz-: you could run windows in a virtual machine05:52
LiMaOi'm gonna check out gutsy rc1 once again in a few minutes05:52
=== [yodaa_bel] [n=chatzill@32.29-241-81.adsl-dyn.isp.belgacom.be] has joined #ubuntu+1
Ximalok05:52
Ximali'm seeing this file m8..canvidplayer43.dll in the source..05:52
Ximali'm going to scan the site see if i can't pull it off and read it.. see if it's actually some kind of link library to code an active server video.. 1 moment m805:53
=== thomas_ [n=thomas@217-148-245-121.happymany.net] has joined #ubuntu+1
vmlinuz-ok thanks i really appreciate it05:53
vmlinuz-can i run this boardcast via wine maybe? I have wine installed05:53
Ximalvmlinuz : contact the site admin ... when is the game ?05:54
thomas_ where in kubuntu can I modify the users shown at the loginmanager? I tried kcontrol > login manager but to no avail05:55
vmlinuz-the game is playing right now as we speak :<05:55
XimalIt looks like they're hiding their code ...05:55
Ximalhmmm05:55
Ximaldo you have windows installed at home anywhere ?05:55
Ximalhmmm05:55
vmlinuz-nop Ximal sadly no05:55
Ximal1 moment05:55
mc44vmlinuz-: http://www.tatanka.com.br/ies4linux/page/Main_Page05:55
Ximalgoing to try a trick..05:55
Ximalused to work ... try mc44's method right quick m8.. while i look05:55
Laser87wtf is a "windows"? sumthing to eat?05:56
Laser87:-D05:56
Ximalshh laser05:56
vmlinuz-ok tryin05:56
Ximallol05:56
Ximali'm trying to help the guy.. gimme some credit ;)05:56
Ximalheh05:56
Ximali'm going to try loading the url to the video of the demo.. if it works.. i'm sure he'll need a LIVE LOGIN and then to load the login's url to the video player05:56
Ximalit might work..05:56
Ximaldoubtful..05:57
bastid_raZorreferring him to windows is not going to help?05:57
Ximalkinda like proxying .. lol05:57
Ximalno.. but if he bought something..we don't want him hearing about it from his friends and ruin watching it05:57
Ximalright ?05:57
bastid_raZortrue.05:57
Ximalthis is respect to him as a user05:57
Ximalnot as a linux pro hacker zero c00l guy05:57
bastid_raZorrEspEct~!05:57
Ximalhe'll learn on his own.. like you guys helped me.. heh.. i bounce to windows when i have to.. but so far.. i've stuck it out..05:58
Ximalvmlinuz ... from now on m8.. ask site administrators if they support linux or have any specific restricted microsoft products.. such as live streaming video sometimes only streamed to microshaft users..05:58
vmlinuz-ok, now will send email too05:59
Ximalwhile you would have been able to watch it if they had chosen different security methods... unfortunately you may not be able to .. because they chose to only program in 1 language..05:59
vmlinuz-and trying IEs4linux now. its downloading on other terminal now05:59
Ximalhey05:59
Ximalhmmm..05:59
Ximalyou could try installing winamp for linux...05:59
bastid_raZortrying to watch somethign in a browser?05:59
Ximaland using winamp tv.. see if someone is live broadcasting the game ;)05:59
Laser87just a joke - i also still have winxp installed (but never booted it since ubuntu)05:59
sleepynatek fellas, wish my luck on the hardware update (i know... famous last words)05:59
vmlinuz-Ximal: is there winamp for linux? I will try that too now05:59
vmlinuz-sudo apt-get install winamp ?06:00
Ximalme either 87.. i'm actualy trying to crossover and save my windows partition about 6 or 8 gigs.. for dvd ripping linux can't do ;)06:00
Ximalhmm06:00
Ximallemme check06:00
_dan_vmlinuz- xmms or audiacious06:00
Laser87vmlinuz-: xmms06:00
=== buzztracker [n=buzztrac@pelikan.garga.net] has joined #ubuntu+1
Ximaloh no guys.. this winamp will crossover the files06:00
_dan_Ximal sure u can tip dvd with linux06:00
Ximalprovide proper streaming..06:00
Laser87Ximal: linux is much better for dvd ripping06:00
_dan_Ximal mencoder and multiple gui frontends for example "dvdrip"06:01
Ximali know06:01
Ximalbut i found a dvd it couldn't rip06:01
Ximal;)06:01
Ximali got a special updated edition of dvd decryptor..06:01
Ximalupdated the first of the year..  :)06:01
vmlinuz-Laser87: xmms can run broadcasts streaming videos online?06:01
Ximalplus he can WINE winamp06:02
Ximal:)06:02
bastid_raZorvmlinuz-: yeah i'm getting the same error line 57 for that site06:02
Laser87vmlinuz-: xmms is the linux version of winamp06:02
Ximalif he can get a tcp connect..06:02
Ximalthen he can view the video possibly through it...06:02
RivaeAeryaGuys, the upgrader keeps throwing dialogs at me that say something like "There's a config file, you can replace it, or keep it." what should i do?06:02
RivaeAeryareplace?06:02
RivaeAeryaor keep?06:02
Ximalxmms is a freesource version06:02
vmlinuz-bastid_raZor: so i cant see it now :(06:02
Laser87have to leave now - get me some beer and up to work :-(06:02
RivaeAeryareplace, or keep?06:03
bastid_raZorRivaeAerya: if you have a said files personally edited .. me i keep my files.06:03
murlidharwell i paired my sony ericsson phone to my pc . So how do i send files to my phone?????06:03
RivaeAeryabastid_raZor: i mean while upgrading06:03
=== me234 [n=administ@p57B3DAC3.dip.t-dialin.net] has joined #ubuntu+1
bastid_raZormurlidhar: get bluetooth software06:04
RivaeAeryabastid_raZor: and i already said "replace" to the others06:04
RivaeAeryabut i don't know if that's a good choice06:04
RivaeAeryathis one's ntp.conf06:04
Ximalhttp://librenix.com/?inode=1377 i found this when googling for it vmlinus06:04
murlidharbastid_raZor: gutsy has one by default06:04
bastid_raZorRivaeAerya: i know. i got the same questions. like my bashrc file. i want to keep 'my' files coz i have them tweaked myself. don't want new ones erasing my hard work06:04
RivaeAeryabastid_raZor: well i didn't tweak any of em06:04
bastid_raZormurlidhar: true, and i see that in my toolbar now that you say that06:04
bastid_raZorRivaeAerya: then it probably wouldn't hurt to let gutsy install new ones.. replace06:05
murlidharbastid_raZor: i can send files to my computer06:05
bastid_raZormurlidhar: let me look and see what i use.06:05
RivaeAeryabastid_raZor: why do i get those questions anyways?06:05
Ximalcan someone please tell me how to mount a target partition please ?06:05
vmlinuz-IE installation is finished now, how to run it tho >_<06:05
bastid_raZorRivaeAerya: i would guess for the reason many of those files are modded by users that don't want them overridden. so the choice is a good thing for those who want to keep old configurations06:06
Ximali mean unmont *06:06
=== Konam [n=Konam@115stb68.codetel.net.do] has joined #ubuntu+1
Ximalgo to your wine in applications at top left06:06
RivaeAeryabastid_raZor: isn't ubuntu able to detect that? last time i upgraded to the final release it didn't ask me such questions06:06
Ximalit will bring a windows like startup menu ;)06:06
murlidharbastid_raZor: for further options go to preferences>bluetooth06:07
RivaeAeryabastid_raZor: maybe it's because this one is an Release Candidate?06:07
bastid_raZorximal sudo umount /media/location06:07
vmlinuz-Ximal: yea but It doesn't have IE06:07
bastid_raZorRivaeAerya: possibly.06:07
=== bur[n] er [n=burner@unaffiliated/burner] has joined #ubuntu+1
thomas_hi, I get some users in the login sceen list that I rather would see hidden, where do I configure that (using kdm)06:07
Ximalsudo: unmount: command not found06:07
=== Sebastian [n=sb@p5088CABB.dip.t-dialin.net] has joined #ubuntu+1
thomas_Ximal: umount06:08
murlidharRivaeAerya: even i got the same ntp question and even i didn't tweak them don't worry overwrite it06:08
Ximalumount: /dev/sda5: not mounted06:08
=== fraco [n=fraco@212.71.9.100.adsl.dyn.edpnet.net] has joined #ubuntu+1
thomas_mount it first?06:08
RivaeAeryamurlidhar: ok but it prevents me from doing anything else because i have to stay with the update so that when it asks me a question it doesn't stop upgrading06:08
markelhashi ppl can i change my ubuntu disk partition to have one only for home?06:08
thomas_before unmounting06:08
Ximalahh .. need to mount to delete it ..06:08
Ximalhmm06:08
bastid_raZormurlidhar: now that i look i have a kde app that sends info to my phone06:09
=== joakim- [n=joakim@s5591c04b.adsl.wanadoo.nl] has joined #ubuntu+1
Ximalmount: can't find /dev/sda5 in /etc/fstab or /etc/mtab06:09
murlidharbastid_raZor: name it06:09
thomas_Ximal: then specify a mount point06:09
thomas_!mount | Ximal06:09
ubotuXimal: Partitioning programs: !GParted or QTParted (also "man mkfs" for formatting) - Mounting partitions in Gnome under Dapper: System -> Administration -> Disks - For Edgy, see !fstab and !DiskMounter06:09
bastid_raZormurlidhar: bluetooth OBEX object push client. that is the long name trying to find the apt-get for it06:09
markelhasmake something like partition magic does. Create a new partition them make it the default home partition06:09
joakim-ive got a problem with setting up dual monitors... the problem seems to be with gdm not being particularly fond of xinerama.. when i set up dual x servers in nvidia-settings without xinerama it works fine, but when i enable xinerama, gdm crashes06:10
joakim-same problem when ive set it up as i want it in displayconfig-gtk06:10
Ximalahh i can deal with it being there.. i have no errors as of this moment ;)06:10
Ximal1.6 gigs isn't such a big deal.. lol06:11
=== |neon| [n=neon@c-67-171-62-118.hsd1.wa.comcast.net] has joined #ubuntu+1
bastid_raZormurlidhar: i have to go.. look for it on packages.ubuntu.com .. they'll be able to give you the apt-get name for it for installation.06:11
vmlinuz-ok darn i missed it now, bye bye my 50$ >_<06:12
joakim-anyone have any idea how to solve that?06:12
murlidhark cya bastid_raZor06:13
Ximali GIVE UP lol06:13
Ximalto tired to care06:13
Ximalabout the partition that is..06:13
Ximali hope things work out for vmlinuz : m8 goodluck06:13
=== macogw [n=maco@161.253.8.116] has joined #ubuntu+1
soul9murlidhar, what did you do for it to work?06:14
=== lee__ [n=lee@c-71-59-177-24.hsd1.wa.comcast.net] has joined #ubuntu+1
murlidharoh i just added ro splash vga=77306:15
murlidharsoul9: ^06:15
murlidharinstead of splash vga=773 quiet06:15
lee__LiMaO thislinks is for you..http://www.mplayerhq.hu/homepage/design7/news.html it is where I finally wound up last night06:15
soul9murlidhar, quiet should be there :-/06:16
soul9strange06:16
lee__Ihope it helps06:16
soul9okay, well, that's that06:16
=== flavia [n=flavia@83.189.221.207] has joined #ubuntu+1
lee__Oh and yes it is still running everything fine no breaks yet06:16
flaviahi, tux racer extreme is not in the repos right? :)06:16
=== buntunu1 [n=davemcbo@c-24-126-85-71.hsd1.va.comcast.net] has joined #ubuntu+1
=== varka [n=varkatop@p54A542EB.dip.t-dialin.net] has joined #ubuntu+1
murlidharsoul9: well i dunno  i removed it and it works wonderfully06:17
murlidhar:)06:18
soul9ok, cool06:18
soul9:-)06:18
lee__eh how do I regest peeps?06:18
lee__eh hold that thuaght brb06:18
=== Lattyware [n=Latty@host81-154-243-214.range81-154.btcentralplus.com] has joined #ubuntu+1
vmlinuz-what other program you guys told me that i can watch broadcast with, was it winamp?06:20
=== maco_ [n=maco@161.253.8.116] has joined #ubuntu+1
=== VousDeux [n=CroiX@24-236-210-3.dhcp.cdwr.mi.charter.com] has joined #ubuntu+1
bur[n] ervmlinuz-: what broadcast?06:23
=== sleepynate [n=nate@71.238.69.3] has joined #ubuntu+1
vmlinuz-there is a match going in the US right now and i bought an online streaming video to watch it online LIVE. its here. https://www.onthenetsports.com/viewer.asp06:24
vmlinuz-the match is running as we speak, and i can't view it with firefox/ubuntu06:24
sleepynategrr. wouldn't even boot with the radeon 9800 :D06:24
=== sleepynate wonders if he fried that card years ago and forgot...
=== MasterShrek [n=MasterSh@71-87-42-252.dhcp.stcd.mn.charter.com] has joined #ubuntu+1
vmlinuz-running it from IE form linux right now and i get this error06:28
kritzstapfvmlinuz-, theres an asp error06:28
vmlinuz-error '80020009'06:28
vmlinuz-/viewer.asp, line 5706:28
vmlinuz-:(06:28
kritzstapfits a serverside error06:28
vmlinuz-kritzstapf: but in windows it run06:28
vmlinuz-my friends are watching it now06:28
kritzstapfmaybe asp wasnt bad when they started to watch06:28
vmlinuz-its a linux side problem, it just worked now for my friend.. In this sec i'm with him in the phone06:31
bur[n] ervmlinuz-: that's crap.. it doesn't work here06:32
vmlinuz-:(06:32
bur[n] eri'd bet it's not a "linux" problem but moreso a "firefox" problem06:32
vmlinuz-yep06:32
bur[n] erand moreso a "shitty coders who use asp" problem :)06:32
vmlinuz-I agree06:32
vmlinuz-first match is over now06:32
vmlinuz-of the event06:32
=== RivaeAerya [n=robin@h8441230009.dsl.speedlinq.nl] has joined #ubuntu+1
vmlinuz-and i missed it.. /sad06:33
murlidharvmlinuz-: which match?06:33
vmlinuz-I bought whole event tho. I hope i get it work soon.. I also emailed the billiard club network company about this06:33
RivaeAeryaGuys, it was upgrading, and then it asked me to remove packages, and then it crashed.... and now what do i do? my pc hasn't rebooted, hasn't removed those packages, and all that stuff06:33
vmlinuz-murlidhar: pool tournoment in united states. US open champion06:33
vmlinuz-9ball tournoment06:33
sleepynateanybody ever seen a "too many open files while copying /med...." error?06:33
murlidharoh ok i feel sorry that u missed the match06:34
RivaeAeryaGuys, it was upgrading, and then it asked me to remove packages, and then it crashed.... and now what do i do? my pc hasn't rebooted, hasn't removed those packages, and all that stuff06:34
murlidharRivaeAerya: that is what happens when u use ur applications while upgradation :(06:35
RivaeAeryamurlidhar: i closed all of em06:35
RivaeAeryamurlidhar: but kde was still running06:35
RivaeAeryaso how do i fix this?06:35
=== I-hate-xp [n=chatzill@218.90.181.15] has joined #ubuntu+1
murlidhar i dunno i am a noob06:36
RivaeAeryaanyone?06:36
=== profoX` [n=wesley@ubuntu/member/profox] has joined #ubuntu+1
RivaeAeryaGuys, it was upgrading to Kubuntu Gutsy, and then it asked me to remove packages, and then it crashed.... and now what do i do? my pc hasn't rebooted, hasn't removed those packages, and all that stuff06:36
=== RoboticTao [n=clearzen@c-67-172-249-29.hsd1.ut.comcast.net] has joined #ubuntu+1
bur[n] erRivaeAerya: first things first, get it to boot... try the recovery kernel?06:37
Hobbsee!repeat | RivaeAerya06:37
ubotuRivaeAerya: Don't feel ignored and repeat your question quickly; if nobody knows your answer, nobody will answer you. You can search https://help.ubuntu.com or http://wiki.ubuntu.com while you wait. Also see !patience06:37
HobbseeRivaeAerya: start the upgrade again, it should continue.06:37
RivaeAeryabur[n] er: i'm chatting right now on the pc that has been almost upgraded06:37
vmlinuz-# Internet Explorer 6.0+. Please note that our movies do not work in Mozilla, Safari and other browsers.06:37
vmlinuz-thats one of their rules06:37
vmlinuz- /sigh06:37
vmlinuz-# Latest .net framework installed06:38
vmlinuz-# Latest DirectX installed06:38
=== freelock [n=john@foraker.freelock.com] has joined #ubuntu+1
bur[n] ervmlinuz-: write an angry letter!06:38
bur[n] erRivaeAerya: what happens when you "sudo apt-get update && sudo apt-get dist-upgrade" ?06:38
vmlinuz-I did install internet explorer 6.0 tho. using wine and it gives me an error06:38
Ximalor install a virtual machine and run windows millenium on it ;)06:38
vmlinuz-virtual machine, Ximal will that take long?06:38
bur[n] erIE6 via wine doesn't do directX still06:38
Ximalwhen u run vmware/winMe then u can bootup the prog for those things06:38
bur[n] erer... s/directX/ActiveX06:39
Ximalyeah it sure will... u gotta run windows setup06:39
Ximallol06:39
RivaeAeryaPakketlijsten worden ingelezen... Klaar06:39
RivaeAeryaPakketlijsten worden ingelezen... Klaar06:39
RivaeAeryaBoom van vereisten wordt opgebouwd06:39
RivaeAeryaReading state information... Klaar06:39
RivaeAeryaOpwaardering wordt doorgerekend... Klaar06:39
RivaeAerya0 pakketten opgewaardeerd, 0 pakketten nieuw genstalleerd, 0 te verwijderen en 0 niet opgewaardeerd.06:39
RivaeAeryait says there's nothing to install, nothing to remove, and nothing to update06:39
Ximaldo sudo apt-get install update06:40
Ximalsee if it gives you updates then ;)06:40
RivaeAeryaXimal: yeah already did that06:40
Ximalouch06:40
Ximalwhat;s the issue i missed ? pls06:40
RivaeAeryaGuys, it was upgrading to Kubuntu Gutsy, and then it asked me to remove packages, and then it crashed.... and now what do i do? my pc hasn't rebooted, hasn't removed those packages, and all that stuff06:40
RivaeAerya(that)06:40
bur[n] ersudo apt-get autoremove06:40
Ximalok06:40
Ximalyeah.. next step is autoremove lol06:41
bur[n] erRivaeAerya: it doesn't sound like you have any problems06:41
Ximalwait.. it crashed..06:41
RivaeAeryaooh it has much to autoremove06:41
RivaeAeryashould i continue?06:41
Ximalare u cross installing bit platforms06:41
Ximalfrom 64 to 32 upgrade and vice versa ?06:41
RivaeAeryaXimal: no06:41
RivaeAeryaXimal: no06:41
Ximalhmm so ur matching cd's of 386 to 386 pentium .. etc06:41
RivaeAeryai'm upgrading via the GUI (adept)06:42
Ximalhmm06:42
HobbseeRivaeAerya: what did i tell you about repeating?06:42
Ximalcrashed as in ? went black. restarted ? killsignaled unexpectedly ?06:42
RivaeAeryaHobbsee: Ximal wanted to see what i said06:42
HobbseeRivaeAerya: no, dont autoremove everything.  install kubuntu-desktop, and go from there.06:43
RivaeAerya[18:40]  <Ximal> what;s the issue i missed ? pls06:43
RivaeAerya[18:40]  <-- RoboticTao heeft deze server verlaten. Client Quit.06:43
RivaeAerya[18:40]  <RivaeAerya> Guys, it was upgrading to Kubuntu Gutsy, and then it asked me to remove packages, and then it crashed.... and now what do i do? my pc hasn't rebooted, hasn't removed those packages, and all that stuff06:43
=== Evanlec [n=evan@c-75-67-237-157.hsd1.nh.comcast.net] has joined #ubuntu+1
RivaeAeryakubuntu-desktop is reeds de nieuwste versie.06:43
RivaeAeryaDe volgende pakketten werden automatisch genstalleerd en zijn niet langer nodig:06:43
Ximali don't understand dutche m8..06:43
RivaeAerya(kubuntu-desktop is at the newest version. The following packets are installed and no longer needed:)06:43
Ximalhmm06:44
RivaeAerya(and then a very long list of packets)06:44
Ximalare u using synaptics to install the packs ?06:44
RivaeAeryaXimal: i was using adept but then it crashed06:44
HobbseeRivaeAerya: depending on what they are, you're probably OK to remove them.06:44
HobbseeXimal: on kde?  very unlikely06:44
HobbseeXimal: besides, those are apt errors06:44
RivaeAeryaHobbsee: alright, let me explain exactly what happened06:44
Ximalim still learning too ;) i thought i'd try to understand..06:44
RivaeAeryait was installing all the upgrades, and then after a while when at 64%, it said it was done and said to me that it wanted to clean up unnecesary packages. So i clicked OK, then was when it crashed06:45
RivaeAeryait stayed on my screen for a while though06:45
Ximalriv : start again... and don't let it clean em ;)06:45
Ximalthen do it manually ?06:45
RivaeAeryaHobbsee: so how do i fix that?06:46
Hobbseeremove the empty packages, if they're OK to remove06:46
=== I-hate-xp [n=chatzill@218.90.181.15] has left #ubuntu+1 []
Hobbseeer, unneeded packages, not emtpy packages06:47
Evanlecsudo apt-get autoremove06:48
RivaeAeryawell there's things like python in it, and libquicktime0, and... let me pastebin it: http://pastebin.ubuntu-nl.org/40635/06:48
nemikdoes anyone with a t61 keep getting freezing when resuming from suspend?06:48
RivaeAeryais it okay to remove that?06:48
=== lee98632 [n=lee@c-71-59-177-24.hsd1.wa.comcast.net] has joined #ubuntu+1
lee98632ok meesa back06:49
lee98632eh how do i register?06:49
RivaeAeryaHobbsee: is it okay to remove this?: http://pastebin.ubuntu-nl.org/40635/06:49
lee98632hu?06:50
=== Fryguy-- [n=Fryguy@70.91.199.237] has joined #ubuntu+1
HobbseeRivaeAerya: looks fine06:50
RivaeAeryaHobbsee: k06:50
RivaeAeryaHobbsee: what do i do after that?06:50
lee98632eh any one here running KDE ?06:51
Hobbseereboot?06:51
RivaeAeryaHobbsee: (and why did it jump to 100% when it was at 64%?)06:51
Hobbsee!register | lee9863206:51
ubotulee98632: Information about registering your Freenode nick is at http://freenode.net/faq.shtml#contents-userregistration06:51
HobbseeRivaeAerya: because it had finished?  i dont know06:51
RivaeAeryaHobbsee: ok06:51
lee98632register lee9863206:52
lee98632ok06:52
=== atlfalcons866 [n=jack@c-24-218-246-100.hsd1.ma.comcast.net] has joined #ubuntu+1
atlfalcons866how do i remove ubuntu06:53
atlfalcons866#kubuntu06:53
=== n0cturnal|gutsy [n=jose@wbs-41-208-193-47.wbs.co.za] has joined #ubuntu+1
lee98632eh do i include the  <your-password> or just key in? my pw?06:54
Hobbseelee98632: the latter06:54
=== Martinp23 [i=martinp2@wikimedia/Martinp23] has joined #ubuntu+1
lee98632ok06:55
=== vega- [n=mikko@lotus.puolikuu.net] has joined #ubuntu+1
=== joakim- [n=joakim@s5591c04b.adsl.wanadoo.nl] has joined #ubuntu+1
=== Stopa9 [n=stopa@ppp-77-234-227-174.dsidata.sk] has joined #ubuntu+1
lee98632oh cool that fixed that lol06:56
=== Lerris1 [n=Lerris@71-11-252-178.dhcp.stls.mo.charter.com] has joined #ubuntu+1
Stopa9hi there, how can i connect to internet in kubuntu gutsy RC without using knetworkmanager (its not working right now), IP is supposed to be set on automatic (wired connection)06:56
lee98632is LiMaO here  os it just his name lol06:57
=== RivaeAerya [n=robin@h8441230009.dsl.speedlinq.nl] has joined #ubuntu+1
Lerris1fyi: minor bug.  It seems disabling gdm in services actually kills gdm right then, which destroys X.06:57
LiMaOlee98632: i'm here, wassup06:57
RivaeAeryaUpgrade succeeded! How do i set all the kde theme settings to the kubuntu default? (like icons, colorscheme, widget style..)06:58
lee98632heehee i finally figured the restration thing out06:58
=== finalbeta [n=viper@ip-83-134-128-147.dsl.scarlet.be] has joined #ubuntu+1
RivaeAeryaanyone?06:59
RivaeAeryaHobbsee?06:59
=== Hobbsee is going to be.d
RivaeAeryaokay, bye Hobbsee07:00
=== Hobbsee has uploaded kubuntu-docs, so now can.
=== buzztracker [n=buzztrac@pelikan.garga.net] has joined #ubuntu+1
=== Centaur5 [n=fishman@209-33-197-88.dsl.infowest.net] has joined #ubuntu+1
=== maco__ [n=maco@161.253.8.116] has joined #ubuntu+1
=== n0cturnal|gutsy [n=jose@wbs-41-208-193-47.wbs.co.za] has joined #ubuntu+1
=== exalarge [n=exalarge@dslb-084-062-095-112.pools.arcor-ip.net] has joined #ubuntu+1
bur[n] ercan anyone help me set the gdm resolution?  My KDM is fine, but gdm insists on using 4:3, but when I login to gnome, it gets back to 1440x900.07:02
Lerris1my personal opinion is graphical logins are more trouble than they are worth..  using it without one only requires "startx"07:03
vmlinuz-linux need some love from companies and producters07:04
=== kekZpriester [n=luc@DSL01.212.114.233.162.ip-pool.NEFkom.net] has joined #ubuntu+1
vmlinuz-or maybe linux people need to create a directX for linux >_<07:04
=== Pici [n=Pici@unaffiliated/pici] has joined #ubuntu+1
Hobbseevmlinuz-: what, opengl?07:05
Lerris1I tend to assume directX is hugely patent encumbered.07:05
Lerris1so even if you had the entire api, and could do it, it would be illegal07:05
vmlinuz-Hobbsee: didn't work for me. Can't view the broadcast i bought still. and im so upset tbh07:05
hyljewine has most of directx done07:05
Lerris1interesting07:06
Lerris1without using windows files/license?07:06
hyljeyes07:06
=== joakim- [n=joakim@s5591c04b.adsl.wanadoo.nl] has joined #ubuntu+1
=== motoplux [n=motoplux@unaffiliated/motoplux] has joined #ubuntu+1
_dan_tracker is using 50% cpu time all the time07:08
=== n0cturnal|gutsy [n=jose@wbs-41-208-193-47.wbs.co.za] has left #ubuntu+1 ["M$]
_dan_is that normal?07:08
Lerris150% cpu almost sounds like one thread flat out on a 2 core system07:09
_dan_true07:09
_dan_what good is tracker for anyway?07:09
_dan_which apps use its db?07:09
Lerris1no idea, i had half assumed you were running a bit torrent tracker07:10
_dan_no07:10
_dan_its tracker which runs in background07:10
Lerris1it looks like it is scanning files to provide metadata for searching07:11
Lerris1i suspect you could kill it without bringing down anything07:11
=== Lattyware [n=Latty@host81-157-56-54.range81-157.btcentralplus.com] has joined #ubuntu+1
Lerris1Out of curiosity does anyone have Sata DVD burning running, particularly with amd64 and nforce4?07:12
_dan_yes, i amk just wondering what iit is good for, which apps use it07:13
_dan_Lerris1 i got sata dvdburner, no amd64 nor nforce07:13
Lerris1http://linux.die.net/man/1/trackerd  (found via google)07:13
Lerris1hmm..07:13
Evanlec!info tracker07:13
ubotutracker: metadata database, indexer and search tool. In component main, is optional. Version 0.6.3-0ubuntu2 (gutsy), package size 270 kB, installed size 1640 kB07:13
Evanlectrackerd is an indexing service07:13
Evanlecallows u to use that quick-search thingie on the top panel i believe07:14
Evanlecvista has a similar thing07:14
awalton__it also ties into gtk+'s file save/load dialogs07:14
awalton__it's beagle rewritten in C, or Spotlight for GNOME07:14
awalton__(basically)07:14
Lerris1similar to locates database scanning thing which bugged me enough to remove it07:15
Lerris1the important bit is probably to make it work when your not using your pc07:15
Evanlecyea07:15
Evanlecthats how it should work by default07:15
_dan_!info visual07:15
ubotuPackage visual does not exist in gutsy07:15
=== Konam [n=Konam@115stb68.codetel.net.do] has joined #ubuntu+1
Lerris1i'm betting it is my sata drivers.. since just trying to read a disk i burned with knoppix crashed the system07:16
Evanlecbut i find that windows vista is indexing my drive constantly and its extremely annoying07:16
Lerris1or some linked part like scsi, etc07:16
_dan_!info gnome-at-visual07:16
ubotuPackage gnome-at-visual does not exist in gutsy07:16
_dan_gnome-at-visual<-- wonder what that is good for07:17
_dan_gutsy autoruns it07:17
Lerris1i tried a 2.6.23 kernal i made using my previous gentoo .config, and it failed to, so maybe I'll try the same kernel version I last ran on gentoo.07:17
RivaeAeryaWhat are the default icons, colorscheme, and other artwork for Kubuntu Gutsy?07:17
Konam_dan_ I have the same question07:17
awalton___dan_: it's part of gnome's assistive technologies (ATs)07:18
_dan_can u be a bit mre specific, what does it do, why do i need it?07:19
awalton__magnifier, dasher, on-screen keyboard07:19
awalton__you can disable it safely if you're not in need of assistive tech07:19
_dan_oki thx07:20
_dan_does the nautilus use tracker database?07:20
=== usser [n=dcherniv@ool-18b8e9e6.dyn.optonline.net] has joined #ubuntu+1
awalton__yes it does07:21
awalton__it uses it for search, but that's it07:21
=== Frogzoo_ [n=Frogzoo@202.155.165.25] has joined #ubuntu+1
awalton__it's not pervasively hooked to tracker07:21
=== jamesrdorn [n=james@adsl-76-222-31-72.dsl.rcsntx.sbcglobal.net] has joined #ubuntu+1
davidwdoes this tracker thing replace 'locate' ?07:21
awalton__yes07:21
awalton__only it's better than locate, because it lets you search within files metadata07:21
Lerris1I tend to use "find * | grep keyword" | less" or such to find files07:22
Evanlechow do i call it from the command line?07:22
jamesrdornUsing 7.10 pre-release... I seem to be having troubles with xorg.conf. Seems when I create it or edit it, Xwindows fails to start, and the failsafe screen opens and will create a xorg.conf.failsafe, however the only way to get X windows to start again is to delete xorg.conf*. What's strange is if I use the screen resolution preferences, it never writes to xorg.conf Does ubuntu use an alt config file to control xwindows prefs07:22
awalton__for example, you can search for MP3s with ID3 tags in tracker.07:22
Lerris1if you start in the right base directory it isn't too bad07:22
_dan_locate is still run daily07:22
HobbseeLerris1: um...ew?07:22
_dan_so u gt both07:22
Evanlecrunning locate from cli will use the tracker db?07:22
HobbseeLerris1: what happened to grep foo * ?07:22
awalton__no07:22
awalton__locate uses its own database07:22
_dan_Evanlec i doubt it07:22
Hobbseethen less that?07:22
Lerris1that recurses07:23
Lerris1and just scans filenames07:23
Evanlecright07:23
Hobbseeit only recurses if you tell it to07:23
Lerris1find automatically recurses07:23
Evanlecso im asking how to call this new search function from command line07:23
HobbseeLerris1: oh, you're only looking for it to do the filenames.07:23
awalton__tracker-search07:23
HobbseeLerris1: grep has a -R option, for recursive.07:23
Lerris1true07:23
Lerris1different purpose though07:23
Hobbseedidnt realise it was file names only07:24
Evanlecwhat doe recursive mean exactly?07:24
awalton__it descends directories07:24
Evanlecawalton__, thx07:24
Lerris1technically that is probably a better term descends07:24
Evanlecoh, does locate do that by default?07:24
Lerris1locate uses a database07:24
Lerris1find does it manually07:24
Evanleci c07:24
jamesrdornAnyone know what file controls xwindows config in ubuntu 7.10?07:24
=== billytwowilly [n=chris@S01060016b649355d.ed.shawcable.net] has left #ubuntu+1 ["Konversation]
Evanlechow often does locate update its db by default?07:25
Lerris1"   /etc/X11/xorg.conf  "07:25
penguin42Evanlec: Every night I think07:26
jamesrdornLerris1: that's what I thought, but my system will boot fine without it07:26
awalton__Evanlec, I honestly have no idea, but I'd assume there's a cron-job set somewhere that does it daily07:26
Lerris1i'd assume X is automagically picking defaults07:26
jamesrdornLerris1: if I use nvidia-xconfig, windows failes to start07:26
Lerris1unless ubuntu is doing something odd.  i'm new to it07:26
jamesrdornLerris1: if I use the screen resolution pref, it never writes to xorg.conf07:26
teskonew to it and you're using gutsy?07:26
jamesrdornman this is buggin me07:27
Lerris1well, perhaps that was unwise, but ah well07:27
=== borovy3488 [n=chatzill@216.84.49.162] has joined #ubuntu+1
Lerris1i'm not new to linux though.. been using gentoo for years07:27
Evanlecyea, i'd imagine07:27
teskooh ok07:27
=== rothchild [n=rothchil@cpc5-cmbg1-0-0-cust236.cmbg.cable.ntl.com] has joined #ubuntu+1
borovy3488can anyone help with broken sound??07:27
teskowhat made you switch to ubuntu?07:27
Evanlecjamesrdorn, run it as root07:28
=== WindowSmasher [n=cory@cpe-75-83-119-37.socal.res.rr.com] has joined #ubuntu+1
Lerris1to be honest i haven't entirely commited to not switching back07:28
jamesrdornEvanlec: you have to, there is no way to write to it without at least using sudo07:28
Lerris1but the irritation with gentoo is the compile times when your in a hurry07:28
teskoborovy3488, got alsa running?07:28
WindowSmasherHi all.  I'm having trouble with my brightness keys on my keyboard07:28
Evanlecjamesrdorn, yea, i know i had the same issue07:28
Lerris1now that i've figured out how to manually do some things in ubuntu it will probably be fine07:28
WindowSmasherAny suggestions?07:28
borovy3488tesko: whats alsa?  My sound was working great until I deleted my old account and made a new one.07:28
Evanlec!alsa07:29
ubotuIf you're having problems with sound, first ensure ALSA is selected, by double clicking on the volume control, then File -> Change Device (ALSA Mixer). If that fails, see https://help.ubuntu.com/community/Sound - https://help.ubuntu.com/community/SoundTroubleshooting - http://alsa.opensrc.org/index.php?page=DmixPlugin - For playing audio files, see !Players and !MP307:29
penguin42Lerris1: Rebuilding .deb's if you want to do something special is actually quite easy on Ubuntu, so if you do want something special you can do07:29
borovy3488tesko: and also, I can't even get to the users and groups or hardly anything in the admin tab07:29
Lerris1ya, i just have to resist the temptation to switch back for awhile when i hit stuff i know i could fix on gentoo07:29
Lerris1(while i learn a few things)07:29
jamesrdornwhat's strange is the screen res prefs do not write to xorg.conf, but if I go into the restricted drivers database and unselect or select my nvidia card, it gives me an error about xorg not being valid07:29
WindowSmasherScreen brightness buttons on the keyboard... anyone?07:29
teskoborovy3488, that one's over my head sorry07:30
borovy3488tesko: I can't even double click on it, it says no volume control GStreamer plugins07:30
jamesrdornWindowSmasher: what laptop do you have?07:30
WindowSmasherDell 6400/E150507:30
=== |nero| [n=nero@c185211.adsl.hansenet.de] has joined #ubuntu+1
|nero|hey07:30
Lerris1one nitpick i do have on gusty though is it should have more nvidia drivers to select from07:30
mc44Lerris1: more?07:31
Lerris1since not all nvidia binaries work07:31
|nero|can anyone tell how i can install gutsyRC1 over my feisty edition07:31
Lerris1well stably07:31
WindowSmasherI got lucky, my nvidia drivers work great07:31
WindowSmasherI thought they had a motherload to cchoose from now07:31
teskoborovy3488, i dont know then07:31
borovy3488can anyone help me?? I am freaking out, this is my only user and I can't do anything with them07:32
tesko|nero|, switch your apt-get sources to gutsy07:32
Evanlec|nero|, i just did it by resizing my feisty partition in the installer, that way i still have all my data, but i have a "clean" install07:32
jamesrdornWell the Nvidia drivers worked great here until I installed a new kernel07:32
|nero|and then it will install everything i need?07:32
weltallthe brightness button of my laptop are recognised automatically by ubuntu and they are set to a gnome function which manages brigthness. but as those keys are managed also in hw gnome and the computer itself are like "conflicting" there is a way to disable the hw functionality trough the linux kernel and leave only the gnome management which is better? (there is nothing in the bios)07:32
|nero|just do apt-get update?07:32
teskoit should.. am i right guys?07:32
mc44jamesrdorn: you used the drivers directly from nvidias site?07:32
Evanlecyea he can do a dist-upgrade07:32
Lerris1gentoo has 1.0.7185 .. 9639, 14 09, 14.11, 14.19 (on this older portage snapshot)07:32
=== Nicke [n=niclasa@ua-83-227-140-135.cust.bredbandsbolaget.se] has joined #ubuntu+1
=== bsheep [n=bsheep@ANantes-252-1-114-177.w81-53.abo.wanadoo.fr] has joined #ubuntu+1
|nero|with apt-get update?07:33
|nero|and before that apt-getr upgrade07:33
jamesrdornmc44: after the new kernel jacked the built in restricted drivers07:33
=== DoubleOSven [n=DoubleOS@pool-71-184-250-107.bstnma.fios.verizon.net] has joined #ubuntu+1
Evanlec|nero|, i think u do need to change your repositories to gutsy tho...not sure as i havent tried the upgrade method07:33
Evanlecwhile we're on topic of nvidia driver, how new is the one in restricted drivers (gutsy) ?07:34
jamesrdornnero, per ubuntu's site "sudo update-manager -d"07:34
teskoborovy3488, try running alsa as root, you can do this from console, or getting an alsa gui07:34
jamesrdornthen click on install for new distrobution07:34
=== DoubleOSven [n=DoubleOS@pool-71-184-250-107.bstnma.fios.verizon.net] has left #ubuntu+1 []
Lerris1100.14.1907:34
borovy3488ok07:34
EvanlecLerris1, is that the newest one?07:35
Lerris1i think so07:35
Evanlecsounds like it07:35
jamesrdornmaybe if I just reinstall the restricted nvidia driver, things will be peachy07:35
teskohave you read the manual page for alsa borovy3488 ?07:35
Lerris1it is not 100% stable on my system, but not too bad either07:35
|nero|ahh nice thx07:35
borovy3488i'm on it right now tesko07:35
teskoi've only had one problem on my gutsy install, pidgin froze on me. no big deal though07:36
Lerris1i may go back to a kernel i can get 1.0-8776 to run.  that was rock solid07:36
|nero|jamesdorn: does it change therepositories automatically?07:36
jamesrdornnero, yes it does07:36
|nero|kelw07:36
EvanlecLerris1, you're using a vanilla custom kernel?07:36
|nero|wow 980 packages have to be updated07:37
=== seanh [n=seanh@78.32.147.50] has joined #ubuntu+1
jamesrdornnero, it's going to take you a few hours07:37
Lerris1well i tried 2.6.23 to solve the sata burning issue, but it didn't07:37
Evanlec|nero|, about 600mb on average...07:37
=== nanuk [n=nanuk@port-87-234-145-7.dynamic.qsc.de] has joined #ubuntu+1
|nero|i have seen it07:37
teskoyep nero, thems the breaks, lets hope this way works07:37
Lerris1atm i'm running the ubuntu one, for lack of a reason not to07:37
|nero|dl with 600k07:37
Evanlecnot likely to get full speed right now, gutsy repos getting hammered07:38
nanuksomeone who knows how to fix the fbconsole bug07:38
teskoi tried updating to gutsy manually a week or two ago and it messed my system up07:38
EvanlecLerris1, same here07:38
seanhAny way to stop gutsy from dimming my laptop screen after a few second inactivity? I've turned it off in the Power Management prefs but it still does it. It seems to be compiz (doesn't happen with metacity) but I don't find any compiz option for it, even in the advanced compiz settings. Thanks07:38
|nero|i will chang my sstem to gutsy after the finale is released sp i can test it now07:38
Lerris1it looks like i was using 2.6.20.6 in gentoo last07:38
Lerris1(yea for backing up your previous installation ;)07:38
=== LinAsH [n=j@208.18.68-86.rev.gaoland.net] has joined #ubuntu+1
jamesrdornseanh: check your laptops bios for power management settings07:39
WindowSmasherIf anyone comes up with anything, while I'm still searching, as to why my brightness keys don't work, please pm me07:40
=== RivaeAerya [n=robin@h8441230009.dsl.speedlinq.nl] has joined #ubuntu+1
jamesrdorndangit, I am going to figure this out, I swear07:40
=== jamesrdorn [n=james@adsl-76-222-31-72.dsl.rcsntx.sbcglobal.net] has left #ubuntu+1 []
RivaeAeryaHow do i set the KDE artwork back to normal (the Kubuntu defaults) without deleting all my settings that i still need?07:41
=== BlueParrot [n=jonatan@compsoc.sunion.warwick.ac.uk] has joined #ubuntu+1
BlueParrothi all, I'm trying to use xfce and the gnumeric help option gives me an error saying ghelp:gnumeric is an invalid URL, but I can find the manual if I do a search in gnome-help, do I miss a package or something ?07:44
=== bratsche_ [n=cody@adsl-68-94-49-112.dsl.rcsntx.swbell.net] has joined #ubuntu+1
=== Tigge [n=tigge@bacchus.olf.sgsnet.se] has joined #ubuntu+1
=== nickrud [n=nickrud_@pdpc/supporter/sustaining/nickrud] has joined #ubuntu+1
=== Colro [n=tim@74-135-73-232.dhcp.insightbb.com] has joined #ubuntu+1
seanhjamesrdorn -- I'll take a look next time I boot. I don't think that's it though, cause the dimming only happens when compiz is on, and didn't happen at all in feisty07:48
Evanlecwhats the apt-get cmd to get the compiz-fusion settings manager thing?07:49
=== Lerris1 waves.
=== Lerris1 [n=Lerris@71-11-252-178.dhcp.stls.mo.charter.com] has left #ubuntu+1 []
=== Ominous [n=Ominous@84-51-151-23.jamesk522.adsl.metronet.co.uk] has joined #ubuntu+1
Ominousis there a guide on xgl and gusty?07:50
vbgunzhow do I learn about the compiz effects available to me in gutsy?07:51
=== MarcN [n=MarcN@dslv-3-227.mv.com] has joined #ubuntu+1
vbgunzI really like the scale plugin and with all effects enabled, I do not know how to access it. is there something I can read about the effects in gutsy?07:51
bur[n] ervbgunz: run ccsm07:52
MarcNon Gutsy, I'm starting f-spot and seeing messages "Starting new FSpot server\nCan't get a connection to the dbus. Trying again..." over and over and no window starting up.  Ideas?07:53
MarcNf-spot has been working fine until recently.07:53
Ominousis there a guide on how to install xgl on gusty?07:53
=== BHSPitLappy [n=steve-o@unaffiliated/bhspitmonkey] has joined #ubuntu+1
bur[n] ervbgunz: if you don't have it... apt-get install compizconfig-settings-manager07:54
=== bur[n] er wishes f-spot would get filesystem monitoring support...
vbgunzbur[n] er: thank you, I don't have it, i will try and get it07:55
=== mikl [n=mikl@pdpc/supporter/active/mikl] has joined #ubuntu+1
vbgunzbur[n] er: ok downloading.... curious, why does this thing not ship by default?07:57
=== borovy3488 [n=chatzill@216.84.49.162] has joined #ubuntu+1
borovy3488OK, so I think that my only user is not an admin user07:57
borovy3488how do I fix this??07:57
bur[n] ervbgunz: got me... simplicity's sake?  i dunno... i'm not a release manager of any sorts, just a user like you07:58
=== bur[n] er isn't too worried as it's easily aptable
nanukhttps://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/12991007:58
ubotuLaunchpad bug 129910 in initramfs-tools "tty[1-6]  are active but display nothing in Gutsy" [Critical,Triaged] 07:58
nanukwill you get this fixed07:58
=== cdm10 [n=caleb@unaffiliated/cdm10] has joined #ubuntu+1
=== cdm10 [n=caleb@unaffiliated/cdm10] has left #ubuntu+1 ["Leaving."]
vbgunzbur[n] er: I don't think the app is what I am after... what I mean is, how do I figure out the shortcuts, keys to press, where to mouse click, to actually work in some effect? I don't see a manual and though I have effects for some simple everyday things, they're not enhancing my experience like i believe they should... how do I use it, thats my question?08:00
=== SDugas [n=rachel@ip68-229-140-170.lf.br.cox.net] has joined #ubuntu+1
=== buzztracker [n=buzztrac@pelikan.garga.net] has joined #ubuntu+1
borovy3488does anyone know how to create a new account that is admin, if there is no admin user?08:00
=== Fryguy-- [n=Fryguy@70.91.199.237] has left #ubuntu+1 []
vbgunzI remember the scale plugin from a long time ago, I believe in dapper or edgy, that was a great plugin.08:01
SDugasDoes anyone know why when I "Enable Desktop Effects" I lose window decoration, I tried installing emerald after and still no luck08:01
=== hazmaniac [n=hazman@dsl-220-235-8-86.wa.westnet.com.au] has joined #ubuntu+1
=== boris_ [n=boris@BSN-77-126-127.static.dsl.siol.net] has joined #ubuntu+1
nanuksudo su08:02
=== hetauma [n=hetauma@dsl-254-112.diodos-gsrt-gr.duth.gr] has joined #ubuntu+1
hetauma!mouse08:02
ubotuEnabling extra mouse buttons: https://help.ubuntu.com/community/ManyButtonsMouseHowto  - Enabling serial mouse: https://help.ubuntu.com/community/SerialMouseHowto08:02
=== svu [n=svu@89.101.232.199] has joined #ubuntu+1
=== |nero| [n=nero@c185211.adsl.hansenet.de] has left #ubuntu+1 []
RivaeAeryawhat's the default iconset of Kubuntu Gutsy?08:03
=== cyclonut [n=tristan@65-183-133-47-dhcp.burlingtontelecom.net] has joined #ubuntu+1
cyclonuthas anyone had any experience with the crappiness of network-manager in gutsy?08:05
bur[n] ernope08:06
=== bur[n] er only has experience with the kickassiness of it
cyclonuthumm08:06
bur[n] erRivaeAerya: crystal08:06
BlueParrothmmm08:06
=== bur[n] er hates crystal
RivaeAeryabur[n] er: which one?08:07
RivaeAeryabur[n] er: don't you like Crystal Project either?08:07
cyclonutif I try to change AP's, it craps out. if I standby and come back, it craps out08:07
bur[n] eruhh... there's more than one crystal icon theme?08:07
cyclonutbasically, it doesnt work.08:07
RivaeAeryabur[n] er: www.kde-look.org and then icons08:07
RivaeAeryathen sort by rating08:07
BlueParrothmmm08:07
BlueParrotok, basically, the help for gnumeric is broken08:08
BlueParroton Xubuntu , Gutsy08:08
BlueParrotI've installed gnumeric-doc and yelp can view the manual fine, but trying to start it by using the help menu in gnumeric it complains about "ghelp:gnumeric" being an invalid url08:09
bur[n] erRivaeAerya: there is one "official" crystal08:09
RivaeAeryabur[n] er: nope, they're all by the same maker08:09
=== Suissinho [i=Suissinh@10001318444.0000055783.acesso.oni.pt] has joined #ubuntu+1
=== bdgraue [n=bdgraue@host-091-096-170-248.ewe-ip-backbone.de] has joined #ubuntu+1
vbgunzthats wild. I have no idea how to use compiz... basically, I can use it when I move, minimize and maximize a window, but have no idea how to really use it. why in the world no docs ship with gtusy explaining how to use compiz?08:10
BlueParrotvbgunz: a) still in beta, b) there probably is a package if you just install it, try compiz-doc or something like that08:13
=== stefg [n=stefg@e179144201.adsl.alicedsl.de] has joined #ubuntu+1
SDugascompiz doesn't load window decoration (min,max,close,etc.) for me :/ I can't seem to fix it.08:13
vbgunzapps should not ship without docs :/08:13
=== san [n=sander@dhcp-077-251-176-094.chello.nl] has joined #ubuntu+1
BlueParrotSDugas: windows decorations are drawn by emerald, iirc08:14
=== san is now known as san|
SDugasI had to install Emerald, but still no luck08:14
san|is there a way to getr higher resolutions with the open source ati drivers then 1024x786?08:14
BlueParrothmm, is it running as well ?08:14
san|768 even08:14
=== spx2007 [n=anders@cpe.atm2-0-7459.0x535a1e86.bynxx16.customer.tele.dk] has joined #ubuntu+1
BlueParrotSDugas: try running emerald in a terminal and see what error you get08:15
SDugas Could not acquire decoration manager selection on screen 0 display ":0.0"08:15
BlueParrotoooh, fun08:15
BlueParrotno clue how to fix it I'm afraid08:16
SDugas:/08:16
SDugasnuts08:16
nanukanyone who knows how to fis this08:16
nanukhttps://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/12991008:16
ubotuLaunchpad bug 129910 in initramfs-tools "tty[1-6]  are active but display nothing in Gutsy" [Critical,Triaged] 08:16
=== emet [n=emet@unaffiliated/emet] has joined #ubuntu+1
=== SuperQ [i=ben@chef.nerp.net] has joined #ubuntu+1
BlueParrotngggnnnn, help system depends on firefox ...08:18
=== FOAD [n=dok@dinah.blub.net] has joined #ubuntu+1
vbgunzhmmm, thanks to ccsm, when something is enabled, it has an actions tab that shows the binding to the effect08:18
FOADHey.08:19
FOAD"Thanks" to Gutsy, I now have to run an older kernel than the most recent one, but that means the nvidia driver is out of wack.  How can I get nvidia driver that works with the kernel I have to use?08:19
=== SDugas [n=rachel@ip68-229-140-170.lf.br.cox.net] has left #ubuntu+1 []
nanukwww.nvidia.com08:21
nanuk;)08:21
=== outR [i=FAH_Q@70.54.111.23] has joined #ubuntu+1
BlueParrotFOAD, I don't knwo exactly what is wrong for you, but you could try to compile a driver from source ... of course, NVIDIA proprietary drivers can be a bit dodgy, and Gutsy is still in beta, so no guarantees it will work ...08:21
nanukhi parrot08:22
nanuki need a fbconsole08:22
BlueParrotnanuk: an fbwhatsthatnow ?08:23
nanukto compile the nvidia drivers08:23
=== thomas_ [n=thomas@217-148-245-121.happymany.net] has joined #ubuntu+1
FOADBlueParrot: what is wrong for me is that the kernel from Gutsy keeps spewing Bad block number requested messages at me and won't get to X.08:23
nanukstrg alt f1 console08:23
FOADI'm not a big fan of compiling stuff from source and all that, guess I'll use nv for now.08:23
=== finalbeta [n=viper@ip-83-134-128-147.dsl.scarlet.be] has joined #ubuntu+1
nanukits you a blank screen08:23
nanukok08:24
nanukso i wait the 4 days08:24
nanuk;)08:24
BlueParrotuhm, I should probably point out I'm not a developer or anything...08:24
=== MarcN [n=MarcN@dslv-3-227.mv.com] has left #ubuntu+1 []
BlueParrotAnd I have no clue what you ar etalking about :P08:24
stefgnanik, taht's a known bug... gutsy kernel breaks tty's in nonstandard resos08:24
nanukif i want to get on the strg f1 console08:25
nanukok08:25
nanukwill it get fixed08:25
stefgnanuk: boot without framebuffer (vga=XXX),  fbcon is broken08:25
nanukso i can use the nvidia driver08:26
stefgnanuk: doesn't seem like it yet08:26
nanukif i boot without it the nvidia driver works???08:27
stefghttps://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/12991008:27
ubotuLaunchpad bug 129910 in initramfs-tools "tty[1-6]  are active but display nothing in Gutsy" [Critical,Triaged] 08:27
nanukyes i know08:27
nanukso no work around08:27
=== silent [n=silent@S01060050bac94b86.cg.shawcable.net] has joined #ubuntu+1
stefgnanuk: restricted manager conflicts with self compiled nvidia driver. use nvidia-glx-(new)08:29
FOADAnyhow, this bulletproof X seems to work, but where does it keep its settings?  Apparently not in xorg.conf?  So 1) can I make X try and listen to xorg.conf again and 2) where does bulletproof put its stuff?08:29
=== gunashekar [n=gunashek@59.92.52.76] has joined #ubuntu+1
=== Pricey [n=pricechi@ubuntu/member/pdpc.supporter.student.PriceChild] has joined #ubuntu+1
nanukfirst frame buffer mess off08:30
=== kartpusher05 [n=brendan@wsip-70-182-2-73.dc.dc.cox.net] has joined #ubuntu+1
nanukthen i take nvidia-glx-new drivers08:30
nanukk08:31
kartpusher05hey all.... i was wondering if there is a way to change my default file browser in GNOME. I downloaded dolphin so i could have a thumbnail view for file uploads08:31
silentI like how gutsy doesnt remind you billions of times that you're running proprietary drivers08:31
silentno glaring pci card in the corner of the screen08:31
FOADI like how Gutsy doesn't work for me --- no wait I don't.08:32
silentFOAD, ouch08:32
gunashekarhmm maybe the card will appear in the release08:32
=== shachaf [n=shachaf@66.17.178.31] has left #ubuntu+1 []
silentgunashekar, hope not... I do hope they patch my kernel source bug by then though08:32
silentsound would be super08:32
FOADYes, I am very disappointed.08:32
gunashekaryea sound is a problem indeed08:33
nanuk*g*08:33
silentthey have 4 days08:33
gunashekarwonder how many people have sound problems?08:33
kartpusher05ANYONE how do you change the default file browser in GNOME???08:34
nanuki upgraded from feisty today08:34
FOAD_Sound_ works for me.08:35
gunashekargreat , not for me though08:35
nanuki thougth 4 days everthing must be running08:35
nanuk;)08:35
savvasgunashekar: cat /proc/asound/cards08:35
savvas!paste | gunashekar08:35
ubotugunashekar: pastebin is a service to post large texts so you don't flood the channel. The Ubuntu pastebin is at http://paste.ubuntu-nl.org (make sure you give us the URL for your paste - see also the #ubuntu channel topic)08:35
gunashekarok i will08:35
kartpusher05anybody?08:36
savvasgunashekar: :) also this: lspci08:37
=== pl0pix [n=erik@pD9534F14.dip.t-dialin.net] has joined #ubuntu+1
=== kartpusher05 [n=brendan@wsip-70-182-2-73.dc.dc.cox.net] has left #ubuntu+1 []
vmlinuz-I'm running ies4linux and whenever I go to the website "https://www.onthenetsports.com/viewer.asp" That has a streaming video live which i bought. My IE Crash & hangs up in a sec. I ran it into a terminal to see the error that cause the crash and here it is, can somebody help me out? error here. http://pastebin.com/mbb9cf2308:37
=== foug [n=foug@cpe-67-11-178-206.satx.res.rr.com] has joined #ubuntu+1
fougwith 7.10, do i have the option of importing folders over?08:38
savvasimporting folders from where?08:39
gunashekarsavvas: I found the file /proc/asound/cards which is a blank file : my card though is a Intel HDA , Conexant (venice)08:39
=== underwatercow [n=keith@c-67-185-21-230.hsd1.wa.comcast.net] has joined #ubuntu+1
underwatercowis there a reason that there are two Desktop icons in the Places menu?08:39
savvasgunashekar: give me the lspci output08:39
=== balvinder [n=balvinde@59.180.20.34] has joined #ubuntu+1
=== Skrot- [n=magnus@169.84-48-58.nextgentel.com] has joined #ubuntu+1
balvinderhi08:40
balvinderanyone can tll me now to upgrade to gnome 2.20 from 2.1808:41
ubuntu_loverhelloe08:41
=== dg [i=dgl@babylon.otherwize.co.uk] has left #ubuntu+1 []
teskoare you running gutsy ubuntu_lover ?08:42
tesko2.20 comes with gutsy rc108:43
gunashekarsavvas: http://paste.ubuntu-nl.org/40647/08:43
=== san| [n=sander@dhcp-077-251-176-094.chello.nl] has left #ubuntu+1 []
savvasgunashekar: do this: sudo modprobe snd-hda-intel08:44
savvasgunashekar: any output?08:44
gunashekarsavvas: no output08:45
=== lee98632 [n=lee@c-71-59-177-24.hsd1.wa.comcast.net] has joined #ubuntu+1
thomas_vmlinuz-: run virtualbox, install windows, and use virtual windows to vieuw video08:47
lee98632HOLY COW this Word Processor got some kind of word memory in it heck I have even seen office 2007 do that08:47
bur[n] ervideo via vbox doesn't work08:47
lee98632waht else does this have in it?08:47
bur[n] erat least some video players08:47
vmlinuz-thomas_: When you say run virtualbox do you mean another computer? I'm not sure of what you mean. were you here 1hr ago and know my problem?08:47
lee98632hmm Id like to see soem video editing soft ware taht work lol08:47
nanukif i dont come back it worked ;)08:47
vmlinuz-thomas_: I don't own another computer by the way. :(08:47
bur[n] erlee98632: me too!  pitivi is being worked on.. 0.11 was released today08:48
thomas_vmlinuz-: i picked up a little bit an hour ago08:48
savvasgunashekar: try play a file in totem08:48
Evanlecvmlinuz-, its virtualization...should read about it, really quite handy08:48
thomas_vmlinuz-: virtualbox is an application, check google08:48
Evanlecvmlinuz-, you're running one OS inside another, on the same machine08:49
gunashekarsavvas: dont think i have that iinstalled08:49
lee98632it was when?08:49
vmlinuz-thomas_: Okay. the games are running now and I might miss all of the event reading. that why i need quick help :( just few question do i need windowsxp CD to do that? Because i don't have a winxp cd08:49
savvasgunashekar: type: totem08:49
thomas_jes you need cd08:49
thomas_or image08:49
lee98632hmm Ill have to reload it then08:49
=== astro76 [n=james@unaffiliated/astro76] has joined #ubuntu+1
thomas_vmlinuz-: it will at least take an hour to fully set it up though08:50
savvasgunashekar: it's "movie player" under menu applications > sound & video08:50
lee98632I load pitivi yesterday and all I got was a flash on the screen and then it was gone lol08:50
=== axjv [n=angelic@c-76-26-9-254.hsd1.fl.comcast.net] has joined #ubuntu+1
gunashekarsavvas: /bin/sh: totem: not found  I will install and try08:50
bur[n] erlee98632: 0.11 is just a devel version and it's not in gutsy08:50
bur[n] erjust wanted to say that it's being worked on08:50
lee98632eh evnalac was taht virtualisation directed to me lol08:51
savvasgunashekar: no need, type this: alsamixer08:51
=== RivaeAerya [n=robin@h8441230009.dsl.speedlinq.nl] has joined #ubuntu+1
vmlinuz-thomas_: one hour is cool if i can do it without any errors/messing around. i will be happier. seeing a bit of it better than nothing.08:51
lee98632ahh08:51
vmlinuz-thomas_: i'm now looking for an winxp CD.08:51
RivaeAeryawhere can i find the new desktop effects settings in ubuntu?08:51
savvasgunashekar: if it starts and application tell me08:51
savvas*and=an08:51
lee98632well I hope they get it running for the other os08:51
bur[n] erhttp://burner.ath.cx/Screenshot.png for example of virtualization :)08:51
lee98632Devel?08:51
bur[n] erRivaeAerya: alt+f2, ccsm...  make sure to sudo apt-get install compizconfig-settings-manager08:51
lee98632wait a sec08:51
lee98632then wahts it doing in my down load section08:52
RivaeAeryabur[n] er: i mean in gutsy08:52
=== TheInfinity [n=TheInfin@bchm-4d091b12.pool.mediaWays.net] has joined #ubuntu+1
lee98632eh i am running Kunbuntu08:52
lee98632but then I am running in 64 bit too08:53
lee98632its seems the only way to keep my drivers from wigging out08:53
Evanlecanyone recommend a good avi to dvd converter?08:53
=== nomasteryoda [n=nomaster@ip68-225-112-12.mc.at.cox.net] has joined #ubuntu+1
=== TheRepacker [n=rick@d226-43-244.home.cgocable.net] has joined #ubuntu+1
=== gunashekar [n=gunashek@59.92.52.76] has joined #ubuntu+1
gunashekarsavvas: the mixer opens up08:54
sbucatinoEvanlec: do you know the commandline ?08:54
lee98632bur[n] er any ideas why the 64 bit Kunbuntu does effect my system like gutsy 64 bit does?08:54
Evanlecsbucatino, a bit yea08:54
lee98632eh taht is doesnt08:54
savvasgunashekar: ok press Escape08:54
RivaeAeryawhat the heck? a new style has been installed into KDE called Serenity... is this on purpose after an upgrade to Kubuntu Gutsy?08:55
savvasgunashekar: do this: gksu gedit /etc/modules08:55
Evanlecsbucatino, actually i think i'd prefer a commandline utility08:55
lee98632Yes08:55
savvasgunashekar: type your password there08:55
sbucatinoEvanlec: if you know the command line ( mecoder or ffmpeg ) you can see this : http://ubuntuforums.org/showthread.php?t=56701608:55
savvasgunashekar: then add in a new line this: snd-hda-intel08:55
lee98632eh wahtever taht measn lol08:55
lee98632style?08:55
RivaeAeryayeah widget style08:55
savvasgunashekar: press enter (to make a new empty line under "snd-hda-intel"), then save and exit08:56
savvasgunashekar: after that, reboot08:56
RivaeAeryalee98632: so it installs that when you upgrade?08:56
lee98632widget?08:56
addosis there anyway to install disk encryption with the regular gutsy livecd?08:56
lee98632I guess so08:56
gunashekarsavvas: ok brb08:56
Evanlecsbucatino, tahts a gui app?08:56
sbucatinoEvanlec: if you don t know the command line maybe can be usefull this http://atomized.org/2005/03/converting-divxxvid-avi-to-dvd-with-ffmpeg/08:56
=== bob54321 [n=bob@user-0c90rs3.cable.mindspring.com] has joined #ubuntu+1
lee98632I didn't know aobut taht until you said something08:56
lee98632wahts the pros and cons to that?08:56
RivaeAeryalee98632: you see it too?08:56
sbucatinoEvanlec: yep it's a gui08:57
=== FOAD [n=dok@dinah.blub.net] has joined #ubuntu+1
lee98632so wahts taht mean?08:57
Evanlecsbucatino, why u ask if i know command line then?08:57
fougwith 7.10, do i have the option of importing folders over?08:57
FOADWell I tried to compile the nvidia driver from the site but nothin' doin.08:57
lee98632Oh and it auto mounted my second HDD to08:57
sbucatinoEvanlec: because if you know the commad line you can add that command line to that gui  in 2 second08:58
lee98632Evenlac, waht is it Iam looking for?08:58
lee98632I mean RivaeAerya waht is it Ima looking for08:58
sbucatinoEvanlec: read the topic about multimedia converter if you like you can try it08:58
bur[n] erRivaeAerya: you get the settings?08:58
Evanlecsbucatino, mkay08:59
RivaeAeryalee98632: are you using kde?08:59
lee98632Yes08:59
bur[n] ersystem -> prefs -> appearance, then desktop effects08:59
lee98632tis the only one taht is stable on this pc08:59
RivaeAeryalee98632: ok, then System settings -> Appeareance -> Style08:59
RivaeAeryathen look for Serenity in the dropdown08:59
lee98632Ok just a sec08:59
=== buzztracker [n=buzztrac@pelikan.garga.net] has joined #ubuntu+1
TheRepackerFOAD if you don't have a Series 8 card, stay away from the latest nvidia 100.14.19 driver09:00
=== gunashekar [n=gunashek@59.92.52.76] has joined #ubuntu+1
gunashekarsavvas: rebooted as you said09:01
=== akrus [n=akrus@62.140.224.26] has joined #ubuntu+1
RivaeAeryalee98632: is it there?09:02
lee98632OOOOOOH THE allowence for minipulation of widget styels09:02
lee98632YES it is lol09:02
RivaeAeryalee98632: ah so it got installed when i upgraded09:03
RivaeAeryai like it :)09:03
=== nanuk [n=nanuk@port-87-234-145-7.dynamic.qsc.de] has joined #ubuntu+1
lee98632Its been there all the time for me09:03
savvasgunashekar: try and play a file09:03
fougwith 7.10, do i have the option of importing folders over?09:03
lee98632I reinstalled it yester day09:03
gunashekarsavvas: no sound09:03
savvasgunashekar: what file are you trying to play?09:03
nanuknext problem how do i get my crypted hd back09:03
nanuk;)09:04
lee98632Also a freind LiMaO got  java and flash running09:04
nanuki hate this stuff09:04
lee98632on this s64 bit system09:04
RivaeAeryalee98632: but i mean is the Serenity theme there?09:04
lee98632we still have to get the one player working though09:04
gunashekarsavvas: default file in amarok player09:04
lee98632oh just a sec09:04
fouganyone? can i import folders during installation?09:04
savvasgunashekar: mp3?09:05
lee98632no its not09:05
ubuntu_loverhi all09:06
savvasgunashekar: close amarok and do this in console: sudo apt-get install lame vorbis-tools flac ffmpeg liblame0 gstreamer0.10-plugins-bad gstreamer0.10-plugins-good gstreamer0.10-plugins-ugly gstreamer0.10-ffmpeg gstreamer0.10-gl gstreamer0.10-plugins-base gstreamer0.10-plugins-bad gstreamer0.10-plugins-ugly gstreamer0.10-plugins-ugly-multiverse gstreamer0.10-plugins-bad-multiverse libxine1-ffmpeg libxine1-plugins09:06
lee98632Windows8x is though and a few others09:06
lee98632CDE09:06
RivaeAeryalee98632: weird09:06
ubuntu_loveri would like to know if its possilbe to upgrade to gnomw 2.2009:06
ubuntu_loverwithout installing gutsy09:06
lee98632wait is that the widget style?09:06
RivaeAeryalee98632: Serenity is a widget style09:06
lee98632Hmm then nopers it not in here09:07
RivaeAeryaweird09:07
RivaeAeryayou using Gutsy?09:07
lee98632why did it say it was supose to be there?09:07
fouganyone? can i import folders during installation?09:07
balvinder_no rivae im using 7.1009:07
lee98632this thing just auto corrected my spelling lol09:07
savvasgunashekar: when it's done, please paste the output in http://paste.ubuntu-nl.org09:07
lee98632tahts a new feature09:07
lee98632well, its trying to at least lol09:07
=== hazmaniac [n=hazman@dsl-220-235-8-86.wa.westnet.com.au] has joined #ubuntu+1
FOADTheRepacker: mine is series 7.09:08
lee98632Is the 64 bit version different then the 32 bit?09:08
ubuntu_loverhi all09:08
ubuntu_loveris it possilbe to upgrade to gnome 2.2009:08
FOADAfter I tried the script from the nvidia site, "nvidia" completely disappeared as an option.09:08
ubuntu_loveron 7.1009:08
RivaeAeryalee98632: what program are you using to chat here?09:09
=== hamas [n=nope@83.73.199.173.ip.tele2adsl.dk] has joined #ubuntu+1
fougSOMEONE PLEASE, can i import folders during installation to save files?09:09
lee98632and is the wideget thing the same princable as a widgt that is on the intert that plays video and such?09:09
hamashey, can you have a background for each desktop?09:09
lee98632oh easy09:09
lee98632309:09
TheRepackerFoas then use the 9639 driver, I have sprent ubtold hours trying to get rid of the junk that 14.10 installs, I have all the eye candy with 963909:09
lee98632x chat genome09:09
TheRepackerI have Series 709:09
ubuntu_loverhi all09:10
=== rustlerharv [n=lance@24-236-176-122.dhcp.mrqt.mi.charter.com] has joined #ubuntu+1
ubuntu_loveris anyone there..09:10
lee98632and I can run several others09:10
lee98632the one with the orangish x too09:10
FOADTheRepacker: thank you, I'll try that.09:10
lee98632Oh X chat IRC09:10
fouganyone? can i import folders during installation?09:10
hamasfoug, sure09:10
lee98632I havnt tried the ne that came with the system yet though09:11
gunashekarsavvas: http://paste.ubuntu-nl.org/40651/09:11
lee98632jsut a sec Ill brbl09:11
hamasfoug, you just need to save them in the TARGET partition or a separate partition09:11
foughamas: so, yes? Is there a size limit on folders I can import? I have about 5GB of stuff I need to save and have no way of putting it on an external drive or burning it to a CD.09:11
TheRepackerI did try 9641 but I think I still had 100.14 residure, it might work also, BTW 100.14 has a resesive error for older cards09:11
foughamas: hmm, there's not an option during installation? The files are in the /home/user/09:12
savvasgunashekar: ok great, now try and play an mp3 file or one of your audio files09:12
=== lee__ [n=lee@c-71-59-177-24.hsd1.wa.comcast.net] has joined #ubuntu+1
lee__Ok iam on the K IRC chat now and wow09:12
lee__that was easy to use09:12
hamasfoug, you cant import files from the same partition09:13
hamasfoug, you install on09:13
gunashekarsavvas: no sound , i tried a song on kaffeine as well as amarok09:13
lee__ok the systems version comes with tabs on the bottom and when some one sends a program a tab opens up at the bottom of the screen09:14
vmlinuz-thomas_: you still there bro?09:14
savvasgunashekar: you're on kubuntu?09:14
lee__the topic area is rather nice becasue it highlighted the guts thing right away09:15
gunashekarsavvas: yes kubunty gutsy09:15
=== san [n=sander@dhcp-077-251-176-094.chello.nl] has joined #ubuntu+1
lee__on the plus side I can keep better track of people as it is in color lol for everyone09:15
savvasgunashekar: try this: cat /proc/asound/cards09:15
=== thread [n=thread@unaffiliated/thread] has joined #ubuntu+1
savvasgunashekar: any output?09:15
=== hazmaniac [n=hazman@dsl-220-235-8-86.wa.westnet.com.au] has joined #ubuntu+1
threadhello !09:15
lee__evanlec you thre09:16
Evanleclee__, ya whatsup09:16
threadI have some weirdness going on... wondering if someone could help me out09:16
threadI just installed gutsy the other day09:16
vmlinuz-is there virtualbox app for guTSy?09:16
lee__I chagned over to the ssytems IRC09:16
lee__Kcaht IRC09:16
threadand synaptic is telling me that my linux-headers version is 2.6.22-14-generic, yet I seem to get 2.6.22.9 headers when I install it09:17
gunashekarsavvas:  0 [Intel          ] : HDA-Intel - HDA Intel     HDA Intel at 0xd8240000 irq 2209:17
lee__wahts a virtual ap box?09:17
savvasgunashekar: ok try this: sudo apt-get install --reinstall alsa-base09:17
vmlinuz-savvas: have you used virtualbox in gutsy before?09:17
=== rustlerharv [n=lance@24-236-176-122.dhcp.mrqt.mi.charter.com] has left #ubuntu+1 []
threadI even tried installing linux-source (2.6.22-14.43) and when I decompress linux-source-2.6.22 and run make menuconfig in there, it's 2.6.22.9 !09:17
savvasvmlinuz-: yeah, it works :)09:17
=== akincer [n=akincer@CPE-76-177-36-109.natcky.res.rr.com] has joined #ubuntu+1
thomas_vmlinuz-: it should work fine09:18
lee__man i see all theses issues and count my lucky stars09:18
thomas_whats the problem with virtualbox?09:18
=== Amaranth [n=travis@ubuntu/member/Amaranth] has joined #ubuntu+1
lee__Why am i si stable?09:18
vmlinuz-thomas_: do i need to download http://www.virtualbox.org/wiki/Downloads? or just install it from "sudo apt-get install virtualbox" or both are the same?09:18
thomas_compare the versions09:18
akincerAnyone here having problems with displayconfig-gtk like I am? It doesn't configure dual display correctly for nvidia gfx 520009:19
savvasvmlinuz-: apt-cache policy virtualbox09:19
thomas_but most easy way is at-get09:19
savvasvmlinuz-: if that command gives you the same version as in the site, then you can just apt-get it09:19
vmlinuz-savvas: yeah the same, 1.5.009:19
=== sj1 [n=steve@203.167.249.253] has joined #ubuntu+1
vmlinuz-thomas_: Okay I got virtualbox installed and i have my winxp cd. I'll go throw the stuff on the website09:20
=== dgjones [n=Cheshire@unaffiliated/dgjones] has joined #ubuntu+1
=== level1_ [n=level1@129.210.164.214] has joined #ubuntu+1
thomas_its very easy09:20
vmlinuz-is there anything i should becareful of in the partitioning? I'm so confused never done this before09:20
akincerI filed bug 152677 on this problem09:20
ubotuBug 152677 on http://launchpad.net/bugs/152677 is private09:20
nanukthe monkey hates me :(09:20
gunashekarsavvas: it stopped at  Setting up alsa-base (1.0.14-1ubuntu2) ...09:20
savvasvmlinuz-: mouseover the link of your arch, i386 or amd64, it will show at the status bar the last numbers in the version09:20
savvasgunashekar: does it show "gunashekar@Repo:~$" under it ?09:21
gunashekarsavvas: no the console window header says finished09:21
=== linxeh [n=linx@88-96-202-38.dsl.zen.co.uk] has joined #ubuntu+1
savvashm..09:22
savvasweird09:22
savvasgunashekar: close the window and try again09:22
savvasin a new one09:22
lee__eh what is Virtual box?09:22
savvaslee__: the box of doom!09:23
Evanleclee__, similar to vmware09:23
savvassame as pandora's :p09:23
lee__that is lol09:23
thomas_lee__: google virtualbox09:23
vmlinuz-Save and reboot your system. Once logged in, start Virtualbox from the menu.09:23
vmlinuz-do i need to fully reboot, or just X restart?09:23
TheRepackerLee_: it's wine on steroids09:23
lee__oooooo ok09:23
thomas_fully I suppose09:23
savvasvmlinuz-: you have to add your user in the virtualbox group09:24
thomas_although I don't remember doing that09:24
threadDoes that make sense to anybody? synaptic tells me linux-source-2.6.22 is version 2.6.22-14.43, but make menuconfig in the dir after extracting it has v2.6.22.9 at the top09:24
lee__eh brb09:24
vmlinuz-savvas: I've done that now09:24
thomas_savvas: vmlinuz- it does that automatically09:24
threadThe same thing seems to be happening for linux-headers, but I'm not sure how to tell what version I have from the files09:24
savvasvmlinuz-: ah, then you can simply logout/login :)09:24
=== luc__ [n=luc@DSL01.83.171.176.210.ip-pool.NEFkom.net] has joined #ubuntu+1
savvasthomas_: it didn't for me :\09:24
=== xstasi [n=xstasi@85-18-14-24.fastres.net] has joined #ubuntu+1
thomas_strange09:25
thomas_did you apt-get ?09:25
savvasno09:25
savvasah that must be it09:25
thomas_i guess so09:25
=== Matir [n=david@c-76-17-119-30.hsd1.ga.comcast.net] has joined #ubuntu+1
vmlinuz-savvas: I went to users settings then click on manage groups then go to vboxusers and properties then i check on my Username. is that right? or anything more i need to do?09:25
thomas_vmlinuz-: no you're fine09:26
vmlinuz-savvas: do i need to change group ID09:26
thomas_nonon09:26
thomas_nono09:26
=== foug [n=foug@cpe-67-11-178-206.satx.res.rr.com] has left #ubuntu+1 ["i'll]
thomas_just logout09:26
vmlinuz-ok09:26
savvasvmlinuz-: thomas_ said it :)09:26
vmlinuz-ok brb09:26
gunashekarsavvas: http://paste.ubuntu-nl.org/40652/09:26
savvasgunashekar: how's it going?09:26
savvasah09:26
savvasgunashekar: give me the output of: asoundconf list09:27
vmlinuz-back. I restarted X :)09:27
jetole~quit09:27
vmlinuz-oops I've lost the tutorials site >_<09:27
thomas_vmlinuz-: go to konsole and do "vbox"09:27
vmlinuz-thomas_: ok09:28
vmlinuz-thomas_: http://pastebin.com/m9b3d4c709:28
gunashekarsavvas: Names of available sound cards:  Intel09:28
vmlinuz-thomas_: do you mean virtualbox cause thats the command to run it09:28
savvasgunashekar: try this: asoundconf is-active09:29
=== lee__ [n=lee@c-71-59-177-24.hsd1.wa.comcast.net] has joined #ubuntu+1
lee__boy i sure like tabs lol09:30
thomas_vmlinuz-: yeah VirtualBox, my mistake09:30
gunashekarsavvas: blank09:31
=== bratsche_ [n=cody@adsl-68-94-55-202.dsl.rcsntx.swbell.net] has joined #ubuntu+1
thomas_vmlinuz-: now you have to mount the image with virtualbox09:31
vmlinuz-thomas_: np, I'm going throw the tutorials now. ill come here if i have problem.. wait pls sir09:31
thomas_ok ok09:31
lee__WOW...09:31
vmlinuz-thomas_: ok my cd is inside now. im going throw wizard & naming my new OS etc wait09:32
savvasgunashekar: in amarok, does it show that the file is playing but there is no sound? does kde have volume control or something? try check the stuff there, maybe it's mute or something09:32
lee__well oopsed and down loaded but i guess it did run lol...i guess iam safe09:32
gunashekarsavvas: yes it shows the sound is playing09:32
lee__so no doomy for me lol09:32
gunashekarsavvas: volume control is workistill no soundng , kept it at 100%09:33
lee__oh i have a questin...do we need to periodically restart out sytems?09:33
vmlinuz-thomas_: in the step where it ask me "Boot Hard Disk (Primary Master)" what do i choose pls09:33
=== FunnyLookinHat [n=funnyloo@64.140.73.93] has joined #ubuntu+1
savvasgunashekar: something must be blocking it, try mute other devices in volume control09:33
thomas_lee__: shut up09:33
lee__like what we have to do in i won't say the word09:33
thomas_vmlinuz-: 1 sec09:33
vmlinuz-thomas_: http://www.blog.arun-prabha.com/wp-content/uploads/2007/05/virtualbox5.png09:34
thomas_ah, you have to make a new one09:34
=== relis [n=opera@80.94.48.43] has joined #ubuntu+1
thomas_a virtual one09:34
thomas_hit new button and follow instructions09:34
hamasgunashekar, edit -> preference -> select all controls and unmute all and turn all up09:35
vmlinuz-ok09:35
=== borovy3488 [n=chatzill@216.84.49.162] has joined #ubuntu+1
savvasvmlinuz-: have you read their manual? http://www.virtualbox.org/download/UserManual.pdf09:35
hamasgunashekar, volume controls can on some boards be misleading and incorrect09:35
borovy3488I think the only user on my computer has been switched to a non-admin user.  Any ideas on how to fix that?09:35
thomas_savvas: lol 173 pages :p09:35
gunashekarsavvas: the only other device is MIDI device and MIDI mapper on my control panel09:36
vmlinuz-savvas: nop havnt09:36
savvasthomas_: knowledge is power \m/ :p09:36
hamasgunashekar,  in the mixer+09:36
savvasthey explain everything there09:36
vmlinuz-savvas: i have matchup starting up soon, i rly need to done this quick so i cant read alot.. i paid 50 bucks to see this event online in steaming video, so im already wasting money missing few matches09:36
thomas_yeah true, but you need a whole day before you get through that09:36
thomas_:p09:36
thomas_vmlinuz-: no worries, we are right here to help ;-)09:37
savvasgunashekar: play around with the volume control preferences, I've no idea how it looks like in KDE, I helped a user 2 days ago with the same commands and it worked for him09:37
gunashekarsavvas: trying09:37
hamasdoes anyone know why the emerald-themes package is broken/gone?09:38
vmlinuz-thomas_: thanks man09:38
thomas_vmlinuz-: btw, don't forget to complain at the company where you bought this online video, to make their site open for other browsers09:38
vmlinuz-thomas_: ok09:38
thomas_hamas: no idea, I noticed that to09:39
hamasvmlinuz-, tried to install the ubuntu-restricted-extras and/or mplayer firefox plugin?09:39
vmlinuz-thomas_: im trying to figure out how many free space i got in the system as a whole so i can give virtualbox like a 2gig or something you think its enough?09:39
=== skyhook [n=kevin@70.48.253.10] has joined #ubuntu+1
gunashekarsavvas: I filed a bug report on alsa : they advice to install the latest HG(mercurial) drivers : can download that but dunnno how to install09:39
vmlinuz-hamas: yep didn't work09:39
=== sj1 [n=steve@203.167.249.253] has joined #ubuntu+1
hamasvmlinuz-, the mplayer plugin usually works :/09:40
vmlinuz-thomas_: I always used kdiskfree before, but now I don't have it, anything similier to check my system free space in gnome?09:40
sj1Intel 845G problems...09:40
vmlinuz-hamas: it won't for this check it out yourself. https://www.onthenetsports.com/viewer.asp09:40
thomas_vmlinuz-: make it automatically resizable(i forgot how they call it) and max something like 2-3 gb will work09:40
savvasgunashekar: no idea :\ sorry09:41
=== Suissinho [i=Suissinh@10001318444.0000055783.acesso.oni.pt] has joined #ubuntu+1
hamasvmlinuz-, asp error?09:41
vmlinuz-thomas_: im here. http://www.blog.arun-prabha.com/wp-content/uploads/2007/05/virtualbox7.png09:41
thomas_vmlinuz-: yep, dynamically09:41
vmlinuz-hamas: yep, and when i tried & installed ies4linux program with its all plugins and everything, i even got a dll files from my friend and put it in my /drive_c/system etc. and now whenever i go to this website with my IE it hangs/crash.09:41
gunashekarsavvas:  there is a KMIX , sound mixer, the output devices on it are Master, PCM, Digital , Ext Mic, and Int mic09:41
savvasgunashekar: have you tried this? https://help.ubuntu.com/community/HdaIntelSoundHowto09:41
gunashekarsavvas: looking it up09:42
hamasvmlinuz-, that sucks09:42
vmlinuz-thomas_: in the dynamically it gives it 10gig, its too much isnt it09:42
=== relis [n=opera@80.94.48.43] has left #ubuntu+1 []
vmlinuz-hamas: yeah. >_<09:42
hamasvmlinuz-, btw wont windows need more then 2gb?09:42
thomas_vmlinuz-: doesn't mather09:42
sj11 - Not detected properly - had to change to  "Intel - experimental mode-setting", 2 - Black screen while booting - instead of progress stuff, 3 - Fonts crazy large in CntlAltF1 etc textmode...09:42
borovy3488my sound works when I boot up ubuntu.  Like, i get all the log in effects.  Then, once logged in, the sound no longer works.  I'm getting the GStreamer error message09:42
borovy3488any ideas?09:42
vmlinuz-hamas: I'm not sure. not a windows fan but installing it in virtualbox as we speak. giving it 9gigs now hope it's good09:42
hamasvmlinuz-, the dynamic image grows as you install things in it09:43
gunashekarsavvas: thanks the instructions are clear on that page : will try upgrading the alsa drivers and try09:43
=== Ronald [n=ronald@ip51-232-58-62.adsl.versatel.nl] has joined #ubuntu+1
=== blkno1 [n=jim@pool-70-109-145-154.cncdnh.east.verizon.net] has joined #ubuntu+1
vmlinuz-okay. so that 9gig i gave to virtualbox now I will not be able to use any of it for my ubuntu correct?09:43
thomas_vmlinuz-: anyway, the parition will only take up the space that it really uses, and expands dynamically09:43
savvasgunashekar: I hope it works :)09:43
sj1I miss being able to go to textmode, but am unsure where to begin resolve this one...09:43
hamasvmlinuz-, nope09:43
gunashekarsavvas: will inform you if you are around by then09:44
thomas_vmlinuz-: you will be fine09:44
stefgsj1: https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/12991009:44
ubotuLaunchpad bug 129910 in initramfs-tools "tty[1-6]  are active but display nothing in Gutsy" [Critical,Triaged] 09:44
hamasvmlinuz-, you can set it to be 2tb big, it only uses the the space you install in it09:44
vmlinuz-okay09:44
vmlinuz-im now finished installing it09:44
thomas_hamas: why are you repeating what I just said?09:44
vmlinuz-I think time to put my winxp cd & start installing09:44
thomas_vmlinuz-: have fun :p09:45
hamasthomas_, didnt see it, sorry09:45
borovy3488does anyone know why i would be getting sound, then the system say that I don't have sound?09:45
=== WorkingOnWise [n=workingo@68-188-193-183.dhcp.mrqt.mi.charter.com] has joined #ubuntu+1
borovy3488and no longer have sound09:46
=== eamonn [n=eamonn@82-44-250-81.cable.ubr06.haye.blueyonder.co.uk] has joined #ubuntu+1
WorkingOnWiseDoes anyone get a chrtp as Ubuntu is booting, about 30% into the progress bar?09:46
LiMaOoh dang. unable to run 64bit guests using virtualbox09:47
Evanlecyep, 32bit only09:47
Evanlecesp for windows09:47
vmlinuz-good lord. i clicked start and at first step i got error -_-09:48
thomas_lol yep, the true nature of windows09:48
savvasgunashekar: ok09:48
thomas_vmlinuz-: what error?09:49
gunashekarsavvas: I got stuck at the first step installing the required tools with the Message : Media Change : please insert the disc labeled 'Kubuntu 7.10 _Gutsy Gibbon_ - Release Candidate i386 (20071010.1)' in the drive '/cdrom/' and press enter09:49
nanukcryptsetup luksOpen /dev/hda5 dev/mapper/...09:49
nanukCommand failed: Can't get device information.09:49
gunashekar: i upgraded to gutsy online09:49
nanukwhere is my partition09:50
nanukdamit09:50
vmlinuz-thomas_: http://shell.lomag.net/~org/Screenshot-2.png09:50
thomas_gunashekar: generate a decent souces.list http://www.ubuntu-nl.org/source-o-matic/09:50
gunashekarthomas_: ok09:51
thomas_vmlinuz-: do what they say, execute the init.d thing09:51
_dan_nanuk as root?09:51
nanukyes09:51
nanukits gone09:52
vmlinuz-k09:52
_dan_fdisk -l /dev/hda nanul and paste output09:52
=== sj1 [n=steve@203.167.249.253] has left #ubuntu+1 []
vmlinuz-thomas_: i thought they need me to run virtualbox as root as in "sudo virtualbox"09:52
thomas_try it09:53
Aishikoit it's asking for an install disc and you don't have one, remove the CD as a repo source in  your sources list.09:53
thomas_i don't know for sure09:53
nanuknothing09:53
=== dgjones [n=Cheshire@unaffiliated/dgjones] has left #ubuntu+1 ["Leaving"]
vmlinuz-thomas_: there is no. /etc/init.d/boxdrv - in my system09:53
thomas_vmlinuz-: hmm09:53
=== wrede [n=wrede@port-212-202-201-31.dynamic.qsc.de] has joined #ubuntu+1
thomas_thats strange09:53
thomas_and you installed through apt-gte09:54
thomas_get*09:54
Aishikosay when does Gusty go Live?09:54
=== vbgunz [n=vbgunz@217-98.127-70.tampabay.res.rr.com] has joined #ubuntu+1
thomas_Aishiko: live as in live-cd, it already does09:54
wredeHi! Since upgrade to Gutsy my laptop (Thinkpad X31) is no longer talking to my external monitor. Any ideas?09:54
thomas_wrede: set up your gfx card propperly09:55
=== khamael [n=Caldazar@73.84-48-218.nextgentel.com] has joined #ubuntu+1
LiMaOvmlinuz-: reinstall virtualbox, choose to install the kernel module09:55
Aishikothomas_: no as in it leaves beta and becomes stable09:55
vmlinuz-thomas_: do you think i should install "virtualbox-ose-module-2.6.22" ?09:55
wredethomas_: I think it is setup correctly. It was before. I have not touched anything09:55
vmlinuz-LiMaO: It didn't ask me the first time if i want to install kernel module09:56
thomas_Aishiko: then you mean final,  and that will be the 18th09:56
LiMaOvmlinuz-: how are you installing it?09:56
vmlinuz-LiMaO: I already have virtualbox, do you think I gotta install virtualbox-ose-module-2.6.22 is that what it needs?09:56
vmlinuz-LiMaO: im installing it like that "sudo apt-get install virtualbox"09:56
thomas_vmlinuz-: try the module09:56
LiMaOvmlinuz-: get the .deb from here http://www.virtualbox.org/wiki/Downloads09:56
vmlinuz-LiMaO: i was there. there is no gutsy one09:57
thomas_vmlinuz-: do what LiMaOsyas09:57
thomas_take feisty09:57
LiMaOvmlinuz-: get feisty one.. it'll work for gutsy09:57
vmlinuz-ok09:57
LiMaOand if it looks ugly, i have a fix for that09:57
LiMaOi mean, huge fonts and stuff09:57
LiMaObe sure to uninstall the one you have installed using apt-get09:58
thomas_LiMaO: it's deb so it will replace automatically not?09:58
_dan_nanuk no partition at all or didnt find the device?09:58
vmlinuz-i just did "apt-get remove virtualbox"09:58
LiMaOvmlinuz-: yeah, that is safer09:59
vmlinuz-now downloading the fiesty virtualbox .deb09:59
LiMaOthomas_: i like playing on the safe side =P09:59
thomas_vmlinuz-: ok09:59
=== amr [n=amr@41.205.101.159] has joined #ubuntu+1
vmlinuz-almost done 50%09:59
amrhi any one help me with a problem in gusty rc109:59
thomas_LiMaO: yeah, not that it's a problem, just it doesn't really mather :p09:59
LiMaOvmlinuz, when you right click it and choose install, pay attention to the details, cause it'll tell everything09:59
vmlinuz-damn the upcoming match is Earl stricland vs shane. i hope i dont miss this one >_<10:00
vmlinuz-LiMaO: okay10:00
=== buzztracker [n=buzztrac@pelikan.garga.net] has joined #ubuntu+1
=== kRush [n=krush@f049003084.adsl.alicedsl.de] has joined #ubuntu+1
thomas_wrede: be sure to check that nothing changed during upgarde, put /etc/x11/xorg.conf in pastebin10:00
nanukno partition at all10:00
=== larson9999 [n=larson@74-129-100-183.dhcp.insightbb.com] has joined #ubuntu+1
=== sn0 [n=mrsno@unaffiliated/sn0] has joined #ubuntu+1
=== muchmusic [n=muchmusi@c-69-181-21-69.hsd1.ca.comcast.net] has joined #ubuntu+1
=== pookey [n=pookey@emo.two-pebbles.com] has left #ubuntu+1 []
borovy3488There was an error writing to the disc:10:01
borovy3488The recorder could not be accessed.10:01
borovy3488Any ideas on how to fix this?  Trying to burn to a dvd10:01
vmlinuz-k cool, looks like module now installed too10:02
thomas_borovy3488: using k3b?10:02
vmlinuz- * Starting VirtualBox kernel module vboxdrv                                                                                                          [ OK ] 10:02
vmlinuz-Starting VirtualBox host networking...done.10:02
amrthe title bar font and the user and password font are so big that distort my themes , i tried change the DPI but no hope , i am having GMA of intel and a wide screen laptop fujitsu 1280x80010:02
thomas_vmlinuz-: nice :)10:02
vmlinuz-LiMaO: do i have to run "sudo virtualbox" or just "virtualbox" in terminal to install my OS10:02
borovy3488thomas_: i used k32b to make the iso, but not to burn it.  Just clicking write to disk10:02
LiMaOjust use it from the menu.. Applications > System > Virtual10:02
Amaranthamr: Disable compiz10:02
=== clusty [n=clusty@modemcable121.201-83-70.mc.videotron.ca] has joined #ubuntu+1
LiMaOno need to run it as root10:03
thomas_borovy3488: use k3b to burn it10:03
clustywonder why i can't enable the playbar in gmplayer10:03
LiMaObut vmlinuz-, you may have to change some permissions, in order for usb to work10:03
amrAmaranth, that fixes my theme but not username and password font10:03
vmlinuz-ok the cool thing is. I have my WinXP Creation there :) It didn't disappear10:03
clustythe mplayer ppl blamed ubuntu binary10:03
vmlinuz-I just have to click "Start" now10:03
LiMaOvmlinuz-: are you getting huge fonts?10:03
Amaranthamr: they're both the same issue, they ignore GNOME's DPI setting and use the one from the X server10:03
thomas_vmlinuz-: it keeps the config files10:03
vmlinuz-LiMaO: nop its normal10:03
LiMaOvmlinuz-: great10:04
borovy3488thomas_: k3b wont recognize that there even is a drive!! All i want to do is backup some files because the gutsy install messed with everything.  I was going to do the entire install over again10:04
amrok how to configure it from Xserver10:04
vmlinuz-but interesting thing tho. the innotek Virtualbox "I have the same WinXP I created earlier" Okay? But now i click on "Settings" It gives me an error i click OK and it goes to the settings normally. should i care about that error or just ignore it?10:04
Amaranthamr: if you raise GNOME's DPI until everything is that big then use smaller font sizes it'll all come out right10:04
thomas_borovy3488: hmm10:04
thomas_strange10:04
Amaranthamr: get a ruler and measure your screen10:04
LiMaOvmlinuz-: change some settings, save it.. then go and revert them10:05
vmlinuz-im thinking to delete it and start from scratch10:05
LiMaOthat should fix it10:05
Amaranthyou have to tell X your screen's width and height in millimeters10:05
borovy3488thomas_: yea i know, hopefully the install didn't screw with the drive, cause I NEED that data10:05
vmlinuz-about audio should it be alsa or oss?10:05
savvasvmlinuz-: virtualbox will release a gutsy version when it goes final10:05
amrno it's too big that 15.4 inch screen can withstand only 10 letters10:05
LiMaOvmlinuz-: alsa10:05
savvasvmlinuz-: some stuff are different, like usb I think10:05
vmlinuz-savvas: yep exactly10:05
vmlinuz-thats the error, about USB10:06
Amaranthamr: right your screen has a large DPI10:06
vmlinuz-failed to access the usb subsystem10:06
LiMaOvmlinuz-: there's a fix for that usb thing, on gutsy or even feisty10:06
_dan_nanuk isnt hda your boot partition, or where do u have your root? whats mount saying? maybe it got renamed to sda10:06
savvasvmlinuz-: I get the same thing, but my usb mouse works :)10:06
vmlinuz-me too10:06
nanukwhy are they called sda sdb now10:06
LiMaOvmlinuz- and savvas: let me tell you how to get usb working without errors10:06
amrno only 96 and i tried change it into 85 but no hope10:06
vmlinuz-so I just put a check not to show that error again yea?10:06
nanukthis sucks10:06
savvasLiMaO: I don't need it, vmlinuz- maybe does :P10:06
nanuki found my partition10:06
amrdont10:06
LiMaOvmlinuz-:  open your /etc/udev/rules.d/40-permissions.rules10:07
vmlinuz-oh yea10:07
LiMaOand where it says SUBSYSTEM==usb_device,                MODE=066410:07
vmlinuz-I have read about this in the tutorials10:07
vmlinuz-0666?10:07
vmlinuz-yea?10:07
amri tried get the latest version of compiz but nothing10:07
LiMaOchange it to SUBSYSTEM==usb_device,                MODE=066610:07
WorkingOnWiseWeeee! who knows the fix for the usb error just mentioned?! I get it too, but my vm won't even fully boot. It starts loading WinXP and just hangs...10:07
LiMaOyeah10:07
Amaranthamr: You're changing GNOME's idea of what the DPI is, not the X server's10:07
vmlinuz-okay10:07
vmlinuz-its going throw the installation now, i clicked "Start" can i do that usb thing later on?10:07
=== xnitex [n=xbrutali@216.186.219.133] has joined #ubuntu+1
Amaranthamr: To tell the X server your DPI you have to measure your screen10:07
LiMaOvmlinuz-: sure, anytime10:07
vmlinuz-awesome10:07
amrit's 15.4 inch10:07
xnitexwhat is the command to launch compiz config?10:08
Amaranthamr: no no10:08
LiMaOvmlinuz-: just don't forget to restart udev after editing the file10:08
borovy3488thomas_: any otehr ideas?10:08
LiMaOsudo /etc/init.d/udev restart10:08
vmlinuz-ok10:08
Amaranthamr: you have to measure the width and height in millimeters10:08
Amaranthamr: 15.4" is the diagonal size10:08
nanukthx dan10:08
nanukcya10:08
amrok wait a sec10:08
vmlinuz-winxp installation [running] 10:08
=== cld2 [n=cliff@ip65-44-219-34.z219-44-65.customer.algx.net] has joined #ubuntu+1
=== nanuk [n=nanuk@port-87-234-145-7.dynamic.qsc.de] has left #ubuntu+1 ["Verlassend"]
xnitex?10:08
vmlinuz-it ask me to "unpartitioned space" i click ok?10:08
LiMaOvmlinuz-: do whatever you would do if you were installing xp normally10:09
=== hmuller [n=chatzill@c-69-244-73-94.hsd1.md.comcast.net] has joined #ubuntu+1
vmlinuz-my nightmare is partitioning these stuff. i have 4 options here, the thing is I'm afraid i mess up my ubuntu system10:09
cld2I just installed the nvidia drivers using the restricted driver manager and now gdm starts and works but gnome just shows a background and a cursor, nothing else, ctlr+alt+backspace work. any ideas?10:09
vmlinuz-format the partition using ntfs or fat system?10:09
LiMaOvmlinuz-: you will never mess ubuntu with that10:10
LiMaOntsf, quick10:10
amr320 mm width10:10
LiMaOvmlinuz-: remember that everything is being virtualized =)10:10
vmlinuz-ah ok :)10:10
savvascld2: press alt-f2 and run this: nautilus10:10
LiMaOit won't change a single bit of your ubuntu partition at all10:10
xnitex?????????????????????????????????????? what do i type in terminal to configure compiz/beryl in gutsy?10:10
amr320 mm x 205mm10:11
savvasxnitex: sudo apt-get install compizconfig-settings-manager10:11
cld2savvas: i went to the failsafe term to see if I can see what was up, let me get back to gnome and test run command10:11
amrAmaranth : 320mm x 205mm10:11
xnitexthank you savvas10:11
Amaranthamr: is it widescreen?10:11
WorkingOnWiseLiMaO: you are my hero ! After I change the permissions in /etc/udev/rules.d/40-permissions.rules, do I have to reboot?10:11
savvasxnitex: then from the menu system > preferences > advanced desktop effects10:12
amrAmaranth: yes10:12
LiMaOWorkingOnWise: no.. just have to restar udev10:12
Amaranthamr: what is your screen resolution?10:12
lee__eh I have a question, Ho do I down load an rpm with having th system atempting to open it automaticaly10:12
LiMaOWorkingOnWise:  sudo /etc/init.d/udev restart10:12
amrAmaranth: 1280x80010:12
Amaranthamr: ok, hang on a second10:12
amrAmaranth: 1280x800 @60hz10:12
LiMaOlee__: you do NOT download rpms.. you don't need them. you need .deb10:12
LiMaO=)10:12
vmlinuz-LiMaO: btw using virtualbox is a way to run ubuntu + winxp in teh same exact second?10:12
=== oshiii-_- [n=h1@dpc6746223141.direcpc.com] has joined #ubuntu+1
lee__its for my PS210:13
cld2savvas: alt-f2 isnt working, i can right click thought ;)10:13
lee__I found the soft ware fo it10:13
savvaslee__: ubuntu is debian-based, hence it uses .deb package system, you can install stuff from the menu Applications > add/remove10:13
hmuller<--- using amd64 version of Gutsy, have aide (the app) related question, is this the correct channel or do I belong elsewhere?10:13
savvascld2: this is after feisty->gutsy upgrade?10:13
lee__What I am trying to say is that its a program for the ps210:13
LiMaOvmlinuz-: yes, exactly10:13
cld2savvas: it was a clean gutsy install10:13
lee__http://www.sony.net/Products/Linux/Download/PlayStation_BB_Navigator.html10:13
lee__this10:14
borovy3488OK, so aparently I don't have permission to access my dvd/cd burner.  Any ideas on how to gain permission???10:14
cld2I might have to new of an nvidia card, vesa was working fine10:14
LiMaOlee__: well, right click the file and choose 'save as'10:14
LiMaOand your system will not try to run it10:14
lee__oh10:14
savvaslee__: you can install rpm stuff with: alien10:14
lee__ok ty10:14
Amaranthamr: DisplaySize 520 32510:14
Amaranthamr: put that in the Monitor section in xorg.conf10:14
=== delight [n=delight@bchm-4d09170c.pool.mediaWays.net] has joined #ubuntu+1
Amaranthamr: that should give you an X server DPI of 10010:14
Amaranthamr: which is close to GNOME's default of 9610:15
WorkingOnWiseJoy Joy Joy!!! At last..Windows XP LIVES in a vm! TY LiMaO10:15
savvascld2: hm.. I'd suggest a bug report http://bugs.ubuntu.com10:15
vmlinuz-btw is there something similier to kdiskfree in gnome?10:15
LiMaOWorkingOnWise: you're welcome =D10:15
amrso i need to change the DPI into 50 to make it looks 100 ? Amaranth:10:15
cld2savvas: ok thanks10:15
=== pwuertz [n=pwuertz@dslb-084-058-032-136.pools.arcor-ip.net] has joined #ubuntu+1
lee__besides I know that if i was try to save it or run it it could not be good lol10:15
vmlinuz-i'd like to check on my partitions & spaces I have used/or free space10:15
borovy3488GnomeBaker says that I don't have permission to access my dvd burner.  How do I get access???10:15
savvascld2: maybe something installed creates problems, check System > Preferences > Session in fail safe (i think you can)10:16
Amaranthamr: no10:16
LiMaOvmlinuz-: Applications > Acessories > Disk usage analyzer10:16
Amaranthamr: just put GNOME's DPI to 100 and then put that line on your xorg.conf Monitor section10:16
Amaranthamr: then everything will be the same size10:16
amrok how to do it , what to do with 520x32510:16
vmlinuz-LiMaO: there I have only 1 partition and nothing else. is that all it? ;p10:16
LiMaOvmlinuz-: or you can System > Administration > System Monitor10:16
Amaranthamr: "DisplaySize 520 325" is a line to put in your xorg.conf10:16
amrok m but x server ok10:17
cld2savvas: ok, ill have a look. thanks for the help10:17
LiMaOvmlinuz-: click on 'scan filesystem'10:17
LiMaObut better to use System Monitor10:17
LiMaOeasier to understand10:17
vmlinuz-ok10:17
kRushvmlinuz-, df -h10:17
savvascld2: n/p, sorry I can't help with anything more :\10:17
kRusheasy as that10:17
LiMaOvmlinuz-: or that, if you're on a terminal =)10:17
cld2savvas: no worries :) thanks for the good ideas10:17
xnitexcan i run beryl along side compiz?10:18
savvascheers :)10:18
amrok under<what sction10:18
xnitexor are they combined now? :\10:18
=== LiMaO playing with google earth fligh simulator
vmlinuz-LiMaO: I have only /dev/sda1   directory: /     type: ext3      total: 70gb     free: 36gb10:18
vmlinuz-LiMaO: so i really have everything in one partition right.. is that bad?10:18
=== jerbear [n=jerbear@cpe-024-074-104-237.carolina.res.rr.com] has joined #ubuntu+1
xnitexi'd really like to use emerald still or another program to get more themed window settings?10:18
borovy3488does anyone have any ideas on how to get permission to uuse me dvd burner10:18
savvasxnitex: then install it10:19
LiMaOvmlinuz-: well, it's bad for backup.. your /home should always be on a different partition..10:19
LiMaOvmlinuz-: also you should have a swap10:19
jerbearis it safe to upgrade from feisty or is it better to do a clean install?10:19
vmlinuz-LiMaO: always bad for my memory, i have 1gig ram memory. and I don't have swap.10:19
savvasxnitex: you have emerald and emerald-themes packages10:19
vmlinuz-i gave virtualbox 512mb of ram just now. so that keep 512mb for my ubuntu, is that ok10:19
LiMaOeven with 4gb memory, a swap is not a bad idea =P10:19
kRushjerbear, upgrading worked just fine for me but YMMV10:19
LiMaOvmlinuz-: actually the 192mb default for winxp install using virtualbox should be fine...10:20
savvasvmlinuz-: I don't think you'll need more than 256mb in a vm, but ok10:20
LiMaObut if you gave it more, there is no problem10:20
jerbearkRush: thanks10:20
=== calavera [n=cal@195.Red-80-26-32.staticIP.rima-tde.net] has joined #ubuntu+1
vmlinuz-well i might run games in virtualbox later. heh10:21
lee__ok LiMaO I need an education lol..But, I just need a sight that talks about dealing with rpms10:21
jerbearwhat's the command to upgrade?10:21
xnitexi'd like to install them from the repo's are they already on there?10:21
cld2savvas: does failsafe gnome use the saem xorg.conf?10:21
xnitexjerbear : sudo apt-get upgrade ?10:21
LiMaOlee__: site, you mean.. not sight10:21
vmlinuz-jerbear: sudo update-manager -d10:21
vmlinuz-jerbear: that would upgrade to gutsy ok?10:21
lee__yeah10:21
LiMaOlee__: i don't know about rpms, sorry =/10:21
jerbearvmlinuz-: thanks10:22
lee__ok np Ill google it10:22
savvascld2: I don't know how it actually works :(10:22
vmlinuz-some ppl add -c but i dont understand why10:22
xnitexyeah i have the packages and after i install them through terminal they are in preferences or administration under system i guess?10:23
hmullerI installed Aide.  Had problem with autogenerated config file.  Uninstalled application, manually deleted all remaining config files. Reinstalled Aide.  Config files were not properly reinstalled.10:23
=== cdm10 [n=caleb@unaffiliated/cdm10] has joined #ubuntu+1
xnitexit says emerald themes has no installation candidate?10:23
hmullerAny ideas how to reinstall the configuration files?10:23
=== cdm10 [n=caleb@unaffiliated/cdm10] has left #ubuntu+1 ["Leaving."]
Amaranthemerald-themes does not exist10:23
jerbearis there anything special i need to do to prepare for compiz-fusion? or will it configure itself like a new install?10:23
=== LordMelchett [n=neil@host86-139-254-39.range86-139.btcentralplus.com] has joined #ubuntu+1
xnitexsavvas?10:25
savvasAmaranth: I think it will exist, I type apt-cache show emerald and double tab for autocomplete.10:25
Amaranthsavvas: It doesn't not exist because I didn't package it10:25
Amarantherr10:25
Amaranth-not10:25
vmlinuz-woah i was in virtualbox and couldn't mousehover outside of it. lol10:25
xnitexshould i just use gcompizthemer instead?10:25
savvasAmaranth: ok :P10:26
kRushjerbear, if you didn't use fusion from third party repos or sth. similar under feisty it will just work out of the box in gutsy - you might have to install the compiz meta package and ccsm is never a bad idea10:26
vmlinuz-LiMaO: I'm curious all these winxp system files where it will be in my ubuntu system, which directory?10:26
=== iehova [n=iehova@88-104-100-200.dynamic.dsl.as9105.com] has joined #ubuntu+1
xnitexi need to know how to get the pre made non gpl and gpl themes10:26
xnitexfrom terminal?10:26
kRushjerbear, also desktop effect are now activated under system >> pref. >> appearance10:27
LiMaOvmlinuz-: they will not be in a directory.. everything is virtualized into a single file10:27
LiMaOcheck out your /home/you/.virtualbox folder10:27
vmlinuz-ok10:27
vmlinuz-LiMaO: installatino of winxp is not done yet tho10:28
=== Pie-rate [n=jschall@cust-69-19-214-183.static.o1.com] has joined #ubuntu+1
LiMaOyou man open the folder anyway10:28
LiMaOso that you see what's inside10:28
Pie-ratewill the gibbon include 2.6.23 with fair scheduler?10:28
LiMaOyou will not be able to access winxp files though10:28
vmlinuz-LiMaO: i dont have ~/.virtualbox10:28
savvasxnitex: maybe emerald-theme-manager ?10:29
LiMaOvmlinuz-: it's .VirtualBox10:29
LiMaOforgor about the capitals10:29
iehovahello everyone... just installed Gutsy RC. I installed emerald, but then a weird problem appeared in that synaptic now takes up the whole screen with no title bar or anything/ ths situation is the same with emerald uninstalled and with compiz both on and off. Everything else works fine... is this a known issue... or can anyone help?10:29
iehovaI can file a bug if that's more appropriate =P10:29
vmlinuz-ah ok LiMaO10:29
Powerking89670does Gutsy still have the issue where installing two differant mp3 codecs causes the playback to be....very low quality10:30
savvasxnitex: i think you can get compiz themes from here: http://www.compiz-themes.org/10:30
vmlinuz-LiMaO: whats the real usage of winxp running from virtualbox in different cases not like mine. I mean does people use it for MSn messenger or another programs or even games like running WoW or Steam with it. is that even possible for virtualbox/winxp to run WoW/CS?10:30
=== joakim- [n=joakim@s5591c04b.adsl.wanadoo.nl] has joined #ubuntu+1
kingrayrayi use wine for wow and cs10:31
kingrayrayworks great :)10:31
=== swhalen [n=chatzill@cpe-65-31-5-179.insight.res.rr.com] has joined #ubuntu+1
LiMaOvmlinuz-: virtualbox does not emulate 3d applications, so running games is out of question10:31
swhalenHello, can someone help me with dar?10:31
vmlinuz-ah okay10:31
LiMaOvmlinuz-: in order to run windows applications, you just need to use wine.. i use it to run dvdshrink, photoshop10:31
swhaleni made a backup with hubackup, and need it back10:32
vmlinuz-LiMaO: what if the broadcast video is a 3d video. can i still view it?10:32
phaidrosI just stumbled upon mising modules in the xen kernel image. could anyone point me to doc how to build a specific module with ubuntu kernel sources, please?10:32
LiMaOvmlinuz-: yes, sure10:32
kingrayrayLiMaO: have you tried photoshop cs2 in wine?10:32
=== FFForever [n=chris@pool-71-102-115-51.sttlwa.dsl-w.verizon.net] has joined #ubuntu+1
LiMaOvmlinuz-: actually people use virtualbox to try new OS's..10:32
FFForeverhow come if i mute my sound it does nothing?10:32
LiMaOkingrayray: no CS here.. i use PS710:32
kingrayrayLiMaO: me too, thats why i asked :)10:32
=== Assid [n=assid@unaffiliated/assid] has joined #ubuntu+1
LiMaOkingrayray: that's the latest i have =P10:32
kingrayrayi heard it works10:33
kingrayrayme too10:33
Assidheya10:33
phaidrosguys, this is linux channel ;)10:33
LiMaOphaidros: we're talking about wine ;)10:33
LiMaO=P10:33
kingrayraywe are talking about what we can and can't do with linux :D10:33
cld2savvas: for what ever reason after I rebooted out of failsafe session regular gnome works.10:33
=== giorgos [n=giorgos@xdsl-81-173-154-247.netcologne.de] has joined #ubuntu+1
FFForeverhow about help for my nubbness?10:33
phaidrosyadda yadda ..10:33
kingrayray:P10:33
savvasphaidros: maybe you need: sudo apt-get install xen-headers10:33
FFForeveri mute my sound and nothing happens....10:33
Assidhow goes it10:33
phaidrossavvas: I have, but how to compile from within kernel-headers??10:33
FFForeversound still plays.....10:33
Evanlecanyone think cs2 really runs good in wine? i found it kind of annoying10:34
vmlinuz-FFForever: plays where? in everything?10:34
FFForeveryeah everything....10:34
savvascld2: magic :) lol, it happened to me once, maybe it just needed to load new stuff, I'm not an expert in any of those areas though :P10:34
vmlinuz-FFForever: which WM you use?10:34
FFForeveri muted the mater setting..., it seems as if my "master" does nothing.....10:34
FFForevergnome :D10:34
AssidEvanlec: you dont wanna game with fast fps requirements through wine10:34
Powerking89670kingrayray: I'm gonna try and install PS CS2 on wine now, I'll let you know how it goes10:34
EvanlecAssid, im talkin about photoshop CS210:35
Assidoh10:35
Assid:|10:35
Evanlecone of the only apps i really need thats non-native10:35
vmlinuz-FFForever: hm, do you have different mixer in your system tray or something10:35
Assidif im not mistaken photoshop cs works fine tho10:35
FFForeverjust the standard sound one...10:35
Assidcs2 last checked didnt10:35
kingrayraycs2 does work10:35
FFForeverif i use pcm to lower the volume though that works :P10:35
Evanlecwell i installed it and it "works" but...i dunno, i wasnt impressed10:35
kingrayrayhttp://luiscosio.com/how-to-adobe-photoshop-cs2-on-ubuntu-10-steps10:35
vmlinuz-FFForever: when you mousehover over it. it says "Master" Or "Mixer" ?10:35
kingrayray:)10:35
giorgoshello i have a question. Has something be changed for nfs mount? i was able with fisty to mount my nasfiler without problems but now with gutsy gibbon i canot establish a conection10:36
Evanlectakes forever to start10:36
phaidrosanyone? howto compile a specific kernel module with ubuntu sources? (a hint to documentation would be great!)10:36
=== LordMelchett [n=neil@host86-139-254-39.range86-139.btcentralplus.com] has left #ubuntu+1 []
vmlinuz-FFForever: ah you have external speakers, not headphones yes?10:36
=== alka_trash [n=Homeslic@c-67-189-14-22.hsd1.or.comcast.net] has joined #ubuntu+1
FFForeveri have a laptop :P10:36
Amaranthphaidros: which kernel module?10:36
vmlinuz-FFForever: ok look, right click on your master that is in the trey then go to prefences10:36
Amaranthphaidros: it should have a build system that finds the kernel headers and builds10:36
savvasphaidros did you see this? maybe you need: sudo apt-get install xen-headers10:36
Amaranthphaidros: you're trying to compile xen?10:37
vmlinuz-FFForever: and there you pick "PCM" then click close10:37
FFForevervmlinuz-, it worked on 7.04.....10:37
Assidyou guys wanna know something funny10:37
vmlinuz-yea, try what im telling you now.. put on prefences in PCM, and mute see if that works10:37
savvasFFForever: have you reported it in bugs? http://bugs.ubuntu.com10:37
Assidi got quite a few guys off windows and onto kubuntu/mac10:38
Assidbut im still on this10:38
Assidlol10:38
phaidrossavvas, yes I have seen :)10:38
FFForeverif i mute pcm yes it mutes everything....10:38
FFForevercan anyone help me with my mouse bug yet?, http://paste.ubuntu-nl.org/40596/10:38
phaidrosAmaranth: I'm familiar with basic kernel compiling and so on. I just wonder how to compile just a specific module (in my case: speedstep and madwifi, both mising/broken in recent xen-image)10:38
LiMaOhttp://limao.homelinux.net:8080/screenshot.png  --> native linux application (google earth, flight sim mode) + wine application (dvdshrink) + vbox emulated OS (winxp)10:39
Amaranthphaidros: speedstep is replaced with acpi_cpufreq10:39
=== Pie-rate [n=jschall@cust-69-19-214-183.static.o1.com] has left #ubuntu+1 []
Amaranthphaidros: and madwifi is in linux-restricted-modules10:39
=== Lattyware [n=Latty@host86-141-176-210.range86-141.btcentralplus.com] has joined #ubuntu+1
phaidrosAmaranth: Amaranth, ah IC, but acpi_cpufreq is also not in xen kernel :(10:40
vmlinuz-lol it worked LiMaO & savvas , im in winxp with virtualbox thx10:40
kingrayraylol, LiMaO.. your bandwidth just dieees as everybody clicks it :)10:40
Amaranthphaidros: Then you need to recompile the whole kernel10:40
kingrayraynice shot though10:40
AssidLiMaO: you ned more bandwith10:40
LiMaOkingrayray: lol yeah.. not enough bandwidth here =P10:40
kingrayrayhehe10:40
phaidrosAmaranth: for madwifi, I have compiled alot of madwifi stuff on embedded systems, but I still wonder how to deal with retricted modules  self compiling / ubuntu packaging / managing ..10:41
LiMaObut it's a nice screenshot10:41
FFForeverplease help me fix my mouse lol, i am going nuts with it broken....10:41
phaidrosAmaranth: whole kernel because af of acpi_cpufreq?10:41
giorgosno one ideas?10:41
LiMaOshows how powerful linux is =P10:41
Amaranthphaidros: afaik it can't be built separately10:41
phaidrosAmaranth: ok, ic10:41
FFForeveri mean it works..., but it goes nutz here and there....10:41
=== amr [n=amr@41.205.101.159] has joined #ubuntu+1
FFForever(when i use the side scrollers....)10:42
phaidrosAmaranth: but madwifi should be possible, right?10:42
AssidLiMaO:  still need a long way to go tho.. we need more support for the cheap ass chinese hardware out there10:42
Amaranthphaidros: yeah10:42
Amaranthphaidros: just make sure the headers for your linux-image are installed and run madwifi's build system10:42
phaidrosAmaranth: thanks :)10:42
Amaranth`make` and friends10:42
LiMaOAssid: shouldn't those 'generic' stuff be easier to run?10:42
AssidLiMaO: i tried in the middle with a webcam..10:43
Assiddont think it got to work10:43
LiMaOoh.. i had a webcam too.. i think i threw it away10:43
LiMaOwebcam support on linux is not good heh10:43
Assidyeah10:43
Assidand we need better alternative im's10:44
=== pecisk [n=pecisk@78.84.139.234] has joined #ubuntu+1
LiMaOi like kopete10:44
LiMaOwhat do you use?10:44
Assidyeah its nice..10:44
Assidused to use kopete10:44
FFForeveris there any im for linux with voice+web cam support?10:44
Assidright now kubuntu is only on my lappy.. desktop is back on win10:44
AssidFFForever: kopete.. or amsn..10:44
amrAmaranth : i did as you say but nothing was fixed , still the same , i think you mis-understand me as only the title bar font only is big but all other fonts are normal and if compiz had a problem to interpret the DPI from gnome why the problem solved when i add compiz --replace to session ??? that temporary fix to problem but not fixing the user and password and tends to corrupt after adding other software to startup10:44
Assidbut good luck getting it working for a cheap card10:44
FFForeverwhen did kopete and amsn add webcam support?10:45
Assidi think it should be there10:45
LiMaOFFForever: kopete has it i think10:45
Assidamsn does.. friend uses it on a mac10:45
FFForeverrebooting :)10:45
LiMaOFFForever: but no webcam works flawlessly on linux10:45
amrAmaranth : i did as you say but nothing was fixed , still the same , i think you mis-understand me as only the title bar font only is big but all other fonts are normal and if compiz had a problem to interpret the DPI from gnome why the problem solved when i add compiz --replace to session ??? that temporary fix to problem but not fixing the user and password and tends to corrupt after adding other software to startup10:45
Assidcompiz causes alot of issues10:45
Amaranthamr: Do not repeat yourself10:45
Assidmy sis' laptop starts with a hung window all the time10:45
=== XsteelWolf [n=XsteelWo@cm171.epsilon107.maxonline.com.sg] has joined #ubuntu+1
Amaranthamr: the problem is compiz starts before gnome-settings-daemon10:45
amrok i 'll try to delay gnome-setting-daemon10:46
Assidalso last time when i had nix on this.. i tried compiz. the fps just dropped10:46
Amaranthamr: you can't10:46
Amaranthamr: that's hardcoded in gnome-session10:46
Amaranthamr: and that only fixes compiz10:46
vmlinuz-directx 9.0c is that the latest?10:46
Amaranthvmlinuz-: no, directx10 is the latest10:47
LiMaOAssid: i'm on feitsy 64bit.. but still keeping those compiz desktop effects off10:47
LiMaOthey do not work with wine applications10:47
LiMaOsuch apps will display to titlebar10:47
AssidLiMaO: yeah act verrrry strange10:47
vmlinuz-Amaranth: im in winxp from virtualbox now, can i ask how to install directx & activex here? or should i go some other channel?10:47
LiMaOno titlebar*10:47
=== alka_trash [n=Homeslic@c-67-189-14-22.hsd1.or.comcast.net] has left #ubuntu+1 ["Leaving."]
Amaranthvmlinuz-: ##windows10:47
vmlinuz-trying to make my steam video working there now, but still no luck10:47
AssidLiMaO: nah.. just maximise them.. you should be fine10:48
amrok is reinstallling latest version of compiz will fix10:48
Amaranthamr: no10:48
=== wabiD [n=wabid@24-183-41-233.dhcp.mdsn.wi.charter.com] has joined #ubuntu+1
AssidLiMaO: ive had that happen to me with openoffice too10:48
LiMaOvmlinuz-: i don't think directx will be available.. as i told you, everything is virtualized, including your video card...10:48
Amaranthamr: i gave you the fix10:48
Amaranthamr: what i told you to do should have set your X server DPI to 10010:48
amri tried it but didn't fix10:48
vmlinuz-LiMaO: oh. so the steaming video will not work in the virtualbox > winxp too? >_<10:48
Amaranthamr: did it change anything?10:49
phaidrosAmaranth: just to make sure, when I take the recent xen .config, use it and do make-kpkg I should end up with the same kernelconfig as the precompiled one, right?10:49
Assidnext thing is . ive seen quicktime act very odd when visiting sites that use quicktime10:49
Amaranthphaidros: err, sure why not10:49
phaidrosso to say, the same kernel ..10:49
LiMaOvmlinuz-: what streaming video are you willing to watch? you may not even need winxp for that10:49
amrchanged the whole screen but the problem in title bar still10:49
=== bur[n] er [n=burner@unaffiliated/burner] has left #ubuntu+1 []
Assidlike if im using in browser playback10:49
Amaranthphaidros: err, sure why not10:49
Amaranthoops10:49
Amaranthamr: did it change anything?10:49
phaidrosAmaranth: ok, I never got used to *buntu's way to handle kernels so far :)10:49
LiMaOvmlinuz-: you're the one wanting to watch that pool games?10:49
=== ISS_Student [n=joseph@c-67-182-211-211.hsd1.ut.comcast.net] has joined #ubuntu+1
LiMaOthose*10:49
vmlinuz-LiMaO: i do need i think. https://www.onthenetsports.com/viewer.asp10:49
amrAmaranth : all screenn but the problem with title bar still10:49
vmlinuz-LiMaO: yea10:49
Amaranthamr: Read my question again10:50
LiMaOvmlinuz-: well, you don't need directx for that, do you?10:50
vmlinuz-LiMaO: but its not free. I bought to watch the whole event there. and i couldnt view it in linux/firefox10:50
LiMaOvmlinuz-: just try loading the site.. whatever is needed should be installed automatically10:50
ISS_StudentI installed jre and can't do java -jar <filename> can anybody help me with ths?10:50
vmlinuz-LiMaO: no other way to watch it. I keep getting errors. i tried every single way from linux, didnt work10:50
Amaranthamr: Did anything different happen when you added that line or does everything look exactly the same?10:50
vmlinuz-LiMaO: didn't work bro10:50
LiMaOvmlinuz-: what happened?10:51
amrthe screen resolution changed to bigger value10:51
amrand not for widescree10:51
Amaranthamr: I guess I can't help then10:51
amrok thnx10:51
vmlinuz-one of the requirments that i have winxp & latest directx and framework10:51
Amaranthamr: Err, sounds like you changed your screen resolution10:51
LiMaOvmlinuz-: then try installing directx10:51
LiMaOsee what happens10:51
Amaranthamr: did you just add that line to your Monitor section or did you change other numbers?10:51
vmlinuz-LiMaO: will not work. i try it all10:52
vmlinuz-LiMaO: go to the page i gave you and you'll know10:52
cld2is it possible to tell what driver im using when X is actually running? I know this sounds stupid but I think im using vesa even though xorg.conf says nvidia. thanks10:52
vmlinuz-LiMaO: it requires that file too. InstallUniDownloadPack3.exe10:53
=== _emet_ [n=emet@unaffiliated/emet] has joined #ubuntu+1
=== theCore [n=alex@ubuntu/member/theCore] has joined #ubuntu+1
LiMaOvmlinuz-: i get this error when i try to load that page10:57
Powerking89670kingrayray: The only problem I am having with my CS2 installer is that it wont let me input a serial number; I'm planning on entering it later, just letting you know10:57
LiMaOerror '80020009'10:57
LiMaO/viewer.asp, line 5710:57
vmlinuz-LiMaO: yep thats what I get too.10:57
vmlinuz-in windows it work fine. and you will watch games :)10:57
vmlinuz-but hey in virtualbox & winxp it worked ;)10:58
LiMaOthat's a problem with the page, isn't it?10:58
kingrayrayPowerking89670: i haven't tried it yet, i just found that it is possible hehe10:58
vmlinuz-nop. not with the page. it just run in my brothers laptop and now it did with winxp in virtualbox10:58
Powerking89670kingrayray: good! because I hate boting into my Virtual Machine to use it because its SLOW in the VM10:58
LiMaOvmlinuz-: oh ok10:58
LiMaOvmlinuz-: btw, there's this page aswell https://www.onthenetsports.com/help.php10:59
LiMaOthat has a link to something that should be downloaded10:59
=== buzztracker [n=buzztrac@pelikan.garga.net] has joined #ubuntu+1
vmlinuz-LiMaO: yep I read that already long ago, and he download is only for windows system. Not for linux11:00
LiMaOvmlinuz-: but you can download and install it on your virtualized xp11:01
LiMaOyou are running xp on a virtualbox, aren't you? that's an xp. you can download stuff with it and install them11:01
=== jojo4u [n=jo@pD9504E52.dip0.t-ipconnect.de] has joined #ubuntu+1
thomas_vmlinuz-: what's still not working?11:02
cld2if I have nvidia with the restricted driver do I have to enable aiglx in xorg.conf or is it on by default?11:02
thomas_cld2: have a look and find out ^^11:02
ussercld2: its on by default11:03
ussercld2: but still check for compozite extension option in xorg11:03
=== cliang [n=cliang@83.147.140.207] has joined #ubuntu+1
cld2thomas_, usser : thanks. this is all new to me, ive been using wmii a mouseless no frills wm for over 3 years. Ive missed all this fancy 3d desktop stuff. just starting to think it might be the way to go now with all the ways to view your open windows/programs.11:05
=== billytwowilly [n=chris@S01060016b649355d.ed.shawcable.net] has joined #ubuntu+1
thomas_cld2: yeah, it's all quite cool, the fancy 3D stuff, but i find it rather useless :p11:06
=== xtknight [n=xtknight@c-68-43-122-211.hsd1.mi.comcast.net] has joined #ubuntu+1
cld2thomas_: most of it yes, but super+tab is nice11:06
cld2as are the expose like effects11:06
=== CheeseGardener [n=steve@cpe-72-227-37-48.stny.res.rr.com] has joined #ubuntu+1
thomas_cld2: just give me kde sith multiple desktops and i'll be fine11:07
=== pwuertz [n=pwuertz@dslb-084-058-007-128.pools.arcor-ip.net] has joined #ubuntu+1
CheeseGardenerDoes anyone know how to get emerland theme manager to work with gutsy?11:07
usserzoom is useful too11:07
thomas_CheeseGardener: it looks like it isn't supported anymore11:07
usserCheeseGardener: hm compiz+emerald11:07
thomas_usser: i have good eyes11:07
CheeseGardenerusser, what's that?11:08
thomas_oh dear11:08
vmlinuz-thomas_: thanks everything is working well :) I'm watching the steam video from virtualbox & winxp right now hehe11:08
vmlinuz-its live. ;) missed couple of matches tho but its all good now11:08
usserthomas_: well i use for full-screen youtube videos and such cause youtubes own fullscreen sucks11:08
thomas_vmlinuz-: ah nice11:08
thomas_vmlinuz-: have fun now and watch till your eyes peel out11:08
thomas_:p11:08
usserCheeseGardener: are u using compiz?11:08
CheeseGardenerI'm in Gutsy right now.  So it's got compiz fusion built in.11:09
usserCheeseGardener: so install emerald and compiz will use it instead of metacity11:09
CheeseGardenerit's not though.11:10
CheeseGardenerCompiz fusion uses the "appearance" menu now11:10
usserCheeseGardener: did u do compiz --replace?11:10
CheeseGardenerMetacity is built in11:10
CheeseGardener?11:10
CheeseGardenerno... what's that?11:10
usserCheeseGardener: ok u have emerald installed right?11:11
=== WorkingOnWise [n=workingo@68-188-193-183.dhcp.mrqt.mi.charter.com] has joined #ubuntu+1
CheeseGardeneryes11:11
usserCheeseGardener: and compiz is running right now?11:11
CheeseGardenerUm... I think so yes.11:11
CheeseGardenerthe effects are on so11:11
CheeseGardenercompiz fusion is on11:11
usserCheeseGardener: ok alt+f2 type in ccsm11:11
usserCheeseGardener: find window decoration plugin11:11
ISS_StudentAnybody know if there is a problem with RC and boot splash Mine isn't working11:12
usserCheeseGardener: and under command put emerald11:12
=== thomas_ [n=thomas@217-148-245-121.happymany.net] has joined #ubuntu+1
CheeseGardenerI'm looking11:12
usserISS_Student: mine is distorted too, i just turned it off11:12
CheeseGardenergtk-window-decorator --sync11:12
=== pvl1 [n=pavel@71.175.24.250] has joined #ubuntu+1
pvl1ubuntu wont mount my ipod anyone help?11:12
CheeseGardenerwhat do I change that to?11:13
usserCheeseGardener: emerald11:13
vmlinuz-wow i gave way too many ram to my virtualbox winxp I think. I feel my linux is going slowly now. can i adjust that and lower the ram for winxp now?11:14
CheeseGardenerit's not doing anything.11:14
CheeseGardenerit still looks the same.11:14
=== davidw [n=davidw@apache/committer/davidw] has left #ubuntu+1 ["Leaving"]
=== rpereira [n=rpereira@ubuntu/member/rpereira] has joined #ubuntu+1
=== silent [n=silent@S01060050bac94b86.cg.shawcable.net] has joined #ubuntu+1
silentwhere is the recycling bin in root?11:15
thomas_vmlinuz-: yes11:15
xnitexi have the same issue cheesegardner with trying to theme my window decorations using "compiz themes" that are all .emerald files11:15
=== amr_ [n=amr@41.205.101.236] has joined #ubuntu+1
thomas_vmlinuz-: in the vmware setting of your xp installation11:15
xnitexit doesn't change11:15
vmlinuz-thomas_: ok11:16
LiMaOvmlinuz-: but stop the system before adjusting it (turn off xp i mean)11:16
vmlinuz-how do i do that? Just mouse click on "X" ?11:17
CheeseGardenerI got it work11:17
xnitexwhat did you do cheese?11:17
xnitexcheesegardener: ?11:17
LiMaOvmlinuz-: click on start, turn off computer11:17
=== noah__ [i=29571@WideOpenBSD.ORG] has joined #ubuntu+1
vmlinuz-oh ok11:17
LiMaOfrom inside your virtualized xp11:17
pvl1ubuntu wont automount my iPod, does anyone know why this would happen11:17
LiMaOit works just like a normal xp11:17
CheeseGardenerthe key is to disable effects in appearance, then when you put in emerald under the window decorate preferences renable the visual effects to "custom" after.11:17
CheeseGardenerif you don't turn the effects all the way off, it can't reload the window manager11:17
=== bur[n] er [n=burner@unaffiliated/burner] has joined #ubuntu+1
noah__Has anyone tried Ekiga after the last week's updates in Gutsy? I can't get it to work anymore. No audio, GUI hangs, random crashes on incoming calls, can't answer incoming calls, ..11:18
=== Snuxoll [n=stefan@63-227-103-121.spkn.qwest.net] has joined #ubuntu+1
SnuxollGutsy's new X hates my monitor....keeps forcing it into widescreen resolutions11:18
=== Odd-rationale [n=Odd-rati@adsl-65-68-204-20.dsl.rcsntx.swbell.net] has joined #ubuntu+1
SnuxollTried a dpkg-reconfigure xserver-xorg but that fixed nothing11:19
=== bcherry [n=bcherry@c-67-188-86-12.hsd1.ca.comcast.net] has joined #ubuntu+1
=== nzero [n=nreynold@70.255.42.157] has joined #ubuntu+1
vmlinuz-ok i turned it off, firstable let me fix the usb thing. should i close virtualbox and do the init.d/dev stop?11:19
=== magnetron [n=magnetro@unaffiliated/magnetron] has joined #ubuntu+1
LiMaOno need to stop it11:21
vmlinuz-LiMaO: should i restart the service boxdrv ?11:21
Odd-rationaleI understand that Gusty can encrypt your entire hard drive. 2 question: Is it available only in the text mode installer? Can I change the password for the encryption? Thanks!11:21
LiMaOjust edit the file the restart udev11:21
LiMaOvmlinuz-: no need to do anything else besides editing the file and restarting udev11:21
SnuxollOdd-rationale: Yes, alternate install only11:21
=== giorgos [n=giorgos@xdsl-81-173-154-247.netcologne.de] has joined #ubuntu+1
WorkingOnWiseLiMaO: the fix you gave for vb got xp runing, but didn't fix the error. should i be able to plug a usb device into my laptop, and see it in the vm?11:22
Odd-rationaleThx, Snuxoll. Is it possible to change the password or is it fixed?11:22
vmlinuz-LiMaO: you know what, its already 066611:22
LiMaOWorkingOnWise: what error are you still having? let's fix it =)11:23
vmlinuz-LiMaO: I remember i edited it before, but that was from before. the older virtualbox that i got from apt-get11:23
LiMaOvmlinuz-: then it's all good11:23
SnuxollOdd-rationale: I'm not sure, I know you can set it during the install, but I don't think you can change it11:23
LiMaObut it seems you both are getting some error message anyways11:23
vmlinuz-now, can i start the winxp without running the innotek virtualbox startup11:23
Odd-rationaleOK, Thanks!11:23
LiMaOvmlinuz-: yes11:23
=== pashashome [n=chris@pool-71-119-87-183.lsanca.dsl-w.verizon.net] has joined #ubuntu+1
vmlinuz-LiMaO: how pls11:24
WorkingOnWiseok. I gotta savee the machine state first...11:24
LiMaOer, actually i understood what you asked now... you can't.. you should use innotek window to 'start' a machine11:25
=== CheeseGardener [n=steve@cpe-72-227-37-48.stny.res.rr.com] has left #ubuntu+1 []
vmlinuz-ok thank you LiMaO11:25
pvl1My ipod wont automount11:25
WorkingOnWisegrrr. cant get to settings with a saved state. gotta shut down the vm...11:25
noah__Has anyone tried Ekiga after the last week's updates in Gutsy? I can't get it to work anymore. No audio, GUI hangs, random crashes on incoming calls, can't answer incoming calls, ..11:26
nzerohas anyone  actually succesfully used the screen admin thing yet11:27
WorkingOnWiseLiMaO: OK. The error is "Could not load the Host USB Proxy Service"11:27
LiMaOWorkingOnWise: are you on gutsy?11:28
WorkingOnWiseyes11:28
LiMaOthat's unfixable =/11:28
xnitexi can't get any of the compiz themes which have the ".emerald" extension to change the window decorations using emerald theme manager11:29
LiMaOgotta wait till the final version of gutsy, so that innotek will release a version of vbox that fully works on it11:29
WorkingOnWiseis that to say it will be fixed after Gutsy goes stable?11:29
xnitexhelp anyone?11:29
WorkingOnWiseok...11:29
WorkingOnWiseso, what won't work due to that error? USB?11:29
nzerodoes anyone know anything about the screen and graphics admin app11:29
LiMaOWorkingOnWise: you may try plugging in some usb device and see what happens11:30
larson9999nzero, yeah, i know it doesn't work for my geforce go card11:30
larson9999:)11:30
SnuxollGutsy's new X hates my monitor....keeps forcing it into widescreen resolutions11:30
WorkingOnWiseso it isn't a dealbreaker.11:30
nzeroit seems to not work period11:31
xnitex?????????11:31
nzerowhat is the point of it if it supports nothing11:31
=== djennewe [n=djennewe@216-161-10-250.sxfl.qwest.net] has joined #ubuntu+1
=== exalarge [n=exalarge@dslb-084-062-095-112.pools.arcor-ip.net] has left #ubuntu+1 ["leaving"]
=== usser [n=dcherniv@ool-18b8e9e6.dyn.optonline.net] has joined #ubuntu+1
xnitex????11:32
nzeroI tell it the exact model of my monitor and i try and hit the test button, the screen goes blank, system locks, can't even get into the tty11:32
nzeroand they have days to fix it11:32
nzerolike what less then a week11:33
nzeroits not going to work11:33
larson9999nzero, good, it's not just me :)11:33
WorkingOnWisety LiMaO. Between running a beta, and finding all sorts of outdated info on the web, I have been very confused with vb...11:33
xnitexnzero : yeah thats why its a beta version11:33
xnitex:] 11:33
nzeroyeah but beta is ending and stable is days away11:33
nzeroand there not even close11:33
nzeroI just don't understand why it can't remember my monitor even when i tell it what it is11:34
Snuxollnzero: I know, I blame bulletproof X for this11:34
nzeroits one thing for the plug and play not to work but when I tell it the specs and then it locks up11:35
SnuxollGutsy keeps forcing my monitor into widescreen resolutions that AREN'T EVEN IN MY xorg.conf FILE11:35
nzero.....snuxoll, what do you mean11:35
=== ConstyXIV [n=andrew@74-138-236-52.dhcp.insightbb.com] has joined #ubuntu+1
giorgosi canot mount my nfs file system. Is something diferent in Gibbon?11:36
ConstyXIVhasn't there been a port of WebKit to Epiphany?11:36
SnuxollResolutions listed in my xorg.conf: 1280x1024, 1024x768, 800x60011:36
LiMaOWorkingOnWise: you have to try it.. i like experimenting.. when i find an error, i'll do my best to understand it and possibly fix it11:36
SnuxollIt keeps forcing my monitor into stuff like 1024x900 and stuff11:36
Snuxoll1280x90011:36
nzeroyo, amaranth,  whats up with the screens and graphics app11:36
Snuxollnzero: I don't think it's the app, even manually configuring my x-server doesn't work right11:37
=== murkyMurk [n=mark@host86-139-234-150.range86-139.btcentralplus.com] has joined #ubuntu+1
nzerothe point of the X server is to give a graphics aid to operation of the system, first set of business should be complete interfacing with inputs and displays11:38
murkyMurkanyone else notice that gecko based browsers keep crashing?11:38
=== joakim- [n=joakim@s5591c04b.adsl.wanadoo.nl] has joined #ubuntu+1
Snuxollnzero: Like I said, I think it's the new bulletproof X that's killing us11:38
pvl1After updating my comp my ipod wont automount, can anyone help me?11:39
nzeroespecially for ubuntu which is suppose to be for consumers11:39
=== nosrednaekim [n=michael@01-083.200.popsite.net] has joined #ubuntu+1
nzeroSnuxoll: new X, what has changed11:39
Snuxollpvl1: Tried replugging it?11:39
pvl1snuxoll:like 12 times11:40
xnitexi guess no one will discuss my question about theming with compiz and emerald? and it not changing anything?11:40
nosrednaekimpvl1: hey..... whats up?11:40
Snuxollnzero: To prevent bad X configs from preventing gdm to start they made some weird changes to X........I think that's what's killing me11:40
pvl1xnitex: not all comps can handle either11:40
murkyMurkfirefox, galeon, epithany all lockup after a few seconds...opera still working11:40
nosrednaekimxnitex: whats the problem?11:40
SnuxollWHY does X seem to ignore the EDID information from my monitor?11:40
xnitexokay first11:40
=== lamalex [n=alex@c-71-225-68-151.hsd1.pa.comcast.net] has joined #ubuntu+1
nzerowhat does emerald have thats cool11:40
xnitexpvl: i think i know what chipset i'm running and that it is supported11:41
pvl1xnitex: video card?11:41
xnitexand norsednaekim : hagl!11:41
xnitex:] 11:41
nosrednaekimnzero: its hasreally really nice customizable window decorations.11:41
Snuxollemerald is dead though11:41
xnitexokay well heres the deal, the compiz themes page has all the compiz themes on it11:41
murkyMurkSnuxoll: over riden in the xorg.conf?11:41
xnitexthat have .emerald extensions11:41
nosrednaekimxnitex: what?11:41
xnitexso yeah11:42
vmlinuz-hey LiMaO do i need to install any drivers there in virtualbox winxp? Because the quality isn't right. it suppose to be better regarding to my laptop. and here i have better vga card than the laptop.11:42
nosrednaekimSnuxoll: no its now.11:42
ConstyXIVnzero: just to warn you, emerald is REALLY unstable at times11:42
ConstyXIVexpect crashes11:42
xnitexand pvl : i know what my card can do, and what it is, and i know thats not the problem11:42
nosrednaekimnever crashed on me... I think maybe it like KDE better11:42
SnuxollmurkyMurk: Yes, I've manually run dpkg-reconfigure on my X config, still doesn't work right11:42
xnitexbut yeah i really think its weird because its not working applying themes but all the rest of compiz works and the compizconfig works, etc etc11:43
murkyMurkSnuxoll: nvidia?11:43
SnuxollmurkyMurk: ATI Radeon 9500 PRO11:43
nosrednaekimxnitex: so...... whats EXACTLY is the problem? in one line preferably..11:43
Snuxollrv350 chi[11:43
Snuxoll*chip11:43
pvl1nosrednaekim: ey m8. well actually i ahve 2 problems, 1 more urgent then the other. my iPod wont automount, and creox keeps giving me an error11:44
murkyMurkSnuxoll: call me an old cynic but I think your problem would go away if you were to use Nvidia11:44
Snuxoll15" Micron CRT monitor11:44
larson9999i'll go back to feisty if this doesn't work after gutsy is released.11:44
nosrednaekimcreox requires some jack stuff thats pretty hard to get working.11:44
SnuxollmurkyMurk: It worked fine in feisty though11:44
xnitexnosrednaekim : i try to get .emerald compiz them files from the site, i have compizconfig installed, emerald installed, i try to import and apply window themes/whatever they are haha and it just stays the same! what do i do? and i know my card works because its running compiz just fine11:44
larson9999murkyMurk, i'm using nvidia and my card is a no go in gutsy.11:45
SnuxollFor crying out loud, my monitor's EDID SAYS 1024x768, and it doesn't even default to that11:45
larson9999buy hey, ati is going OS, finally?11:45
nosrednaekimxnitex: after selecting a theme, run "emerald --replace" from the command line.11:45
murkyMurkSnuxoll: larson9999: hmmm.. i have SLi twin cards to LCD working fine in Gutsy11:45
Snuxolllarson9999: Only with the newer cards11:46
pvl1nosrednaekim:figured, ill look into jack, but got any idea towards te ipod thing?11:46
larson9999Snuxoll, yeah.11:46
=== level1_ [n=level1@129.210.188.252] has joined #ubuntu+1
SnuxollPeople with rv400 and below chips are SOL11:46
nosrednaekimpvl1: do you use amarok?11:46
larson9999murkyMurk, the old, "works for me."11:46
SnuxollmurkyMurk: It'd be less annoying if it stopped thinking my monitor was widescreen11:46
pvl1nosrednaekim: i us erythembox, but i mean ubuntu wont mount it at all. like i cant browse thru it11:46
xnitexhot damn it worked nosrednaekim, thank you!11:46
murkyMurklarson9999: yeah but it means that it's unlikey to be 'gutsy' at fault and more likely to be something else11:47
larson9999something about this laptop display is the problem.11:47
nosrednaekimSnuxoll: not so... I've heard many reports of rv300-490's working.11:47
murkyMurkSnuxoll: you tried hand coding an xorg.conf to force it? or used one of the manual configuration apps that X comes with?11:47
nosrednaekimxnitex: NP11:47
Snuxollnosrednaekim: I'm talking about ATI's new Open Source drivers11:47
SnuxollmurkyMurk: YES11:47
xnitexnosrednaekim : when i close that terminal window, it exits the window borders, how to fix that and make it permanent?11:48
=== linxeh [n=linx@88-96-202-38.dsl.zen.co.uk] has joined #ubuntu+1
nosrednaekimpvl1: try getting amarok... it works really well with ipods11:48
nosrednaekimxnitex: run it from "alt+f2"11:48
SnuxollMaybe using the FGLRX drivers will fix my problem, but I don't want to loose AIGLX...11:48
=== allorder [n=allorder@65.92.170.173] has joined #ubuntu+1
pvl1nosrednaekim: will try11:48
nosrednaekimSnuxoll: AIGLX will be in the next FLGRX11:49
=== nosrednaekim can't wait
larson9999murkyMurk, perhaps.  i don't know anyone else with a dell inspiron 8200 and gutsy to see if it works for them.11:49
xnitexyou mean from tty2 nosrednaekim?11:49
xnitexnosrednaekim : "alt+f2" did nothing11:49
murkyMurkSnuxoll: larson9999; just have to add your experiences along side MCP55 nvidia sata that hasn't worked since fiesty11:49
nzerowhats AIGLX11:50
nzero!AIGLX11:50
=== NeedHelp [n=ubuntu@c-71-59-107-30.hsd1.pa.comcast.net] has joined #ubuntu+1
ubotuAIGLX is a project that aims to enable GL-accelerated effects on a standard desktop. Supported cards: Nvidia: GeForce3 or newer; ATI: Radeon 7000 through X800; Intel: i810 or newer. Howto: https://help.ubuntu.com/community/CompositeManager/AIGLX. For older Nvidia or newer ATI cards see !xgl11:50
nosrednaekimxnitex: no.... I mean, press "alt+f2" and run it from there (a run command dialog)11:50
murkyMurklarson9999: can't even help there, my lappy is an Acer with Intel i81011:50
SnuxollmurkyMurk: MCP tries to take over the world anyways....11:50
NeedHelpAre there any major Gusty bugs to watch out for?11:50
xnitexnosrednaekim : i press that11:51
xnitexand nothing happens11:51
NeedHelpBTW Is ATI All in Wonder 9600 FINALLY supported?11:51
nosrednaekimxnitex: I'm using KDE... so things may be different ;) run "emerald --replace &" then... which should detact the process from the terminal11:51
xnitexthanks will try11:51
nzerodoes anyone know if they will have the screens and graphics admin app working by final11:51
murkyMurkSnuxoll: i ended up sticking a cheapo VIA6421A sata/pata PCI expansion card in to get my DVD bacl online11:51
murkyMurknzero: my screens and admin works now11:52
=== stefg [n=stefg@e179144201.adsl.alicedsl.de] has joined #ubuntu+1
NeedHelp!gutstybugs11:52
ubotuSorry, I don't know anything about gutstybugs - try searching on http://ubotu.ubuntu-nl.org/factoids.cgi11:52
NeedHelp!gutsy11:53
nzerois that suppose to be a joke murky11:53
NeedHelp!gutsy11:53
ubotuGutsy Gibbon is the code name for the next release of Ubuntu (7.10) | (due October 18th, 2007) | It is development software, and as such unstable, support _only_ in #ubuntu+1 | See https://wiki.ubuntu.com/GutsyGibbon for more information11:53
LiMaOvmlinuz-: you need to install vbox guest additions... you just have to select it on innotek's window menu11:53
murkyMurkNeedHelp: not really, like any operating system the major pitfalls are all compatibility issues11:53
xnitexnosrednaekim : it worked using & thanks11:53
vmlinuz-can i do that while xp is running? LiMaO11:53
LiMaOit MUST be done while xp is running11:54
xnitexvmlinuz : one would think you would have to11:54
xnitexXD11:54
LiMaOit'll isntall guest additions on that virtual xp of yours11:54
murkyMurknzero: nope, works fine last time i checked it..i'll check it again now11:54
nzerotry and tell it the exact model of your monitor.11:54
vmlinuz-LiMaO: how do i do that pls, I'm looking around as we speak11:54
murkyMurknzero: yep, doing what it shoudl11:54
NeedHelp!changename11:54
ubotuSorry, I don't know anything about changename - try searching on http://ubotu.ubuntu-nl.org/factoids.cgi11:54
nzeroyou will have to log out though11:55
nzerowhat kind of card are you running murky11:55
murkyMurknzero: nope, just menu & password11:55
LiMaOvmlinuz-: on the window where it shows your virtual xp, click on Devices, then Install Guest additions11:55
=== blkno1 [n=jim@pool-70-109-145-154.cncdnh.east.verizon.net] has joined #ubuntu+1
murkyMurknzero: SLi 7600GS11:55
murkyMurknzero: two of 'em in SLi format using nvidia restricted on gutsy11:56
vmlinuz-LiMaO: im there, i cant find devices11:56
LiMaOvmlinuz-: let me provide you a screenshot, just a sc11:56
=== heartsblood [n=heartsbl@pool-71-163-112-67.washdc.fios.verizon.net] has joined #ubuntu+1
pvl1nosrednaekim: well amarok seems pretty good, but like ubuntu does nto recognize that my ipod is plugged in11:57
murkyMurklol, so my odd graphics works A Okay, it's just my PCI buss SATA interface that's borked11:57
nzeroi'm running a ATI Radeon with two monitors hooked up, I installed with just the one hooked up, tried to tell gutsy what monitor it whats and everytime  I restart if goes back to the default.11:57
nosrednaekimpvl1: ok... plug it in and then run "dmesg" and pastebin it.11:57
pvl1sec11:57
nzerowhere do is the config file for XGL11:58
=== daekdroom [n=marcos@189.27.1.99.adsl.gvt.net.br] has joined #ubuntu+1
nzero!XGL11:58
ubotuCompiz (compositing window manager) and XGL (X server architecture layered on top of OpenGL) - Howto at http://help.ubuntu.com/community/CompositeManager - Help in #ubuntu-effects11:58
vmlinuz-thanks because that virtualbox running the steaming live video is real slow, im having a laptop near me running it in the same time, when laptop have happenings or someone speaking, its a long delay until that happen in my virtualbox if u know what i mean >_< like laptop is more clear & whatever happens in laptop, happens in virtualbox after 1min or so, and it goes way behind and behind more and more..11:58
pwuertzHey, I got a problem with totem... after using the seek-bar below the video.. the seek-handle is glued to my mouse even after releasing the mouse button.. hence the video is jumping around as I move the mouse anywhere within the totem window11:58
=== sdall [n=sdalley@82.153.178.169] has joined #ubuntu+1
pwuertzis this a known bug?11:58
murkyMurknzero: so X gets rewritten on every boot? No idea how that can even happen11:58
pvl1nosrednaekim uhm in a terminal i typed sudo hald, and my ipod randomly mounted, but hald wont load11:58
pvl1nosrednaekim: think i just need to restart11:58
heartsblooddoes anybody know when gutsy will be getting the 3d desktop plugin for compiz?11:58
nzeroits like i never changed the settings11:58
LiMaOvmlinuz-: http://limao.homelinux.net:8080/where.png11:59
murkyMurkpwuertz: probably, use mplayer or vlc11:59
daekdroomwhat`s the comand to use the xorg config util?11:59
nzeroheartsblood: it already has it11:59
heartsbloodwhere?11:59
=== DanaG [n=DanaG@71-9-52-25.static.snlo.ca.charter.com] has joined #ubuntu+1
nosrednaekimpvl1: k11:59
nzeroyou have to install compiz manager and enable it11:59
nzeroits in the repos11:59
DanaGAnything new since two days ago?11:59
pvl1nosrednaekim well thanks anyway, goodbye11:59
daekdroomwhat`s the comand to use the xorg config util?11:59
pwuertzmurkyMurk: I got these players installed.. but isn't this something that should be fixed for the final release :) ?11:59
nosrednaekimdaekdroom: "sudo dpkg-reconfigure xserver-xorg"12:00
nzeroyou also have to go the preferences/apperance and tell it to use custom settings12:00
level1_I've had a weird problem with alsa for a while, basically, LFE is not controlled by master, and it makes it a little hard to control the volume and mute, because with master muted I still have sound from LFE12:00
daekdroomnosrednaekim thanks =)12:00
vmlinuz-thanks LiMaO found it12:00
=== buzztracker [n=buzztrac@pelikan.garga.net] has joined #ubuntu+1
murkyMurkpwuertz: I suspect final will be a relative term ;-) Feel free to report it as a bug on the forum12:00
nzerowhy is that windows has none of these compatibility problems12:00
DanaGlevel1_: Here's a workaround: in the Gnome volume thingy, use the 'ctrl' key to select multiple lines as master.12:01
LiMaOvmlinuz-: it'll start installing something in your virtual xp, just like if you had clicked an .exe in there12:01
heartsbloodnzero: I have compiz-fusion installed and running fine that wasn't the question.  I'm asking about the 3d desktop plugin from beryll that made the windows "pop out" from the cube display as you rotate.  It wasn't included in the intial compiz-fusion release because of compatability issues and afaik it's still not in there unless it's part of another plugin now.12:01
murkyMurklevel1_: yeah, many soundcards behave like that..master seems to means 'front'12:01
level1_DanaG: hmmm... does that work in kde? lol... :(12:01
nzeropop out?12:01
DanaGHow do you get addon plugins without having to recompile ALL of compiz-fusion?12:01
nzerolike leave the cube12:01
heartsbloodnzero: yeap12:02
DanaGI don't know; perhaps kmix can do it.12:02
nzerowhy would you want the windows to leave the cube12:02
heartsbloodnzero: I'm trying to see if I can't find a screen shot.  it's in the live version of compiz now, just wondering when it will make it into gutsy12:02
murkyMurkDanaG: just tried that...nope, doesn't work12:02
nzeroi was running compiz fusion on feisty and it never had that12:03
heartsbloodcompiz never did, it was a beryll plugin12:03
nzeroi thought compiz fusion is compiz and beryll combines12:03
nosrednaekimheartsblood: I thought it was in .612:03
murkyMurkberyll had screen rollover horspots...they were cool12:03
pwuertzheartsblood: maybe they dropped it because of some "weird" behavior they could not fix12:04
savvasmurkyMurk: suggesting is free: http://launchpad.net/ubuntu12:04
=== vlowther [n=vlowther@adsl-75-55-115-198.dsl.austtx.sbcglobal.net] has joined #ubuntu+1
pwuertzheartsblood: like bigger windows on the window edge.. they were truncated12:04
heartsbloodnzero: yes but not all the plugins made it into the 'merge' package because of incompatablity.  as I said before the 3d plugin is working fine now in the official release but it's not in the gutsy package yet and I was wondering when it will make it's way back in12:04
=== lee__ [n=lee@c-71-59-177-24.hsd1.wa.comcast.net] has joined #ubuntu+1
murkyMurksavvas: is that linked in ubotu somewhere?12:04
=== Smitt1 [n=smitty@c-67-160-15-232.hsd1.or.comcast.net] has joined #ubuntu+1
heartsbloodhttp://compiz.org/Image:3DPlugin.jpg is a screen shot of what i'm talking about but the plugin doesn't look like that anymore.12:05
savvasmurkyMurk: read what heartsblood said to nzero above, some plugins just didn't fit :P12:05
lee__eh are there any drivers for a on  Epson CX7800 printer for linux?12:05
lee__eh it scans negatives12:05
pwuertzI miss the aquarium plugin :/12:05
heartsbloodthey actually fixed that as well12:06
savvaslee__: complain at epson :P12:06
murkyMurksavvas: ahhh, following you now, thanks12:06
nzerohmmm12:06
lee__I think I will do just that lol..though it reads its card readers lol12:06
nzeroi have a feeling gutsy want include that12:06
nzerobut neat12:06
lee__any who12:06
=== buntunub [n=davemcbo@c-24-126-85-71.hsd1.va.comcast.net] has joined #ubuntu+1
heartsbloodnzero: there is a youtube vid of it in action in the source rls of compiz-fusion and it looks really nice12:07
heartsbloodno idea what it was called though12:07
murkyMurkwhat's the cube keyboard shortcut?12:07
heartsbloodctrl-alt left click is default12:07
lee__oh send the link12:07
nzeroleft click hold12:07
heartsbloodwhat he said12:08
nzeroditto12:08
nosrednaekim!hardware | lee__12:08
ubotulee__: For lists of supported hardware on Ubuntu see https://wiki.ubuntu.com/HardwareSupport12:08
murkyMurknope, no cube here...can't have enabled it12:08
nzeroi like that plugin, wish they did include that12:08
lee__no Im ean the link to the you tube lol..12:08
nzeromurkymurk: did you install compiz manager12:08
lee__oh and thatnks for that lnk too12:08
murkyMurknzero: probably not...guess that would account for it :-)12:09
heartsbloodjust for the record, ubuntu chat > debian chat.  those guys are assholes :/12:09
=== KenSentMe [n=KenSentM@kensentme.xs4all.nl] has joined #ubuntu+1
nzeroyes, you must install that, then go to apperance in system prefs and select custom. then in compiz config enable cube.12:10
DanaGThe Cubegears plugin is still broken for me -- it eats CPU like mad.12:10
nzero\and rotate cube12:10
heartsbloodDanaG: install xGL12:10
=== DanaG is using nvidia.
nzerocubegears is cheesy anyway12:10
murkyMurkadvanced compiz effects install...damn i love add/remove12:10
=== nosrednaekim liked the atlantis plugin..
heartsbloodDanaG: doesn't matter, xgl still helps12:10
savvaslee__: what was your printer?12:11
nzeroatlantis?12:11
DanaGThat one also devoured CPU.12:11
heartsbloodDanaG: unless your using dual monitors then :x12:11
lee__hehee the CX7800 isnt even mentiond lol12:11
lee__its actually a combination scanner and printer12:11
nzerohey, can XGL support dual monitors12:11
savvaslee__: is that all-in-one then?12:11
lee__yes12:11
heartsbloodyes, but getting it to understand I dont want images to span both is a pain12:11
nosrednaekimnzero: maybe....probabaly12:11
nzero........12:11
lee__and its aobut a 400 dollar scanner printer too12:11
=== pvl1 [n=pavel@71.175.24.250] has joined #ubuntu+1
heartsblood'maximize' sends a window across both monitors in xgl, not just the one it was activated on12:12
=== Dr_willis [n=willis@74-140-6-108.dhcp.insightbb.com] has joined #ubuntu+1
DanaGWhy use XGL with nvidia?12:12
DanaGI just choose not to use cubegears.12:12
pvl1nosrednaekim: uhm any gudes for setting up jack?12:13
larson9999murkyMurk, yeah but the thing about linux is things typically work for a LONG time.12:13
lee__hehee heartsblood, I work in video we always do taht kind of thing12:13
nzerothis BS, Ubuntu Gutsy, looks better, is more secure, and has an active community creating free useful software, but it can't support dual monitors out of the box12:13
nosrednaekim!jack12:13
ubotuSorry, I don't know anything about jack - try searching on http://ubotu.ubuntu-nl.org/factoids.cgi12:13
nzerobut windows XP can12:13
nzerowith any card12:13
=== gunashekar [n=gunashek@59.92.52.76] has joined #ubuntu+1
lee__hey yes it can12:13
nosrednaekimlee__: easiest way is probably to get ubuntu-studio12:13
pvl1nosrednaekim i googled it and couldnt find anythin12:13
=== theCore [n=alex@ubuntu/member/theCore] has joined #ubuntu+1
lee__I had ubuntu , it supported dual monitors ..TV and computer12:13
larson9999nzero, errr, it's the cards supporting xp not the other way around.12:14
murkyMurklarson9999: true, but i still remember ./configure make make_install12:14
nzerotrue12:14
lee__file:///media/disk-2/picture/Picture/Picture 013.jpg12:14
savvaslee__: http://openprinting.org/printer_list.cgi12:14
lee__file:///media/disk-2/picture/Picture/Picture 014.jpg12:14
larson9999murkyMurk, yeah, i installed the driver the old way.  but it seems to me to be the display not the gc12:14
heartsbloodlee__: I"m not saying anything is wrong with it, I do that when I work in gimp.  However, it's nice to have firefox only span 1 monitor when i'm trying to watch a widescreen video OR an app that relies on the center position to place itself.  Dock apps like to place themself between the monitors in XGL making them hard to use.12:14
nosrednaekimpvl1: "apt-get install ubuntustudio-desktop"12:14
=== macogw [n=maco@unaffiliated/macogw] has joined #ubuntu+1
murkyMurkyeah! cube is back12:15
larson9999murkyMurk, you'd think after 10 years i'd be snazzy enough to find and fix the problem myself :)12:15
pvl1nosrednaekim: u think i need studio to get it work?12:15
nzeropvl1: unless you want to deal with setting up a realtime access for jack, ubuntu studio is your best bet12:15
nzeroit already is setup with realtime12:15
pvl1nzero: studio it is12:15
nosrednaekimpvl1: probably the easiest way..12:15
=== lee__ [n=lee@c-71-59-177-24.hsd1.wa.comcast.net] has joined #ubuntu+1
=== buntunub [n=davemcbo@c-24-126-85-71.hsd1.va.comcast.net] has joined #ubuntu+1
pvl1aight thanks12:15
nzerobut, studio you need a DVD burner12:16
heartsbloodDanaG: even though I was lazy and didn't bother looking for a fix for the dual moniter thing (I'm pretty sure that is), I did notice an increase using the benchmark compiz plugin with compiz12:16
lee__Ok this memory for cut an paste has OGT TO GO12:16
murkyMurklarson9999: lol there have been so many changes in that time most of what we learned at a Unix keyboard is all but useless12:16
nosrednaekimnot if you just grab it with apt-get ;)12:16
lee__its really irking me12:16
nzeroit doesn't come on regular CDs12:16
nzeroyou can't grab Ubuntu studio12:16
heartsbloodDanaG: xGL sends more instrctions to your gfx card and meaning your cpu does less work12:16
nzeroit actually has its own kernal12:16
murkyMurkno list of keyboard shortcuts anywhere in that compiz manager...we suposed to guess?12:16
heartsbloodDanaG: atleast that was the way I udnerstood it.  I could be dead wrong12:17
nosrednaekimmurkyMurk: I think its under "general"12:17
lee__ok how do I dump the meory?12:17
savvaslee__: the closest driver i could find is: http://openprinting.org/show_printer.cgi?recnum=Epson-Stylus_CX840012:17
nzeroactually murky  go to actions in the plugin your using and it will tell you there12:17
nzeroyou can also edit it12:17
murkyMurkactions...looking now12:17
lee__thanks..but major question how do I dump the meory in the cut and paste?12:17
xnitexballs12:18
=== xnitex [n=xbrutali@216.186.219.133] has left #ubuntu+1 []
lee__befor it winds up getting me banned12:18
savvasdunno:)12:18
nzero!pastebin12:18
ubotupastebin is a service to post large texts so you don't flood the channel. The Ubuntu pastebin is at http://paste.ubuntu-nl.org (make sure you give us the URL for your paste - see also the #ubuntu channel topic)12:18
=== lambert [n=guest@c-24-125-66-89.hsd1.va.comcast.net] has joined #ubuntu+1
murkyMurkta mixture of general and actions12:18
=== bratsche_ [n=cody@adsl-68-94-49-239.dsl.rcsntx.swbell.net] has joined #ubuntu+1
larson9999i done bought myself a gamecube.  the newest compared to current gen system i've ever had.  5 year old console tech is getting nice12:19
lee__I have in my mery the pictures that I had cut and pasted12:19
nzerowell murky, you can go to each individual plugin and go to actions12:19
lee__how do I clear it?12:19
=== kurisutofuaa [n=kurisuto@207.190.83.19] has joined #ubuntu+1
murkyMurkshould be listed as subtext on the front page by the check box to enable the effect with a separate window showing a demo and short description12:19
=== hinogi [n=Stefan@i577BDFAF.versanet.de] has joined #ubuntu+1
nzerolike i usually set my ALT Tab to use the shift switcher instead of the app switcher12:19
=== silent [n=silent@S01060050bac94b86.cg.shawcable.net] has joined #ubuntu+1
=== Sarco [n=Marc@c-67-188-174-205.hsd1.ca.comcast.net] has joined #ubuntu+1
=== lakin [n=lakin@66.222.169.228] has joined #ubuntu+1
savvaslee__: you mean in gimp?12:20
lee__nors, is taht an apt get application tht you mentiond earlier?12:20
silentwhat program is responsible for handling laptop volume buttons? It's not adjusting my volume12:20
=== d4rkmonkey [n=Jared@CPE000bcd15b4ae-CM00195efba7ac.cpe.net.cable.rogers.com] has joined #ubuntu+1
murkyMurklarson9999: I was eyeing up a new XBox360 for the kids..Halo3 looks kinda good12:20
lee__yes if that is waht it is12:20
savvaslee__: if you close the application, it usually clears the pasted stuff from memory12:20
AssidmurkyMurk: the company that makes halo has left microsoft12:20
nosrednaekimlee__: nors? me?12:20
heartsbloody12:21
heartsbloodwrong window12:21
Sarcohey, does anyone know how hard it will be to upgrade from the RC to the final on thursday?12:21
lee__yes sorry for the abrev12:21
larson9999murkyMurk, oh, were a good 4 years away from a 360... unless some weird situation puts one in my hands for $25(my cutoff for game systems)12:21
nosrednaekimSarco: one command..12:21
nosrednaekimSarco: will be totally safe too12:21
nzerohey did Dell do that thing where you can choose to have ubuntu preinstalled on your new system you buy?12:21
Sarcok, thanks12:21
savvasSarco: yeah, sudo apt-get update && sudo apt-get upgrade :)12:21
Sarcogreat, just checking before i install :)12:21
heartsbloodnzero: is that a joke?12:21
nzero.....huh12:22
lee__eh ill brb12:22
pvl1Nosrednaekim: http://paste.ubuntu-nl.org/40659/ i installed studio and ran creox from the terminal12:22
murkyMurksilent: system-preferences-keyboard shortcuts  use xev to catch keycodes if you have to12:22
lee__sign out to clear memory12:22
heartsbloodnzero: yes dell offers ubuntu pcs12:22
=== Sarco [n=Marc@c-67-188-174-205.hsd1.ca.comcast.net] has left #ubuntu+1 []
nzerocool12:22
=== cliffstah [n=crowley@77-99-162-252.cable.ubr01.camd.blueyonder.co.uk] has joined #ubuntu+1
nosrednaekimpvl1: you proabably have to reboot into the RT kernel12:22
silentmurkyMurk, the keys are detected, it just doesnt recognize what volume to change... I can mute and unmute but it mutes something else12:22
heartsbloodI'm actually looking at one of their laptops but their ubuntu version uses an intel gfx card which has me a little worried.12:22
heartsbloodwhy would they use an intel card for a linux laptop?12:23
nzeroso hopefully by the time i buy a new box, whatever i get from dell will be support12:23
nzerolol12:23
murkyMurklarson9999: i hear ya. I generally clear out old games & stuff on ebay and fun new toys that way...always costs but less so AND less junk in the loft12:23
nzeroprobley not but maybe12:23
murkyMurksilent: ahhh, that's an alsa command....let's see what google has12:23
=== lee__ [n=lee@c-71-59-177-24.hsd1.wa.comcast.net] has joined #ubuntu+1
silentmurkyMurk, yeah, it stopped working after an alsa update12:24
lee__ok12:24
kurisutofuaaHow is the RC looking everyone?12:24
heartsbloodI like it12:24
nzerofine except for the screen and graphics card admin tool12:24
gunashekarsavvas: hi12:24
pvl1nosrednaekim: what is that and how do i do it12:24
larson9999yeah, but if you bought new you get a fraction back.12:25
murkyMurksilent: mine work..i'll check the command string for ya12:25
=== Rob125 [n=Robborg@static24-89-79-35.regina.accesscomm.ca] has joined #ubuntu+1
heartsbloodpackages seem to be in that butter zone of up-to-date and at the same time not bleeding edge.12:25
nosrednaekimpvl1: reboot, and you should have a new kernel option.12:25
lee__ok i need to report a bug...or find out what the control yhing is fo r the cut and paste..oh wait..ill remove the card12:25
pvl1nosrednaekim: oo ok thanks12:25
nosrednaekimpvl1: I never did all this though.. so12:25
nosrednaekimmaybe there is a #ubuntustudio?12:25
pvl1nosrednaekim: ill check it out12:25
gunashekarnosrednaekim: there is12:25
murkyMurksilent: damn, no commands in that GUI keyboard shortcut thingy...WTH was that command?12:26
=== romero [n=romero@e178082072.adsl.alicedsl.de] has joined #ubuntu+1
savvashey gunashekar12:26
DanaGAny updates since yesterday?12:26
pvl1yea there is12:27
nosrednaekimDanaG: I'm sure there has been :)12:27
kurisutofuaanzero: a bug or you don't like the gui?12:28
larson9999murkyMurk, but this metroid prime is nice12:28
savvasfinally! openoffice works! oh yeah12:29
nzerobug12:29
=== keir_ [n=keir@87.113.19.253.plusnet.pte-ag1.dyn.plus.net] has joined #ubuntu+1
=== Cyynic [n=chris@S010600179a270029.ed.shawcable.net] has joined #ubuntu+1
Cyynicgreetins all12:29
keir_Hello, since upgrading to Gutsy my wireless (RT61) connection has become very unreliable, what should I do about this?12:29
larson9999savvas, you had issues with ooo?12:29
gunashekarsavvas: i installed the latest Hg snaphot as adviced by the alsa developer, now the whole thing is broken and the sound card is not even recognised. I found that though the Codec is not yet supported some people have managed to get t sound workinghe12:29
=== IndyGunFreak [n=ken@user-0cdv00n.cable.mindspring.com] has joined #ubuntu+1
nosrednaekimkeir_: what chipset?12:30
Cyynici've hit a snag with the gutsy RC, every menu has a 1+ second delay when i click it, anyone run into this before?12:30
gunashekarsavvas: guess i will wait for alsa to develop12:30
savvaslarson9999: uh yeah, back in beta, I just tested it :P12:30
keir_nosrednaekim: RT6112:30
murkyMurklarson9999: sure looks pretty12:30
nzeroit won't remember my monitor when i tell it what it is12:30
=== astro76 [n=james@unaffiliated/astro76] has joined #ubuntu+1
nosrednaekimkeir_: I mean...wireless chipset. atheros?boradcom?12:30
kurisutofuaanzero: that sucks12:30
larson9999murkyMurk, a bit dark though.  i can barely see anything12:31
murkyMurksilent: can only find amixer commands...where would you type it in anyway?12:31
silentmurkyMurk, the volume dialogue comes up, but I'm unsure how to attribute the control to a particular audio channel12:31
Rob125Cynnic: I've had that problem for a while, actually, but not just in gutsy.12:31
savvasgunashekar: well.. um, you can always try and do: sudo apt-get install --reinstall alsa-base alsa-utils alsa-tools alsa-tools-gui12:31
keir_nosrednaekim: lspci says: 00:0a.0 Network controller: RaLink RT2561/RT61 rev B 802.11g12:31
murkyMurklarson9999: that's your eyes ( - )^( - )12:31
Cyynicnzero: what's the problem?12:31
Rob125Cynnic: Are you referring to every menu -- like app menus, too, or just the start menu?12:31
Cyynicrob125: every menu12:31
larson9999murkyMurk, no.  it doesn't look dark to you?12:32
murkyMurksilent: same here,,,there seems to be no easy way to do that12:32
Rob125Cynnic: No -- not had that problem, just with the main menu. Might bugzilla it.12:32
gunashekarsavvas: i will do that, in any case sound will not work12:32
silentmurkyMurk, there must be a config file somewhere.. somewhere it's set12:32
Cyynicrob125: and it seemed fine when i first installed (i think, though i may not have noticed it looking at all the compiz goodness)12:32
murkyMurklarson9999: I haven't got a wii12:32
Rob125Cynnic: Try disabling compiz and see if that makes a difference.12:32
=== TheRepacker [n=rick@d226-43-244.home.cgocable.net] has joined #ubuntu+1
nzeroCynnic: I go into the admin for screens and graphics. I tell it what model monitor is, its says reboot, so i do12:33
Dr_willisheh trouibleshooting 101 Step #1 - is always disable compiz  now. :)12:33
Cyynicrob125: how do i go about doing that? and reenabing it after :)12:33
nzerowhen i reboot it still is the same thing as before i changed12:33
=== lee__ [n=lee@c-71-59-177-24.hsd1.wa.comcast.net] has joined #ubuntu+1
nzerooh i can't log out12:33
Dr_willisLuckly its trivial to disable/reenab le.12:33
Rob125Cynnic: Easiest way is just to right-click on the desktop, and there's a tab and an option.12:33
larson9999murkyMurk, oh, i meant the first metroid prime.  i'm years away from a wii, too.  but it's nice enough the wii might be the first system i buy within a year or so of it's release.12:33
murkyMurksilent: use to be xfce i think..wonder if it still is?12:33
nzeroit just freezes and won't let me even access the tty12:33
Rob125Cynnic: ... under 'Change wallpaper'12:33
savvasgunashekar: no idea man, as I said, it worked for several people when they add the snd-hda-intel in /etc/modules. mine is Intel Corporation 82801H (ICH8 Family) HD Audio Controller and worked out of the box12:33
Dr_willisRclick desktop -> wallpaper -> last tab.12:33
nzerobut shutdown and restart wirj fube'12:33
nzerowork fine*12:33
Cyynicthanks12:34
Rob125NP.12:34
=== Vorian [n=Steve@ubuntu/member/pdpc.supporter.active.Vorian] has joined #ubuntu+1
=== DanaG [n=dana@71-9-52-25.static.snlo.ca.charter.com] has joined #ubuntu+1
Rob125Cyynic: I found that compiz worked okay, but wound up disabling it after a week or two. It's still somewhat buggy, and frankly, it doesn't really add any function.12:34
lee__ok guys I have a seriouse issue , I can't get the stuff that is in the memory of the cut and aste out I even fully restarted my copmuter12:34
gunashekarsavvas: ok. will keep tinkering12:34
Cyynicnzero: i was having that problem, so i ran 'sudo dpkg-reconfigure xserver-xorg' and it seemed to get less sketchy the second time around12:35
fredrinGah, why is it such an old version of libpcap that comes with gutsy12:35
lee__wheres the folder at taht houses the cut and paste?12:35
Dr_willistheres like 2-3 compiz features that help me a little bit. :)12:35
nzerohmm12:35
Dr_willislee__,  folder? thers no folder that holds the stuff.12:35
savvasgunashekar: try on gnome, maybe it's a kde problem12:35
Cyynicdammit!12:35
lee__then how is it retained?12:35
Dr_willislee__,  might want to try the clipboard manager tools see whats going on.12:35
Dr_willis!info glipper12:36
fredrinand how can i make a ./configure script use the version of libpcap that is in /usr/local/lib and not the ubuntu one12:36
ubotuglipper: A clipboard manager for GNOME and other window managers. In component universe, is optional. Version 0.95.1-3 (gutsy), package size 45 kB, installed size 308 kB12:36
Rob125Dr_willis: It's got some that are cool, like Expo, and like the attach tabs plugin, but really -- I can do that just fine elsewise.12:36
larson9999so far i don't see anything in the fancy smancy stuff that looks useful.  but i'm an old foggie12:36
Cyynicfrickken disabling compiz fixing my fricken problems...12:36
lee__oh12:36
lee__eh12:36
gunashekarsavvas: can i switch to gnome without reinstall?12:36
lee__ok12:36
nzerohey if your a sound engineer then the cube is life saver12:36
=== hetauma [n=hetauma@dsl-254-112.diodos-gsrt-gr.duth.gr] has joined #ubuntu+1
Rob125Cyynic: Well, good that it's working.12:36
Dr_willisRob125,  i find expo iseless. :) havent figured out how to use the tab thing.. I like the 'show mini windows over the taskbar panel' :)12:36
Rob125nzero: how do you reckon?12:36
lee__taht is the strangest dang thing I ever did see in my life12:36
larson9999nzero, what's different between the cube and 4 desktops?12:36
Dr_willisgunashekar,  install ubuntu-desktop, select the gnome session on the login screen12:37
Rob125Dr_willis -- ahh, yeah. Forgot about that one. That's nice, too.12:37
Cyynicrob125: i guess... but the main reason i switched from kde was the bling...12:37
hetaumais it possible that an rc2 will come out before the release?12:37
nosrednaekimhetauma: probably not,.12:37
=== blenderhead001 [n=blenderh@adsl-070-145-184-070.sip.jax.bellsouth.net] has joined #ubuntu+1
gunashekarDr_willis: thanks12:37
Dr_willisRob125,  i find it handy for the '% done dialogs' :) can mouse over and see if they are done.12:37
Rob125Cyynic: I think you'll find, ultimately, that bling shall remain bling.12:37
nzerocause i can move the cube and see realtime whats going on very quickly12:37
lee__thanks I'll make a mentl note of that12:37
Cyynicis there a utility to fiddle with compiz settings?12:37
nzeroi just want to get my dual monitors working with XGL and I can have a cube for each monitor12:37
Dr_willisthe advanced compwiz control panel is not isntalled by default12:38
Cyynicrob125: i hear ya12:38
Rob125Cyynic: Yes. It's called 'ccsm'12:38
Dr_willisit lets you fiddle with everyting. :)12:38
=== BHSPitLappy [n=steve-o@unaffiliated/bhspitmonkey] has joined #ubuntu+1
savvasgunashekar: yeah do this: sudo apt-get install ubuntu-desktop12:38
hetaumaCyynic, compizconfig-settins-manager12:38
Dr_willis!find compiz12:38
ubotuFound: compiz, compiz-bcop, compiz-core, compiz-dev, compiz-fusion-plugins-extra (and 15 others)12:38
nosrednaekimCyynic: compizconfig-settings-manager12:38
Cyynicthanks12:38
gunashekarsavvas: thanks12:38
=== hmuller [n=chatzill@c-69-244-73-94.hsd1.md.comcast.net] has joined #ubuntu+1
Dr_willisI removed compiz on my laptop. and now gnome windows ahve no decoration. :)12:38
Dr_willisoopd.. heh12:38
larson9999nzero, ic.12:38
=== sdall [n=sdalley@82.153.178.169] has left #ubuntu+1 []
Rob125lol. I personally liked the 'click and drag produces fire'12:39
nzerohey, in the dpkg xorg config thing, should  i tell it to use the keyboard layout 101 or 104, isn't 104 for the super key12:39
larson9999nzero, well, if i ever get this card working, i'll check that out :)12:39
Cyynicrob125: that on was fun... once :)12:39
heartsbloodif I wanted to mix OSX and gutsy systems together should I use NFS or appletalk?12:39
Rob125Cyynic: I shamefully wrote 'I AM LORD VOLDEMORT' and took a screenshot.12:39
Dr_willisOSX can even do samba i belive. :)12:39
heartsbloodyea but samba clogs the network with random BS packets.12:40
nzerorea;;y12:40
nzeroreally12:40
Dr_williswonder if theres ssh for the sshfs to work.12:40
heartsbloodit's a nonswitched network12:40
nosrednaekimheartsblood: use NFS12:40
Dr_willisthats what ive been using lately.12:40
nzerodamn, i like samba12:40
Cyynicanyone know where i can go to ask questions regarding setting up tv-out with my nvidia car for movie watching etc?12:40
nosrednaekimyeah... OSX has ssh12:40
Cyynicrob125: hehe12:40
nosrednaekimheh... Vista has ssh12:40
nzeroscrew Vista and it mother12:40
nosrednaekimlol... Vista ultimate has NFS.12:40
nosrednaekimI was so mad when I head that12:41
Dr_willisCyynic,  i find what with a lot of nvidia cards/drivers. If ONLY the tv is hooked up. it defaults to that. I dident have to tweak my last mythtv box at all.12:41
heartsbloodnzero: yea I'm pretty sure there is a way to tone down teh ammount of discovery packets it sends out but it's still a bloated network app12:41
Cyynicnzero: i've always stuck with the defaults12:41
heartsbloodthe ><12:41
murkyMurksilent: nope can't find it..was a lot simpler with xmodmap even though it took more set up...try ubutu forum12:41
Cyynicdr_willis: that would involve disconnecting my monitor every time?12:41
silentmurkyMurk, I'll use xmodmap12:42
Dr_willisCyynic,  as i said. if ONLY the tv is hooked up.. :)12:42
Dr_willisCyynic,  in your case you wan tto mess with twinview and either clone the displays. or set up different xorg.conf server settings for one or the other.12:42
Dr_willisor have a wide monitor and drag the movie player over to the tv :)12:43
Dr_willisor have 2 X sessions going.12:43
heartsbloodbtw, could anybody recomend a good dvd-(+)rw brand?  I seem to burn one out every 8-14 months :/12:43
Cyynicdr_willis: well i guess that's a possible option.. yeah i'll have to fiddle with my xorg.conf and set up a second layout again, i just never got the bugs ironed out last time12:43
TheRepackerCyynic, If you are using a Series 7 nVidia card, do not use the 100.14.19 driver, it is buggy use the 9639 driver12:43
Dr_willisheartsblood,  gesh - I tend to stick with Plextor or Liteon.12:43
=== eljefe [n=eljefe@75-168-78-77.mpls.qwest.net] has joined #ubuntu+1
Cyynictherepacker: i've got an 8600 series12:44
Dr_willisCyynic,  i use mythtv. i can tell it to alwyas go to Monitor #212:44
heartsbloodDr_willis: I've had plextors die on me in the last year12:44
heartsblood2*12:44
Dr_willisheartsblood,  given how cheap the things are getting..   good luck. :)12:44
heartsblood:(12:44
silentwhat is the command to list sound devices12:44
Dr_willisIve had HP's die on me mainly.12:44
silenta__ -l12:44
=== gentoofan23 [n=gentoofa@gentoo/contributor/gentoofan23] has joined #ubuntu+1
heartsbloodI had 2 plextors, 1 samsung, and I dont remember what the last one was12:44
Cyynicdr_willis: i sohuld check out mythtv again, but i don't have cable (or any interest in it) and iu never figured out how to configure it last time i tried it12:45
Dr_willisCyynic,  Mythbuntu is handy. :)12:45
nzerook i'm gonna go screw up my system and with this dual monitor thing., maybe see you all in a bit12:45
TheRepackerThen the 100.14 should work according to nvidia. I have 2 cards, with 3 monitor and 2 TV/s hooked up,12:45
Dr_willisUbuntu makes Mythtv setup easy. :)12:45
nzerowow repacker12:45
nosrednaekim!12:45
nosrednaekim0.o12:45
Cyynicdr_willis i'll take a gander at it12:45
nzeroyour crazy12:45
eljefehow can I test the Kubuntu upgrade tool?  I followed the wiki but it didn't do anything after I did the "adept_manager --version-upgrade" run and "click [Finish]  to begin the version upgrade tool"/12:45
Cyynicwell thanks for the help everyone, i'm outta here12:46
nzerowhat do you do monitor every corner of your house12:46
TheRepackerone card is the onboard 6150 and I also have a PCI 7300 GT12:46
nosrednaekimTheRepacker: you can run both at the same time?12:46
TheRepackeryes12:46
nzeroc ya in a few, or after a fresh install of gutsy12:47
nzeropeace12:47
murkyMurknzero: l8rs12:47
=== nzero [n=nreynold@70.255.42.157] has left #ubuntu+1 []
nosrednaekimeljefe: what do you mean "didn't do anything"?12:47
=== murkyMurk [n=mark@host86-139-234-150.range86-139.btcentralplus.com] has left #ubuntu+1 []
Cyyniceljefe: i "tested" it two days ago. it failed to download a number of critical packages and hung at 99% configured, and the 'bug report' button was broken12:47
eljefelol12:47
nosrednaekimits very very beta quality...12:47
TheRepackerthen 9639 driver, and I am using nvidia setting to turn off and on monitors/tvs12:47
Cyyniceljefe: so before rebooting i torrented the iso in about 1/2 hour and did a clean install12:48
silentwhat is the command to list sound devices?12:48
silent(not lspci)12:49
DanaGOh yeah, this time I booted, my consoles were entirely blank.12:49
eljefeok the wiki says to check the "unsupported packages" in adept (done); then update all (done); then to re-run adept_manager with the "--version-upgrade" flag (done); then click ^ Version Upgrade (done) and it installed like 4 packages, then said, "Click [Finish]  to begin the version upgrade" and I click finish and nothing happened.12:49
DanaGTo make things worse, it stalled for a long time with heavy disk activity, with no indication of what was going on.12:49
gentoofan23silent: "alsactl names"?12:49
=== Cyynic [n=chris@S010600179a270029.ed.shawcable.net] has left #ubuntu+1 []
DanaGOnly my experience told me that it was fsck running.12:49
kurisutofuaawhat is easier upgrading form a fresh 7.04 to 7.10 or download the RC and install that fresh?12:50
=== brodock [n=kvirc@201-25-203-191.fnsce701.dsl.brasiltelecom.net.br] has joined #ubuntu+1
brodockis usplash working for you? cus for me it's not...12:50
nosrednaekimkurisutofuaa: upgrading probably12:51
Rob125kurisutofuaa, installing takes less time, I've found, but upgrading is easier.12:51
=== |neon| [n=neon@c-67-171-62-118.hsd1.wa.comcast.net] has joined #ubuntu+1
silentamixer sset 'PCM' 2dB+12:51
kurisutofuaanosrednaekim, Rob125: now I just have to find where I put my 7.04 dvd lol12:52
nosrednaekimkurisutofuaa: oh you don't have it installed? go right to 7.10 then..12:53
=== gentoofan23 [n=gentoofa@gentoo/contributor/gentoofan23] has left #ubuntu+1 []
=== budmang [n=justin@ip70-190-183-92.ph.ph.cox.net] has joined #ubuntu+1
budmanghey Hey :)12:54
=== stefg [n=stefg@e179144201.adsl.alicedsl.de] has joined #ubuntu+1
nosrednaekimey budmang12:55
silentwhat's the command to get a key code for xbindkeys?12:56
=== mode/#ubuntu+1 [+o gnomefreak] by ChanServ
=== mode/#ubuntu+1 [+b *!*@AMarigot-102-1*!#ubuntu-ops] by gnomefreak
=== mode/#ubuntu+1 [-o gnomefreak] by ChanServ
stefguhoh... seems gutsy is in trouble. Just upgraded a clone of my feisty install on a spare partition... kernel broken, gnome broken, 4 days until scheduled release .... doesn't look nice12:57
budmangEverything works minues my webcam and mic. any good forum sites to tart?12:57
nosrednaekim!hardware12:59
ubotuFor lists of supported hardware on Ubuntu see https://wiki.ubuntu.com/HardwareSupport12:59
outRrunning gutsy rc on a toshiba satellite m30 with 32mb nvidia fx gpu, when i turn on desktop effects and then use totem-gstreamer to play an xvid, everything goes to hell if i go fullscreen, then move the cursor so that the totem gui gets rendered12:59
outRand by goes to hell i mean the machine completely locks up, must hard reboot01:00
outRhas anyone run into anything similar?01:00
Dr_willis32mb  video and compiz - Icky! :)01:00
Dr_williswell bbl01:00
=== buzztracker [n=buzztrac@pelikan.garga.net] has joined #ubuntu+1
silenthttp://www.gnome.org/learn/users-guide/2.0/ch09s05.html <--- can some one please explain to me where I might find this "New" button?01:01
=== tehk [n=tehk@c-69-249-157-157.hsd1.nj.comcast.net] has joined #ubuntu+1
=== Winball [i=Winball@er.ut.ro] has joined #ubuntu+1
=== Winball [i=Winball@er.ut.ro] has left #ubuntu+1 []
outRyeah... it might be the 32mb thats giving me problems, but gpus have been able to use system memory for textures for ages now... besides, the video plays fine as long as the totem gui doesnt appear in fullscreen01:02
nosrednaekimoutR: probably a bad version of the black-window bug?01:02
brodocki'm experiencing usplash not working on gutsy... i'm on acer laptop (widescreen) with intel i945 GMA... does anybody with the same problem??01:03
outRnosrednaekim, i havent been keeping up, ive been running edgy in 2d for the last year... ill look on the compiz forum for anything related, thankx01:04
nosrednaekimoutR: you could ask in #ubuntu-effects as well01:05
=== kbrooks [n=kbrooks@d235-140-72.home1.cgocable.net] has joined #ubuntu+1
kbrooksbang.01:06
nosrednaekimkbrooks: ouch..01:07
=== NeoGeo64 [i=nine11@adsl-217-209-56.aby.bellsouth.net] has joined #ubuntu+1
|neon|have ne1 use ghost4linu to back up the entire installation og ubuntu01:08
=== Jessehk [n=jesse@CPE00195b49779e-CM0018685267da.cpe.net.cable.rogers.com] has joined #ubuntu+1
JessehkDoes anyone notice that some of the icons in the preferences menu for Gnome are blurry?01:13
bur[n] ernope... use a different theme?01:13
savvasor clean your glasses :P01:13
Jessehkbur[n] ner: I'm using the GNOME theme from the Appearences menu.01:14
=== erenko [n=Sizi@unaffiliated/erenko] has joined #ubuntu+1
=== erenko [n=Sizi@unaffiliated/erenko] has left #ubuntu+1 []
=== Vuen [n=nick@74.14.134.238] has joined #ubuntu+1
Jessehkand it also happens when I use the Human icon theme.01:14
bur[n] erodd01:14
Vuenhey all01:14
bur[n] eri use human... they look fine01:15
savvasJessehk: like which icons?01:15
savvaspreferred applications and power manager seem blurry here too01:15
JessehkSpecifically, the "Bluetooth Preferences", Palm OS devices, and Preferred Applications icons01:15
savvashm..01:15
Jessehkand a few more in the preferences, and adminstration menus01:15
bur[n] erall of them look great here01:15
Jessehkalso, the OO.o icons are pretty blurry01:15
savvasI think the icons are too small :s01:15
savvasnope, those are fine here01:16
savvasJessehk: I believe that's a VERY minor detail to what some people face right now01:16
savvasthey're trying to support as much hardware as possible01:17
Jessehksavvas: I know it's minor, but it should probably be taken care of before release in 4 days. :)01:17
Vuenhey guys, how's the gutsy release candidate testing going? does it seem stable enough for release?01:18
=== b0lle [n=hhhh@c-f8e7e155.465-1-64736c11.cust.bredbandsbolaget.se] has joined #ubuntu+1
Vuenman, i'm looking forward to the release01:18
silentI'm wondering how I can change the commands executed for keyboard shortcuts, as the volume control does not function01:19
nosrednaekimVuen: pretty stable here... no crashes... just a finicky wireless card01:19
nosrednaekim(which didn't work AT ALL in fiesty)01:19
Vuenah01:19
Vuenthat's good i guess01:19
nosrednaekimyeah01:20

Generated by irclog2html.py 2.7 by Marius Gedminas - find it at mg.pov.lt!