=== n0ts_off is now known as n0ts [00:10] hey all ... what tool do I use to write into a file? .. just a plain text file [00:11] nano [00:11] vi [00:11] LifeIsGood169, I mean to run a command to write it .. and not open it to examine it [00:11] example: sudo nano (file name here) [00:11] oh [00:11] echo? sed? awk? perl? [00:11] lol I know nothing [00:11] depends how you want to modify the file, really. [00:12] I want to add a source to /etc/apt/sources.list with a single command [00:13] you should probably be using /etc/apt/sources.list.d/ _instead_, but you could do that with echo "deb http://blah/ blort foobar" >> /etc/apt/sources.list [00:13] echo "something" > file [00:13] delinquentme: > overwrites. >> appends. [00:13] sarnold, nice! [00:13] delinquentme: but _please_ do look at /etc/apt/sources.list.d/, it's there to help make these things easier. :) [00:14] .. echo "foo" > /etc/apt/sources.list.d/deliquent.list :) [00:15] sarnold, and those will be available just the same? [00:15] Where can I go for lvm support? the channel #lvm is unresponsive. [00:16] and sarnold do I want a .list or a .list.save? [00:16] LifeIsGood169: here is ok, but the linux-lvm is the holy grail. [00:16] LifeIsGood169: just try asking? it might work.. :) [00:16] LifeIsGood169: what's up? [00:16] delinquentme: .list. apt will only use files that end with .list. [00:16] delinquentme: (that's .list -- ignore my periods that end the sentences...) [00:17] echo "deb http://http://lib.stat.cmu.edu/R/CRAN/bin/linux/ubuntu lucid/" > /etc/apt/sources.list.d/R-lang.list [00:17] its a new file so dont need to append and I think i look good [00:18] delinquentme: you've got two "http://" in there -- otherwise looks good. [00:18] its telling me permissions denied even with sudo?? [00:18] sudo echo "deb http://lib.stat.cmu.edu/R/CRAN/bin/linux/ubuntu lucid/" > /etc/apt/sources.list.d/R-lang.list [00:18] @xnox test [00:19] how do you reply? [00:19] delinquentme: that runs the 'echo' as root, but not the > file redirect. hehe. [00:19] LifeIsGood169: type the name, type :, keep typing :) [00:19] LifeIsGood169: some clients let you type the first few characters and then hit 'tab', but not all. [00:19] xnox: hello? [00:19] so a sudo after > [00:19] It doesn't seem to go bold? [00:20] * xnox is confused..... LifeIsGood169 just type your question and all of us can ponder about it. [00:20] > sudo /etc/apt/sources.list.d/R-lang.list sarnold [00:20] ok [00:20] I'd like to setup a single volume group across multiple pv's. My first hd: sda{1,2,5} = linux, extended, linux lvm. My second hd: sdb{1,2,5} = linux, extended, linux swap. How do I set aside the system files & swap space on 1 hdd? & partition everything else as a volume group? I need help understanding the current default partitions. I have no idea why my second hard drive: sdb{1,2,5} = linux, extended, linux swap. [00:20] I have a picture of 'fdisk -l' if it helps: http://i216.photobucket.com/albums/cc217/lalabby/hdds.png [00:20] delinquentme: I'd just start a new root shell as "sudo -s", then run the 'echo foo > bar' command as you did before -- then control+D to exit the root shell [00:20] you can't use the sudo after the > in the redirect, you can do the following though: [00:20] echo "deb http://lib.stat.cmu.edu/R/CRAN/bin/linux/ubuntu lucid/" | sudo tee /etc/apt/sources.list.d/R-lang.list [00:20] LifeIsGood169: presumably xnox sees it bold if he has bothered to configure -- or not unconfigure -- his highlighting. :) [00:20] shanemeyers: oh, neat. [00:21] sarnold: ah [00:21] LifeIsGood169: eh.... you actually have only two partitions. [00:21] LifeIsGood169: the 1st one has the / and most of the install. [00:21] xnox: ah in the picture? [00:21] LifeIsGood169: the 2nd one indicates end of "primary" partitions and start of "logical" partitions. [00:22] LifeIsGood169: the 5th one is actually just your _other_ partition with swap on it. [00:22] LifeIsGood169: see "Disks" app to help visualise this. [00:22] LifeIsGood169: and read about partition tables on wikipedia. [00:23] note that formating & creating pv's will delete all your data on that space. [00:23] xnox: so is sdb important? or can I erase it? Only sda1 matters? [00:23] LifeIsGood169: huh. wait. sdb means it's a second HDD, sda is the first HDD. [00:23] LifeIsGood169: I don't know what data you have on them. [00:24] xeon: idk either. Can you look at this picture of 'fdisk' ? http://i216.photobucket.com/albums/cc217/lalabby/hdds.png [00:24] LifeIsGood169: but what _you_ think is first/second HDD, is not necessarely what your computer (which order) they are in. [00:25] xnox: that is ok... everything should be 'erased' except the current ubuntu opperating system [00:25] LifeIsGood169: can you show output of $ sudo mount? [00:26] LifeIsGood169: also to paste text from console it's easier to pipe the output to `pastebinit` [00:26] xnox: no important information was present when I first installed.... I'm just trying to figure out if Ubuntu's default space usage - grabbed some of the second HDD for swap [00:26] ok [00:26] also $ sudo lvs and $ sudo pvs [00:27] and $ sudo vgs [00:27] will help you. [00:27] but first disk has a primary partition (probably boot partition) a logical partition with lvm pvs. [00:28] xnox: http://paste.kde.org/606200/ [00:28] second disk has a primary partition (probably with a linux installation) and a logical partition for swap. [00:28] LifeIsGood169: what I said above is right. [00:28] xnox: ahhhh... that might be an old ubuntu 9.04 install.... now I understand... I didn't get it [00:28] LifeIsGood169: note that currently you are booted of /dev/sda, which is in LVM. [00:29] xnox: so it is useless just an old hdd with some data I missed... thought they were all blank [00:29] LifeIsGood169: mount the /dev/sdb1 and see what's that. $ sudo mount /dev/sdb1 /mnt [00:29] I think my job is done here ;-) read lvm2 howto from tldp [00:29] * xnox off to sleep [00:30] xnox: thank you so much === n0ts is now known as n0ts_off [01:11] erichammond, fyi, http://cloud.ubuntu.com/ami works now [01:11] New bug: #1078530 in qemu-kvm (main) "upstart job fails to start under lxc" [Undecided,New] https://launchpad.net/bugs/1078530 [01:11] and its under code that ben and I can change. [01:11] (where as before, as you probanbly noticed, i basically said "yeah, that sucks") [01:33] smoser: yay [01:37] smoser: How are these rows sorted? http://cloud-images.ubuntu.com/locator/ec2/ It looks alphabetical by region except for ap-southeast-2 [01:39] smoser: This is still missing ap-southeast-2: http://cloud-images.ubuntu.com/precise/current/ [02:01] is there something that enables me to easily provision different virtual environments (lxc, kvm, virtualbox, etc.) using a common interface? [02:11] cr3: have you seen juju yet? [02:12] cr3: https://juju.ubuntu.com/ [02:12] cr3: it provides a nice layer over aws or openstack or lxc or maas and makes deploying services on them straightforward [02:13] I don't know if they have a kvm+qemu provider interface yet, but it feels like one would make sense [02:24] sarnold: I'll have another look at it and consider what it might take to have a kvm+qemu provider interface if it doesn't have one yet, thanks! === n0ts_off is now known as n0ts === n0ts is now known as n0ts_off === n0ts_off is now known as n0ts === shantorn__ is now known as shantorn === n0ts is now known as n0ts_off === n0ts_off is now known as n0ts === n0ts is now known as n0ts_off === n0ts_off is now known as n0ts === pug_1 is now known as DaveR === fenris is now known as Guest99083 === Guest99083 is now known as ejat === n0ts is now known as n0ts_off === n0ts_off is now known as n0ts === n0ts is now known as n0ts_off === n0ts_off is now known as n0ts === kInOzAwA is now known as Guest56697 === smb` is now known as smb === fenris is now known as Guest72215 === n0ts is now known as n0ts_off [08:30] <_BuBU> Hi [08:31] <_BuBU> probably better place to post my problem :) [08:31] <_BuBU> I've an issue with openssh after upgrading from 11.10 to 12.04 [08:31] <_BuBU> 2012 Nov 14 09:27:03 srv01 fatal: Read from socket failed: Connection reset by peer [preauth] [09:09] can I mark the root filesystem dirty manually somehow? I want to force a fsck upon boot since I don't have a boot CD and need to fsck the root mount [09:15] found it, tune2fs -C 38 [09:15] but that was a cheating fsck with journaling [09:16] Another option is 'touch /forcefsck' IIRC [09:26] New bug: #1078620 in quagga (main) "package quagga 0.99.20.1-0ubuntu0.12.04.2 failed to install/upgrade: subprocess new pre-removal script returned error exit status 1" [Undecided,New] https://launchpad.net/bugs/1078620 [09:36] New bug: #1078633 in keystone (main) "Unable to remove all keystone related files after purging/removing the package" [Undecided,New] https://launchpad.net/bugs/1078633 === mcclurmc_away is now known as mcclurmc [10:10] Hi there. i'm running ubuntu server 10.04 and I want to know the io usage by process per day, i know I can use Iotop for that but is there any tool that can sort after a day of monitoring the top io usage process? [10:11] Actually I use iostat -oaP === kInOzAwA is now known as Guest79398 [10:34] nopz: I don't know any such tool - google led me to http://www.xaprb.com/blog/2009/08/23/how-to-find-per-process-io-statistics-on-linux/ [10:42] RoyK, thank you, will see === mcclurmc is now known as mcclurmc_away === n0ts_off is now known as n0ts [11:16] New bug: #1078666 in libunwind (main) "test-async-sig test fails on Ubuntu raring" [Undecided,New] https://launchpad.net/bugs/1078666 [11:30] my ubutnu server is installed on vmware vsphere 5.1 ,how do i get sound install on this server === mcclurmc_away is now known as mcclurmc [11:51] any experts here on white screen of death [11:52] Hi, my pptpd service is saying "GRE: Bad checksum from pppd." when I try to connect, this isn't a router issue, as I've tried local it from within the same network too. [11:52] Anyone able to help? [12:22] hallyn, zul: you guys OK with me uploading a new ipxe snapshot? I'd like to drop our cherry picks [12:23] jamespage: i dont have a problem with it [12:23] zul: OK - I'll give it a poke locally first and then upload to raring === cpg is now known as cpg|away === cpg|away is now known as cpg [12:40] ;['BG [12:40] I want to buy stickers, stuffed tuxes and other linux clothing. Other than shop.canonical.com, is there a website where I can buy this and the profits go to ubuntu ? [12:41] Sorry guys. My cat jumped on the keyboard. [12:53] New bug: #1078699 in samba (main) "winbind won't start at boot" [Undecided,New] https://launchpad.net/bugs/1078699 === cpg is now known as cpg|away [13:27] [;p\o0p9 [13:40] jamespage: this is snapshot from upstream right? [13:40] jamespage: actually, i'm gonna be slicing and dicing that quite a bit in raring (per ppa:serge-hallyn/crossc) to match the new qemu layout [13:40] but for now it's ok of course === kInOzAwA is now known as Guest22114 [13:42] jamespage: is your upload going to also by chance fix bug 1025239 ? [13:42] Launchpad bug 1025239 in ipxe "kvm-ipxe does not support https" [Medium,Confirmed] https://launchpad.net/bugs/1025239 [13:45] hallyn, yep [13:46] upstream snapshot and will close that bug [13:54] jamespage: \o/ === niemeyer_ is now known as niemeyer [14:06] anyone had problems with mcrypt causing wsod? [14:09] wsod? [14:09] white screen of death [14:09] restoring my sites, all seems fine but just get wsod [14:09] bloody annoying [14:10] sure mcrypt is responsible [14:10] getting an error message is already loaded [14:11] tried commenting out a few but no joy, its all over system === Guest22114 is now known as kInOzAwA [14:19] Howdy. I'm trying to find an opensource monitoring solution for my small business. Is GroundWork the best solution? Or does anyone know of another one that will do a better job? We are running mainly linux (15) and Mac OS X (6) servers, with 4 Windows servers as well. [14:28] jdstrand: do you have any objection to libvirt/apparmor always adding rw to "/var/lib/libvirt/**/*.vnc ? (per bug 1069534 ) [14:28] Launchpad bug 1069534 in libvirt "libvirt doesn't include *.vnc files with apparmor profiles" [Medium,Triaged] https://launchpad.net/bugs/1069534 [14:30] hallyn: what are the contents of that file? all guests would be able to read each other's .vnc files if we allow that (typically we would add something to virt-aa-helper) [14:32] jdstrand: my guess is it contains the vnc password [14:33] consider me objecting :) [14:33] jdstrand: so it should be done in virt-aa-helper with the precise filename? [14:33] best thing would be a domain specific rule added via virt-aa-helper [14:33] yeah [14:33] ok, thanks. i'll put a comment there. === matsubara is now known as matsubara-lunch [15:00] jamespage: something funky is happening https://jenkins.qa.ubuntu.com/job/precise_grizzly_keystone_trunk/21/console [15:46] zul, odd [15:46] may have been on a restart [15:46] its has alot of jobs now [15:56] hallyn, zul: just uploaded ipxe fyi - looked to work OK (and I could see HTTPS support being advertised on boot in KVM) [15:57] jamespage: cool, thx [15:57] btw at some point i'm going to have to send out a call for testing on the new qemu packageset, give it a week, and then push it all into raring [15:57] maybe i'll do that next week. best not to wait too long [16:00] hallyn, good idea [16:17] hello [16:17] ii have problem, i havent new logs in /var/log/auth.log [16:18] this can by cause chmod 700 -R /var/log ? [16:43] Yes. [16:45] ScottK: i give 660 for test and without changes [16:46] nginx and lastlog is update, but auth, kern.log or dmesg not [16:49] I'm having a problem with openstack Horizon package install on 12.10. It keeps throwing an Authorization Failed "AttributeError: 'module' object has no attribute 'EmptyCatalog'" exception === mcclurmc is now known as mcclurmc_away === mcclurmc_away is now known as mcclurmc [17:57] SpamapS: ping [18:07] zul: meetings now, then pong later [18:07] SpamapS: k [18:14] solved my problem with openstack-dashboard (Horizon), the strange error turned out to actually be a problem with my cinder-api configuration [18:15] love those python exception call stack dumps :) [18:25] jamespage: ping ill need an cloud-archive review tomorrow for swift [18:26] SpamapS: when you get the change, could you please process sru bug #1078828 [18:26] Launchpad bug 1078828 in openstack-resource-agents "[SRU] openstack-resource-agents uninstallable due to non-existant dependency" [High,Fix committed] https://launchpad.net/bugs/1078828 [18:27] jamespage: re, by BP spec you mean whiteboard right? === peterrus- is now known as peterrus [18:31] roaksoax, yep === Ursinha-afk is now known as Ursinha [19:04] zul: pong now, wassup? [19:04] SpamapS: there is q python-keystoneclient/nova/quantum SRU that is pending im not sure whats going on with it can you have a peek? [19:12] hi [19:12] when connected to an ubuntu 12.04 server and type mysql shouldnt it be asking for a password? [19:13] stgraber: allrighty i've got a userns kernel that builds (only with one config option set :) - will take a break then see how badly it breaks boot [19:13] uh, not userns, [19:13] syslogns [19:14] i mean when i type mysql -p it wont log me in [19:14] but when i just type mysql it works [19:14] without a password [19:14] !! [19:15] doesn't seem too safe [19:15] zul: sure, its probably just backed up in the queue. But, lucky you, I"m starting a run through said queue in about 30 minutes. [19:15] roaksoax: I'll push it to the top of my queue. [19:15] sweet...yay lucky me! [19:15] X-Sleepy-X: you can connect, but can you do anything? [19:15] X-Sleepy-X: type 'show grants' [19:15] SpamapS: awesome, thanks! [19:15] X-Sleepy-X: I believe by default, you will just have 'usage' [19:15] hallyn: nice! [19:15] X-Sleepy-X: which means you can just connect [19:16] Grants for @localhost GRANT USAGE ON *.* TO ''@'localhost' [19:16] thats what i get [19:18] SpamapS: you were right [19:18] thx [19:18] :) === mcclurmc is now known as mcclurmc_away [19:35] I'm using apt-cacher with Ubuntu 12.10. It keeps downloading the same package to 99% and restarting i.e. openjdk-6-jre-headless amd64 6b24-1.11.5-0ubuntu1~12.10.1. Any ideas why? Are others seeing this? === n0ts is now known as n0ts_off [20:19] Please latest ubuntu ships with openstack, dont understand what it mean? [20:20] I don't understand your question. [20:22] Lifeless, How do i access horizon after installing ubuntu server iso [20:22] Lavvy: you need to install python-django-horizon [20:25] Lifeless; that is what confuses me, dont really understand what shipping with openstack means. [20:25] it means openstack is available in the Ubuntu archive [20:27] So i have to still install it on my server, with command line? [20:28] or configure your bootstrapping to install it for you. [20:28] or see if the maas project's got some easy way to avoid having to type much. [20:34] 'lo [20:34] This one is quite tasking unlike the live usb demo we tested, it has good gui and horizon is on http://127.0.0.1, very nice for we windows users. Are they now different ? === yofel_ is now known as yofel === cpg|away is now known as cpg [21:04] [A5 [21:04] doh === cpg is now known as cpg|away === matsubara_ is now known as matsubara === mcclurmc_away is now known as mcclurmc === cpg|away is now known as cpg [21:56] zul: looking at the nova SRU right now. All the bugs attached nearly crashed my browser... :p === Ursinha is now known as Ursinha-afk [21:59] SpamapS: sorry about that [22:00] zul: where's the centralized tracking bug? [22:00] zul: this is way too big to evaluate as a series of patches [22:00] SpamapS: for nova? [22:01] zul: yes [22:01] SpamapS: there should be one adam_g did the upload [22:02] adam_g: ^^ [22:03] he aint here [22:03] crap...there isnt a tracking bug [22:05] New bug: #1078926 in ubuntu "raring instance failed to find EC2 datasource" [High,Confirmed] https://launchpad.net/bugs/1078926 === cpg is now known as cpg|away [22:19] When using NFS or SMBD, I get kernel panics with 12.10, any help would be appreciated. http://pastie.org/private/ngsvrewvgmebzx5xj2pq === DarkG is now known as TonyL === cpg|away is now known as cpg === Ursinha-afk is now known as Ursinha