=== SJ8 [n=sjb@dslc-082-082-054-223.pools.arcor-ip.net] has left #xubuntu [] === baconvanhood [n=bacon@vhe-367407.sshn.net] has joined #xubuntu === maxamillion [n=adam@ngl-1-14.shsu.edu] has joined #xubuntu === aidanr [n=aidanr@83.147.134.5] has joined #xubuntu === BrendanM [n=mccollam@hor-gold95.hor.ucl.ac.uk] has joined #xubuntu [12:50] Anyone know how to setup pdf-cups so I can print to PDFs? [12:51] !pdf-cups [12:51] Sorry, I don't know anything about pdf-cups - try searching on http://bots.ubuntulinux.nl/factoids.cgi [12:51] Nope. =\ [12:52] BrendanM: why do you need to print to PDF? [12:53] BrendanM: OOo can just export them and AbiWord can just save as PDF === gripir is now known as gripiR [12:55] Actually, I'm trying to circumvent restrictions on a fill-in PDF that I downloaded. It won't let you save a filled-in copy [12:55] it will let you print a filled-in copy [12:56] it's actually cups-pdf, not pdf-cups. I think I figured it out [12:56] !cups-pdf [12:56] cups-pdf: PDF printer for CUPS. In component universe, is optional. Version 2.4.2-1 (edgy), package size 39 kB, installed size 240 kB [12:56] oh ... interesting [12:57] there we go. By "printing" to a PDF, I've essentially saved a filled-out copy of the form. [12:57] BrendanM: nice === Laibsch [n=Laibsch@p4020-ipbf2103marunouchi.tokyo.ocn.ne.jp] has joined #xubuntu === Jester45 [n=Jester45@66.112.68.122] has joined #xubuntu === zOap [n=zOap@84.53.35.121] has joined #xubuntu === BrendanM [n=mccollam@hor-gold95.hor.ucl.ac.uk] has left #xubuntu [] [01:17] Hi, I'm looking for laptops that work 100% with xubuntu 6.10, which means that all hardware are supported without to many fuzz. If anyone knows about more than one it is fine. We may have a whole line of lappies to choose from..(inernet store) [01:17] There may be sites that sell only 100% compatible Linux laptops. [01:17] zOap: www.dell.com/linux [01:18] mg. -checks- [01:18] zOap: www.system76.com [01:18] maxamillion, thanks:) [01:19] Niiice find. [01:19] Finds*... [01:19] zOap: www.emperorlinux.com .... www.linuxcertified.com [01:19] :) [01:19] i eat, sleep, and breath linux ... i try to keep my eye out for such things [01:20] Very impressives prices at system76. [01:21] don't dell charge the same for Windoze & Linux labtops? I can't figure that out myself? [01:21] Sharn: the Dell prices are actually a little cheaper, but you have to install for youself because they only come with FreeDOS pre-loaded [01:22] emperorlinus is pretty spendy, though.. [01:22] grazie: no, it is cheaper for a linux laptop from dell because you don't pay the microsoft licensing fee ... its only $60-80 cheaper, but its nice to stick it to the man from time to timr [01:22] Especially since they're just thinkpads... [01:23] Sharn: yes, very expensive for hardware that cost that much [01:23] Thinkpads are popular. xD [01:25] Thinkpads used to be awesome, but since Lenovo started building them it has gone downhill [01:29] You sure? [01:30] I know the old ones often get Xubuntu thrown ont hem... :P [01:34] yes.. he says the new ones arent good === darrend [n=darren@43-015.adsl.zetnet.co.uk] has joined #xubuntu [01:35] anyone know how to use bash script to check from an installed program [01:35] Jester45: what program [01:35] ?* [01:36] mplayer [01:36] mpla [01:36] no no [01:36] ? [01:36] check if its installed via script [01:36] like if its installed give this out put [01:37] Jester45: aptitude search mplayer .... if the output has an 'i' next to it then its installed [01:37] it its not give this [01:37] yeah, uhmmm ... that would just be search functions [01:37] how would i put that in script [01:37] Jester45: FOO=`which mplayer`; if [[ "" != "$FOO"] ] ; then ... === BFTD is now known as OGDA [01:38] those are backticks around the which command, not apostrophe's or quotes [01:39] ok im still beginning scripting [01:40] i put that in a terminal and all i get is a new line [01:40] > [01:40] that's because it wasn't a complete script [01:40] i assumed you'd realise that [01:40] Rofl [01:41] replace the ellipses with: echo "installed"; fi [01:41] i said i now [01:41] new [01:43] also missing a space in the first bit. [01:43] try this: [01:43] FOO=`which mplayer`; if [[ "" != "$FOO" ] ] ; then echo "installed"; fi [01:44] http://www.google.co.uk/search?q=bash+tutorial [01:44] whats the fi [01:44] ends the 'if' bloack [01:44] *block [01:44] o [01:44] find a tutorial from that link, there are some good ones [01:45] ok i just started yester day [01:45] you'll find it easier to work from a tutorial than ask on IRC [01:46] one last question [01:47] how can i make it a if not installed then do apt-get install mplayer [01:48] well, apt wil lonly install if not already installed anyway so the script would be redundant [01:48] but for the purpose of the script: [01:48] but i dont what it to try each time or show that its trying [01:48] if [[ "" == "$FOO" ] ] ; apt-get install mplayer; fi [01:50] so if the foo=`which mplayer` part comes back with somthing then its continuies === b_52Free [n=skimo@adsl196-93-34-217-196.adsl196-10.iam.net.ma] has joined #xubuntu === VxJasonxV [n=jason@xmms2/troll/VxJasonxV] has left #xubuntu ["de/part'ing"] === VxJasonxV [n=jason@xmms2/troll/VxJasonxV] has joined #xubuntu === VxJasonxV [n=jason@xmms2/troll/VxJasonxV] has left #xubuntu ["de/part'ing"] [02:00] would if [[ "$yn" != "$y" ] ] ; then FOO=`which mencoder`; if [[ "" != "$FOO" ] ] ; then echo "installed"; fi === Laibsc1 [n=Laibsch@p4020-ipbf2103marunouchi.tokyo.ocn.ne.jp] has joined #xubuntu [02:00] work ? if the $yn was a y/n question and the answer was yes [02:02] or y [02:03] wouldn't it be easier to try i than to ask? [02:04] i was going just now [02:04] nope [02:04] syntax error in conditional expression [02:05] I am not much of an expert with wireless. Will two clients connected to the same AP generally be able to see/ping each other? === Laibsc1 is now known as Laibsch === delaney [n=delaney@mctnnbsa24w-142167056016.pppoe-dynamic.nb.aliant.net] has joined #xubuntu === cellofellow [n=josh@69.71.163.58] has joined #xubuntu === Daemonic [i=Daemonic@adsl-70-233-248-190.dsl.okcyok.sbcglobal.net] has joined #XUbuntu [02:27] how do I set how many virtual terminals I have? The default is six and I never use that many so I figured I'd reduce that number to three or four. [02:28] remove the gettys i think [02:29] I mean permenantly. I think init creates the virtual terminals (which I think are virtual serial ports o something.) so init would be the place to look. [02:30] lol [02:30] thats what i ment [02:31] ha, just googling instead. [02:31] weird. kernel panic (in the guest system) when I use -kernel-kqemu in qemu. [02:33] how you get kqemu i couldnt figure that out [02:33] arrg [02:33] dont talk to me i ahve to get to work [02:34] I see what you mean [02:34] I just compiled it [02:34] stop that [02:34] See what you mean about the getty's [02:34] stop what? [02:34] talking to me [02:35] why? === nighthawk001 [n=ray@201.227.5.75] has joined #xubuntu [02:37] Jester45: you ok? [02:37] did I say something? [02:37] SHUT UP!!!!! :) [02:38] He has to go to work, and lacks multitasking skills. ^_^ === nighthawk001 [n=ray@201.227.5.75] has left #xubuntu [] [02:38] oh [02:38] he could just sign out if he's having that much trouble [02:38] ajakngsdflkgjsdn === kalikiana_ stumbles into the romo, accidentally pulling every piece of work from Jeser45's desktop..... [02:38] you no listen?? [02:39] im learning/working === cellofellow just puts his foot in his mouth. === kalikiana_ throws a pillow in Jeser45's direction === Daemonic [i=Daemonic@adsl-70-233-248-190.dsl.okcyok.sbcglobal.net] has left #XUbuntu [] [02:40] would anyone like to point out what i doing wrong with a bash script === cellofellow is no expert, but finds bash scripts simple [02:40] what's the problem? [02:40] I would, but I find bashscripts have a horrid syntax :P [02:41] maybe C Shell? [02:42] paste bin ing [02:44] http://paste.ubuntu-nl.org/5660/ [02:44] it doesnt work good [02:45] i been going into this kinda fast [02:46] using qoutes in echo is probably a good idea. [02:46] works fine with out them for now [02:46] but will add [02:46] and do a spellscheck :) [02:46] 'sides that, I've no idea what to do. [02:46] Ending ifs with fis is probably also good. [02:47] i have a habit of not thinking when typing so i misspell a lot [02:48] just run ispell (or aspell, can't remember exactly on Ubuntu) on it. [02:49] aspell [02:49] i have that on ff and irc [02:49] not mousepad [02:50] just aspell -c thefile [02:50] PuMpErNiCkLe: any reason why that wouldnt work [02:50] use more lines and \(newline) to keep it readable === commandosquirrel [n=Devon@ip72-195-184-139.mc.at.cox.net] has joined #xubuntu [02:50] i get error aT LINE 24 [02:51] syntaz error near unexpected token `then' [02:52] use fi, like PuMpErNiCkLe said [02:52] You didn't close your `. === commandosquirrel [n=Devon@ip72-195-184-139.mc.at.cox.net] has left #xubuntu [] [02:53] $(stuff) and a text editor with parantheses matching are your friends. [02:53] wewt [02:53] i got my thinkpad working [02:54] :O [02:54] o man [02:54] im so confused [02:55] Jester45, bout what [02:55] Pmg. Jester45. CONFUSED? [02:55] that script im trying to make [02:55] Jester45: try scite, it's good for all sorts of code. C, bash, python. [02:56] has highlighting. [02:56] or just vim with :syntax enable [02:56] its just bash and should be simple [02:56] it's not as simple as all that [02:58] all i need is 2 strings one if its PAL and one if its NTSC and then edit the aspect ratio [02:59] the part above that is checking for installed mplayer and enocder [02:59] seems like what you've got is syntax errors and an editor with syntax highlighting helps a lot. [03:00] this would be a good script [03:00] turn any video into a dvd [03:00] very simple once its done [03:01] Sweet. I would use it. :O === sunnz2 [n=zac@ppp115-5.static.internode.on.net] has joined #xubuntu [03:01] i know [03:01] i could get the part after encoding done in 10 mins [03:02] but this encoding part is nasty [03:02] Sharn: you wouldnt happen to know bash? [03:02] Hah. No [03:03] Rofl.. I can't even get DOS to isntall. === sunnz2 [n=zac@ppp115-5.static.internode.on.net] has joined #xubuntu [03:05] !rar [03:05] rar is a non-free archive format created by Rarsoft. For instructions on accessing .rar files through the Archive Manager view https://help.ubuntu.com/community/FileCompression. There is a free (as in speech) unrar utility as well, see !info unrar-free [03:06] install the rar package to use it in xarchiver [03:07] or install the free one and use unrar e to extract it === malnilion [n=malnilio@129.244.27.40] has joined #xubuntu [03:15] So a new kernel appeared in the repository the other day and was installed apparently successfully, would you guys think it'd be alright to go ahead and remove the old kernel? [03:16] If the new one works, and you feel comfortable not having a backup... sure. [03:16] Good stuff. [03:18] Jester45: no credit to me for you hostname on your website. :) [03:18] ;) [03:18] you can put it there [03:18] you have access to the ftp right? [03:19] I do, but I don't want to it's yours [03:19] i dont care if you do anything with it [03:20] whatever you say [03:20] you can add a link [03:20] dont delete my stuff [03:20] ok [03:21] did you know furniture polish can really get rid of hard skin? [03:21] i got little baby hands now :0 [03:22] and I can't get into your FTP server [03:22] o well [03:22] haha [03:22] brb afk === malnilion [n=malnilio@129.244.131.96] has joined #xubuntu [03:45] ....that's nice. xD Furniture polish... [03:45] back [03:45] yep it works [03:47] Anyone know how to make a folder into a floppy .img? [03:51] No-one? O: [03:55] Why not just copy the folder over to the floppy disk in question? [03:57] ..... do you have floppys? xD [03:57] I don't even have a floppy drive... === Jester45 [n=Jester45@d28-69.rt-bras.wnvl.centurytel.net] has joined #xubuntu [04:15] Sharn, why do you need to make a .img then :P [04:17] sharn: sounds like you want to make a file with dd then mount it with -o loop and then copy the files to it. [04:17] sharn: You should be able to format it once it's mounted. [04:17] sharn: Then it will act just like a floppy disk. [04:17] can you make a bash script wait a number a seconds to wait for a command to finsih [04:18] jester45: man wait [04:18] i know there is plain wait but that waits for a command to finish [04:18] make that: man sleep [04:18] sllep n [04:18] sleep n (n is the seconds)? === malnilion would guess milliseconds [04:19] jester45: man sleep [04:19] jester45: or info sleep === malnilion would be wrong :P [04:19] i have somthing for the user to input somthing if they are not ready for my script to do somthing [04:19] It's seconds [04:19] malnilion: I'm making floppy images for VMware [04:19] would you say 5 secs is good [04:20] for a user to ctrl c the script [04:20] im also doing it this way for addes experience [04:20] added [04:20] I'd make it 10 if it was gonna fuxor things :P [04:20] well its not a hard choise [04:21] sharn: Again. man dd to get the manual. You want if=/dev/zero and of=/path/to/filename.img and you need to specify the size (check the manual for syntax). Then you mount the file with -o loop to a mount point and format it as a floppy disk. Then you copy the files over and unmount the file and you've got yourself a brand new floppy disk image containing the files you want,. [04:21] choice the things above it is only inputing file path and type of dvd wanted [04:22] Heh 5 seconds should be fine then :) [04:23] i just tested it [04:23] BlueEagle: Alright, I'll look into it. Thanks. :) [04:23] sharn: Upi [04:23] sharn: You're welcome. [04:24] and 7 cools good 10 to long for ppl that know the script and if they look away user might miss the 5 sec [04:25] this is starting to look good [04:26] but its kinda not working now but i working deeper i think its gonna fix it === Dell_Boy [n=Linux_Ma@ip70-181-173-229.sd.sd.cox.net] has joined #xubuntu [04:28] I need Help. I am New to Linux [04:29] What'da need help with? :P [04:29] Server X? [04:29] what is that [04:29] it says my Graphical interface is not set up correctly [04:29] You mean the "X Server" Like, X.org? [04:29] what do i do? [04:29] yes [04:30] Where at does it say that? === MagicFab_ [n=magicfab@modemcable178.77-70-69.static.videotron.ca] has joined #xubuntu [04:30] after it shows Swap something [04:30] its after i hit start or install Xubuntu [04:30] So, at startup? [04:30] ya [04:30] So, does it never make it past text? [04:31] yes [04:31] it doesnt make it past [04:31] Hmmmm.. [04:32] im using an ATI Radeon 9250 PCI DDR 256mb [04:32] Did you try to isntall drivers for it? [04:32] Install* [04:32] theirs drivers? [04:32] i only got the Windows Drivers(i think) [04:32] Yeah... do you not have Xubuntu installed at all? [04:32] Like, is that happening on the livecd [04:33] yes [04:33] im on Window Currently [04:33] Ooooh. Ouch. [04:33] I think that might be over my head... [04:33] as long as its xp i dont care [04:33] yes its XP [04:34] im trying to have Linux and XP on my HD [04:34] ok whats wrong with the x server [04:35] If you had it installed, you could probably dpkg or whatever it is and fix it... Being a live cd, I'm not sure how to fix it. [04:35] it says Server X ( graphical interface) is not set up properly (i think) [04:35] and have you installed it or using live cd === MagicFab [n=MagicFab@ubuntu/member/magicfab] has joined #xubuntu [04:35] He says he's using the live cd.. [04:35] using LiveCD trying to try Linux out [04:36] then see if i wanna instal it [04:36] well you cant edit things on the live cd... only once its booted === MagicFab_ [n=MagicFab@modemcable175.169-57-74.mc.videotron.ca] has joined #xubuntu [04:36] I think it's all booted except for X... [04:36] becuase the live cd is on a cd and even if it was a rewriteable [04:37] oh dangit [04:37] the fs i scompressed [04:37] Dell_Boy: does it come to a login prompt or anything? [04:37] no [04:37] What does it do after the error? === MagicFab_ [n=MagicFab@modemcable175.169-57-74.mc.videotron.ca] has joined #xubuntu [04:37] its after swap something [ok] [04:37] then something else [ok] [04:37] then it does the Server X problem [04:38] Does it just hang there? Not go any farther? [04:39] it stays there after i hit ok couple of times [04:39] o its messing up during boot === MagicFab_ [n=MagicFab@modemcable175.169-57-74.mc.videotron.ca] has joined #xubuntu [04:39] it says "After fixing Restart GDM" [04:39] should i download the Radeon Drivers for Linux? [04:40] try waiting for someone smarter like PuMpErNiCkLe or crimsun to look [04:40] o [04:40] ok [04:40] no you shouldnt [04:40] ok [04:41] the driver for ati that comes with xubuntu supports all the caRDS to some extent [04:41] bootable [04:41] Yeah... the livecd should boot almost no matter what card you have.. [04:41] I burnt the Xubuntu Disk from the internet [04:42] what version [04:42] drapper or edgy [04:42] hold on [04:42] I'm pretty sure that's not the problem. :P [04:42] Edgy [04:42] 6.10 Edgy Eft [04:42] You COULD try Dapper.. It may work better. [04:42] Sharn: could make the problem more specific [04:43] drapper is more stable [04:43] ok it did the same thing with Ubuntu [04:43] is pre drapper supported any more? [04:43] 6.10 Desktop [04:43] If it doesn't take you too long to download the disc, I would try it. [04:43] ok [04:43] And, Jester45, I don't think they are.. [04:43] You want a link, Dell_Boy? [04:43] ok [04:44] One sec [04:44] ok [04:44] You want Xubuntu or Ubuntu? [04:44] Xubuntu [04:44] goo choice [04:45] i only have 700mb black CDs [04:45] Hmmmm. Do you torrent or just direct download? [04:45] direct download [04:45] whats Torrent? [04:46] http://ubuntu-cdimage.datahop.it/xubuntu/releases/6.06.1/release.1/xubuntu-6.06.1-desktop-i386.iso [04:46] Thanks [04:46] Torrent directs the load away from the server. Everyon uploads and everyone downloads. [04:47] oh [04:47] this is going to take awile to download [04:48] It'll take as long as the other ones. =\ [04:48] :( [04:48] the torrents also can be faster [04:48] because the severs dont have that much speed but many users have more speed [04:48] oh [04:48] thats cool [04:49] and even the dial upers can add up [04:49] would BitTorrent do it? [04:49] if you dl from 50 dial up connections you can get 100k/s [04:49] yes that would work [04:49] That's exactly it... :P [04:49] oh [04:49] you can try that it might be faster [04:50] my Download Speed supposed to be 7Mbps [04:50] also you need to give it time to connect to people [04:50] ok [04:50] with direct dls you connect to 1 place on torrents i connect to about 100 per torrent [04:51] Where do i get the Torrent File for Xbuntu? [04:52] I'll grab it, one sec. [04:52] thank you [04:52] http://se.archive.ubuntu.com/mirror/cdimage.ubuntu.com/xubuntu/releases/6.06.1/release.1/xubuntu-6.06.1-desktop-i386.iso.torrent [04:52] Gotta make myslef helpful somehow. xD [04:53] :) [04:53] 3days XD [04:53] lol [04:54] lol now its 2days [04:54] Sharn: you keep xubuntu iso links in your clipboard? :0 [04:54] see [04:54] lol [04:54] thats cool [04:54] give it 15 mins and that is probly top speed [04:54] ok [04:55] but ig the ETA keep droping then wait some more [04:55] Jester45: xD ah, the site's easy to get to though. :P [04:55] What can i get with Bit Torrent? [04:55] ...stuff. :O [04:55] and if it gets faster than the direct download then stop that [04:55] ... [04:55] Dell_Boy: anything [04:55] XD [04:55] ok [04:55] lol [04:56] Dell_Boy: on one "torrent" vista has been downloaded 30,000 times [04:56] Who's going to tell me how to add stuff to my floppy? [04:56] WOW [04:56] and its been there 2 weeks [04:56] VISTA on Torrent [04:56] im not suggesting it :0 [04:56] then there's ten or so others equaling another 10,000. :P [04:56] vista sucks so bad [04:56] I use Limewire XD [04:56] Vista ftl. [04:56] Limewire ftl. [04:56] ? [04:56] do you get videos from limewire? [04:57] Frostwire and Xubuntu ftw. ^_^ [04:57] dont do it [04:57] gtk-gnutella ftw [04:57] videos programs contain Trojans trust me i tried it [04:57] Jester45: short answer: no. Look answer: you can try. :P [04:57] It'll be slow and chances are it won't work anyhow. [04:57] aXXo. Torrentspy. [04:57] :P [04:58] ? [04:58] lol [04:58] Nothing. -whistles- [04:58] its back to 3days [04:58] It'll speed up. [04:58] i hope so [04:58] Dell_Boy: the most downloaded torrent on mininova.org is season 1 eps. 3 of desprate house wifes and has been downloade d 1,300,000 times [04:58] Ok, how the heck do I add my files to my fake floppy. [04:59] Are you serious?! [04:59] dd it Sharn [04:59] nope [04:59] Ahhh. dd sucks. :P [04:59] well i got that from memory i know its the same show and its over 1 mill [04:59] Crazy. [05:00] http://www.mininova.org/stats/ [05:00] Oh that's sad. [05:00] 1,061,000 times [05:00] close [05:01] and by the looks of the leachers/seeds itsgoing strong [05:01] aa i got the season and ep mixed [05:01] season 3 ep 9 [05:01] no way i found the sims 1 on BitTorrent [05:01] Stupid Playstation Underground. >.< [05:02] Dell_Boy: you can find lots of weird stuff in torrents... [05:02] oh.... im new to it [05:02] like thinks with many x's [05:03] http://thepiratebay.org/tor/3513851/Freelancer_NO.CD.KEY.NEEDED is not my upload :) the guy just copied my user name [05:03] has 6000+ dls [05:04] very happy about that [05:04] nice game [05:04] very nice [05:04] They're changing up daylight savings time again. >.< [05:04] What is Freelancer?... [05:07] a great game [05:08] i think ms still has it online [05:08] They put Ubuntu in Popular Science. :O [05:08] ya thats where i found how to install it [05:08] www.microsoft.com/games/freelancer [05:08] Oh, sweet. Welcome to the open-source world. As soon as you get into it. :) [05:09] (They theme lots better) :P === Mlittle [n=Mlittle@rn-was3a19.uwaterloo.ca] has joined #xubuntu [05:10] That's an old game.... [05:13] yes it is [05:14] but looks wonder full still [05:14] i wish the reall world looked like that [05:14] best thing ms made [05:14] Quake still looks cool too. :P [05:16] no freelancer looks great not cool [05:17] big diffrence :) [05:19] Yeah yeah... [05:19] This floppy thing is being so freaking stupid. >.< [05:19] glade you see it my way [05:19] I found a version of Ubuntu that faster for my impatient personality [05:19] http://cutlersoftware.com/ubuntusetup/ [05:20] ok now about my script problem [05:20] its in a .exe format [05:21] Well, you can try it. [05:21] ill see if it works [05:21] I prefer mine custom anyway. ^_^ [05:22] lol === Sharn needs something to do with those silly Windows 3.1 floppies [05:24] if [[ "$type" == "NTSC"] ] ; [05:24] gives me syntax error in conditional expression: unexpected token `;' === Dell_Boy gets confused by linux codes [05:25] Heh.. === Jester45 also does [05:25] Are there supposed to be quotes around $type? [05:25] Jester45: likes confusing linux lines... [05:25] -: [05:26] Jester45: Are you doing if [[ stuff ] ] then ... [05:26] PuMpErNiCkLe: ?? [05:26] im not sure [05:26] Yeah, if that's true, then what? [05:26] Is that an if/then statement? [05:26] There probably shouldn't be a ; at the end. [05:26] i dont anything about if stuff [05:26] malnilion: Exactly. [05:26] yeas its a if ten [05:26] Don't use the ; [05:26] but without the ; i get a [05:27] syntax error in conditional expression [05:27] And then you try removing the quotes around $type? [05:27] syntax error near then [05:27] i will try that [05:28] This still that bash script you're working on? [05:28] yes lol [05:28] i had to do some other things === malnilion should consider learning some bash scripting. [05:31] The syntax, rather. [05:31] Yeeeeah. Good luck. :P [05:31] Easier than learning assembly, I'd wager :P [05:31] Naaah. === esc_ [n=esc@p57BB51A2.dip.t-dialin.net] has joined #xubuntu [05:32] if [[ "$type" == "NTSC"] ] ; then <----- gives a error about the ; [05:32] with out the ; gives syntax error in conditional expression near `then' [05:32] and removing the "" around $type doesnt help [05:32] From what I can tell, bash doesn't look too hard... [05:33] Hmmm [05:34] Vb ftw. xD [05:34] Joking, rofl... Haven't used VB for a long time. [05:34] Okay, I'm looking at the bash man entry right now. [05:35] And you know what? The damnedest thing is that it appears you *do* have to have a semicolon after your if statement. === Sharn prefers php [05:35] PuMpErNiCkLe: want to look at my code? [05:36] o and FOO=`which mencoder`; if [[ "" != "$FOO" ] ] ; then [05:36] echo "mencoder is installed"; [05:36] doesnt compline about anything [05:37] Bye everyone [05:37] Have you tried switching "NTSC" and "$type" around in the if statement (just for shits and giggles)? :P === Dell_Boy [n=Linux_Ma@ip70-181-173-229.sd.sd.cox.net] has left #xubuntu [] [05:38] May work. ^ [05:38] Joking, I have no clue. [05:41] bash needs to stop being gay [05:42] No comment. xD [05:43] Gay bashing, lol [05:43] lol [05:43] ummm [05:44] i think i fixed it [05:44] What'd ya do? [05:45] ok [05:45] yea fixed that [05:45] if [[ "$type" == "NTSC"] ] ; the [05:45] should of been [05:45] if [[ "$type" == "NTSC" ] ] ; the [05:46] very suttle [05:46] Are you kidding me? [05:46] Whitespace matters? [05:46] That's stiff. [05:47] lol guess so [05:47] Surprise [05:47] still doesnt work perfectly [05:47] What error you got now? [05:47] Welcome to programming. xD === malnilion is finding this fascinating :) [05:48] no error just not finished [05:48] malnilion: do you program anything now? [05:48] A little bit of Java, nothing fancy. [05:48] Could do some C++ too. [05:48] ok [05:48] now my problem is that im not sure how to do this [05:49] I'm a comp sci major, though, so I should theoretically be getting better :P [05:49] im trying to automate dvd making encoding-authoring-burning [05:49] Looks like you got the encoding part :P [05:49] and the way im doing it [05:50] is the first thing to encode is to check audio type and if needed to encode it [05:50] Right [05:50] now if its ac3 then nothing is done but if its somthing else i need to run a 2nd part of the script [05:50] how could i do this [05:51] Ah, here's where oop is helpful [05:51] i think i could run a 2nd outside script [05:51] Probably. [05:51] Sheesh... Probably fancier than mine. ^_^ [05:51] But would you need to? Maybe not. [05:51] but thats not what i would realy like [05:51] Let's see what I can find about bash scripting. === Jester45 runes to pastebin [05:53] http://paste.ubuntu-nl.org/5677/ [05:54] Alright, let's make a function :) [05:55] thats for if the audio is ac3 [05:55] sorry if its a little sloppy to you [05:55] its my 2nd script [05:55] working up the ladder [05:55] if [[ "$audiotype" != "ac3" ] ] ; then do_other_shit(); [05:55] or something [05:56] Can you get the audio type into a variable somehow? [05:56] well at line 39 [05:56] it figures if its ac3 or not [05:57] Ah, there ya go. [05:57] Rofl... [05:57] hwac3 is ac3 [05:57] like all my comments? [05:57] if [[ "$AUDIO_FORMAT" != "hwac3" ] ] ; then do_other_shit(); [05:57] ^ maybe? [05:57] Yeah, comments are helpful. [05:58] they work as a separator for me [05:58] Or here's what you can do: [05:59] if [[ "$AUDIO_FORMAT" == "hwac3" ] ] ; then { code that you want to execute if it's true goes here } else { code that you want to do if it's false goes here } [05:59] ^ use appropriate line breaks with the curly braces por favor :) [06:00] ok the above suggestion i need to be able to run 2 diffrent mencoder commands 1 for PAL and 1 for NTSC [06:00] ok the above above [06:00] so could i do [06:01] the line 39 thing to get a $audio_format [06:01] o [06:01] i c [06:03] bash scripting has a strange syntax, lol [06:04] do you know html? [06:04] A tiny bit, probably forgotten most of it. [06:04] you know the bookmark thing [06:04] Wish I could say I did. [06:05] the www.blah.com/pagethis.html#skiptothispart [06:05] Oh, right. [06:05] Yeah [06:05] I never got that part. :P [06:05] tink bash has this [06:05] aaa [06:05] i need to take a break [06:05] head is over thinking again [06:06] Well, you guys have fun. I'm off. [06:06] k [06:06] bye [06:06] Later === Sharn [n=dino@dsl-216-128-233-200.teton.id.tetontel.com] has left #xubuntu [] [06:06] Just remember, your script runs in the order you specify with control structures [06:06] yes [06:07] but can i make a umm subsection [06:07] like [06:07] aaa [06:07] arrrg [06:07] The answer is most likely yes :P [06:07] You are probably asking if you can make a function. [06:07] ok do you understand what i need to so [06:08] to do* [06:08] as far as the encoding part [06:08] its like a tree [06:08] Right [06:09] first think is the file then if the audio is right then if its PAL or NTSC then is its wide or full screen [06:10] Yep, you just use if statements for each step. [06:10] but [06:11] after the audio i need to do a 2nd if [06:11] not just one command [06:11] wait [06:11] can i do [06:11] You're saying you want to add another command to that if statement? [06:12] if [[statement] ] ; then [06:12] run this [06:12] else run this if statement [06:12] can the else contane a if statemtent [06:13] Yep, that'd be an else if. [06:13] Should work. === Jester45 needs lots of luck and his head to stop over thinking [06:14] I think you need to use the symbol "elif" [06:14] ?? [06:14] if [[statement] ] ; then [06:14] run this [06:15] elif [[statement] ] ; then [06:15] run this [06:15] whats the diff [06:15] I just think that's how the bash syntax works [06:15] well i will try with noramal if [06:17] Yeah try an else if first === firefish [n=yhy@218.2.20.179] has joined #xubuntu [06:19] elif is a correct method, though [06:21] Ooooh, found something interesting. [06:21] Until you close an if with a fi, it's open for nesting :P [06:22] Weird, weird syntax :P [06:26] yea [06:26] hsould i put 2 fi [06:26] Yep. [06:26] Are you updating that pastebin? [06:27] nope [06:27] :) [06:27] Okey dokey :) [06:29] http://paste.ubuntu-nl.org/5679/ [06:29] thought i was spamming the old one [06:30] its working!!!!!!!!1 [06:30] now the video i did was only vid no sound [06:30] but now it understands it [06:31] you try it? [06:32] ok... [06:32] i think it encoded 2 times [06:37] it keeps encoding [06:38] Oh dear... :/ [06:38] not good for encoding [06:39] ok [06:39] i removed somthing [06:39] works now [06:40] lol [06:40] 5.4 % over head [06:40] 989kb avi into 2.3mb mpeg [06:41] http://paste.ubuntu-nl.org/5680/ === soweto76 [n=jack@d226-43-189.home.cgocable.net] has joined #xubuntu === adsims2001 [n=Jackfros@67.167.105.191] has joined #xubuntu === nolo [n=chatzill@kntpin04-nas-03-s102.cinergycom.net] has joined #xubuntu [07:20] Jester45, so I take it it's working? [07:20] yep [07:20] Sweet, now the next part of the code? :P [07:20] allmost done with step 2 of 3 [07:22] authoring === nolo [n=chatzill@kntpin04-nas-03-s102.cinergycom.net] has left #xubuntu [] === sunnz2 [n=zac@ppp115-5.static.internode.on.net] has joined #xubuntu [07:24] When you really wanna get fancy you can put in user prompts into your script ("Do you want me to try installing blah for you?" if yes, blah, if not, exit the script) :P [07:25] yea i kinda have that [07:27] echo you wanna install this [07:27] read (user'simputas a word) [07:27] so read type [07:27] on my script was [07:27] do you want a NTSC or [07:27] PAL dvd [07:30] Man, I love linux. === b_52Free [n=skimo@adsl196-74-41-217-196.adsl196-10.iam.net.ma] has joined #xubuntu [07:39] do you know where i could get a little xml file hosted? [07:39] i need it for the authoring part but my site itsnt on 24/7 [07:41] or... === BrianR [i=Brian@host-69-144-45-20.msl-mt.client.bresnan.net] has joined #xubuntu [07:42] can someone help me === DarthLappy [n=Angus@pdpc/supporter/student/DarthShrine] has joined #xubuntu [07:42] I shoutcast with a shoutcast plugin in winxp I am switching to Ubuntu can you shoutcast with it to a shoutcast server? [07:42] yes [07:42] how can you do that can you tell me wich program? [07:42] i remeber that shoutcast has a linux server [07:43] just second let me look [07:43] ok [07:43] I don't have my ubuntu cd yet [07:43] going to be 4 to 6 weeks but your help is appreciated [07:43] lol [07:43] ok [07:44] I know it's weird [07:44] lol [07:44] all you have to do is run "sudo apt-get install icecast-server" [07:44] and it will be installed [07:44] icecast-server [07:45] im not sure how you set it up [07:45] I want to dj from ubuntu? [07:45] to a already exsisting server [07:45] yes you can do that with icecast [07:45] oh and it will connect to shoutcast servers huh? [07:45] you send your stream to s aserver that has more bandwidth [07:46] yep as i said i dont know how to set it up but it should be easy [07:46] okay [07:46] !info icecast-server [07:46] icecast-server: MPEG Layer III Streaming Server. In component universe, is optional. Version 1:1.3.12-14 (edgy), package size 176 kB, installed size 728 kB [07:46] this might work [07:46] ok thanks === BrianR [i=Brian@host-69-144-45-20.msl-mt.client.bresnan.net] has left #xubuntu [] [07:46] !info darkcast [07:46] Package darkcast does not exist in edgy, edgy-seveas [07:47] !info idjc [07:47] Package idjc does not exist in edgy, edgy-seveas [07:47] !info darkice [07:47] darkice: Live audio streamer. In component universe, is optional. Version 0.17.1-1 (edgy), package size 94 kB, installed size 308 kB [07:47] you can search the ubuntu forums they might have somthing more detailed about it === Rymac91 [n=ryan@cpe-75-179-133-65.woh.res.rr.com] has joined #xubuntu [07:48] ... [07:48] .... [07:48] hey! I got something to work! [07:48] lol [07:49] need help then? [07:49] yeah [07:49] I was wondering how to install firefox 2 [07:49] ask way [07:49] are you on drapper [07:49] yeah [07:49] or adgy [07:49] ok [07:50] whats the default version? 1.5 [07:50] yeah [07:50] goto the menu [07:50] then [07:51] system ----> synaptic package manger [07:51] then [07:51] settings --> repositories [07:52] then check the top 4 boxes [07:52] click close [07:52] then in upper left coner click reload [07:53] then close the package manger [07:53] open a terminal [07:53] type sudo apt-get upgrade [07:53] then press enter type pass and type y press enter ans wait for it to finish [07:55] hmm [07:55] pass y like that? [07:56] or Pass then y [07:56] is ask for you password [07:56] type your passoword in press enter [07:56] then it should ask you are you sure you want to continue? [Y/N] [07:57] never got to that.. [07:57] is it downloading new files? [07:57] it asked for my password after entering "sudo apt-get update" [07:58] type your password in [07:58] did that... [07:58] and pressed enter? [07:58] yes [07:59] then what happened [07:59] either it was listing stuff or getting stuff [08:00] ok ANS YOUr back at a new line? [08:00] then it said W: GPG error: http://wine.lowvoice.nl dapper Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 58403026387EE263 [08:00] E: Could not get lock /var/lib/dpkg/lock - open (11 Resource temporarily unavailable) [08:00] E: Unable to lock the administration directory (/var/lib/dpkg/), is another process using it? [08:01] do you stlll have the package manger open? [08:01] yes [08:01] ok well [08:01] go to that [08:01] and click mark all upgrades [08:01] then click apply === sunnz2 [n=zac@ppp115-5.static.internode.on.net] has joined #xubuntu === silya [n=chatzill@52-171-124-91.pool.ukrtel.net] has joined #xubuntu [08:07] did that work? [08:07] it's doing...whatever it does >_> [08:07] its upgrading your system [08:07] I was thinking that [08:08] is this the first time you did this? [08:08] just watching text fly by in the terminal [08:08] no I don't think so... [08:08] I think I've done this a month ago... [08:08] dapper -> edgy? [08:08] well you have a lot of this to upgrade [08:08] drapper-> newer drapper [08:08] :0 [08:08] Oh [08:09] drapper to edgy is bad [08:09] I've heard there were problems with upgrading to edgy from drapper :S [08:09] E: /var/cache/apt/archives/samba_3.0.22-1ubuntu3.2_i386.deb: subprocess new pre-removal script returned error exit status 1 [08:09] that just popped up [08:10] humm [08:10] malnilion: any idea? [08:10] well...seems to be done [08:11] Jester45, nope, but then again, I didn't upgrade dapper to edgy. [08:11] he isnt === Rymac91 waits [08:12] shouldnt take long [08:12] it's done [08:13] malnilion: think they will fix drapper to feisty? [08:13] lol, no [08:13] now search for firefox [08:13] and look at the installed verson coulum [08:13] I bet the only way to get feisty will be to upgrade from edgy or reinstall. [08:14] i dont see why not [08:14] drapper will still be supported [08:15] Installed version of firefox is 1.5.dfsg+1.5.0.9-0ubuntu0.6.06.1 [08:15] Can you upgrade whatever the c c release was to edgy? Don't think so. [08:16] cc? [08:16] warty to edgy? fun fun [08:18] Wait, was there a c c release or did it go from breezy to dapper? [08:18] Huh, guess it did go breezy to dapper [08:18] whats c c [08:19] don't think it did anything to firefox [08:19] Well, all the Ubuntu releases are double letter names [08:19] humm [08:19] it's still 1.5 [08:19] Breezy Badger [08:19] Dapper Drake [08:19] Edgy Eft [08:19] o [08:19] yes they are [08:19] can I upgrade ti fiesty? [08:19] yes [08:19] silya, theoretically :P [08:19] and what features of that release in xubuntu? [08:20] you can right now [08:21] By the way.. I installed e17 and all russian symbols looks like squares :( howto fix it? [08:21] Compile with unicode support? [08:21] I dunno [08:21] You need unicode somehow. [08:22] Feisty Fawn Herd 3 Candidate Images Need testers [08:22] :) [08:25] hmm...firefox is still 1.5... [08:25] dont look at ff's about screen [08:25] wonder why it didn't work... [08:25] it is messed up [08:26] I'm not... [08:26] https://help.ubuntu.com/community/EdgyUpgrades [08:26] I'm just noticing that firefox is lacking ver 2 features... [08:26] and it says 1.5 in the package manager ;) [08:26] idk [08:26] hmm [08:27] whats it sat next to the installed version ? same? [08:27] yeah... [08:28] Could it be I need to manual install it? [08:28] maybe [08:29] search he ubuntu forums [08:29] k === stork [n=sh2-136@storkey.plus.com] has joined #xubuntu === skaro [n=chatzill@ip72-207-212-115.br.br.cox.net] has joined #xubuntu === DarthLappy [n=Angus@pdpc/supporter/student/DarthShrine] has joined #xubuntu [08:37] brbr kernal upgrade [08:40] hmm [08:40] still clueless === Jester45 [n=Jester45@d28-69.rt-bras.wnvl.centurytel.net] has joined #xubuntu [08:45] wb [08:49] hi [08:50] ok...got a simpler(or more complex, depending on how this goes) question... [08:50] $Startlog [08:50] how the heck do I untar a tar file? [08:50] doubleclick [08:50] tar -xf foo.tar [08:50] or [08:51] foo.tar meaning thr tar file [08:51] $Sleep [08:51] O_o? What's up with the $ stuff? [08:51] logging [08:51] i going to bed [08:52] hmm [08:52] and the $Sleep stops people from ending the log [08:53] well bye bye [08:53] I've tryed using Xarchiver 0.3.3 but it fails no matter what tar I try to untar === moe_evil [n=patatama@eu99-71-192.clientes.euskaltel.es] has joined #xubuntu === moe_evil [n=patatama@eu99-71-192.clientes.euskaltel.es] has left #xubuntu ["Ex-Chat"] === Rymac91 [n=ryan@cpe-75-179-133-65.woh.res.rr.com] has left #xubuntu [] === darrend_laptop [n=davisond@43-015.adsl.zetnet.co.uk] has joined #xubuntu === grazie [n=grazie@host86-139-197-68.range86-139.btcentralplus.com] has joined #xubuntu === gunny01 [n=tom@ppp224-36.lns2.adl4.internode.on.net] has joined #xubuntu === ke [n=kenneth@port272.ds1-aboes.adsl.cybercity.dk] has joined #xubuntu === rag_ [n=rag@58.Red-80-24-33.staticIP.rima-tde.net] has joined #xubuntu === Laibsch [n=Laibsch@p4020-ipbf2103marunouchi.tokyo.ocn.ne.jp] has joined #xubuntu [10:48] All my packages have disapeered from synaptic, and I can't get them to reapper? Any help? [10:53] after what? === silya [n=chatzill@52-171-124-91.pool.ukrtel.net] has left #xubuntu [] [10:54] Dunno: just booted up today and they aren't there === gunny01 [n=tom@ppp224-36.lns2.adl4.internode.on.net] has left #xubuntu [] === baconvanhood [n=bacon@vhe-367407.sshn.net] has joined #xubuntu === psb154 [n=psb154@80-41-90-226.dynamic.dsl.as9105.com] has joined #xubuntu === kalikiana__ [n=kalikian@xdsl-87-78-23-172.netcologne.de] has joined #xubuntu === SoulChild [n=eshat@dslb-084-060-019-089.pools.arcor-ip.net] has joined #xubuntu [11:07] Hey all ... [11:08] I have this strange PRoblem that Links in Thunderbird or X-Chat (anywhere) do not open??? === SoulChild [n=eshat@dslb-084-060-019-089.pools.arcor-ip.net] has left #xubuntu ["Verlassend"] === morphir [n=morphir@217.168.81.4] has joined #xubuntu === Iphigenia [n=Iphigeni@C-59-101-53-125.hay.connect.net.au] has joined #xubuntu === MattJ [n=matthew@88-109-170-23.dynamic.dsl.as9105.com] has joined #xubuntu === johansalim [i=G3b0ys@ip84-222.cbn.net.id] has joined #xubuntu === apoca [i=apoca@shodan.nognu.de] has joined #xubuntu === sunnz2 [n=zac@ppp115-5.static.internode.on.net] has joined #xubuntu === xfceubuntu [n=pegger@82.131.217.122] has joined #xubuntu === geo- [n=geo@195.34.87.147] has joined #xubuntu === rippawallet [n=ubuntu@82-32-33-117.cable.ubr05.azte.blueyonder.co.uk] has joined #xubuntu === Admiralen [n=rasmus@82.211.197.180] has joined #xubuntu === ke [n=kenneth@port272.ds1-aboes.adsl.cybercity.dk] has left #xubuntu [] === sacater [n=sacater@host86-143-96-119.range86-143.btcentralplus.com] has joined #xubuntu [12:59] !grub [12:59] grub is the default Ubuntu boot manager. Lost grub after installing windows: https://help.ubuntu.com/community/RecoveringUbuntuAfterInstallingWindows - Making GRUB floppies & other GRUB howtos: https://help.ubuntu.com/community/GrubHowto === psb154 [n=psb154@80-41-90-226.dynamic.dsl.as9105.com] has joined #xubuntu === xfceubuntu [n=pegger@82.131.222.236.pool.invitel.hu] has joined #xubuntu === LordGamer [n=LordGame@74.12.56.244] has joined #xubuntu === sk2 [n=sk2@ppp42-195.lns4.adl2.internode.on.net] has joined #xubuntu [01:40] Hi, I am unable to add new entries to GDM in Xubuntu. If I add them to gksudo mousepad /usr/share/xsessions/xgl.desktop & they don't show up === MattJ [n=matthew@88-111-154-136.dynamic.dsl.as9105.com] has joined #xubuntu === gnomefreak [n=gnomefre@ubuntu/member/gnomefreak] has joined #xubuntu === grazie [n=grazie@host86-139-197-68.range86-139.btcentralplus.com] has joined #xubuntu === cga [n=cga@213-140-6-101.ip.fastwebnet.it] has joined #xubuntu === T`2 [i=total@pdpc/supporter/student/T] has joined #xubuntu === ron_o [n=ron@12-210-178-28.client.mchsi.com] has left #xubuntu [] === quad3datwork [n=quad3dat@12.110.209.75] has joined #xubuntu === tuna-fish- [n=tuna@tunamasiina.kortex.jyu.fi] has joined #xubuntu === SoulChild [n=eshat@dslb-084-060-039-112.pools.arcor-ip.net] has joined #xubuntu [02:55] HELP! Firefox does not open if i click any link??? === gnomefreak [n=gnomefre@ubuntu/member/gnomefreak] has joined #xubuntu === Qew [n=qew@82-69-126-225.dsl.in-addr.zen.co.uk] has joined #xubuntu === kalikiana__ is now known as kalikiana === rosen37 [n=christor@ANancy-151-1-111-52.w90-13.abo.wanadoo.fr] has joined #xubuntu === sunnz2 [n=zac@ppp115-5.static.internode.on.net] has joined #xubuntu === Laibsc1 [n=Laibsch@p4020-ipbf2103marunouchi.tokyo.ocn.ne.jp] has joined #xubuntu === the-noo-noo [n=simon@82.152.74.134] has joined #xubuntu === grazie_ [n=grazie@host86-139-197-68.range86-139.btcentralplus.com] has joined #xubuntu === grazie_ is now known as grazie [04:01] Hi, newbie alert! Would this be an appropriate place to ask a question about an OOo problem I have running on Xubuntu Edgy? === T`3 [i=total@gateway/tor/x-397503dc0a6d55bc] has joined #xubuntu === pk_butu [n=chatzill@59.145.136.1] has joined #xubuntu [04:10] On xubuntu installtion..... I installed centos [04:11] but now I am unable to boot from xubuntu [04:11] can any body help what to do? === maxamillion [n=adam@ngl-1-14.shsu.edu] has joined #xubuntu === rag_ [n=rag@58.Red-80-24-33.staticIP.rima-tde.net] has joined #xubuntu [04:20] Sorry, am I missing something here? There are 70 other people logged in but no-one answers questions... [04:23] the-noo-noo: is your problem with OOo? === Laibsc1 is now known as Laibsch [04:27] Ah, thanks. In Writer, whenever I click insert --> cross-reference the whole program crashes. I've searched the forums and google with no references === sunnz2 [n=zac@ppp115-5.static.internode.on.net] has joined #xubuntu [04:27] For your info, I don't have a JRE installed and have unchecked the box in OOo's options === stork [n=sh2-136@storkey.plus.com] has joined #xubuntu === stork [n=sh2-136@storkey.plus.com] has joined #xubuntu === OGDA is now known as BFTD [04:31] the-noo-noo: I've no idea. try an OO.o channel [04:32] Thanks anyway. Here on irc you mean? [04:32] the-noo-noo: that in all honestly could be the problem, i know it doesn't mention it in the package manager installation but i know on windows (because i install it on windows boxes at work) that during the installation it warns that if you lack atleast JRE 1.4.2 that the application might not have full functionality [04:33] the-noo-noo: most if not all the people in here are just users so they sit here and if they get to their computer they answer questions [04:34] Thanks Maximillion. Unfortunately, I can't install JRE at the moment as I only have 45MB of drive space left! [04:34] oo [04:34] Thanks for your comment Jester45 [04:35] Yeah I have a 1999 laptop with a 4GB hard drive and it's partitioned in two lots of 2GB so that I can keep my Win98 installed until I'm happy that I can transfer completely to Xubuntu. [04:36] the-noo-noo: you can remove some things from the package manger and that can give you much more space [04:36] on freash installes i remove 200mb of stuff [04:37] OpenOffice is my biggest concern at the moment. I have another crash problem with it that I have little way of knowing the cause. It happens when I try to open a particular Word document so I never see what the problem is! [04:37] I've tried to remove as much as I can - non western fonts, GIMP, TBird, etc. [04:38] the-noo-noo: if haven't got much ram, OO.o can be pretty slow and troublesome [04:38] Hmm [04:38] the-noo-noo: the document that crashes out in OOo, have you tried opening it in AbiWord? ... i have noticed that sometimes OOo chokes one some documents with certain formatting whereas AbiWord will just ignore them and continue to function [04:39] try running OOo from a terminal and see if it has a verbrose mode [04:39] Funny you should ask - I uninstalled AbiWord to make more space available! [04:39] so it will tel you evry thing its doing [04:40] Jester45: Can you explain how I would find out if it has a verbose mode, please? [04:40] quick question: can you use ubuntu cds as a repo with synatic? [04:40] man OpenOffice.org [04:41] might work [04:41] Jester45: sorry, what's a repo? [04:41] idk the command for OOo i dont use it [04:41] repository [04:41] its where you download all the packages from [04:42] !repo [04:42] The packages in Ubuntu are divided into several sections. More information at https://help.ubuntu.com/community/Repositories and http://www.ubuntu.com/ubuntu/components - See also !EasySource [04:42] :) [04:42] Jester45: still not sure what you mean (I did give a newbie alert!). OOo was installed from the liveCD [04:43] !krftb [04:43] Sorry, I don't know anything about krftb - try searching on http://bots.ubuntulinux.nl/factoids.cgi [04:43] the-noo-noo: im talking about for me [04:43] Jester45: Got you, sorry! [04:44] whast a good linux P2P program? [04:44] BFTD: gtkgnutella [04:44] !gtkgnutella [04:44] Sorry, I don't know anything about gtkgnutella - try searching on http://bots.ubuntulinux.nl/factoids.cgi [04:44] what@#@!$%~^ [04:44] !gtk-gnutella [04:44] gtk-gnutella: shares files in a peer to peer network. In component universe, is optional. Version 0.96.1-0ubuntu2 (edgy), package size 1982 kB, installed size 7016 kB [04:44] that's better === sunnz2 [n=zac@ppp115-5.static.internode.on.net] has joined #xubuntu [04:46] maxamillion: wonderfull program there [04:48] anyone know where to get the ubuntu dvds [04:48] or xubuntu if they have them [04:48] the-noo-noo: in a terminal enter 'oowriter' === sunnz2 [n=zac@ppp115-5.static.internode.on.net] has joined #xubuntu [04:49] Jester45: xubuntu doesn't have dvds ... the ubuntu dvds for feisty are ... http://cdimage.ubuntu.com/dvd/current/ [04:52] brb [04:52] grazie: will that then log problems in the terminal window? [04:53] grazie: Just searched the man OpenOffice but there doesn't seem to be a verbose mode [04:56] ok [04:56] ty [04:57] grazie: you're right, the terminal logs problems. Just opening the program without loading any files throws up 4 faults, the following one 3 times: (process:6997): Gdk-CRITICAL **: gdk_screen_get_font_options: assertion `GDK_IS_SCREEN (screen)' failed [04:58] Anyone know why I get the above OOo fault? [05:00] the-noo-noo: launching programs from a terminal is a standard way to get more details [05:00] the-noo-noo: can't really help with those errors. how much memory you got? [05:02] grazie: thanks. I've got over 100MB free, 186MB total [05:03] grazie: Any ideas, I got the following fault when inserted a cross-reference: (process:7080): GLib-GObject-CRITICAL **: gtype.c:2240: initialization assertion failed, use IA__g_type_init() prior to this function [05:03] the-noo-noo: running OO.o with 256M is going to be pretty slow, so with 186M... [05:04] grazie: doesn't seem too slow to me and, as I say, I've got over 100MB unused. [05:06] the-noo-noo: you're going to get better OO.o answers on a OO.o channel or forum [05:07] grazie: You're probably right. I'm just checking Google and ubuntuforums, but thanks for your help! [05:07] np [05:11] back [05:16] grazie: it seems my system font is the issue, someone else reported the same issue and found that by changing to a different system font his errors cleared. Sorry to be so ignorant, but how do I change the system font? It is the one in Settings --> User Interface Settings, Theme, Font? [05:22] the-noo-noo: yes I suppose so...I've never needed to change mine. do you know what fonts will work though? [05:23] grazie: no! Just found another lead on the forums though. [05:23] the-noo-noo: the forums are great! :) === mijndert [n=mijndert@c82014.upc-c.chello.nl] has joined #xubuntu === gripir [n=gripir@p549C85D7.dip0.t-ipconnect.de] has joined #xubuntu === maxamillion <3's that forums [05:34] Just a quick general question, in a DOS window you can press F3 to copy the last command typed in onto the current prompt. Is there a linux equiv? [05:36] the-noo-noo: the up arrow [05:36] the-noo-noo: that will allow you to scroll through you last 30 (maybe more) commands you entered [05:36] your* [05:36] maxamillion: you're a fine chap! [05:36] i try :) [05:41] gotta run ... bbl === merhojt [n=Jimmy@h75n2c1o885.bredband.skanova.com] has joined #xubuntu [05:42] Well, I still haven't found a fix for my crashing OOo writer, but I need to get some work done for a change! That's the thing about linux - it's so much fun trying to fix and tweak things! === xfceubuntu [n=pegger@82.131.222.236.pool.invitel.hu] has joined #xubuntu === the-noo-noo [n=simon@82.152.74.134] has left #xubuntu [] === fxr [n=fxr@89.242.141.193] has joined #xubuntu === bur[n] er [n=burner@c-67-173-254-148.hsd1.co.comcast.net] has joined #xubuntu === sacater [n=sacater@host86-143-96-119.range86-143.btcentralplus.com] has joined #xubuntu === BFTD [n=thomas@h-66-166-75-234.snvacaid.covad.net] has joined #xubuntu === grazie_ [n=grazie@host86-139-197-68.range86-139.btcentralplus.com] has joined #xubuntu === grazie_ is now known as grazie === Sharn [n=dino@dsl-216-128-233-200.teton.id.tetontel.com] has joined #xubuntu [06:52] !seen maximilion [06:52] Sorry, I don't know anything about seen maximilion - try searching on http://bots.ubuntulinux.nl/factoids.cgi [06:53] No !seen? [07:02] anyone build xfmedia 0.9.2? [07:03] Nope, having troubles? [07:06] !info xfmedia [07:06] xfmedia: Xfce media player. In component universe, is optional. Version 0.9.1-5ubuntu2 (edgy), package size 456 kB, installed size 1428 kB [07:06] no, haven't tried, but I like .debs ;) [07:06] do you really need 0.0.1 more? [07:06] totally [07:07] sweat [07:07] sweet [07:08] my new camara records video as avi files === Alan-D [n=ad@216.95.210.66] has joined #xubuntu === Alan-D [n=ad@216.95.210.66] has left #xubuntu [] [07:12] Niiice. Like, video camera, or just normal? [07:12] And bur[n] er, compiling is fun. ^_^ [07:12] both === bur[n] er shrugs [07:14] I hope it makes Feisty release though [07:14] What does? [07:14] xfmedia [07:15] Pop Science is so freaking slow.. [07:15] they removed it in edgy its not gonna go back in [07:15] i know gxine is preferred, but i like xfmedia :) [07:15] Is Fiesty mostly stable already? [07:15] it's in universe [07:15] I've been using feisty for awhile [07:15] since herd2 i've had no issues [07:15] Hmmmm [07:16] i prefer xfmedia for quick audio playing and mplayer for all videos and then amorak for long time music listening [07:16] Audacious for music for me. Sooo pretty. xD [07:16] exaile over amarok for me just due to gtk and quest for lightness [07:16] Same ^ [07:17] Exaile is all right, but I prefer skinnable apps. === habtool [n=clive@83-71-26-141.b-ras1.lmk.limerick.eircom.net] has joined #xubuntu [07:17] exile is to ugly [07:17] Works though. [07:17] :P === bur[n] er likes a cohesive desktop [07:18] PopSci needs to tell me how to make a solar backpack already. [07:19] I keep my desktop mostly bare, now.... [07:19] Trash and IE. :P [07:20] why IE [07:20] Why did I want ti... [07:20] it* [07:20] And ie4linux put an icon there. Looks alright so I left it alone. [07:20] lol [07:20] that thing doesn't run very well here [07:20] crash happy [07:21] ie4linux? [07:21] ...imagine that [07:21] yeah [07:21] Worked alright for me. [07:21] But then I didn't really use it either. [07:21] i still wanna know why you would want IE [07:21] I was trying to get into a M$ site or something. [07:21] I don't remember. [07:21] I don't really use it. === bur[n] er needs MS now and again... i won't argue against it [07:22] firefox has a plugin for that [07:22] that works in ubuntu? [07:22] Jester45: do tell [07:22] Yes, please do. :P [07:22] Barely works in Windows. O_o [07:22] i dont remeber the name but i used it before [07:22] ietab and ieview work in windows, but that depends on ie being installed [07:22] Yeah. ^ === bur[n] er stresses... "in ubuntu?" [07:23] yes it works in linux [07:23] Pmg [07:23] hiho [07:23] Ohih [07:23] xD [07:24] Trouble melts like lemon a dopr. [07:24] Woops. Wrong spot. :P [07:24] anyone knows the xlive cd? === hyper_ch wonders what is necessary on that cd to get that cygwin/x forwarding working so that I can put it on my usb stick :( 350mb is just too much [07:26] guess what i just got [07:26] what did you just get? [07:26] a 8 poty usb hub [07:26] port* === bur[n] er just got a working mediawiki installation ;) [07:27] oh.... more USB connectors... I need that === hyper_ch thinks media wiki install is simple :) [07:27] super glued under my desk [07:27] bur[n] er: what's the first spam entry that you made? ^^ === hyper_ch takes Jester45's desk [07:27] soo it looks very nice and is very easy to add things [07:28] and doesnt move at all [07:28] hyper_ch: it's for my companies' intranet :) easy way to set agenda for meetings [07:28] bbl [07:28] a wiki for agenda... hmmm... itneresting :) === nolo [n=chatzill@kntpin04-nas-03-s109.cinergycom.net] has joined #xubuntu === Laibsch [n=Laibsch@p4020-ipbf2103marunouchi.tokyo.ocn.ne.jp] has joined #xubuntu [07:44] Wikis pwn === Sharn has only a 4 port hub [07:45] If I didn't use one from the hub, I'd have 10 posts. ^_^ [07:45] usb stuff is very helpfull [07:45] Ports* [07:45] 6 from the PC. [07:46] I only have like 3 things to plug in. xD [07:46] with hub in i have 8+6 open ports [07:46] 14 [07:46] Since my PS2 controller plugs into the LPT.. [07:47] i have 2 usb1 from motherboard === Sharn likes hacking console controllers xD [07:47] then 2 usb2's from pci card [07:47] and the pci card has a tthing in the front of caSE [07:48] Mine has 2 posts on the front... [07:48] Along with speaker and mic... [07:48] lol [07:49] i connected one of my speaker outs into the mic [07:49] very fun with teamspeak or other voice im [07:50] Lmfao [07:50] Teamspeak won't work on Linux for me... === b_52Free [n=skimo@adsl196-47-111-217-196.adsl196-12.iam.net.ma] has joined #xubuntu [07:51] realy? [07:51] Yeah. =\ [07:51] sorry [07:51] I think it's got to do with the OSS drivers or soemthing. [07:51] !seen cellofellow [07:52] Kindof odd there's no ops in this channel ever. [07:52] there are [07:52] Not when I'm on. :O At least that have op set. [07:53] crimsun: is a op and gnomefreak might be one PuMpErNiCkLemight be one also [07:53] they dont stay oped because it interfers wth ChanServ [07:53] somehow [07:54] Orly? Swiftirc ftw. [07:54] so they op themelves then de op after they are done [07:56] anyone know how to setup a blog? [07:56] on apache2 [07:59] Just get a blog software... === Stu_2 [n=Binkey@mrtcfw1.mebtel.net] has joined #xubuntu [08:03] Hi everyone.. silly question #1... the installation for xubuntu never prompted me for a root password.. just "[my] name" and a password, presumeably for a user account. Did I miss something ? [08:05] Stu_2: Nope, the isntall doesn't ask for root password. I think "sudo passwd root" should let you set one. [08:05] And Jester45, wordpress is probably the best known blog program: http://wordpress.org/ [08:05] ah, ok.. seemed unusual compared to previous distros I've tried to install. Thanks! [08:05] ok [08:06] thasnks [08:06] Stu_2: but most people don't need a root account [08:06] its defualt to the user's pas but you can change that [08:06] grazie: does sudo not normally require a seperate root password configured ? === Owdgit [n=ron@88-110-127-232.dynamic.dsl.as9105.com] has joined #xubuntu [08:07] No. Sudo requires the password you set there. And I use sudo all the time. [08:07] The password didn't default to mine when I first isntalled, either. [08:08] installed* [08:08] hm... I must not really understand what sudo does as opposed to su->enter root pass, continue. I'll take a look into it [08:09] Stu_2: Sudo simply lets you use root for one command. Su will keep you as root until you type exit or close the terminal [08:09] ahhh [08:09] Stu_2: as Sharn says. The root account is almost always never needed! [08:09] Uhhhh. I said I'm always using it. :P [08:10] I see... so the account I build upon installation already has permissions to define anything necessary for sudo to then grant me what would normally be root access? [08:10] Sharn: yes, but you don't need it [08:11] grazie: In a different context, you're just saying that I won't need more privelege than the user account I created upon installation already has? [08:11] privelage* [08:11] A normal user wouldn't... [08:11] Stu_2: ye [08:11] so I'll be able to edit /etc/hosts, install packages, etc, without ever needing more access ? [08:11] If you like to tweak and stuff you'll need sudo a lot. And sudo just logs you into root. [08:12] Nope. You need the root password for those. [08:12] I see.. [08:12] At least.. I do. I think. [08:13] Anyway, doesn't matter. If you're root password set ok, no biggy. [08:13] Sharn: no you don't need the root account. sudo gives you almost everthing su does [08:13] Yeah... sudo IS using the root account though. [08:14] Just only for one command. [08:14] su just keeps you logged in as root in that terminal. [08:14] Whereas sudo only logs you in for one command. [08:14] Sharn: no sudo gives you temp admin privs..,it's subtle but it is different [08:15] cool deal.. so just set the root pass when I get in, so I can use sudo as necessary... think I can handle that. [08:15] Meh. Ok. [08:15] Stu_2: no. it's good not having the root account set! [08:15] ah.. from https://help.ubuntu.com/community/RootSudo -- "By default, the root account is locked in Ubuntu. This means you cannot login as root or use su. Instead, the installer will setup sudo to allow the user that is created during install to run all adm [08:16] Stu_2: exactly [08:16] silly irc client didn't paste it all.. [08:16] regardless, the user account I created, should have access to do whatever I'd like [08:16] unless I'm misinterpreting that [08:16] Stu_2: almost yes [08:16] With sudo you can do anything root can, I believe. [08:17] !sudo [08:17] sudo is a command to run programs with superuser privileges ("root"). Look at https://help.ubuntu.com/community/RootSudo for all information. [08:17] Boomp [08:29] hiho, is it somehow possible to run ssh on a different port? or rather have two ssh servers running on different ports? [08:31] It may be... [08:32] man ssh [08:32] In terminal, of course. [08:34] hyper_ch -- there is a port option in openssh... edit wherever your config file is.. /etc/ssh/ssh_config perhaps... === baconvanhood [n=bacon@vhe-367407.sshn.net] has joined #xubuntu [08:38] Stu_2: but how to run two instances on two ports? Is that possible? [08:38] hyper_ch -- I'd say it's certainly possible -- you'd probably need two different ssh daemons, or one referencing two different config files. [08:39] running one instance listening to two ports :) that's possible [08:40] man pages tell so... but give not the syntax for it :9 [08:40] Where would I find my USB camera...? [08:40] anyway, that's good, I'll find out [08:40] heh.. dunno. If you find an answer, please share :-) [08:40] (or you might be able to add an addition Port: comment in the config... [08:41] Stu_2: I will... you see, I make daily backups through rsycn / ssh on (one) of my servers... and I don't want to overkill the connection (as I do now) so I thought I might limit one port it runs on :) [08:41] heh.. gotcha. Best of luck :-) === superkirbyartist [n=superkir@92.141.hiper0-nic0.std.dialup.ncf.ca] has joined #xubuntu [08:42] I am having issues with splash screen. [08:43] Stu_2: what would be a good port for sshd? [08:44] I have no clue what defaults are used :) 20/21 is ftp [08:44] Close to the normal one [08:44] then there's printer on 60 [08:44] if you never want to use telnet, use 23 as well [08:44] is 23 used by something important service? [08:44] telnet [08:44] telnet is normally 23? well, then I use that [08:44] I think I have deactivated telnet [08:44] and if you're going to stick with ssh, I'd think you could steal it with no probs [08:44] Good idea. :) [08:45] can I actually remove the telnet package? [08:46] Meh. I'll be back later. bye === Sharn [n=dino@dsl-216-128-233-200.teton.id.tetontel.com] has left #xubuntu [] === Maximilian1st [n=maximili@212-41-90-28.adsl.solnet.ch] has joined #xubuntu [08:50] hmmm === portofu [n=portofu@12.110.209.75] has joined #xubuntu === hyper__ch [n=hyper@217-162-77-97.dclient.hispeed.ch] has joined #xubuntu === magic_ninja [n=asdfsdf@ip68-102-176-127.ks.ok.cox.net] has joined #xubuntu === knight [n=knight@ool-44c7e903.dyn.optonline.net] has joined #xubuntu [09:00] what should I install for wifi in xubuntu [09:00] can I Still use Network manager [09:00] I don't have anything installed [09:00] well, nothing additional [09:00] what do you us [09:00] Stu_2: it works like a charm [09:01] knight: the default thing provided by xubuntu [09:01] use? [09:01] oh ok [09:01] it does not scan the wireless [09:01] Stu_2: open the /etc/ssh/ssh_config [09:01] Stu_2: at the very beginning you have a Port 22 entry [09:01] just add below other port [09:01] and restart it :) [09:02] knight: why do you want to scan for wifi networks? [09:02] The splash screen is dim and displaying at the wrong resolution. Can someone help me please? [09:02] I used to ust network manager [09:02] superkirbyartist: only the splash screen? [09:03] and I an constantly moving [09:03] to different office [09:04] I use different passwords to evrery wifi [09:04] you can scan it from the command line [09:04] well, you could also install that gnome wifi manager applet thing but I don't know if that breaks anything [09:04] oh ok [09:04] which one is that [09:04] I don't know [09:04] open adept or synaptic [09:04] and search for it [09:05] oh ok [09:05] I am having an error on apt-get [09:05] it says [09:06] E: Unable to lock the administration directory (/var/lib/dpkg/), is another process using it? [09:06] you need to sudo it [09:06] i did [09:07] and used the password wih it [09:07] then you have adept or synaptic open [09:08] nope [09:08] they are closed [09:08] I am trying to open synaptic and nothing is working [09:08] hyper_ch: Yes, the startup and shutdown screen. [09:08] superkirbyartist: the rest runs fine? [09:09] Oh yeah, I can start the computer and stuff. [09:09] I am using it right now. [09:09] knight, please pastebin: ps aux | grep dpkg [09:09] superkirbyartist: but once it is started, resolution is fine? [09:10] hyper_ch: Yes, everything is bright and at 800*600. I am using Xchat on it. [09:11] so what is the problem? [09:12] hyper__ch: It is very hard to see the startup screen. It is very dim, if one looks too fast, it might seem like a black screen. Also, it's not centered properly. [09:12] Hi folks. [09:13] superkirbyartist: replace the startup screen then with something else [09:13] Hi Max. [09:13] How do we do that, hyper__ch? [09:13] I have a problem with my user interface. I use French as my main language and all is well translated but the close, help and so on buttons. [09:13] These are controlled by GTK2 === ChanServ [ChanServ@services.] has joined #xubuntu [09:13] hi superkirbyartist [09:14] Max, I have the exact same problem. [09:14] The menus, etc. aren't translated. [09:14] You use what language? [09:14] applications --> system --> login window (maybe) [09:14] or, what language do you use ;-p === grumpymole [n=warren@c220-237-175-49.lowrp1.vic.optusnet.com.au] has joined #xubuntu [09:14] Maximilian1st: It's 50% english 50% french Xubuntu laptop. [09:14] Zut [09:15] Could you join in #xfce-fr? [09:15] est-ce que a exist? Des mots franais pour "fermer", "aider" ... ? ^^ [09:15] You funny swiss guy. :-) === kalikiana [n=kalikian@xdsl-87-78-113-55.netcologne.de] has joined #xubuntu [09:17] hyper__ch vous n'avez pas raison. [09:18] J'ai toujours raison :) C'est mon profession avoir de raison :) [09:19] hyper__ch je ne parle pas du login screen je parle de ce qui vient avant. [09:20] bonjour, mes dammes et messieurs, c'est le canal francais, oui? [09:20] c'est important ce qu'il a l? [09:20] Maximilian1st: you do speak french, right? [09:20] kalikiana, ;-p [09:20] bonjur [09:20] or how ever you spell it [09:21] im 200% english [09:21] For french Xfce join #xfce-fr, sorry for the english users. [09:21] hyper_ch oui ca pourrait l'etre. [09:21] You joined the right channel. [09:22] hmmm [09:22] I don't mind french to some extend, but I consider it unpolite to those who don't understand it. [09:22] i tried some spanish but said "why waste my time when they could learn the far harder language english" === hyper__ch [n=hyper@217-162-77-97.dclient.hispeed.ch] has joined #xubuntu [09:23] !libsexy [09:23] Sorry, I don't know anything about libsexy - try searching on http://bots.ubuntulinux.nl/factoids.cgi [09:24] Jester45, so your motto is just "Everyone after me, I'm the last one!" :P [09:24] i guess [09:24] I have been using Ubuntu fulltime since 6.04 and have now tried Xubuntu for the first time. WOW, is XFCE so cool! A real hidden Gem. Well done to all involved with Xubuntu, very neat indeed [09:24] or better yet me first [09:24] you mean 6.06 right? [09:24] Que fait le fichier libsexy? [09:25] Dapper [09:25] yes 6.06 but welcome to xubuntu [09:25] habtool, it's nice to hear that since we're all xfce fans :D [09:25] xubuntu is great [09:25] Thanks, really like it! :) [09:25] better version of ubuntu and better is\rc channel === superkirbyartist [n=superkir@92.141.hiper0-nic0.std.dialup.ncf.ca] has left #xubuntu ["Leaving"] [09:25] irc* [09:25] :) [09:26] habtool: im not sure if you figured this out but, xubuntu can use gnome and kde apps [09:26] my PC is fast enough for Gnome and KDE, but XFCE is just so nice. Thanks to Dream Linux for letting me find XFCE [09:27] I run quite a bit of kde apps :) [09:27] i figured that sence you been using ubuntu but just telling [09:27] hyper__ch: me 2 :0 [09:27] Yes, Jester45, thanks i have amarok, akregator and gnomebaker install amoungst others [09:27] habtool, that is my story actually ;) but i never really used gnome longer than few days [09:28] dreamlinux looks very cool, but it is missing consistency to me and not everything worked together :/ [09:28] I tired Kubuntu, but i cant say way, but it does not do it for me, PClinuxos does a much better job with KDE. But that maybe personal view so dont shoot me :) === Dany700 [i=Promo_Pr@82.84.70.179] has joined #xubuntu [09:29] hi to everybody [09:29] hmmm, amarok, k3b, konqueror, kate, konversation, kontact, krdc, krfb, kopete [09:29] hi Dany7000 :) [09:29] can someone tell me which is the default root password when running xubuntu live cd? [09:30] btw, anyone has a list of P2P protocols and what ports they use? === ChanServ [ChanServ@services.] has joined #xubuntu [09:30] kalikiana, i agree DL is very nice looking, but i also found it broke a bit too easy, maybe as they linking directly to debian (or maybe not) but DOES look very NICE [09:30] hi kalikiana ;) [09:30] a full kubuntu is to bloated for me i dont mine installing KDE apps i just dont want 10 text editors by default right now i have scite mousepad and vim [09:30] Dany700: i dont think there is [09:31] Jester45: kate is really nice :) [09:31] jester: i need it to mount floppy in write mode [09:31] hyper__ch: i can help you but most p2p apps start default with random ports [09:31] Dany700, ubuntu in general doesn't have a root password by default and should not [09:31] and with konqueror you can open remote locations through ssh (or rather fish) [09:31] i ried kateos and zenwalk yesterday, but the Ubuntu repos just cant be beat :) [09:31] leaving it blank, it says "sorry" [09:31] Dany700, use 'sudo' [09:31] tired [09:31] Jester45: I just try to put the P2P appz into my wifi router as "bulk" priority... [09:32] kalikiana ok [09:32] hyper__ch: you can do that with thunar ssh ftp http shttp sftp [09:32] kalikiana can i ask you a question? [09:32] Jester45: what's the difference between ssh and sftp? [09:32] Dany700, just ask :) [09:32] Jester45: I like konqueror that much because it can be multi-pane :) [09:32] no need for gnome commander [09:33] or kcommander [09:33] hyper__ch: well open the apps and define the ports they dont need a certian port Ex: torrent= 7000 gnutela-7001 and so on [09:33] Jester45: you're familiar with DD-WRT firmware? [09:33] i do this: sudo mount /dev/fd0 but it is in read only mode... what have i to do for write mode? [09:33] kali: sorry for my bad english, but i'm from italy [09:34] hyper__ch: nope what is it [09:34] Jester45: just a modified firmware for the linkysys 54gl router [09:34] Jester45: what I like is to be able to adjust the output power and making use of dyndns services like dyndns.org and no-ip.com [09:35] Dany700: theres a foreign exchange student from italy that lives in my subdivision she pretty hot [09:35] Jester45: you should have read the newspaper here 2 days ago [09:36] eheh i'm glad you like our girls eheh ;) === drx0drx [n=DrX@69-12-186-114.static-dsl.keyway.net] has joined #xubuntu [09:36] as a matter of interest, is XFCE as active a project as Gnome and KDE, IE every year is the a lot of improvement in XFCE? [09:36] according to a research italian girls have the smallest boobs in europe... then comes switzerland with the second smalles and in average british girls have the largest [09:36] habtool: yes [09:36] hyper boobs are? [09:36] Jester45, cool :) cant wait to see how this pans out, just mad about it :) [09:36] ass? :) [09:36] although I remember from my exchange year in Down Under.. there was Sarah and Gemma... they were both attractive [09:36] british do seem to have the biggest but... have to look at the face also [09:37] Dany700: nope, not ass... boobs = breasts = tits [09:37] ahh tits ok ;) [09:37] lol [09:37] eheh ;) [09:37] upper part of the body [09:37] hyper__ch: her boobs arnt small [09:38] Jester45: in average :) [09:38] Dany700: what0s that exactly? /dev/fd0? is that the floppy drive? === MagicFab [n=magicfab@ubuntu/member/magicfab] has joined #xubuntu [09:38] hello, can anyone help me fix a dual-boot problem that happened after installing Windows? [09:38] hyper little boobs are not bad :p i like little boobs, but they must be nice === kalikiana considers boobs a more 'cute' version of the t-word [09:39] hyper yes fd is the floppy [09:39] drx0drx: let me guess... after installing windows grub vanished and you can only boot into windows? [09:39] drx0drx, sorry there are very important discussions here. [09:39] maybe this should be talked about in #xubuntu-offtopic [09:39] hyper__ch, more or less [09:39] drx0drx: installed windows then linux [09:39] hyper [09:39] I guess drx0drx installed linux and then windows. [09:40] Dany700: I have this in my /etc/fstab --> /dev/ /media/floppy0 auto rw,user,noauto 0 0 [09:40] drx0drx: you need to reinstall grub [09:40] drx0drx: windows over writes grub if its installed 2nd [09:40] drx0drx: boot from the x/k/ubuntu cd [09:40] ahh so i need to run mount as root user? [09:40] Would a boot with the live CD be a good idea for drx0drx ? [09:40] Dany700, I don't have a floppy drive, but you may add hyper's line and run 'sudo mount -a' :) [09:40] hyper__ch, doing that now... [09:40] and go in recovery mode or something... [09:40] drx0drx: at some stage you should then be asked to have grub reinstalled [09:40] can you write me the exact code to use in the terminal? [09:41] do that and afterwards you have dual booting again [09:41] drx0drx: I don't know the exact steps as I haven't done it before [09:41] kalikiana, i'm using a live cd [09:41] Dany700: well, my entry is in my fstab... so that gets mounted at boot-up [09:42] ah, live cd... uff.... no clue :) [09:42] Dany700, oh, then forget that idea.. there is a panel plugin if that helps? :) [09:42] Dany700, sry, I'm too much used to fstab contrary to mount as-is [09:43] kalikiana: I'm also used to fstab only except for mounting an iso :) [09:43] hyper__ch, btw, I have 2 SATA drives, Linux is on the first one and Windows on the second, and I printed out my gpartd screens before upgrading Vista [09:43] im used to double clicking the icon [09:43] hyper__ch, now I'm enlightened to hear that from somebody else than me *G [09:44] hyper thanks anyway ;) kalikiana i can't run it from the panel... i know there a command to use with mount, but i don't know the exactly code to run mount with su privileges [09:44] sudo? [09:44] *there is [09:45] no, it's like mount uid:0 or something [09:46] Dany700, usually 'sudo mount ...' works fine, apart from my limited experience there [09:46] Dany700, you ought to have a panel plugin which mounts the available drives [09:46] Anyone know why spellcheck is not working on Xchat on my Xubuntu install? Do i need to install something extra? [09:46] why not just use the disks manager? [09:47] habtool, what language do you use? [09:47] english === hyper__ch [n=hyper@217-162-77-97.dclient.hispeed.ch] has joined #xubuntu [09:47] It does work for me here though. You must be missing some package... [09:48] when i go to file system, i see fd but when i try to enter, it says: what application would you use to open... === SiGiN [i=AdiIRC@3-92.adsl.apoy.dnainternet.fi] has joined #xubuntu [09:48] kali, sorry but i'm a really newbie in linux, i can't understand which panel you mean [09:48] or Maximilian1st you just tink its working [09:48] hyper__ch, does this take this long (it's been on Mounting root file system... a long time) [09:50] drx0drx: never used the recovery, so I can't tell [09:50] It does work here in french and did work in english the other day... [09:50] hyper__ch, trying a different DVD drive... [09:51] i think i've find the code: sudo mount -t vfat -o uid=1000,gid=100,rw /mnt/floppy [09:52] is it correct, isn't it? :) [09:52] drx0drx: http://ubuntuforums.org/archive/index.php/t-24113.html [09:52] (without /mnt/floppy) [09:52] Dany700: no clue [09:53] hyper :) [09:53] hyper__ch, OK, it was b/c I have a SATA regular & compatible mode in my BIOS & it was compatible when I installed Linux but I changed it for Vista install... it's loading up now... [09:53] sei di Milano Dany? [09:53] s :) [09:54] drx0drx: how dare you using this evil word V***a [09:54] cognosci Sarah Di Fresco? [09:54] hyper__ch, btw, we can hose Vista if we have to but I don't want to lose Linux [09:54] hyper ma sei italiano? [09:54] no, i'm sorry hyper [09:54] hyper__ch, (but I need evil Vista in the end b/c some SW is only Windows) [09:54] drx0drx: why did you want to install Vista??? [09:55] Dany700: no, sono Svizzero tedesco [09:55] hyper__ch, OK, at Live CD desktop [09:55] ah ok [09:55] Ma, sai quante persone vivono Milano?? 8-| [09:55] Maximilian1st: 5-6 persone? [09:55] o.O ehi ma pieno di italiani qui? :) [09:55] *smile* [09:55] eheh [09:55] ;-p [09:56] hyper__ch, btw, right now my Second hard drive is set first in the boot order (in order to boot Vista) b/c Linux wouldn't boot when first drive set first in boot order. [09:56] do i need to put things back in the bios exactly as they were before to prevent losing something? [09:56] hyper dove abiti, vicino lugano? [09:56] drx0drx: doesn't matter... just let grub install into the master boot record [09:57] drx0drx: at least that's what I think... in my optinion it doesn't matter [09:57] OK, but won't it install on drive 1 even tho Linux is on drive 2? [09:57] Dany700: no, abito San Gallo... vicino di lago constanze(?) [09:57] oddly, right now Gparted only sees Drive 1 (Linux) and not Drive 2 (evil Vista) [09:58] drx0drx: no clue :( [09:58] see, billy boy did evil things to your computer [09:59] do you know how to update GRUB on drive 1 so it will boot Linux on drive 1 and Vista on drive 2? [09:59] hmmm [09:59] drx0drx: grub should recognize all the installed OS and make boot entries... it doesn't matter on what drive which os is installed [09:59] it only matters for windows... [10:00] at least that's how far I understand all of it :) I'm far from being an all-knowing guru [10:00] does it matter that GPARTED doesn't see Windows right now? should I play with the BIOS settings so LiveCD sees both drives first? [10:00] hyper ah ok san gallo [10:01] it should see the windows drive/partition... that is indeed odd... [10:01] also, I just reinstalled Vista so I can install it again (no software installed yet, no data) if that makes things easier [10:01] maybe switch and test that way [10:01] let me check the bios settings again, it was very temperamental the first time I set it up (without compatibility mode I got nowhere installing either OS) [10:02] when you boot the computer it sees both drives? I mean the bios recognizes both drives? [10:03] yes [10:03] i'm going now, thanks to everybody for help!! [10:03] Dany700: is the proper name of Lake Constance in italian: lago di constance? [10:03] drx0drx: indeed odd, that gparted doesn't see both drives then [10:03] hyper: ma tu intendi se io abito l vicino? [10:03] it always did but there the installation CDs couldn't install on the SATA drives until I enabled compatibility mode and PATA vs SATA [10:04] drx0drx: maybe you better ask at #kubuntu or #ubuntu --> there are some gurus there :) for me it just works fine :) [10:04] hyper: cmq lago di costanza non l'ho mai sentito :) [10:04] Dany700: no capsico "ma tu intendi se io abito li vicino" === Seveas [n=seveas@ubuntu/member/seveas] has joined #xubuntu [10:05] welcome back Seveas [10:06] hyper what do you mean whit this lake? you mean is a lake near you or near me? [10:06] i've never headr that lake before... anyway i know san gallo [10:06] Lake Constance is nearby St. Gallen :) [10:06] *heard [10:06] ah ok :) [10:07] I thought Lake constance would be better known than San Gallo :) [10:07] no no it's the contrary eheh :) [10:07] Milano --> Universit di Bocconi :) [10:07] :) [10:08] Italy's most renowned Business School if I am not mistaken [10:08] more exactly i live most near "Monza" that is a minor city near milano [10:08] La Monza :) [10:08] Ferrari originates from Monza, right? [10:08] Monza F1 [10:08] yes :) [10:08] got a spare ferrari for me? [10:08] ;) [10:09] eheheh hard to find :p [10:09] a spare part maybe... ;-p [10:09] :( [10:09] eheh :) [10:09] too bad [10:09] anyway, I gotta go watch some tv now [10:09] hyper [10:09] wow... [10:09] ferrari is from Maranello [10:09] Dany700: yes? [10:10] monza is the place where F1 runs [10:10] oh, it is? I thought it's from Monza... :) well, my mistake :) [10:10] hyper: no problem, dont' worry ;) [10:10] I don't like Valentine's day [10:11] hyper my girlfrines lives near lugano [10:11] *friend [10:11] hehehe.... it's not that far... :) [10:11] yes, about 60km [10:12] mine is about 6000km away :( [10:12] o.O [10:12] where is she? [10:12] Ottawa / Canada [10:12] o.O wow! [10:12] why have your girlfriend so far? [10:13] *have you [10:13] hmmm, because she lives there :) [10:14] but how have you knew her? [10:14] when do you meet her? [10:14] i see my girl in the weekend [10:14] 1weekend yes and 1 not [10:15] well, we talk almost everyday by skype :) [10:15] we too ;) [10:15] w skype!!! ;) [10:15] and I use amsn for the webcam :) [10:15] anyway, I'm off now :) cya [10:16] i don't have the webcam but it cool anyway with skype ;) [10:16] ok, then see you around ok? [10:16] yeah... I'm here sometimes :) === Raptor` [n=Raptor`@91.139.158.117] has joined #xubuntu [10:16] well, mostly I'm logged in here but that doesn't mean I'm really here :) [10:17] goodbye hyper, nice to met you :) [10:17] eheh ok :) [10:18] i go now, too... i've to test the floppy mounting ;) [10:18] goodnight to everybody and thanks for the support [10:18] bye hyper, see you [10:19] hyper__ch, do you use your system in english or german? [10:20] I seem to be missing the translated mo files from gtk. [10:20] It does not install translated message files at all. [10:21] Maximilian1st: in English === sdac221x_ [n=sdac221x@89.211.179.137] has joined #xubuntu [10:22] schade. [10:23] hi are there different drivers for ATI under linux or is it only fglrx ?? I have fglrx but beryl does not work despite following several guides. [10:23] Could you check if you have gtk2xxx.mo files in /usr/src/locale/de/LC_MESSAGES? [10:24] Maximilian1st: was that for me ? [10:26] oups [10:26] no sorry, that was for hyper__ch [10:26] never mind. === Jester45 [n=Jester45@d8-145.rt-bras.wnvl.centurytel.net] has joined #xubuntu [10:30] My battery is running out of power, have to leave. [10:36] quite === mimilus_ [n=davy@ADijon-151-1-36-91.w83-196.abo.wanadoo.fr] has joined #xubuntu [10:47] It really is quite in here. [11:02] how do you mount /dev/sda1 ? [11:02] sudo mount /dev/sda1 /wherever/you/want/it [11:02] PuMpErNiCkLe, where might I want it? [11:02] You may need to specify filesystem of -t type. [11:03] drx0drx: It's your system. Wherever you want. [11:03] PuMpErNiCkLe, it's ext3 [11:03] PuMpErNiCkLe, for example? [11:04] Any empty directory will do. [11:04] Any at all. [11:05] PuMpErNiCkLe, I used /mnt [11:05] PuMpErNiCkLe, now I need to fix my menu.lst file because evil Vista left it broken [11:05] That one's just a regular Xubuntu bug. [11:06] It happens fairly frequently. === bigfuzzyjesus [n=paul@12.206.21.84] has joined #xubuntu [11:06] Wait, sorry, wrong menu file. [11:06] (I was thinking of the applications menu, not /boot/grub/menu.lst.) [11:07] PuMpErNiCkLe, so right now I have 2 drives but bios is set for 1 (can't boot live CD if set for 2), now Linux is sda but I think it may change to sdb when bios reset, what do I change in menu.lst === maxamillion [n=adam@ngl-1-14.shsu.edu] has joined #xubuntu === malnilion [n=malnilio@129.244.131.96] has joined #xubuntu [11:08] also, when I try to copy the menu.lst (for backup) it says "Permission denied" [11:09] Both drives are sata? [11:09] PuMpErNiCkLe, yes [11:10] And the primary drive has Linux installed on it, and the secondary will/does have Vista? [11:11] PuMpErNiCkLe, I'm not sure which has which. Previously, Windows was sda and Linux sdb, but I've been messing with the bios to get the Live CD to boot (it will only do this in compatible mode where drive 2 is not present) [11:12] PuMpErNiCkLe, in this mode, Linux changes to sda, but when I go back to enhanced mode it *may* be sdb [11:14] PuMpErNiCkLe, okay, I backed up the menu.lst via sudo [11:14] It labels the drives by their position on the controller. [11:15] So if it's the second drive, it would be sdb, but if it's the first, it'll be sda. [11:15] PuMpErNiCkLe, when I switch from compatible to enhanced mode, I think it changes position, or maybe I changed their positions in the BIOS [11:16] Or for Grub, 0,0 or 1,0. [11:16] I gotta run, though. [11:17] it shows Vista root (hd0,0) (vista drive is presently Not present in BIOS) [11:17] it shows Linux root as /dev/sdb1 === eddie [n=eddie@pool-151-202-116-59.ny325.east.verizon.net] has joined #xubuntu [11:18] hi [11:19] i am trying to rip into mp3 with Sound Extractor and I don't see the MP3 option [11:19] I've got flac ogg wav === morphir [n=morphir@217.168.81.4] has joined #xubuntu === habtool [n=clive@83-71-26-141.b-ras1.lmk.limerick.eircom.net] has joined #xubuntu [11:30] anyone know how to repair Vista-trashed GRUB? [11:31] drx0drx: lol ... yeah, no .... not at all.... Vista can't even run Java correctly much less dual boot [11:32] I had it dual booting, I just had to change some bios settings & load vista first, but then I had to upgrade beta 2 to final release and BYE BYE GRUBBIE! === dbrenk-Laptop__ [n=Laptop@p50815030.dip.t-dialin.net] has joined #xubuntu === grazie_ [n=grazie@host86-139-197-68.range86-139.btcentralplus.com] has joined #xubuntu === grazie_ is now known as grazie === klowrie [n=klowrie@68.35.58.39] has joined #xubuntu [11:34] The trouble is, when push comes to shove, the boss is going to say trash Linux === darrend_laptop [n=davisond@43-015.adsl.zetnet.co.uk] has joined #xubuntu === darrend [n=darren@43-015.adsl.zetnet.co.uk] has joined #xubuntu [11:37] anyon please how to have Sound Juicer with MP3? [11:37] Actually, the boss already said we don't need Linux. But he also said if it doesn't take a lot of time to repair, we can keep it. [11:39] whew, I think I got it fixed... Linux is booting! [11:40] :) [11:41] drx0drx: you should write a tutorial, i haven't heard of anyone dual booting linux and vista successfully [11:42] repai grub? Just install it again an override piece of $hit Vi$ta motherfucking bitch [11:42] maxamillion: i don't think he should :) [11:43] sorry I am lil agravated about the mp3 shit not working with xubuntu === habtool [n=clive@83-71-26-141.b-ras1.lmk.limerick.eircom.net] has joined #xubuntu [11:44] maxamillion, oh, yeah, I've been doing it since beta 2 no problem. Here's the 2-step tutorial: (1) Install Vista (2) Install Linux === grazie [n=grazie@host86-139-197-68.range86-139.btcentralplus.com] has joined #xubuntu === Jester45 [n=Jester45@d12-254.rt-bras.wnvl.centurytel.net] has joined #xubuntu === dbrenk [n=Laptop@p50817A80.dip.t-dialin.net] has joined #xubuntu === quad3datwork [n=quad3dat@12.110.209.75] has joined #xubuntu === milkii [n=mld_as@212.17.80.184] has joined #xubuntu === _Dez [n=elite54@71-218-244-92.hlrn.qwest.net] has joined #xubuntu [12:09] <_Dez> I got a Atheros card :) [12:09] hey. Could someone help me out with xubuntu installation on ATI/Amd64 sys? [12:10] what type of cd? desktop or alternative? [12:10] whats happening [12:10] its alternate [12:10] <_Dez> Anyone heard of FON? [12:10] well it keeps stopping [12:11] it shows me some kind of console where i can type anything but nothing happens [12:11] milkii: are you using the live cd? [12:11] just says kernel loaded [12:11] no [12:11] its alternate [12:11] ok [12:12] have you checked cd for defects? [12:12] it hangs up too [12:12] ^^ [12:12] burned it second time [12:12] what about a md5 check of the iso [12:13] hm have to find the checksum (i never did this before) [12:13] are you sure you have a 64bit processor and the 64bit cd [12:13] !md5 [12:13] To verify your Ubuntu ISO image (or other files for which an MD5 checksum is provided), see http://help.ubuntu.com/community/VerifyIsoHowto or http://www.linuxquestions.org/linux/answers/LQ_ISO/Checking_the_md5sum_in_Windows === Rayvyn [n=slap@adsl-75-0-176-46.dsl.pltn13.sbcglobal.net] has joined #xubuntu [12:14] both yes [12:14] thanks [12:16] <_Dez> i think i use terminal more then anything on linux [12:16] i have a workspace with 8 of them lined up [12:17] <_Dez> ;d [12:18] ahm << 1445 of 1445 listed files could not be read xD [12:18] <_Dez> Is there anyway you can hack a router to give you like wireless card [12:18] <_Dez> abilitys [12:18] ah didnt place the md5sum oO [12:19] _Dez: you mean change a wireless router into a wireless card? [12:20] maybe im not to good with wireless but you could swap the incoming with the outgoing wires [12:20] i know you can do that with ethernet [12:20] milkii: didn't place? do you mean you cannot find? [12:21] i placed the md5checker in system32 folder of windoof [12:21] and run my cmd [12:21] <_Dez> I want to put a Router into CLient mode [12:21] and the file failed the check [12:21] the iso failed it i mean [12:22] milkii: you have to redownload the file [12:23] hm [12:23] but how can it fail in 1445 of 1445 [12:23] << [12:23] did it say it failed? [12:24] Warning: 1445 of 1445 files could not be read [12:24] then it failedtry redownloading it if it dosent take to long [12:25] milkii: it doesn't sound like you're using the tool quite correctly. What do you type in? [12:25] only "md5sum -c alternate64.iso" without quotes [12:26] oh [12:26] i think << i see now xD [12:26] <_Dez> brb im going to hack this router [12:26] omh what the hell did i do :) === _Dez [n=elite54@71-218-244-92.hlrn.qwest.net] has left #xubuntu [] [12:27] milkii: try ""md5sum -b alternate64.iso" [12:29] ah ^^ yea thats it thanks