From helmi.eco at gmail.com Thu Feb 11 14:24:12 2010 From: helmi.eco at gmail.com (helmi gmail) Date: Thu, 11 Feb 2010 22:24:12 +0800 Subject: [Ubuntu-SG] mini project - ubuntu page on Facebook Message-ID: <1265898252.3176.9.camel@helmi-laptop> hi Guys, i had created a facebook group/page for Ubuntu-sg. i hope this mini project can help us promote Ubuntu and open source software in Singapore. Feel free to email me . See you guys there :) link : http://www.facebook.com/?ref=logo#!/group.php?gid=293160606769 regards helmi aka Diablo-sg From md.heidir at gmail.com Thu Feb 11 22:17:55 2010 From: md.heidir at gmail.com (Muhammad Heidir) Date: Fri, 12 Feb 2010 06:17:55 +0800 Subject: [Ubuntu-SG] mini project - ubuntu page on Facebook In-Reply-To: <1265898252.3176.9.camel@helmi-laptop> References: <1265898252.3176.9.camel@helmi-laptop> Message-ID: <1265926675.4030.2.camel@supervivid-xps> On Thu, 2010-02-11 at 22:24 +0800, helmi gmail wrote: > hi Guys, i had created a facebook group/page for Ubuntu-sg. i hope this > mini project can help us promote Ubuntu and open source software in > Singapore. Feel free to email me . > > > See you guys there :) > > link : http://www.facebook.com/?ref=logo#!/group.php?gid=293160606769 > > > regards > helmi aka Diablo-sg > > > > Hi helmi, Actually, there is already a group created in Facebook for Team Ubuntu Singapore. http://www.facebook.com/?ref=home#!/group.php?gid=31239604821 You can do a search under Team Ubuntu Singapore. Thanks for creating. -- Best Regards, Muhammad Heidir GMail: md.heidir Launchpad: heidir PGP: keyserver2.pgp.com -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 197 bytes Desc: This is a digitally signed message part URL: From faileas.greywolf at gmail.com Sat Feb 27 22:55:01 2010 From: faileas.greywolf at gmail.com (Ravi Mohan) Date: Sun, 28 Feb 2010 06:55:01 +0800 Subject: [Ubuntu-SG] upstart help? Message-ID: <8545def71002271455m7a518be0m8a8374e14f1ca76f@mail.gmail.com> I'm currently planning on setting up lucid lynx on my new personal server. On my old one, i'm using init.d to start my ipv6 tunnel provider - (gogo6/free6 - they're the only one that'll work behind a nat, and work in singapore ;p). I'm trying to set up a similar setup with upstart (which has some advantages - such as restarting the script if it goes down). at the moment i can invoke this from command line- i want it to automatically start after my networking is up, but before apache would- as is, i think it starts before netwowking does. Can someone tell me what i need to change? respawn console none start on startup stop on shutdown script exec /usr/local/gw6c/bin/gw6c -f /usr/local/gw6c/bin/gw6c.conf emit free6_ipv6_started end script -------------- next part -------------- An HTML attachment was scrubbed... URL: From hyperair at gmail.com Sun Feb 28 06:50:50 2010 From: hyperair at gmail.com (Chow Loong Jin) Date: Sun, 28 Feb 2010 14:50:50 +0800 Subject: [Ubuntu-SG] upstart help? In-Reply-To: <8545def71002271455m7a518be0m8a8374e14f1ca76f@mail.gmail.com> References: <8545def71002271455m7a518be0m8a8374e14f1ca76f@mail.gmail.com> Message-ID: <4B8A124A.4060204@gmail.com> On Sunday 28,February,2010 06:55 AM, Ravi Mohan wrote: > I'm currently planning on setting up lucid lynx on my new personal > server. On my old one, i'm using init.d to start my ipv6 tunnel provider > - (gogo6/free6 - they're the only one that'll work behind a nat, and > work in singapore ;p). I'm trying to set up a similar setup with upstart > (which has some advantages - such as restarting the script if it goes down). > > at the moment i can invoke this from command line- i want it to > automatically start after my networking is up, but before apache would- > as is, i think it starts before netwowking does. Can someone tell me > what i need to change? > > respawn > console none > > start on startup > > stop on shutdown > > script > exec /usr/local/gw6c/bin/gw6c -f /usr/local/gw6c/bin/gw6c.conf > emit free6_ipv6_started > end script > > start on (local-filesystems and net-device-up IFACE=eth0) stop on runlevel [!2345] !2345 means all the multi-user modes. If you want it to run in single-user mode as well, then use !12345. As for your script, you don't need to emit that event, as there will be an event "started " event emitted automatically. Just drop the "script" and "end script" lines and you are good to go. I don't think you need to put the "console" line either. Also, if your service does the double-fork-to-background thing, put an "expect fork" line or init will do a fork bomb for you as it thinks your service has terminated/finished. `man 5 init` for more information. -- Kind regards, Chow Loong Jin -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 261 bytes Desc: OpenPGP digital signature URL: From faileas.greywolf at gmail.com Sun Feb 28 09:20:56 2010 From: faileas.greywolf at gmail.com (Ravi Mohan) Date: Sun, 28 Feb 2010 17:20:56 +0800 Subject: [Ubuntu-SG] upstart help? In-Reply-To: <4B8A124A.4060204@gmail.com> References: <8545def71002271455m7a518be0m8a8374e14f1ca76f@mail.gmail.com> <4B8A124A.4060204@gmail.com> Message-ID: <8545def71002280120k6822dbb0m188fe80cf5b2e408@mail.gmail.com> and... bingo. script and end script seem to be mentioned as being essential in the docs for some reason. There's no fancy forking of any sort... so just correcting the start on line seems to fix it. Thanks for the help. I think i tried two websites, and 2 irc channels before deciding to try the mailing list ;p On Sun, Feb 28, 2010 at 2:50 PM, Chow Loong Jin wrote: > On Sunday 28,February,2010 06:55 AM, Ravi Mohan wrote: > > I'm currently planning on setting up lucid lynx on my new personal > > server. On my old one, i'm using init.d to start my ipv6 tunnel provider > > - (gogo6/free6 - they're the only one that'll work behind a nat, and > > work in singapore ;p). I'm trying to set up a similar setup with upstart > > (which has some advantages - such as restarting the script if it goes > down). > > > > at the moment i can invoke this from command line- i want it to > > automatically start after my networking is up, but before apache would- > > as is, i think it starts before netwowking does. Can someone tell me > > what i need to change? > > > > respawn > > console none > > > > start on startup > > > > stop on shutdown > > > > script > > exec /usr/local/gw6c/bin/gw6c -f /usr/local/gw6c/bin/gw6c.conf > > emit free6_ipv6_started > > end script > > > > > > start on (local-filesystems and net-device-up IFACE=eth0) > stop on runlevel [!2345] > > !2345 means all the multi-user modes. If you want it to run in single-user > mode > as well, then use !12345. > > As for your script, you don't need to emit that event, as there will be an > event > "started " event emitted automatically. Just drop the > "script" and "end script" lines and you are good to go. I don't think you > need > to put the "console" line either. > > Also, if your service does the double-fork-to-background thing, put an > "expect > fork" line or init will do a fork bomb for you as it thinks your service > has > terminated/finished. > > > `man 5 init` for more information. > > -- > Kind regards, > Chow Loong Jin > > > -- > Ubuntu-SG mailing list > Ubuntu-SG at lists.ubuntu.com > https://lists.ubuntu.com/mailman/listinfo/ubuntu-sg > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From alexong2005 at yahoo.com.sg Thu Feb 18 10:31:49 2010 From: alexong2005 at yahoo.com.sg (alex ong) Date: Thu, 18 Feb 2010 18:31:49 +0800 (SGT) Subject: [Ubuntu-SG] Help needed on burning of ubuntu 9.10 iso onto CD Message-ID: <790307.65081.qm@web76302.mail.sg1.yahoo.com> Dear Members, I try to cut a CD using the downloaded ISO using Nero 6 in winxp environment. However the default block size was not accepted and keep prompting for the correct one. What is the correct block size to enter in order to proceed with the burning till the end. Thanks in advance. I wish all Chinese members a Happy and Prosperous Chinese New Year of the Tiger! Alex Ong HP 85103395 An Ubuntu fan ______________________________________________________________________ Search, browse and book your hotels and flights through Yahoo! Travel. http://sg.travel.yahoo.com -------------- next part -------------- An HTML attachment was scrubbed... URL: