[00:03] persia: but then I have to add it to the several files for each architecture (whereas in debian/control it only needs to be added once), or? [00:12] Well, I'm off.. [00:13] persia: Thanks. (Feel free to send me a memo if you fell like answering my last question :)) [00:13] good night all === chuck_ is now known as zul === edson is now known as ecanto === fta_ is now known as fta [02:15] how do you cat FROM a terminal's input to a file? [02:23] hey guys I'm looking for a developer mentor [02:24] or someone to point me in the right direction to get started [02:24] and i was hoping this was the place [02:28] anyone around? i know its a friday night but... haha [02:29] tbrock: please join #ubuntu-motu [02:42] oh thanks [02:42] apologies [03:15] terli: assuming you start cat from the terminal in question, then surely its standard input will already be the same as the terminal's input, so you just need 'cat >file' or 'cat >>file' (depending on whether you want overwrite or append) [03:25] ok cjwatson let me run this simple script on you [03:25] colaudio(){ cat | > XTR;} [03:25] cataudio(){ echo "$XTR" > /dev/audio; echo "$XTR";} [03:25] while [ true ] [03:25] do [03:25] colaudio; cataudio; [03:25] done [03:25] that is the sum and the square of my insanity. [03:30] terli: I'm not sure what you think "cat | > XTR" is supposed to do, and the following line seems to suggest that you're confusing files and variables. Furthermore 'while [ true ]' is a strange way to say 'while true' [03:31] it was in the manual *sheepish* [03:31] I was originally using [ 1=1 ] [03:32] my question is how to run the script, add input while script is running, and have the script process the input [03:32] [ anything ] means "is 'anything' a string of non-zero length" [03:32] you might need a better manual ... [03:33] perhaps what you are looking for is replacing that whole script with 'tee /dev/audio'? [03:34] omg [03:34] where did that come from!?!? [03:34] assuming that I've understood what you're trying to do correctly (a program that takes its standard input and writes it both to its standard output and /dev/audio" [03:34] ) [03:34] o yes its just supposed to echo my noisy typing to dev/audio === RAOF_ is now known as RAOF__ [03:34] if you don't need to write it to its standard output as well, you could just say 'cat >/dev/audio' [03:35] Be careful with tee - it does do some buffering of some sort [03:35] well that command works but I cant hear it [03:35] there's no need for all that complicated cat/echo stuff which isn't going to do anything like what you want anyway === RAOF__ is now known as RAOF [03:35] terli: Try just using cat >/dev/audio if you can survive without seeing it; there might be buffering happening [03:36] I can't hear it like that either [03:36] its sending everything to a second buffer [03:36] if you really want to do line-at-a-time stuff and strictly avoid buffering, then a working translation would be 'while true; do read line; echo "$line" >/dev/audio; echo "$line"; done' - but if you can't hear it when you type at 'cat >/dev/audio' directly then you have a lower-level problem [03:38] there is ONE issue [03:38] I'm hacking on parallels [03:38] and I had to copy bash onto bin [03:38] I mean bash onto sh [03:39] that's a bug in whatever script can't cope with /bin/sh not being bash [03:39] https://wiki.ubuntu.com/DashAsBinSh [03:39] sudo mv /bin/sh /bin/sh.old && sudo ln -s /bin/bash /bin/sh is the command I had to run [06:39] hey [06:39] need some help in programmin [06:40] how do write a prog so that using that i shd be able to switch workspaces [06:45] karthik_: please read the channel's topic. It's about the development of Ubuntu not developing on Ubuntu [06:47] stgraber: hey i'm not developing on ubuntu.. i just want to know how ubuntu does it internally [07:07] karthik_: look at libwnck [07:08] karthik_: Ubuntu does it the same way as other Gnome-using distributions [07:08] karthik_: http://library.gnome.org/devel/libwnck/stable/ [07:11] Treenaks: ok i'll try [08:17] soren: ping? === asac_ is now known as asac [09:50] ScottK: sorry, I'm still on holiday, didn't have time for archive admin stuff [09:53] cjwatson: one day earlier> I admit I sometimes do that as well when I'm in a SRU cleanup mode.. [11:10] Hi, need help to build a debian/watch file for my package. its name is : genj-arvernes_2008.12.26-0ubuntu1_all.deb [11:12] isle85, and what's the url for the orig.tar.gz for that deb? [11:12] I wrote that in it : [11:12] version=3 [11:12] http://www.arvernes.com/files/genj_classic/genj-arvernes-(.*)\.tar\.gz [11:15] that wasn't technically the question. i asked the url for the tar.gz, not the contents of your watchfile [11:15] sorry : http://www.arvernes.com/files/genj_classic/ [11:17] http://www.arvernes.com/files/genj_classic/genj-arvernes-2008.12.26.tar.gz [11:17] The requested URL /files/genj_classic/genj-arvernes-2008.12.26.tar.gz was not found on this server. [11:19] maybe my mistake as I named genj-arvernes-2008.12.26.tar.gz as genj-arvernes-2008.12.26.orig.tar.gz [11:19] sigh. === asac_ is now known as asac [11:20] look, i'm not trying to irrutate here, but there seems to be some kind of barrier going on. a watch file needs to know the exact path of the file to download for a specific version. when i say "what's the url for the orig.tar.gz for that deb" i literally mean "what's the full url to the file you download and rename as genj-arvernes_2008.12.26.orig.tar.gz" [11:20] also, this is for #ubuntu-motu, not #ubuntu-devel [11:21] sorry directhex. Thank you for helping. [11:23] as an example, a watch file saying " http://ftp.novell.com/pub/mono/sources/mono-basic/ mono-basic-([.\d]+)\.tar\.bz2" is used to download http://ftp.novell.com/pub/mono/sources/mono-basic/mono-basic-2.0.tar.bz2 [11:23] ok, understood. Thanks [11:24] as far as i can tell, that upstream doesn't even have versioned source tarballs [11:25] I'm totally new to that, and I tried to help to distribute a program people here write. I've been successfull to build an ubuntu package, now I would like to make it easier for people to be up to date with it. I'm learning , sorry. [11:26] the path to the source seems to be http://www.arvernes.com/V1/pages/compteur_dl.php?/files/genj_classic/genj_src.zip [11:27] but that's unversioned AND requires repacking from zip [11:30] hmm, now the file is there : http://www.arvernes.com/files/genj_classic/ubuntu/genj-arvernes-2008.12.26.tar.gz [11:36] you seem to have picked an inordinately complex example to build a watch file for [11:37] I've downloaded lots of source files, and try to find out and understand the way it works looking into them [11:37] that orig can't be used as-is, it contains an enormous quantity of binaries, which aren't permitted in source tarballs [11:38] also, this is for #ubuntu-motu, not #ubuntu-devel [11:39] ok, I'm gonna join that chanel. thank you directhex. [14:06] hi [14:06] any ideas when the zsnes package will be fixed in intrepid? [14:06] are there any intensions to do that? [14:08] is this a support question? ^^ [14:09] this bug is open quite a long time now, and no one seems to care https://bugs.launchpad.net/ubuntu/+source/zsnes/+bug/250425 [14:09] Ubuntu bug 250425 in zsnes "zsnes crashes with buffer overflow on startup" [Medium,Triaged] === bddebian2 is now known as bddebian === fta_ is now known as fta === andrewks_ is now known as andrewks === Mez_ is now known as Mez [20:45] Em [20:45] Hello :) [20:46] How can i run root shell or whatever it is... To Do sh '/home/martynas/Desktop/NVIDIA-Linux-x86-96.43.07-pkg1.run\ [20:46] .. [20:47] driver says... That i need to run it from somewhere... [20:47] I dont know where [20:47] restartme: #ubuntu-devel is for Ubuntu development. Ask in #ubuntu [20:48] I have just installed ubuntu, and it's pissed me off so please help [20:48] So [20:48] Can't you just say how to boot cmd, not gui? [20:48] restartme: This is not the right place to be asking. Ask in #ubuntu. People aren't going to help you in here [20:48] Oh [20:49] Is too hard for you [20:49] :( [20:49] ;( [20:49] devs [20:49] and don't know how to boot some shit.. [20:49] Yeah right.. [20:50] Yep. And trolling and being belligerent is going to get you /all/ of the help in the world [20:54] restartme: if you're not comfortable with shells, installing the nvidia drivers by hand is probably not a good idea. they are packaged in Ubuntu (see System->Administration->Hardware Drivers) [20:54] would someone be able to look at bug 311804? [20:54] Launchpad bug 311804 in libraw1394 "Update libraw1394 to version 2.0" [Undecided,New] https://launchpad.net/bugs/311804 [21:13] linux crash [21:13] on update [21:13] what to do? [21:13] bus [21:13] bugs [21:16] restartme, the support channel is #ubuntu, not here [21:24] i am about not support [21:24] about bug\ [21:24] really big [21:24] ;D [23:14] (earlier aggressive behaviour) [23:15] lol [23:20] evening cjwatson [23:22] hello [23:59] wondering if in ubuntu kernel's there's a backwards compatible vfs_link ? [23:59] as ubuntu's has been modified (presumambly for apparmor)