=== skreech_ is now known as Daskreech [00:26] ciao a tutti [01:27] i went to remove an app and i get an error that the package manager is being use by another process [01:27] but i just booted up my computer [01:27] how can i find out what's using it [01:34] caesar_: sure that you don't have anything running? [01:35] Could be it checking for any updates [01:40] Daskreech: I have it set to check for updates once a week and I just installed last updates 2 days ago [01:41] caesar_: fair enough [01:44] caesar_, do you have package-manager open, and did you try to remove that app in terminal ? [01:46] caesar_: are you getting a package lock error? [01:46] i tried in the software center and in the package manager.. both same error [01:46] im gonna reboot once more [01:46] brb [01:53] might just have to kill the lock file [01:55] true, if it is occupied and not released. [01:56] reboot should do no harm nor break this lock, i guess [01:56] unless it's a stale file [01:56] if caesar_ comes back and I'm not here [01:57] on gnome this should work > sudo fuser -vki /var/lib/dpkg/lock; sudo dpkg --configure -a [01:57] try lsof /var/lib/dpkg/lock [01:58] that should say what's holding onto it. If nothing is then you can sudo rm /var/lib/dpkg/lock or run sudo fuser -k /var/lib/dpkg/lock [01:58] second is a lazy unmount of it just in case but just removing it should be enough === aperson is now known as APERSON [03:15] APERSON: Ok we get it! [03:15] I love watching people complain about all-caps nicks [03:16] it's such a petty thing to whine about === gaurav__ is now known as Guest15802 [03:42] APERSON: It was a joke :) [03:42] Just felt like someone saying I'm a person too!! [03:50] Daskreech↳ :) [03:51] heh, some people rage at me for having both a all-caps nick and a non-ascii tab-complete suffix [03:55] ঙAPERSONৠ: would annoy people I suppose :) [03:55] apparently it ruins some clients [03:56] where it makes the rest of the line gibberish [04:00] APERSON: what's the reason for that suffix? [04:01] why not? [04:02] APERSON: why not something else, I mean. it was not criticism... just wanting to know what the decision process was. [04:02] no, that's my reason [04:02] why not? [04:03] APERSON: you used a random generator to choose that specific one? [04:03] APERSON: how lucky then to get anything like an arrow. [04:03] I have a list of arrows that I made [04:04] I have a script that I use to launch xchat that randomly changes it every start up [04:04] ah, now we are getting to the good stuff... :) I thought this would be interesting. [04:06] sed -i -e 's/^completion_suffix = .*$/completion_suffix = '"$(cat $HOME/.xchat2/arrows.txt | shuf | head -1)"'/' $HOME/.xchat2/xchat.conf [04:06] that's the gist of it [04:06] APERSON: I'm almost sure 1/3 of the people complaining about your tab completion character will change their mind when they hear that :) [04:06] Try it sometime. [04:06] you'd be surprised [04:07] Probably not, it's just 1/3, not like "all the people" :( [04:25] Lynoure: I'd doubt it. Far fewer people are impressed with technical reasons behind something than are impressed with who got selected to be in the summer movie of the year [04:32] Hey guys, I am trying to install emitapp.com which is a tar.gz file. According to the readme in the directory after I unzipped, I am supposed to do "Install to default /usr/local then sudo ./install. However ./install is not working. Any ideas what I am doing wrong? [04:42] Shaxs: tell what steps you did [04:46] daskreech: I *think* I may have figure it out...one sec [04:48] Daskreech: So it looks like the command was sudo sh ./install [04:48] Shaxs: one second. Time is up! We need an answer! [04:48] Shaxs: ha ha ok [04:48] Shaxs: type ls -l install [04:48] Daskreech: however I was missing a dependency [04:48] paste back the line here [04:49] You can remove your username if you like [04:49] Daskreech I need to get this dependency installed first. Lets say I wanted to install miniupnp.free.fr/files/download.php?file=miniupnpc-1.6.tar.gz. I unzipped it. What terminal commands do I need to do to make/install something like this? [04:50] Shaxs: what's your dependency? [04:50] miniupnpc-1.6.tar.gz [04:51] !info miniupnpc [04:51] miniupnpc (source: miniupnpc): UPnP IGD client lightweight library client. In component universe, is optional. Version 1.5-2ubuntu2 (oneiric), package size 9 kB, installed size 80 kB [04:51] Would that help? [04:51] can I apt-get install that? [04:51] Yes you can [04:52] fyi this is the full install instructions for Emit:http://pastebin.com/fQ0iifVC [04:53] Daskreech: so now I have that, I will try your command above [04:55] Daskreech: I get this: "-rw-r--r-- 1 jason jason 576 2011-11-01 07:05 install" [04:56] Shaxs: can you read that? [04:57] ? [04:58] Shaxs: do you understand what that line is saying? [04:58] not entirely [05:01] Shaxs: ok so the first part is a set of permissions [05:01] You have one dash that tells you the kind of file [05:01] - means a normal file [05:01] d means a directory [05:01] after that you have 9 dashes [05:01] --- --- --- [05:02] they are three sets that are each a letter [05:02] rwx [05:02] so it's three sets of those [05:02] rw- r-- and r-- is what you have [05:02] r means read w means write the last dash is a x [05:02] Shaxs: can you see that so far? [05:04] so first dash before the rw denotes a normal file [05:05] no, not sure I follow 100% [05:06] Shaxs: right [05:06] then the ones after are either a - or a letter [05:06] and there are always 9 [05:06] in groups of three [05:06] so when you look at them read them in little groups of three [05:07] so the first group is rw- [05:07] which means r for read w for write and then a - [05:07] the first three are for the owner of the file (which is happily you!) so you can read the file and write to it [05:08] however you cannot do the last one since it's a - [05:08] my kubuntu is not auto-updating [05:08] darthanubis: as in it's not downloading and installing updates or it's not even checking? [05:08] got it [05:09] Shaxs: the last - can be made into a x [05:09] it does not seem to check on its own [05:09] x means eXecute [05:09] I come home from work and run update from the cli [05:09] that works perfectly [05:09] that would explain why you couldn't do a ./install to run the program because you don't have permissions to do so [05:10] Shaxs: if you run chmod u+x install then ./install should work [05:10] also ls -l would show -rwxr--r-- [05:10] darthanubis: Check your setting in muon ? it has an update policy there as I recall === zz_Kalidarn is now known as Kalidarn [05:11] ahhhh [05:11] understood [05:11] Shaxs: if you would like I can explain the last two groups of three === guerrilha is now known as dtcrshr [05:11] but that should be enough toget you run the file. [05:11] Daskreech so what I want it to be is rwx [05:12] One thing you should learn from this is that any file in Linux can be made into program so be careful of files people give you randomly. [05:12] Shaxs: correct. The command will give your user the x permission [05:13] ahhh got it [05:13] Daskreech: Muon was already setup to look for updates and notify [05:14] It's weird, because to install soulseek, my system wants to pull in all of Ubuntu proper? [05:15] sorry not soulseek nicotine [05:16] maybe my source.list file is of? [05:16] off? [05:17] Daskreech: what would an non-normal file look like? [05:17] Shaxs: what is your definition of a non normal file? [05:17] one that doesn't have a - at the start? [05:17] darthanubis: sudo apt-get update would tell you [05:18] that works perfectly [05:18] but it should not be wanting to download all of Ubuntu to get nicotine [05:18] so something is off, but I can't find what. [05:18] It's not the file then apt-get would either freak or refuse to work if that was corrupted [05:18] I know [05:19] darthanubis: apt-cache depends nicotine [05:19] Daskreech up above you said " - means a normal file" just curious what else could show up there? [05:19] http://privatepaste.com/a20f20a7e6 [05:20] Suggests: python-gnome2? << Shaxs: a d means a directory (folder for people from the Windows World) [05:22] darthanubis: sounds like it [05:22] that's by far the most common two [05:22] Shaxs: ^^ sorry forgot to direct that to you [05:23] darthanubis: install it without suggests [05:23] Daskreech: That I don't know how to do [05:23] thanks === APERSON is now known as aperson [05:25] sudo apt-get -o APT::Install-Suggests="false" install nicotine [05:25] Shaxs: You have pipe files which you likely never meet unless you get paid a lot of money to keep linux computer running [05:26] Shaxs: there are device files which are in /dev which you probably shouldn't play with [05:26] Thanks, but if "install suggested recommends as dependencies" is unchecked, why would the system keep wanting to do that? [05:26] Shaxs: there are also link files (shown with a l) which are like Windows Shortcuts in some way [05:27] nvm, it suddenly does not wantto do that anymore [05:27] weird [05:27] darthanubis: that is strange [05:28] Daskreech: Ive used pipes before for grepping logs :) [05:28] Shaxs: its the same idea except it exists as a file on the file system that can be owned and survives reboots :) [05:29] I found out from a google search a thread on ubuntu forums about the auto update, install update-notifier, updated the system, then rechecked and unchecked install suggested as dependecies, and all is normal now? [05:29] It's a fascinating little trick but honestly never going to be used by mortal users [05:29] darthanubis: Ah I've had that happen a few times (not for this system) [05:30] where checking and unchecking something actually does quite a few changes in the back that for some reason had something missing on manual checks/changes [05:32] hmm [05:32] just glad my two "bugs" are gone [05:33] ty for your time:) [05:34] Sure [05:44] Daskreech: is there a log that saves the output from terminal? [05:45] Shaxs: depends on what you mean. What are you trying to get ? [05:46] for emit, I am running another command. According to documentation " FFmpeg in apt is also useless (no x264 and no libfaac). Run "sh ffmpeg.sh". It will build packages of latest ffmpeg with the most common codecs. It will also remove any existing ffmpeg, x264 and libvpx. [05:46] However this is a very long output from termianl but the end result is it fails [05:46] I was hoping to read through the output and see where the error(s) are [05:47] Shaxs: try sh ffmpeg.sh >output.log [05:48] thanks! [05:49] when doing that does nothing show on screen? i.e. it all gets dumped to file without being shown in terminal? [05:50] oh nope there it goes [05:50] Shaxs: Yes. if you still wanted everything on the screen you can use tee to send output to two places [05:51] The error will still showup on the screen incidentally [05:51] If you just wanted the error in a file I can do that as well [05:53] no this works great [05:53] fyi I love Guake Terminal [05:54] !info yakuak [05:54] Package yakuak does not exist in oneiric [05:54] !info yakuake [05:54] yakuake (source: yakuake): a Quake-style terminal emulator based on KDE Konsole technology. In component universe, is optional. Version 2.9.8-1 (oneiric), package size 301 kB, installed size 2108 kB [05:55] Shaxs: I think you'll like that better :) [05:55] better? [05:56] yep it's has some pretty cool terminal splitting capabilties and looks pretty neat [05:57] nice I will check it out [05:58] so it looks like, there are multiple commands in that sh file and doing ?output.log does not capture all of them [05:58] what ends on my screen does not match what is in the log [06:00] Shaxs: the command I gave you saves all the successful commands to the output.log the errors go to the screen [06:00] you can try sh ffmpeg.sh 2> errors.log [06:00] or of course sh ffmpeg.sh > output.log 2> errors.log to grab them both [06:00] oh how do I output everything? [06:02] holaa [06:03] thanks [06:05] !info x264 [06:05] x264 (source: x264): video encoder for the H.264/MPEG-4 AVC standard. In component universe, is optional. Version 2:0.116.2042+git178455c-1ubuntu1 (oneiric), package size 264 kB, installed size 656 kB [06:05] !info libfaac [06:05] Package libfaac does not exist in oneiric [06:05] hummm.. [06:09] lots of errors in the ffmpeg.sh script [06:47] Shaxs: sorry you want everythign in one file ? [07:05] Shaxs: sorry got distracted again. [07:05] sh ffmpeg.sh 2>&1 >output.log [07:16] why is it that nautilus is able to see my camera as a hard drive, but dolphin cant mount it like a hard drive? [07:17] why can t i mount my network harddrive automatic when i log in ? [07:20] make believe its your girlfriend [07:21] Daskreech: no worries [07:21] richar_: look at /etc/fstab [07:21] Daskreech: Yeah having major issues. I give up trying to get EMIT installed for now. Maybe I will just install the windows version. [07:22] Shaxs: what's the problem? [07:25] the ffmpeg.sh script fails and when I try to start emit I get: " [07:25] {1,25,7} - <0.55.0> ffmpeg lacks libfaac, streaming will not work! [07:25] {1,25,7} - <0.55.0> ffmpeg lacks libx264, streaming will not work!" [07:33] Shaxs: what's the failure of the ffmpeg script can you pastebin it? [07:38] sure [07:39] Daskreech http://pastebin.com/tNpE9gvs [07:41] Shaxs: What's this trying to do? [07:42] according to documentation [07:42] " [07:42] FFmpeg in apt is also useless (no x264 and no libfaac). Run "sh ffmpeg.sh". [07:42] It will build packages of latest ffmpeg with the most common codecs. It will [07:42] also remove any existing ffmpeg, x264 and libvpx. [07:42] when was that documentation written? [07:43] !info ffmpeg [07:43] ffmpeg (source: libav): Multimedia player, server, encoder and transcoder. In component main, is optional. Version 4:0.7.2-1ubuntu1 (oneiric), package size 401 kB, installed size 1340 kB [07:44] You might notice that it's trying to install older versions of all the software [07:44] oh yeah? [07:45] !info x264 [07:45] x264 (source: x264): video encoder for the H.264/MPEG-4 AVC standard. In component universe, is optional. Version 2:0.116.2042+git178455c-1ubuntu1 (oneiric), package size 264 kB, installed size 656 kB [07:45] !info libfaac0 [07:45] libfaac0 (source: faac): AAC audio encoder (library). In component multiverse, is optional. Version 1.28-0ubuntu1 (oneiric), package size 38 kB, installed size 124 kB [07:46] there are also x264 and libfaac libraries available [07:46] If emit is trying to compile it may want the header files as well [07:46] !info libfaac-dev [07:46] libfaac-dev (source: faac): AAC audio encoder (development). In component multiverse, is optional. Version 1.28-0ubuntu1 (oneiric), package size 40 kB, installed size 140 kB [07:46] Not sure when it was written [07:46] !ingo libx264-dev [07:46] !info libx264-dev [07:46] libx264-dev (source: x264): development files for libx264. In component universe, is optional. Version 2:0.116.2042+git178455c-1ubuntu1 (oneiric), package size 450 kB, installed size 1324 kB [07:48] Those are all newer versions than what that script is trying to install (which it's doing because they don't exist and if they do they are old) [07:48] so I would suggest just installing them from apt [07:48] okay [07:51] I had all already installed [07:51] if the plain versions aren't enough for the ./install script the -dev packages I called earlier might help [07:51] but I'm heading off to bed now [07:51] night thanks for the help [07:52] if it's not drastically important then someone will be along to help though that may be after sunrise [07:53] its not imortant [07:53] :) [07:53] jsut trying to stream video files to my android [08:50] Hi. I installed Kubuntu 11.10 through bootable USB flash drive onto an external HDD. I made sure to specify the destination for grub install to be the external hdd. Now when I boot from HDD, I just a blinking cursor. [08:52] Any ideas why is it behaving so? The HDD is healthy. It's Seagate FreeAgent GoFlex 1 TB. [08:55] I can see the BIOS does detect the external HDD [08:59] this whole phono + pulseaudio business is completely dysfunctional [09:00] phonon* === ejat- is now known as ejat [09:20] I have the same issue as this guy:http://www.linuxnewbieguide.org/content/how-install-ubuntu-external-usb-hdd Any ideas what might be the issue? [09:25] I all, It seems it is impossible to add new item in KickOff Application Launcher sub menus [09:25] tried adding Eclipes in Development category several times with no success [10:05] Hi Can anybody help me in seetting up Kontact calinder === petro is now known as petro357 [10:18] Привет народ) [10:19] ??? === yofel_ is now known as yofel [10:25] I cannot add entrys to the Calinder in kontact (Kubuntu 11.10).. Settings Configure Calinder does not give me a entry for the Aconadi Server T Thought tiis would be the default on a NEW Install [10:27] The Akonadi Server is Running & Kmail appears to be using it === EyesIsAsleep is now known as EyesIsServer [10:34] !ru | petro [10:34] petro: Пожалуйста наберите /join #ubuntu-ru для получения помощи на русском языке. | Pozhalujsta naberite /join #ubuntu-ru dlya polucheniya pomoshi na russkom yazyke. [10:35] Satan, El diablo, Shaytan, Sofia Rosengren 32 years, World Class city Göteborg, she lives in protekted adress, [10:35] her father name is Johansson, adress Westmarksgränd 21, 44435 Nödinge. blond hair, Satan, El diablo, Shaytan, [10:35] Jesus is Lord, Tsidkenu the lord of rightoutness [10:37] alban: in Settings > Configure calendar > General > Calendars do you have any calenders set there? === slow-motion_ is now known as slow-motion [11:09] why is there no firefox 8 for kubuntu yet? [11:12] i mean oneiric [11:20] THANKS rork I see several calinder backensd but no akonadi [11:22] I have Kolab / Birthdays & Calinders / DAV Groupware / Ical / kde traditional [11:23] I have the same but my calendar list in Akonadi is the same as in Kontact [11:24] So I think if you add one it will be added to Akonadi, and Calendar will set/get the info from Akonadi [11:41] THANKS Rork I will try it ... === violeta is now known as VioletaPalomar === VioletaPalomar is now known as sdrfetttoo === sdrfetttoo is now known as VioletaPalomar [12:17] ? === Quintasan_ is now known as Quintasan [12:35] hi everybody [12:51] Hey all === BluesKaj is now known as in [14:30] hi eveyone. [14:31] how can i browse through Konsole history and get past commands even if i close and restart Konsole. i'm a gnome user and with gnome terminal works by ths way, but with Knonsole not... [14:32] * i forget: with g terminal works with Up-arrow [14:34] i have problem with my task mnager, it groups programs on the silly way, how to turn this off [14:34] ? [14:36] gigasoft: what do you mean by silly way? [14:36] You can right click task manager > Task Manager Settings >Grouping drop down. [14:37] well, i have two monitors, and i want to turn off all grouping [14:37] but it does not 'listen' [14:39] Did you check out Task Manager settings? Under "Grouping and Sorting' >Grouping > Do not sort. That should work. [14:41] yes i do .. but it does not work === snoozer is now known as Guest76009 === jaime_ is now known as jaime_70 [14:47] lol === fer is now known as Hernan_1980 [14:52] anybody could help me? [14:52] Hello luke [14:54] hi. how can i browse through Konsole history and get past commands even if i close and restart Konsole. i'm a gnome user and with gnome terminal works with Up Arrow but with Knonsole not... [14:55] I don't know. I'm Newbi.. using Kubuntu with XFCE terminal [14:55] hi guys . is there any software available for kubuntu like rocket dock [14:56] This is my first time in IRC chanel [14:56] I'm learning to use this [14:57] bye, [14:57] have a Nive day guys..... [15:02] can anyone tell me a software for kubuntu like rocket dock [15:05] luke_66: that puzzles me for konsole behaves that way by default too, I've got no idea what can be going wrong though. [15:06] ok, tnx everyone anyway [15:07] bye [15:15] <_serial_> hi all, is there any other menu applets that are worth looking at? === seshagiri is now known as [BIOS]seshagiri [15:24] !help [15:24] Please don't ask to ask a question, simply ask the question (all on ONE line and in the channel, so that others can read and follow it easily). If anyone knows the answer they will most likely reply. :-) See also !patience [15:53] i went to install an app and i get an error that the package manager is being use by another process [15:53] this is after i just booted up [15:56] caesar_, sudo dpkg --configure -a [15:57] caesar_, or did you logout of your last session with the package manger still open [15:57] BluesKaj: wouldn't a restart close all programs? [15:58] what is all this downloading? [15:59] not if you have restore previos session enabled in system settings > startup & shutdown [16:01] BluesKaj: i just fixed that [16:02] ty.. but what was that command for [16:02] updates? [16:03] it finishes any updates or upgrades that were left in limbo when you logged out [16:04] ok [16:04] ima reboot now with fresh session, see if that works [16:04] it either drops any tha can't install due to dependency probs or finishes installing those that can [16:12] BluesKaj: that worked [16:13] right [16:13] but after this latest reboot.. now my start menu is at the top of my screen [16:13] weird [16:14] yeah, strange little bugs in plasma..I still get crashes [16:15] k rebooting again.. brb [16:22] Is there a way to view all the packages installed by file size (decreasing)? [16:34] what custom command do i have to put into "alarm clock" to make the alarm play in let's say VLC or Amarok.. because the default isn't playing [16:37] "rhythm-client --play" is there by default but i dont have rhythmbox === raffa_ is now known as raffa === Kalidarn is now known as zz_Kalidarn [16:46] i love kubuntu [17:00] hi everybody [17:02] is there a web site that explain customization and improvements? [17:02] even if kubuntu is very cool out of the box [17:03] in0cula: http://userbase.kde.org/ [17:04] thx === peace is now known as Peace- === mohamed is now known as Guest91384 === hassan_ is now known as hassan__ === hassan__ is now known as hassan_ === patrik is now known as Guest81881 [18:16] When was that KDE bugfix coming again? [18:16] 3 Plasma Desktop crashes within 5 minutes is really starting to annoy me >_> [18:17] Especially since some software, like Xchat, overreacts and crashes as well then... [18:34] hi everybody. Since fresh install of Oneiric, I have some strange issue with rekonq: It always ask how to deal with PHP scripts. Either "save as" or "open". But open just shows the script instead of the web page... Is there any solution? [18:35] install chromium [18:35] lol [18:37] People really need to stop acting like that is helpful [18:37] "Hey, KDE keeps crashing on me" <--- my case [18:38] Will I be recommended to go and use GNOME now? [18:39] TheLastProject: no sense of humor damn [18:39] CTFO [18:39] CTFO? [18:39] I was not aware that a support channel was supposed to have humour in it? [18:39] chill the fuck out [18:39] I thought there were off-topic channels for that? [18:40] Ah, okay. First Google result was "Children's Trust Fund of Oregon" [18:40] :x === JackyAlcine is now known as EvilJackyAlcine === EvilJackyAlcine is now known as JackyAlcine [18:49] skramer_: with the script, do you mean raw PHP or just the HTML it prints? === IdleOne is now known as pangolin [19:09] Hi everybody. What's the magic trick to get Amarok to play my audio CD's? I get the popup that says "Play audio CD with Amarok" as an action... nothing happens. Well, Amarok starts, that's it. Attempting to add tracks manually doesn't seem to work either. No error - it just doesn't do anything. Help! [19:12] rork: it prints some text starting with [19:12] skramer_: and there [19:13] +'s not something like jaafar: can you check in #amarok ? [19:20] skreech_: thanks, I will. I just saw some stuff online suggesting that it was a kubuntu issue.. === slow-motion_ is now known as slow-motion [19:21] rork: http://wstaw.org/m/2011/11/19/Screen2.png [19:22] rork: and after I click "open": http://wstaw.org/m/2011/11/19/Screen3.png [19:22] jaafar: Where was that information? === skreech_ is now known as Daskreech [19:26] skreech_: I can't find that link right now for some reason :( [19:26] something about hal? [19:26] or the backend configuration? [19:27] skreech_: oh here we go http://forum.kde.org/viewtopic.php?f=115&t=94572 [19:28] skramer_: does it only happen on a particular page? or with all php pages? e.g. http://www.rork.nl/index.php ? [19:29] rork: your page works... [19:30] skramer_: so it seems to be a site specific problem, not a general browser problem. Which link did you click on that site? [19:32] rork: any of the links has same effect, opening the text. but I just found out that pressing F5 from that text finally shows the right page [19:34] rork: still, rekonq seems to have problem with pages which miss favicon.ico: http://wstaw.org/m/2011/11/19/Screen4.png [19:34] rork: which is rather strange since I never had such problem before on the system which I upgraded since 7.10... [19:36] skramer_: all your screenshots showed the same screen [19:36] I have an "internet dvr" and want to sync the contents of where I save my videos to a backup drive. So if I delete a file off the source, I want the same file to be deleted from the backup. Would this be the correct rsync command "rsync –av --delete /homes/user/Videos/tv /media/backupdrive/tv backup" [19:38] rork: hmm... strange [19:38] rork: I have to leave now... thanks for you help, anywa [19:38] y [19:38] :-) [19:40] anyone have experience with rsync? [19:40] !patience | Shaxs [19:40] Shaxs: 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/ http://www.ubuntuforums.org/ or http://www.kubuntuforums.net/ while you wait. [19:41] Shaxs: that was not exactly the message I wanted to send, it would be "if someone knows your answer (s)he will answer you :) [19:41] its all good [19:42] just nervous to run this command dont want to accidently delete stuff === noteleks is now known as Linuxnewbie === Linuxnewbie is now known as noteleks [19:49] just verified my audio cd playing problem on two different machines, both running Oneiric, and two different CDs [19:49] does this work for anyone? [19:52] and if not, maybe "play audio cd with amarok" is not a good thing for the device thing to suggest :) [19:53] Hi [19:54] i try to use alsa instead of pulse. How can I check if the sound is play only with alsa? [19:58] skreech_: even more info here, looks like a common problem http://ubuntuforums.org/showthread.php?t=1841118&page=3 [20:08] Hello, I cannot play dvds. I have installed kubuntu extras to.What am I missing? === warren is now known as Guest33510 [20:12] redsusan, explain in detail [20:12] otherwise nobody can help you [20:13] redsusan: did you install libdvdcss2? [20:14] yes i did [20:15] I am still searching on google [20:15] hm, that should normally do the trick :/ [20:17] I rebooted the computer to. [20:25] I am using VLC player, and this is what I get................... [20:25] Playback failure: [20:25] DVDRead could not open the disc "/dev/dvd". [20:25] Your input can't be opened: [20:25] VLC is unable to open the MRL 'dvd:///dev/dvd'. [20:33] redsusan: I get that occasionally, I blame it on my dvdplayer drivers, it works if I pop in the cd, wait for the "insert media" menu to pop up and the select "play with VLC" [20:33] how do i disable panel transparency in kubuntu 11.10? [20:33] like, just have a plain gray panel or something [20:35] try a new desktop theme in windows decor or something, i_am_null [20:36] oh yeah I forgot to say like [20:36] they're all freaking transparent [20:37] import spme new ones or somerthing like [20:37] they're probably all transparent too [20:37] what's the deal with transparent stuff [20:37] no they aren't [20:37] i find it highly annoying, isn't there just a switch to turn off transparent panels [20:38] stop trolling and do something [20:38] i see other screen shots of people using the default theme on kubuntu but they don't have a transparent panel [20:38] so font rendering in linux appears to suck... is there anything that can be done about this? [20:38] particularly firefox has a real hard time, it appears [20:38] surely there is a option to turn this off? [20:40] well , look around, i_am_null ...maybe if you concentrate on finding jnew themes instead you might , likr find find something [20:41] maybe i will just switch to the redmond theme, nothing in it is transparent [20:42] hays have you set your font choices in system settings>application appearancs [20:42] BluesKaj: yeah i set it to all the Deja family [20:42] quassel looks great, its really just the web (firefox) that looks terrible [20:42] hays: make sure font hinting is set to slight [20:42] my fonts looked like crap untill i did that [20:43] also uncheck the "exclude range" button [20:43] kubuntu's fonts are screwy out of the box for some reason [20:43] at least they were for me [20:43] hays and use the high res amd high cpu fine tuning [20:44] and [20:44] huh? [20:44] in the style section [20:44] what's really bad is awful fonts on a transparent panel :P [20:44] hard to read [20:47] then change the font defaults [20:48] not allowing web pages to choose their own fonts seems to help [20:48] ALOT [20:49] I actually like 'slight' hinting better than medium [20:50] how come when running muon it won't let me do anything Saying i don't have permissions to do that operation. And its not even prompting for admin pw [20:53] BluesKaj: it seems like the essense of the problem is that there is no standardized way to render a font (or people aren't following it) so when linux picks some random TTF that a website wants, Freetype is not going to do as good job of it as Windows... [20:57] че это за хрень? [20:57] !ru | igor__ [20:58] igor__: Пожалуйста наберите /join #ubuntu-ru для получения помощи на русском языке. | Pozhalujsta naberite /join #ubuntu-ru dlya polucheniya pomoshi na russkom yazyke. [20:58] кто меня читает чте это за фигня? === skreech_ is now known as Daskreech [21:41] * Daskreech yawns [21:41] Anyone needs anything? [21:42] nrn, Daskreech - if you need to go get some Z's, i'm happy to sit in and help :) [21:43] * Daskreech jsut woke up! [21:43] oh. I saw you yawn and though you were tired [21:43] :P [21:53] Doesn't mean I'm not tired :-D [21:53] * Daskreech hugs the pillow while it's still warm [22:01] Daskreech: I'm pretty tired too, I usually have a little shuteye in the middle of the evening, just to keep myself running till i knock off about 1am [22:01] i missed it tonight, and boy am I feeling it. 3 coffees and I'm still not fully conscious [22:01] BarkingFish: Mid day naps are important :) I'm fine you can go if you like [22:02] nah, it's only 10pm here. If I go to bed now I'll be up by 5am :P [22:15] whenever i watch a movie on my Kubuntu desktop, the monitor will go blank, is this due to some power saving profile? [22:19] katsrc: sounds like it [22:19] most players should inhibit it but KDE 4.8 will have a don't move button in the systray so you can hit it and the computer won't sleep or shutoff the screen [22:21] Daskreech: seems like the profile settings don't change a thing [22:21] that's good to know about KDE 4.8 [22:21] katsrc: that's a little strange then. Perhaps the monitor has it built in ? [22:22] yeah, that's what i'm assuming [22:29] can you not disable screen blanking & power saving in the systemsettings? [22:29] i killed mine in my x configuration, took out the DPMS entry === ORiON is now known as Guest86908 [22:41] BarkingFish: seems like it was only an issue with VLC. [22:41] katsrc: ok then, I'm sure VLC has that as an advanced config option === gary_ is now known as Guest23277 [23:00] what notifications need to be disabled to stop the kmail popup warning each time a person logs in? [23:01] 11.10 would have been far better off to ship with KDE 4.6.5 [23:04] jmichaelx: yeah that's pretty silly [23:04] uh, I mean the kmail popup [23:10] jmichaelx: kmail pops up something? [23:11] on every login on oneiric :) === viktor is now known as [VK]s [23:28] I'm look for something very hand-holdy for getting photos off a plugged in camera === laurence is now known as Guest11074 [23:33] hola [23:33] alguien que hable español??? [23:34] jesusgarciagomez: #ubuntu-es [23:34] !es [23:34] En la mayoría de canales de Ubuntu se habla sólo en inglés. Si busca ayuda en español o charlar entra en el canal #ubuntu-es. Escribe "/join #ubuntu-es" (sin comillas) y dale a enter. [23:34] reisio: digikam or gwenview [23:34] ok gracias [23:35] Daskreech: using digikam now, doesn't hold enough hand :p [23:35] I suppose I'll make some script [23:36] reisio: what are you looking for it to do? [23:41] Daskreech: I basically need the files to automatically copy when the device is connected, and then have dolphin open the directory, and have a right-click shortcut :p [23:41] I need help getting Kubuntu 11.10 (Oneiric) to use my Broadcom wireless card. [23:41] I'll sort it out, just thought I'd see if anybody knew of something for it :p [23:41] Daskreech: yes, the kmail popup.... how does one disable that? the notification settings are like a jungle. [23:41] reisio: what would the right click shortcut be? [23:41] !broadcom [23:41] Help with Broadcom bcm43xx can be found at https://help.ubuntu.com/community/WifiDocs/Driver/bcm43xx [23:41] Thank you. [23:42] i think it would be great if KDE moved away from annoying popups altogether [23:42] reisio: it does sound scripty though. Pretty sure that you can get that working with some udev scripts [23:42] jmichaelx: remove the systemtray. Donw [23:42] Done [23:42] yeah [23:42] upload to facebook probably [23:43] I might be lazy and skip that part, though [23:43] and just tell her how to do it [23:43] That's implemented already. Kipi [23:43] talking to me? [23:51] Daskreech: remove the system tray? [23:51] Daskreech: what's kipi? [23:51] That's what is holding the notifications area and making the popups [23:52] reisio: kde imaging plugin interface [23:52] Daskreech: my question was how to stop the kmail popups [23:52] Daskreech: for dolphin? [23:52] Daskreech: is that already installed? [23:52] reisio: press print screen and the send to button is kipi [23:52] should be if you have plasma installed [23:53] reisio: it's a library works over dbus so You can script it into anything I would think [23:53] jmichaelx: Ah only kmail ones [23:54] jmichaelx: I suppose settings -> configure notifications doesn't help you? [23:54] * jmichaelx facepalm [23:55] okay I don't frequently use KDE, so this has been bothering me for a while [23:55] in konsole, if you accidentally hit CTRL+SHIFT+t for a new tab, how do you undo what it does? :p [23:58] Daskreech: you get asked a lof of questions, so i will not blame you for not even having read the question that you were nonetheless giving an answer to... but if you do happen to know WHICH of the notification setting applies to this kmail popup, i would appreciate it. [23:59] * jmichaelx makes a habit of misreading everyone's IRC posts