[00:04] good evening [00:07] is anybody familiar with the establishing of a connection to localhost? [00:07] in specific, do i have to be connected to a network in any kind, to connect to my localhost? [00:10] thanatos: no, localhost references only the system that you're on [00:10] for example, this system i'm on is a laptop [00:10] i can be disconnected from the internet [00:11] in every way shape and form, and be able to access localhost [00:11] because it goes through the `lo` interface [00:11] which is the loopback interface that your computer uses to communicate with itself [00:12] is it possible that the connection to my self is in anykind of way blocked? [00:12] for example default blocked, via internal firewall or something like that? [00:12] because if i try to connecto to my self, via local host, i get connection refused errors [00:13] my machine is not connected to any kind of network at all, on which i am trying to build a server client with python [00:14] as soon as i connect to a network, the error does not occure [00:14] but if i am offline, there is a connection refused [00:14] so i was woderning if there is some kind of restriction if connecting to my self [00:14] if i am not in a network [00:20] is there a way to use ssh in such a way that you can "connect" to the server, in the sense that whatever you type is run on the remote server, but what you type is not sent to the server in real time? In the same way running a remote command would almost but without having to run the ssh command every time. [00:26] K4k: rephrase [00:26] Sorry, I'm having trouble putting what I'm looking for into words [00:27] As in I type the commands in a terminal and when I hit enter, it sends the command but as I'm typing that command I [00:27] *** I'm not affected my network latency [00:28] I have a server that's on a really high latency network and there are often times 30 second periods where I get no response and that would be fine if my typing was not affected [00:30] K4k: you want to avoid having your typing affected by the latency? [00:31] pmatulis: yea, I'm not sure if this is possible with ssh though. The closest I've found is called "sshpass" but getting that to work is a bit of a "hack" [00:32] any solution for that would be a hack [00:32] that happens because of the design of SSH [00:32] I figured as much [00:32] it funnels your keyboard to the server, then feeds back the server's output [00:33] Yea, that's where I'm having an issue [00:33] any workaround would have to preprocess your input, then wait until you hit enter to send it [00:33] there's not enough bandwidth for that much traffic [00:33] which would cause issues with anything interactive [00:33] such as less [00:33] ...oh, hadn't thought of that... [00:34] K4k: if your typing often results in the same commands you could write scripts on the remote end, possibly passing an argument here and there [00:35] the best solution is getting a better link [00:35] the second best is typing very carefully [00:35] hmmm [00:36] Wasn't there, way way back, some kind of connection you could make to a machine that would do essential what I'm thinking of though? I could swear there was... [00:36] not any that connects directly to the built in terminal systems [00:36] it would have to have its own shell [00:38] serial terminals have similar behavior to what you desire, but that's simply because it sends the characters immediately regardless of what's going on [00:38] K4k: you could also just send remote commands: "ssh user@host 'aptitude search foo'" or use a script like i said: "ssh user@host 'script argument'" [00:38] pmatulis: I'm starting to think that's what I'll do [00:39] can bash aliases take $1 $2, etc? [00:39] I could make a bash alias that would do what I need I think [00:39] (using what you suggest pmatulis) [00:44] yup, ok that will work for what I need [00:45] K4k: super [01:21] New bug: #856027 in postfix (main) "package postfix 2.8.2-1ubuntu2.1 failed to install/upgrade: η υποδιεργασία installed post-installation script επέστρεψε κατάσταση λάθους 75" [Undecided,New] https://launchpad.net/bugs/856027 === Daichi is now known as nandemonai [02:29] My package libxml2-dev is at 2.6 on the server but latest is 2.7 ? how can I properly update [02:34] libxml2 | 2.7.6.dfsg-1ubuntu1.2 | lucid-updates | source, amd64, i386 [02:34] aot2002: as long as you have lucid-updates enabled, you should get 2.7.6 as seen above [02:34] nope still at 2.6 [02:35] just applied all outstanding updates non of which were libxml2 [02:36] aot2002: Is lucid-updates in your sources.list ? [02:36] hmm let me check [02:36] yes [02:37] I wonder if it was installed through compile [02:38] Oh. If you are silly enough to use un-packaged software, then any mess you end up in is yours to sort out :) What does dpkg -l libxml2-dev output? [02:41] dpkg -l libxml2-dev [02:41] |/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad) [02:42] Status=Not/Inst/Cfg-files/Unpacked/Failed-cfg/Half-inst/trig-aWait/Trig-pend [02:43] aot2002: No actual line with a version number in it?? [02:44] 2.7 [02:44] but seems to show 2.6 in php [02:44] something went wrong with 2.7 update i guess at some point [02:45] aot2002: For a -dev package, there is no harm in doing sudo apt-get purge libxml2-dev && sudo apt-get install libxml2-dev #to reinstall it, if you think the installation is incorrect. [02:46] If there is stuff in /opt or /usr/local, they have probably "sudo make install"'d [02:46] That's when you go back to $customer and tell them the rate just doubled [02:47] jmarsden, still in bad state [02:47] aot2002: Be specific... define "bad state". [02:47] How are you checking the state, and what is the result of that check? [02:48] Err?=(none)/Reinst-required (Status,Err: uppercase=bad) [02:48] doesn't that say reinstall-required [02:49] That is a header line. Where is the one with the version number in, that you seem to be avoiding posting??? [02:49] aot2002: that's telling you what the letters are in the columns [02:50] aot2002: Let me ask again slightly differently: what does dpkg -l libxml2-dev | tail -1 output? [02:51] http://pastebin.com/2QQzSN0d [02:53] aot2002: That says that you have installed libxml2-dev 2.7.6.dfsg-1ubuntu1.2 correctly. No problem visible. [02:53] hmm [02:53] So, why are you asking abou how to do something you already did? [02:53] because php is reporting 2.6 is installed [02:54] That is what it links against or finds, and it does not link against -dev anyway :) [02:54] I have lamp on compilation to keep the latest versions... do I need to recompile again when upgrading libxml2-dev [02:55] the whole point of a package-managed distribution like Ubuntu is to use packaged software. Doing anything else is a bad idea. If you need to backport the latest packages, and then install them, do so. [02:56] well that makes sense except php5-curl doesn't install the extension into the package [02:56] hence why I'm using a compilation [02:56] I did a simple apt-get install php5 php5-curl apache2 [02:56] aot2002: OK, so download the package sources, edit them to compile with whatever options you like, and build your new packages... [02:57] Just don't mix packaged software and totally unpackaged "I will just compile this" software... [02:58] aot2002: Maybe you just need to edit your php.ini file to tell it about pgp5-curl ? [02:58] *php5-curl [02:59] But if that is the real issue, ask us about that, not about "My package libxml2-dev is at 2.6 on the server but latest is 2.7 ? how can I properly update" :) [02:59] It comes up often enough here that you should just program ubottu with a set response [03:00] Along the lines of "stable means it doesn't change; if you want to rice it up, #gentoo and #lfs are over there" (only more polite) [03:00] Okay sorry how can I get php5-curl working with the installed package from the repo's....then I can kill off hte compiled ver [03:01] aot2002: What happens when you install it and edit php.ini to use it? [03:02] In php info it shows the ini is loaded but does not show up in the list like the compiled version shows the version #. Also if I do a var_dump(curl_version()) the compiled shows the version of curl but the package version just throws a 500 error [03:03] OK... and you have software that really absolutely needs to do that, on a production server? [03:04] What is the *real* problem you are trying to solve here? [03:04] yes I use it with a custom software that uses curl to communicate with a remote payment system... [03:04] And that software calls curl_version() ? [03:05] no that's just how to show what version is installed since any call using curl fails [03:05] i was just pointing out the fact that it should return the version [03:05] OK. So the real issue is that you can't get any of the PHP curl functions to work, when using the packaged version. [03:06] yes [03:06] OK. Let me see if I can reproduce the problem, now we know what the problem is :) [03:06] also the compile version is linking to a 2.6 libxml which mediawiki needs 2.7 or it wont install [03:07] so i'd rather use package management system anyway [03:07] Got most of it setup [03:07] just can't get the regular extensions I use installed [03:11] OK, what does php -r 'phpinfo();' |grep -i curl | tail -3 output on your system? [03:12] (make sure the php binary you run is the one from a Ubuntu package, not one you compiled yourself!) [03:13] hmm how can I make sure [03:14] If you don't know, then I am not sure I have time to do this at this level of detail. I suggest you remove all the stuff you manually compiled, reinstall all your php packages from real official Ubuntu packages, and then see how well things work. [03:15] hey guys, i have to tweak an OS for one of my operating system classes. i was wondering if anyone had some thoughts, insight, or pointers on an idea i have about making a version of ubuntu with a building SVN esk type volume shadowcopy filesystem. any ideas? [03:16] T3CHKOMMIE: #ubuntu-server is for Ubuntu server support, not for doing your homework :) You can add arbitrary filesystems to Linux, either in kernel space, or userspace via FUSE. [03:18] jmarsden, its not really a homework assigment. I am looking for ideas on makeing an operating system specific for a specific task thought some of the guys on here would have some tips about OSes, [03:19] nevermind tho, ill just check some other channels and see if somone else is more knowlegable about operating systems and ubuntu. thanks tho. [03:19] haha, he sure schooled you [03:20] * ball snorts [03:32] jmarsden, thanks I think the compiled version is mucking with the package version -rw-r--r-- 1 root root 67936 2011-05-02 21:01 /usr/lib/php5/20090626/curl.so [03:33] Quite possibly. Removing all the stuff you manually added should help :) Now you see what I meant earlier, when I said: Just don't mix packaged software and totally unpackaged "I will just compile this" software... [03:35] It's basically the same as being compromised -- the only way to clean up properly is to do a full reinstall from scratch [03:37] :( [03:41] The lesson here is: don't do it again === marty_ is now known as Guest54852 [04:31] New bug: #856092 in cyrus-sasl2 (main) "11.10 beta1 alternate install broken dependency libsasl2-modules xserver-xorg-video-ati" [Undecided,New] https://launchpad.net/bugs/856092 [04:48] Hmm, how do I get my server to accept the ipv6 range my router offers? [04:48] It's radvd, not dhcpv6. [04:49] Don't you need to enable RA in /proc/net somewhere? [04:50] I mean, the router is handing it out, and OS X and Win7 accept it. [04:51] Natty seems not to. [04:51] accept_ra [04:52] I don't have it in mine because I explicitly disable IPv6 until I'm ready to lock it down [04:53] But I found that in five seconds from https://duckduckgo.com/lite?q=linux+enable+ipv6+ra === himcesjf1 is now known as himcesjf [06:51] New bug: #856149 in bacula (main) "bacula-fd won't automatically start at boot" [Undecided,New] https://launchpad.net/bugs/856149 === smb` is now known as smb [08:28] jamespage: The jenkins iso testing looks less than cool? === himcesjf1 is now known as himcesjf [08:36] Daviey, lemme take a look [08:37] jamespage: see -testing [08:41] hi [08:41] hey! :D im rsyncing a 20gb folder(/home) to a remote server and its at "Building File LIsts..." anyone have a ball park figure of how long it'll take to complete? [08:42] like 1-3hrs, 3-6hrs etc :P [08:42] i'm using 11.04 in a virtual machine with 512Mb RAM [08:42] and my applications using apache2, php5.3 and mysql are telling me "can't allocate memory" [08:42] why? [08:44] dori922: it depends on your bandwidth and your remote server's, but it will more than a pair of hours [08:45] and after that how much would the speed improve? :P [08:45] the time i told is for both reading and transfering [08:46] try to use -v switch to get more info [08:48] thanks :D [09:01] hello all [09:01] :D [09:14] morning koolhead11 [09:20] hey jamespage [09:30] zul: hey [09:31] hi [09:31] Guess what? - We might be able to install Linux! - My advert: "Linux is much faster, has better security, and scales much better than Windows OSs. Not to mention it have many more features and supporting much more software. Maintenace is also much easier, and upgrading/installing new software never requires a restart." [09:34] AlecTaylor: this channel is not for Linux PR [09:35] Daviey: hello [09:36] koolhead11: Why not? [09:36] koolhead11: Gave him this link: http://narendrapatel.com/2011/05/installing-ubuntu-serve-11-04-64bit-on-hyper-v/ [09:37] well am wrong in that case, that`s what i though all this while. [09:38] Hyper-V support was added by Micrsoft to Linux, right? [09:38] Hyper-V support was added by Microsoft to Linux, right? [09:40] AlecTaylor: Because it just isn't. I you want to advertise, do it somewhere else. [09:41] Hyper-V support was added by Microsoft to Linux, right? [09:42] AlecTaylor: They contributed some network drivers for some stuff at some point. It may have been for Hyper-V. [09:44] "contributed" makes it sound like they did it of the goodness of their hearts. They were obligated to do so due to licensing. [09:44] "Microsoft contributes network driver to Linux" just sounds much better than "Microsoft finally rectifies licensing violation". [09:44] AlecTaylor: why? [09:48] So quick question before I fuck off and go home: anybody used unbound with a stub-zone, whose stub-addr had a non-default port? [09:48] Like stub-addr: 127.0.0.1@1053 [09:49] I ask because I just tried that on lucid and everything worked perfectly with unbound on 1053 and dnsmasq on 53 (during testing), but when I swapped them around, unbound just returned SERVFAIL for the stub zone, without even TRYING to ask dnsmasq. [09:50] http://paste.debian.net/131544/ [09:50] howdy, I installed postfix+dovecot. I'm able to receive email but not send it. I got 250-starttls and 250-auth plain login when running telnet localhost 25, ehlo localhost. [09:51] monkd: start by looking in your /var/log/mail.log file to see why it's not sending mail. [09:52] greppy: [62.zz.yyy.xx]:25: No route to host [09:52] isp blocking my port 25? [09:52] well, that would be a problem. [09:53] could be, can you ping that IP address? [09:53] yes [09:53] Then yes, your ISP could be blocking outbound port 25 access as an anti spam measure. [09:53] Some ISPs will let you opt out of that [09:54] Otherwise you'll need to tell postfix to relay all mail via their smart server [09:54] but shouldn't the 587 line in my master.cf also open port 587 for sending mail? [09:54] and in my mail client I got host:587 as my smtp server? [09:56] but to send mail out, it's trying to connect to port 25, which is the default. [09:56] hmm.. so changing the relayhost in main.cf? [09:56] yeah, one sec. [09:57] monkd: relayhost = smtp.your.isp.whatever:25 [09:57] tried that. then I get a rcpt error [09:57] wait I'll check it [09:58] Relay access denied (in reply to RCPT TO command) [09:58] *blink* [09:59] relay denied by the relayhost server? [10:02] :$ [10:03] hi [10:03] mysql doesn't start after server reboot [10:03] no error messages, no logs, nothing [10:03] greppy: can I get my ISP's MX with dig MX isp? [10:03] mysqld -v simply drops me back to shell without error [10:05] New bug: #771849 in glance "Port not parsed correctly in Swift URI" [High,Fix released] https://launchpad.net/bugs/771849 [10:05] New bug: #799008 in glance "glance creates zero-length images in local file store on Ubuntu oneiric" [High,Fix released] https://launchpad.net/bugs/799008 [10:06] monkd: the MX record may not be the server they want you to send mail with. [10:06] monkd: start poking around on their website to see what they recommend for outgoing mail settings, that is the server you want to use as your relayhost. [10:13] shits.. greppy, I know too little about this, I confed the relayhost as my own host. and that's why I got the relay access denied [10:13] so I have to know my isp's outgoing mail server for sending mail? [10:14] I thought it was possible to send mail directly from my server to anywhere [10:15] but it has to got through a relayhost? [10:16] monkd: if your ISP is blocking outbound port 25 except to their own host, then yes, you need to relay through them. [10:17] but isn't it possible to send via some other port for example 587? [10:21] i really was hoping to use ubuntu server. but i guess cpanel is going to force me to crapOS [10:23] monkd: 25 is the default port for servers to talk to each other. [10:23] not every mail server listens on other ports, or allows non-auth sending on other ports. [10:25] why am I able to send mail to myself then? is it because of the local network? [10:25] <\sh> monkd: don't forget that most IPs from Cable, DSL, Dial-In Networks are blocked/blacklisted by other ISPs smtp servers. [10:29] monkd: your server will accept mail for local accounts. [10:29] so what exactly does it mean when I try to send mail out I get No route to host error, even when I can ping that ip [10:30] from your server, try to telnet to port 25 of the ip that is saying there is no route to [10:33] yea, it doesn't work [10:34] bingo, need to set your relayhost to your ISPs outgoing mail server. :) [10:35] so if I do that. and get it to work. are my emails readable to my ISP? [10:35] Dead loop on virtual device bridge100 :( [10:37] Daviey: another one for today!! [10:37] monkd: they are sent through the server, so if they archive every mail that goes through them, then yes. [10:38] but they could read them anyway if they sniff the network. [10:38] ok I think I found the outgoing server. can I test that it is the one, without trying to conf the postfix and trying to send mail [10:38] telnet to port 25 of the server [10:38] see what it tells you. [10:39] 220 balbalba service ready [10:39] guess that's the one? [10:39] yup [10:40] hey koolhead11 [10:40] greppy: is it possible to encrypt the messages and receivers, so even if they do sniff around they can't "access" the data? [10:41] i have a had drive i suspect was pulled for failure. other than intstalling on it, and running a few smartctl passes, can anyone recomend a way to "test" the drive ? [10:41] monkd: you can encrypt the content using gnupg/pgp/s-mime, but the recipient needs to be know how to decrypt it. [10:42] Daviey: another bug for the day. i am filing it it has to do with bridge on one of the interfaces [10:44] ok [10:44] koolhead11: cool [10:45] koolhead11: Ok, start over. One step at a time. [10:46] okey [10:46] this is my hardware on interface 1 http://paste.ubuntu.com/695033/ [10:47] This is my network bridge configuration on eth1 http://paste.ubuntu.com/695038/ [10:47] greppy: didn't work :D [10:47] the relayhost is mail.inet.fi [10:48] koolhead11: Please don't redact your interfaces file. Pastebin the whole thing. [10:48] and now I get mta.inet.fi no route to host [10:48] ok. [10:48] koolhead11: Also, start by explaining what the problem is. [10:48] koolhead11: All of this is debugging information. [10:48] WOOT - Finally have an Ubuntu Server to work with, Goodbye Windows Server 2003! [10:49] AlecTaylor: If you consider that an accomplishment, I'd be quite hesitant to offer consulting services helping other people install Ubuntu. [10:51] You don't become a mechanic by starting a car for the first time either. [10:51] I do. [10:52] Well, you're awesome. [10:52] :) [10:52] ;> [10:52] Most people need more training. [10:54] soren: http://paste.ubuntu.com/695041/ [10:55] koolhead11: Your eth0 config is invalid. [10:55] "netmask 255.255.0.0" and "network 192.168.1.0" are incompatible. [10:56] Also, having eth0 and br100 in the same subnet might not be what you want. [10:56] soren: http://paste.ubuntu.com/695043/ [10:57] soren: they are in different subnet [10:57] Not really. [10:57] 2 seconds ago they were in the same subnet. [10:57] eth0 is in 10.X.X.X [10:57] Nonsense. [10:57] address 192.168.1.5 [10:58] 2 seconds ago they were in the same subnet. [10:58] Now they're in overlapping subnets. [10:58] One containing the other. I don't even know how that can make sense. [10:59] monkd: what error did you get? [11:00] okey i will get back with all details in sometime. [11:01] koolhead11: But, as I said: This is all debugging information. [11:01] koolhead11: Start by explaining what the problem is. [11:01] soren: the network configuration are same we used when we tested cactus in natty. :) [11:02] koolhead11: I never asked for you network configuration. [11:02] koolhead11: ...but when you started handing it out, I asked for it to be true. [11:02] just after assigning the IP information when i boot my system i get error on boot screen saying " dead loop on virtual device br100, fix it urgently" [11:02] koolhead11: I probably don't care about it at all. [11:03] and notthing happens after that. [11:03] i put the relayhost = mail.inet.fi:25 in my main.cf and I have my own server name as smtp server in the mua. I tried to send mail and got: http://pastie.org/2573222 [11:04] to boot my system i have to remove that inteface information from my interfaces file while going in safe/single user mode [11:04] <\sh> monkd: you see that the IPs it resolves are different? .12 and .15? [11:05] <\sh> monkd: oh you send to mta.inet.fi (which is .12) and your isps mail server but is mail.inet.fi? [11:05] koolhead11: Ok, if this is what you want to talk about, I'm going to have to insist on your actual configuration. [11:06] koolhead11: Clearly, you've misconfigured something. If you're giving me anything other than your actual configuration, I can't (and won't) help you. [11:06] yeah, \sh mail.inet.fi is the mail server. I don't know when mta.inet.fi is coming to play.. that's a different isp I tried to send mail to.. [11:06] <\sh> monkd: looks like that mta.inet.fi is still your relayhost [11:07] <\sh> monkd: did you restart postfix after your changes to main.cf? [11:07] sure did [11:07] <\sh> monkd: but it's not what your logfile says..it still say: I'm sending to mta.inet.fi [11:07] soren: k [11:09] tried again. checked the main.cf -> relayhost = mail.inet.fi:25 [11:09] /etc/init.d/postfix restart [11:09] send mail [11:09] same error [11:09] complaining about mta.inet.fi [11:10] should mail.inet.fi be in mydestination too? [11:17] soren: http://paste.ubuntu.com/695054/ [11:20] koolhead11: And "ip route"? [11:21] How do I install+setup ssh on Ubuntu Server 11.04? [11:22] apt-get install openssh-server ;) [11:22] soren: not given in the interfaces configuration [11:22] koolhead11: Er.. [11:22] koolhead11: What? [11:22] hgb^harry: Is that all that's needed, or do we need to configure some keychains? [11:23] soren: this is what the cofig file is [11:23] AlecTaylor: Dude. fire up Google. In the box, type: How do I install+setup ssh on Ubuntu Server 11.04? [11:23] AlecTaylor: Click the first link. [11:23] AlecTaylor: If you still need help, *then* come here and ask. [11:24] koolhead11: HAng on, how did you get to that config file? [11:25] koolhead11: You said you coulnd't boot because of it. [11:25] soren: i had to go in single user mode. and disable the eth1 intefrace entry. [11:26] So this is the config that works? [11:26] soren: i have to disable this entry of eth1 in order to get my system into normal boot [11:27] koolhead11: The configuration you've shared has no eth1 entry. [11:27] koolhead11: So if you're using http://paste.ubuntu.com/695054/ everything is fine? [11:27] soren: koolhead11 meant br100 [11:28] soren: the one mapped to eth1 [11:28] so only entry with eth0 the system works [11:28] now once am booted then manually i configure http://paste.ubuntu.com/695054/ [11:29] to get my bridge working via eth1 [11:29] Ok. So if you "sudo ifup br100" now, what happens? [11:30] soren: ifup br100 ifup: interface br100 already configured [11:30] because i manually added eht1 and br100 and then restarted the network [11:32] So this is only a problem on first boot? [11:32] New bug: #856309 in samba (main) "package samba 2:3.5.8~dfsg-1ubuntu2.3 failed to install/upgrade: ErrorMessage: package samba is not ready for configuration cannot configure (current status `half-installed')" [Undecided,New] https://launchpad.net/bugs/856309 [11:33] soren: yes whenever i boot. which means if i reboot my system with eth1 configuration i will again get the same "dead loop" error [11:33] and to overcome that i have to again boot in single user and remove the entry [11:33] ok.. [11:34] Is there anything else you think might be relevant that you've also not yet pointed out? [11:34] soren: Linux server1 3.0.0-11-generic #18-Ubuntu SMP Tue Sep 13 23:38:01 UTC 2011 x86_64 x86_64 x86_64 GNU/Linux [11:35] i have allready given the harware information [11:35] I meant about the problem. [11:36] soren: nope. next issue is with nova-network. [11:36] I don't want to spend another 20 minutes asking questions and then have you tell me that it also goes away if you take all the network cables out or something. [11:36] You say when it boots with this, it echoes this error "11:02 < soren> koolhead11: I probably don't care about it at all." [11:37] What does that mean, exactly? What are you expecting to happen that doesn't happen? [11:37] Whoops [11:37] That came out entirely wrong. [11:37] You say when it boots with this, it echoes this error "11:03 < koolhead11> and notthing happens after that." [11:38] What doesn't happen? What doesn't work? What makes you think it's frozen? [11:38] soren: it should normally boot when i have eth1 info configured on it, right? [11:38] A misconfigured network usually shoulnd't cause the system to freeze, no. [11:39] it throws error on boot " dead loop on virtual device br100, fix it immidiately" [11:39] that it [11:39] notthing happens after that [11:39] 11:38 < soren> What doesn't happen? What doesn't work? What makes you think it's frozen? [11:39] What did you expect to happen? [11:39] Why should anything "happen"? [11:40] soren: my system should normally boot and give my console screen :D [11:41] So you usually get a login prompt, but when this happens, you don't get a login prompt. [11:41] Is that accurate? [11:41] indeed [11:41] Did you check the other virtual consoles? [11:41] Did you check the logs to see if the system still is active during this time? [11:43] soren: there is no access to any of the consoles. the only message i get is :- [11:43] [28.500035] Dead loop on virtual bridge device br100 fix it immidiately" [11:43] it keeps coming on the screen [11:43] with [] value changing [11:44] .... [11:44] If it's frozen, how can it keep printing errors? [11:45] soren: as in am not able to do any operations on it :( [11:55] Daviey: yeah so ill backport the iscsitarget branch when it gets accepted [11:55] Hello! I have hired A VPS with Ubuntu server 10.4.3 lts installed on it. Can I use that VPS as a proxy for browsing the internet? [11:56] yes [11:56] you need to either install a proxy or vpn software on it then and configure your client to use that [11:57] Or just use ssh's SOCKS implementation. [11:58] soren: How can I do that please? [11:58] soren: Because it seems to be easier than installing a vpn software and configuring it. [11:58] true, I guess sshd is already installed, no need to look for something else [11:58] Syria: E.g. "ssh -D 1234 username@server" [11:59] Syria: Complete the login. [11:59] Syria: Tell your browser to use a SOCKSK proxy on localhost on port 1234. [11:59] soren: should i file it bug or leave it ? [11:59] Done. [11:59] koolhead11: I think you should file a bug about this. Don't waste time on the hardware specifics and whatnot. Just include the problem description. [11:59] Don't leave *Anythin* out of the problem description. [11:59] okey. done will do :) [12:00] Specify what happens, when it happens, what you expected to happen, etc. etc. [12:00] soren: and the nova-network issue is related to same i suppose [12:00] i will do [12:00] soren: can I know why 1234? [12:00] Syria: Because it's the first number that popped into my head. [12:00] soren: I will test this now it seems so easy! [12:01] Syria: You can use any number you please (provided it's between 1024 and 65535) [12:01] (inclusive) [12:01] soren: ssh -D 9050 [username]@[remote.server.name] should i use this example? [12:02] soren: !!! you gave me the same example. [12:02] :S i did not notice. [12:07] soren: It works!!! [12:07] soren: Thank you. [12:08] Sure [12:08] soren: How can i know if other users are doing this using the VPS? [12:09] Is it possible? [12:10] Syria: Depends on how badly you want to know. [12:10] soren: It is not that important. [12:11] soren: Thnx for everything. :D [12:12] Sure. [12:17] smoser: Are the images on http://cloud-images.ubuntu.com/server/oneiric/current/ supposed to be usable in plain kvm? [12:18] yes. [12:18] they'll complain to the serial console that they can't find a meta-data service. [12:18] you can deal with that in a number of ways with or without human intervention on boot. [12:19] How do I log in? [12:20] smoser: or is that not supported? :) [12:21] hold on [12:21] * soren holds on [12:25] soren, at https://help.ubuntu.com/community/UEC/Images you should see some doc on booting in kvm [12:25] thats related to the partition images (the .tar.gz files). [12:27] the same command line options appply, and you can still use the floppy (i think) to boot from to get you a menu option [12:28] hm... but it seems like that page has changed osme in ways i'd not like to advertise (uncloud-init) [12:35] smoser: Ok. When I boot it, I just get a login prompt. [12:35] were you hoping for x ? [12:35] smoser: ...and I hadn't wired up the serial port, but I guess I'll just have to do that to get the password. [12:36] smoser: No, login prompt is fine... but the password isn't shown there. [12:36] ah. [12:36] so here is what i would really suggest. i just tested on daily [12:36] * download current/oneiric-server-cloudimg-amd64-disk1.img [12:36] Done [12:36] * qemu-img create -f qcow2 -b oneiric-server-cloudimg-amd64-disk1.img disk.img [12:37] * kvm -drive file=disk.img,boot=on,if=virtio [12:37] Well, I'm using libvirt, but whatever. [12:37] * at grub boot, go in and append to kernel command line: ds=nocloud-net s=http://tinyurl.com/sm- [12:37] that makes cloud-init read http://smoser.brickies.net/ubuntu/uec-seed/user-data [12:37] You now that's a link to something on e-bay, right? [12:38] and http://smoser.brickies.net/ubuntu/uec-seed/meta-data [12:38] i assumjed you wanted to buy that thing on ebay :) [12:38] It's been removed. What was it, what was it? [12:38] you can register similar urls [12:38] i have no idea [12:38] Aw. [12:38] wait. [12:38] i pasted badly [12:38] it makes it read: http://tinyurl.com/sm-user-data and http://tinyurl.com/sm-meta-data [12:39] for metadata and user-data [12:39] so you can get similar urls and use that. then you can enable password login through cloud-config. [12:39] http://bazaar.launchpad.net/~cloud-init-dev/cloud-init/trunk/view/head:/doc/examples/cloud-config.txt [12:39] This is a little much for my little brain right now. [12:39] its really not that bad. i promise. [12:40] alternatively if you boot off of the floppy disk that is in the tarball, it will give you prompts that have some of this stuff filled out. [12:41] What's "ds" short for? [12:41] datasource [12:41] Ah. [12:41] And "nocloud-net" means.. [12:41] s short for 'seed' [12:41] well "nocloud" as in you aren't under a cloud provider [12:41] Right. [12:41] and net means that it should run when network is up [12:41] So that makes it use the s= parameter? [12:42] well, the s= will also be read from 'ds=nocloud' [12:42] Right. [12:42] but not guaranteed to be done so before network is up [12:42] err... after network is up [12:42] Ah. [12:42] * soren ponders [12:42] Having to interrupt grub is a pain. [12:42] the third option is to use the ovf data source [12:42] i agree about grub [12:43] you create a cdrom with some data on it, and cloud-init sees that as the data source. [12:43] but now you're going to ask me how to do that. [12:43] * soren concocts way to extract the kernel from the image. [12:43] well, the kernel is available in the tarball [12:43] I don't have a tarball. [12:43] I have the img [12:43] right. [12:44] but that requires both having root, and knowing what command line options are. which, obviously you know, but is pronte to breakage. [12:44] Won't using the tarball require knowing what the command line options are, too? [12:45] well, the boot floppy kind of knows that, but yes. [12:45] Oh, right. The boot floppy. [12:45] I can't believe I just typed "floppy". [12:45] It's 2011. [12:45] are you opposed to the http://tinyurl/ stuff ? [12:46] Not per se. [12:46] ok. then this is pretty easy i think [12:46] with ovf cdrom [12:46] * download http://bazaar.launchpad.net/~cloud-init-dev/cloud-init/trunk/view/head:/doc/examples/cloud-config.txt [12:46] * rename to ovf-env.xml [12:47] * modify the 'seedfrom' to your liking [12:47] * mkdir my-iso [12:47] * mv ovf-env.xml my-iso/ [12:47] * genisoimage -o transport.iso -r my-iso [12:48] * kvm -drive file=disk.img,boot=on,if=virtio -cdrom transport.iso [12:48] * smoser tests this [12:48] Just having the cd be there makes it use it? [12:48] No need to pass anything extra? [12:48] yes. [12:49] good morning [12:50] soren, i just booted that way here. [12:50] and it says "successfully authorized [smoser]" (ie, it grabbed my ssh keys from launchpad) [12:51] if you're opposed to the need for network, then you can actually shove base64 encoded user-data into the 'user-data' field in the ovf-env.xml [12:52] i should probably get a tinyurl that simply sets password to something and document this as a functional demo [12:52] :) [12:57] smoser: I'll take it for a spin. === txwikinger2 is now known as txwikinger [13:02] smoser: It takes a *long* time before the login prompt pops up. [13:02] I'm getting a lot of "kernel: [7170012.183313] lo: Disabled Privacy Extensions" messages on my Ubuntu 10.04 server. It seems to be related to IPv6? How do I fix this spamming? [13:03] smoser: Hm... Maybe I did it wrong. [13:03] ersi, why did you enable privacy extensions on lo? [13:03] patdk-wk: AFAIK I have not done such a thing. [13:03] Where would one have enabled that, in the first place? :o [13:04] sysctl net.ipv6.conf.all.use_tempaddr [13:04] also replace all with default and lo [13:05] soren, hm... [13:05] Enabled on normal interfaces , but loopback is special. Frankly they removed that "hint" in newer version [13:05] smoser: Ok, here's what I did. [13:05] sysctl net.ipv6.conf.lo.use_tempaddr = -1, on my system [13:05] patdk-wk: It's set to '0'. [13:05] smoser: I created a file with a single line in it: "password: ubuntu" [13:05] soren, 2 thinkgs. 1, it seems that sometimes when using that image, initramfs kind of hangs. i think this is due to disk being really slow reads (due to compression) [13:05] smoser: And used that as my "xml" file. [13:05] soren, that wont work. [13:05] patdk-wk: sysctl net.ipv6.conf.lo.use_tempaddr is set to -1 though. [13:05] odd [13:05] smoser: That's what you told me to do. Sort of. [13:05] Isn't it? [13:06] patdk-wk: and I havn't set it in /etc/sysctl.conf or so.. :o [13:06] seems to be.. a default value? >_< [13:06] oh well, I'll set it to 0 then [13:07] ersi, That message is more of a hint. Rather ignore it. It does not happen really often [13:07] smb: It happens very often on this machine [13:07] ttx: did the arping changes make it in? [13:07] ersi, odd, many people saying it's a vsftpd issue [13:07] Hmmmm, I do have vsftpd running on this machine [13:08] patdk-wk, I think it used to be as vsftp makes a new net namespace on every connection [13:08] Though I would have guessed it would stop now as we disabled that in recent kernels [13:08] Ah! Hah :) isolate_network = no should make it stop [13:08] zul: should have [13:08] smb, dunno if he is updated though :) [13:09] patdk-wk, True. :) [13:09] though, I don't have that issue and running vsftp :) [13:09] smoser: You said to grab that cloud config file. [13:09] soren i meant to modify the http://tinyurl.com/sm- [13:09] Uhm, yeah. Seems I'm not totally updated on that machine either [13:09] smb, patdk-wk ^ [13:09] smoser: Ok, now you've lost me. [13:10] hello [13:10] is there any doc that list needed kernel options to compile ? [13:10] smoser: Completely :) [13:10] patdk-wk, If you run a recent kernel we had to remove the ability to do a net ns on clone because cleanup is way too slow [13:10] (11.04 just stop at init with own kernel, a init=/bin/bash is OK) [13:10] soren, in that xml, there is a 'seed' attribute/element/whatever [13:10] s/own/my own/ [13:10] modify that to point to one of your own with similar data. [13:10] smoser: What XML? [13:10] smoser: Did you perhaps paste the wrong link? [13:11] ersi, So isolate_network = no should help there [13:11] 12:46 < smoser> * download http://bazaar.launchpad.net/~cloud-init-dev/cloud-init/trunk/view/head:/doc/examples/cloud-config.txt [13:11] 12:46 < smoser> * rename to ovf-env.xml [13:11] soren, yes [13:11] :) [13:11] hga [13:11] gah [13:11] sorry [13:11] smb: Indeed. I've changed my config to reflect that. Thanks :) [13:11] smoser: :( [13:11] smoser: Can I pass stuff to cloud-init on a CD? [13:11] download http://bazaar.launchpad.net/~cloud-init-dev/cloud-init/trunk/view/head:/doc/ovf/environment.xml [13:11] yes. [13:11] Whee. [13:11] i just gave the wrong url. [13:11] use that, modify the 'seed' [13:12] No, no, I mean.. [13:12] you can read that, and it will also tell you how to put user-data in. [13:12] Oh. [13:12] Gotcha. [13:12] but you have to base64 encode it [13:12] :-( [13:12] I can manage tha :) [13:12] so... would you open a feature request for "simple user-data/meta-data on cdrom" ? [13:12] if you think that would be useful. [13:13] s/feature-request/bug/ [13:13] it also seems that sometimes i'm getting dns resolution issues [13:14] in OVFDataSource with seedfrom [13:14] probably because kvm's guest networking that i'm using is just not really ready at that point although it has given my guest a ip address. [13:20] smoser: I see a bunch of errors on the serial console that it can't find the meta-data service. [13:20] smoser: I thought if I passed that CD-ROM it wouldn't waste time on that. [13:20] i think you're hitting the dns resolution failure [13:20] are you using seedfrom ? [13:20] if you're not, then take it out. [13:20] I'm not. [13:21] Oh. [13:21] The OVF data source thing raised an error. [13:21] Maybe I screwed up the XML. [13:21] i think what is happening is that it sees the seedfrom, and is trying to get it [13:22] ER,, [13:22] it then fails on dns resolution but does not retry [13:22] Erm... Yeah, my fault entirely this time :) [13:22] and then bails. then DataSourceEc2 takes over. [13:22] Whee. [13:22] That was way faster. Great. [13:26] soren, one thing you might want to do, if you're going to do this.... [13:26] is to qemu-img convert it to raw [13:26] I'm doing that right now. [13:26] i think that will stop some of the hangs in initramfs [13:26] :( [13:26] even qcow2 would be fine [13:26] just drop the compression [13:26] i think its just racey and seems to be a slow disk [13:27] :-( [13:30] gah launchpad hasnt updated yet ill just grab the tarball [13:49] Where is the binary for the "Terminal" app? - I can't get the mouse to work, so I'm browsing /bin for it [13:50] AlecTaylor: /usr/bin/gnome-terminal [13:50] Thanks [13:52] soren: https://bugs.launchpad.net/ubuntu/+bug/856417 [13:52] Launchpad bug 856417 in ubuntu "Dead loop on virtual device br100, fix urgently." [Undecided,New] [13:53] Hyper-V: Are there tools available that let me use the mouse in the VM? [14:00] AlecTaylor: Wrong channel. [14:00] AlecTaylor: In so many ways. [14:00] AlecTaylor: Hyper-V is not us, and ubuntu server has no use for a mouse. [14:01] koolhead11: It doesn't cease. It keeps outputting that error over and over again. [14:01] soren: My client added GUI support :\ [14:02] who is hyper-v? [14:02] MS [14:03] soren: it ceases after outptting that error message for n-number of time. [14:20] Daviey: im pending approval for ubuntu-server-dev? [14:20] oh nm [14:40] "/etc/rc.d/init.d/functions: No such file or directory" <--- Where do I find this to install? [14:40] you don't [14:40] isn't that like a redhat thing? [14:41] dunno, trying to install a package, that's the debug output [14:42] * AlecTaylor thinks it might be in the 'lsb' package [14:47] SpamapS, around ? [14:48] i'm booting a cloud-image in kvm locally (using 'guestnet', which is questionable). [14:49] but on boot /etc/resolv.conf is empty, but network is up (i think) [14:49] checking that. [14:55] soren, ok. so i figured out what was going wrong before when we were modifying cmdline params. i had given you bad data (for the Nth time). [14:56] if you want to do it that way (which i realize the cdrom is so much more usable in many ways), then you need to append to the cmdline this: [14:56] ds=nocloud-net\;s=http://tinyurl.com/sm- [14:56] you have to either quote that to protect the ';' from grub cmdline parsing or backslash the ';' as shown above. [15:07] smoser, utlemming could you update the iso tracker with results from ec2 testing ? [15:07] jibel, yeah.. i'll get to that now. [15:07] smoser, great, thanks [15:11] kim0: pin [15:11] kim0: ping [15:12] RoAkSoAx: hey [15:13] RoAkSoAx: what's up [15:15] kim0: so I';m writing orchestra documentation that will include how to use juju with it [15:32] smoser: here now, sup? [15:32] hm.. [15:32] i wonder what i was goin gto say [15:32] i think most of it was lockal issues. [15:33] but it seems that if i boot on my laptop, with qcow-compressed disk image, i can more reliably see boot race issues. [15:33] smoser: resolve.conf ? [15:33] that one was wierd [15:34] i think that for some reason dhcp was unable to update resolv.conf [15:34] but i can't reproduce it. [15:34] well, i can't in a way that i can look at it. [15:34] So whats the other boot race? [15:35] well, initramfs and such sometimes hang. i think thats the udev issue. [15:35] but i'm not seeing either one reliably now [15:35] :) [15:37] RoAkSoAx: sure thing .. if I can help somehow, feel free to involve me [15:39] SpamapS, there. [15:39] so i recreated a failure of /etc/resolv.conf not existing [15:39] while ifup worked and i have a functional network otherwise [15:41] SpamapS, you have thoughts on what i should look for here as to why this would have failed ? [15:41] http://askubuntu.com/questions/62556/cant-use-mouse-hyper-v-with-ubuntu-server-11-04 [15:41] timestamps in /run/network seem reasonable [15:41] smoser, utlemming - any reservations on the cloud images? [15:41] skaet, no. [15:41] but i would like to hear from utlemming , i've not seem him today [15:42] smoser, who should I coordinate with for push the button publishing timing? you or smoser? [15:42] urk [15:42] utlemming? [15:42] :) [15:42] well.... me since he's not here. and i'm going to make sure we're pre-published, or do that if we are not. [15:42] smoser, coolio. [15:43] smoser: dhclient is most likely the culprit [15:43] smoser: my guess would be that it doesn't consider failing to write resolv.conf a failure so we're not getting an error state... maybe you can get ifupdown to run it with debugging on or something [15:43] hey guys, can anyone help me get my wireless to connect to my accesspoint!? [15:44] smoser: that said.. I use kvm to test a *lot* ... and have had no issues. I use it through virt-manager though.. what is 'guestnet' anyway? [15:45] skaet, we are pre-published. [15:45] just ping me in ubuntu-release when your'e ready and we'll push 'go'. [15:45] How can I tell if libxml2 is installed twice diff versions? [15:45] anyone? [15:45] SpamapS usermode networking [15:45] SpamapS, and you dont use a qcow compressed image as the backing disk [15:46] so disk read-io is all sorts of different [15:46] smoser, will do. Thanks. [15:46] but it should not fail to write /etc/resolv.conf [15:48] here is a hint maybe: http://paste.ubuntu.com/695178/ [15:49] notice that app armor message about profile_replace on /sbin/dhclient is 1.5 seconds after cloud-init ran (which should only happen after network is up) [15:49] hey gents, what is the most simple way to get an email server up and running if i don't care about quotas or spam filters ( they are machines that will communicate by email with usernames and passwords) [15:49] smoser: I am getting in late, and beg pardon in advance. But the EC2 EBS multi-instance run -- will it be executed? [15:50] hggdh, no [15:50] it never has been [15:51] can anyone setup wireless on ubuntuserver? [15:51] smoser: so should we update the tracker? [15:54] what do you mean ? [15:54] i am updating results as we speak [15:55] smoser: oh. Then I will stop... [15:59] I'm getting Unknown error 132? anyone? [15:59] smoser: that pastebin you showed.. thats network manager.. what are you testing? [16:03] Hello, everyone [16:04] SpamapS, that is strange. there is no network manager installed in cloud-image [16:04] hi [16:05] I could use some advice here. I'm setting up a 1U HP server, I configured its RAID controller to turn my 2 HDDs into a RAID1 volume. The controller looks fine. When I try to install Ubuntu Server though, it sees 2 HDDs and asks me which one I want to install it on. [16:05] Hrllo,everyone [16:05] yeah, and those files (conmann and network manager) do not exist [16:05] how come it's seeing more than one volume? [16:05] Hello, everyone [16:05] My apache2 server is not work [16:05] I moved my DocumentRoot to my other hard disk [16:06] I think my hard disk's permission is wrong [16:06] New bug: #856530 in nova (main) "nova user should not be in the nogroup group" [Undecided,New] https://launchpad.net/bugs/856530 [16:06] error message is 404 Forbidden [16:07] Anybody, give some help? [16:09] [ 8.199102] type=1400 audit(1316705930.125:6): apparmor="STATUS" operation="p [16:09] rofile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=677 com [16:09] m="apparmor_parser" [16:09] smoser: ^^ [16:10] Haro: it sounds like your RAID controller is not a real hardware RAID controller. Have a look at dmraid. [16:10] adam_g_: So, the block migration requires libvirt config changes, which i believe i have now done.. but still no dice. [16:10] SpamapS, what are you saying ? [16:11] M^jseongtae76: goodluck, people dont help over here... [16:12] smoser: that was just my evidence of network manager.. which surprised me to see. [16:12] antares: would dmraid get me a RAID1 config if I only have 2 HDDs? Or would I need another to use as a system drive? [16:12] SpamapS, right. i knew that. [16:13] but it seems app armour is wanting to process those, even though those files arent there. [16:13] i'm nto sure why that would be [16:13] Daviey: as of last night, DHCP isn't working on the test setup with one network/nic. id rather we get that figured out before worrying about block migration. [16:13] i think its red herring, but i was a fraid that the dhclicne was occuring after cloud-init had stopped [16:13] because clearly if app armour needed to do something for dhclient, that needs to have happened before it runs. [16:14] adam_g_: dhcp in orchestra? [16:14] smoser: not really, apparmor loaded after an executable just means it won't apply to the running executable [16:14] RoAkSoAx: no, dhcp in nova [16:15] well, yes, which kind of means its not going to help anything [16:15] smoser: sounds like whats really worrying you is that cloud-init terminated and then eth0 was brought up 8 seconds later, right? [16:15] Haro: dmraid is sort of like a driver for the kind of RAID controller you have. You setup your RAID using the controller BIOS, and dmraid should recognize and use it. I never had the need to use it myself, so I can't tell you much about configuring it. Your first step should be to find out if dmraid supports your controller. [16:15] in this case, it probably means that dhclient ran un-guarded, and thus was *more* likely to have been able to write to /etc/resolv.conf, but i was thinking that maybe it had some restricted profile, then after processing it would have gotten a morem open one. [16:16] adam_g_: maybe having orchestra's dhcp is affecting somehitmg? [16:17] SpamapS, no. [16:17] you're talking about the 'eth0: no IPv6" message? [16:17] RoAkSoAx: nope. http://bazaar.launchpad.net/~hudson-openstack/nova/trunk/revision/1607 switched some stuff that break our single network setup. [16:17] adam_g: ahh ok [16:18] antares: OK, but can I do a dmraid RAID1 just 2 HDDs? I install Ubuntu on HDD #1. I then set up dmraid, and do what you're suggesting, using both HDDs (I make a partition out of theu nused HDD1 space). I let dmraid do its thing and mirror stuff. What happens if I unplug HDD1? Is HDD2 going to boot Ubuntu and let me access my data? [16:23] Haro: have a look at this: https://help.ubuntu.com/community/FakeRaidHowto [16:25] morning everyone o/ [16:25] Should "virsh list" be able to hang? [16:25] good evening, good sir! [16:28] rbasak: no it shouldn't. But I've had that happen to me, too. It looked like apparmor's fault, but I'm not sure, after two reboots, the problem solved itself... can you run virsh by itself? [16:28] antares79: sorry I've just tried a reboot so it's gone. I'll try next time. It seems to keep happening to me. [16:29] actually the reboot didn't work, which seems to be another problem [16:29] "sudo virsh" then "list" hangs on the list. === squishy is now known as SquishyNotHere [16:30] rbasak: oh, so the virsh shell opens all right? that's a different issue then [16:30] yeah it opens fine === SquishyNotHere is now known as squishy [16:32] ok. i'd probably check if the sockets libvirt uses look like they should (in /var/run/libvirt). Otherwise I don't have a clue how to debug that one. Maybe check for D state processes or strace virsh [16:35] Looks like it's waiting on a read poll on /var/run/libvirt/libvirt-sock (or a write to fd 6, which I can't find what that is) [16:36] ls -l /proc/`pidof libvirtd`/fd/6 should tell you [16:37] adam_g_: Do you want to continue smoking the block migration? [16:37] oh yeah thanks [16:37] it's now working though :-/ [16:37] This is frustrating [16:38] yeah, I hate it when stuff works :-) [16:38] I did virsh list instead of sudo virsh list [16:38] adam_g_: Ah! Doesn't seem to be listening on the tcp port [16:38] it's blocking on a read poll on either 5 or 6. 5 is /var/run/libvirt/libvirt-sock, 6 is a pipe [16:39] so it's working when run as root, but not as a regular user? is the user member of the libvirtd group? [16:40] Daviey: whats not listening? libvirt? [16:40] adam_g: yeah [16:40] no, it's working (gives an empty list) as a user, but hangs as root [16:41] Grr [16:41] ok that's weird [16:42] restarting libvirtd seems to have fixed it [16:43] maybe some weird interaction with nova [16:43] openldap's default (as in created when you install slapd) homedir is created in /etc/passwd as something like /var/lib/ldap, and not as /nonexistent, right? [16:43] adam_g: nah, still failed === lullabud is now known as warzauwynn [18:13] can someone here help me with a CUPS issue on Ubuntu 11.04 (not server), noone in ubuntu or CUPS answers [18:13] or can you point me to the proper channe [18:13] l [18:14] hroberts: this is a server channel, so I seriously doubt it. [18:14] #ubuntu or #cups should be the ones [18:14] /j #ubuntu ? [18:14] just remember that people might not know what you're looking for [18:14] thanks no one there is answering me they just ignore the question [18:14] hroberts: you need to be highly patient [18:15] be patient... [18:15] !patience > hroberts [18:15] hroberts, please see my private message [18:15] so its fixed? :) [18:17] hroberts: i doubt they are ignoring, just likely nobody knows the answer (i'm not that familiar w/ CUPS) [18:18] thanks [18:18] diablo is finally out!! [18:18] hroberts: I'd go and poke CUPS documentation or FAQs [18:18] RoyK: hey [18:18] Also, asking to ask is not a reciept for answers :P [18:18] jdstrand: there is an upstream branch to drop socat in favor of netcat fyi [18:19] koolhead17: ehlo [18:20] RoyK: wassup? [18:20] ersi: not asking to ask, just typing question over and over [18:20] That's not a reciept for getting an answer either [18:20] but you did ask, to ask - here. :P [18:21] (I'm not bashing you, just giving you a few friendly hints) [18:21] * RoyK just ordered a Packard Bell Liberty Tab priced at NOK 2k [18:21] zul: excellent! :) [18:29] kim0: jcastro: hey guys, do you know cole? [18:30] kim0: jcastro: he's looking for some PDFs or slides that give a decent overview of Ensemble [18:30] sure [18:30] I can send him the entire stack of a few [18:30] kirkland: everything is in that U1 folder [18:30] yep [18:30] kim0: is that publicly shareable? [18:31] kirkland: jcastro can grant access [18:31] kim0: outside of Canonical? [18:31] what's his email, I can send him the main one that's like "the important one to know" [18:31] hmm .. it's probably better to be selective [18:31] yeah [18:31] jcastro: I'll email you [18:31] rock [18:35] Hello folks! I'm having some strange isues with a network bridge. I'm trying to setup bridged networking for a KVM guest OS. So far so good, I've created a network bridge(br0) as suggested in most tutorials I've read, set it up, installed the guest os(ubuntu server 11.04, same as the host). The bridge works for a while then stop [18:36] I can ping the host from the guest and vice-versa, but no communication with the outside is working untill I do a full reboot of the host. I can find nothing in the syslog [18:37] What could cause the bridge not to forward packets? [18:45] GeorgeJ: you mean to say bridge on one of your interfaces ceases whole system? If my understand is correct [18:46] *understanding [18:47] Only the communication between the VM and the network stops, the communicatino between the VM and the host still works [18:57] Hi, for some reason I am unable to chmod through ftp, with vsftpd. I have set chmod_enable=YES (though docs say default is yes) and uncommented the local_umask=022 line. Not sure what the problem is [18:58] anyone familiar with this? [18:58] do i have to add the user to an ftp group or something? [19:13] are u using phpmyadmin package or manual install? How do you restrict it to a single vhost? [19:14] Just delete phpmyadmin.conf in /etc/apache/conf.d and add it to the vhost. [19:14] Will that be replaced after a update of phpmyadmin? [19:14] me? [19:15] Any suggestions? [19:15] whats the problem? [19:16] Best practice on how to restrict access to my phpmyadmin installed via package or install it manually. Thought using the package, cause of the security updates. [19:17] Question: Can someone assist me in setting up key-only root SSH access to my Ubuntu server, from a Windows app? [19:17] I'm a little rusty :/ [19:18] creatorbri: Installed putty agent? [19:19] ah.. well I use Absolute Telnet, but if its easier to work off of putty I can grab it and translate after.. [19:19] I'm assuming the steps will be similar. [19:19] wth are you doing telnetting into an SSH server >.> [19:20] creatorbri: You can not use telnet to ssh [19:20] lol [19:20] Absolute Telnet is just the name of the app, folks. Its a multi-tool of sorts. [19:20] pretty sweet actually, for a one-man-racket commercial app. [19:21] anyway. Putty! [19:21] i have no idea about your special telnet, but you need the putty key agent. [19:21] ^ [19:22] creatorbri: Install the complete suite! Not just the putty client exe. [19:22] http://the.earth.li/~sgtatham/putty/latest/x86/putty-0.61-installer.exe [19:22] pageant, check! [19:23] yep, got it, thanks dob! [19:25] ur welcome [19:27] so now I generate a key using PuttyGen. Then I'm a little hazy on what goes over to the server I'm trying to access, and how to set that up [19:27] I know, I'm being newbish, keys are just not something i've dealt with in a long long time [19:28] creatorbri: the public portion needs to be imported into $HOME/.ssh/authorized_keys [19:28] creatorbri: IIRC, puttygen doesn't save them in openssh format, so you probably need to do something like this [19:29] ssh-keygen -i yourkey.pub >> ~/.ssh/authorized_keys [19:30] Hi, for some reason I am unable to chmod through ftp, with vsftpd. I have set chmod_enable=YES (though docs say default is yes), anyone any idea what the problem might be? [19:30] Dulcin: maybe you don't have write perms on the directory? [19:30] SpamapS: There's a bit of a complication in here -- until I get this setup, I only have direct console access to my server, not SSH access (yet); is there a way to "copy-paste" the key data? [19:31] creatorbri: cat > yourkey.pub [19:31] creatorbri: when the content is there, hit then ctrl-D [19:31] SpamapS: Are you talking about doing this on the server or client? [19:31] creatorbri: ctrl-D, btw, is "EOF" [19:31] creatorbri: do that on the server [19:31] New bug: #856726 in rabbitmq-server (main) "Rabbitmq warns about migration from old release even on new install" [Undecided,New] https://launchpad.net/bugs/856726 [19:32] creatorbri: another cool thing you can do is use ssh-import-id your-launchpad-userid [19:32] creatorbri: or just put the file somewhere public and wget it. ;) [19:33] SpamapS: Would you mind elaborating on ssh-import-id? [19:33] SpamapS: Should I change the permissions on the www folder then through ssh? [19:33] SpamapS: even with 777 it still fails [19:35] all I can see in the logs is that it fails (in /var/log/vsftpd.log) [19:36] creatorbri: launchpad accounts can have ssh keys associated (for working with branches). You can attach your public key to your launchpad account, and then ssh-import-id will download it from launchpad.. its a very convenient way to have your keys distributed. :) [19:37] Dulcin: can you paste the log somewhere? [19:42] SpamapS: http://paste.ubuntu.com/695268/ [19:44] Dulcin: so yuga is allowed to chmod, but jos is not? [19:44] well, she's actually the one that mailed me that her chmod was not working, maybe she was able to fix it somehow, but I just looked into it now and I'm not able to [19:45] she mentions "One more thing -- when I upload files via ftp, permissions to these files are set the way it's impossible to read them by anyone except the root user, which is inconvenient a bit." [19:45] Dulcin: I would still suspect the underlying dir perms.. but if its 777.. thats confusing. :p [19:46] * kirkland ssh-import-id's SpamapS :-) [19:46] Dulcin: honestly.. FTP is a dinosaur, why aren't you guys using SSH? [19:46] * SpamapS shreds ~kirkland [19:47] SFTP? [19:47] we are using ssh [19:47] ftp just for uploading it, i guess i could move to sftp [19:48] Dulcin: SFTP and/or SCP are far more useful and safe. [19:48] I seriously wish ftp would die in a fire. :p [19:48] is vsftpd also a daemon for sftp? [19:50] looks like sftp works too, but same problem: [19:50] set attrs for /var/www/index.html: permission denied [19:50] I'm a sudo user, should i add my user to a specific group or something? or should it work out of the box? [19:50] I checked the vsftpd.conf but it is not very helpful [19:51] Dulcin: what are you actually trying to do ? [19:51] chmod through ftp/sftp :D [19:52] Dulcin: chmod outside ftp, ftp/sftp is for up/downloading files [19:53] why not use sftp for it as well if the options are there? [19:53] Changing file attributes should still work within them though. [19:53] SpamapS: I just discovered that when you generate a key with PuttyGen, it actually gives you the output "for pasting into OpenSSH authorized_keys file" :) [19:53] creatorbri: sweet [19:53] the ftp chmod it very dodgy, especially in a chroot environment [19:53] hence why no-one uses it [19:54] i want to use it :( [19:54] why make it hard ? [19:54] Dulcin: that you can't do it with sftp as well further speaks to possible restrictions outside the normal permission bits. [19:54] just set the file systems permissions correctly, and the user permisions correctly and it should be a smooth and clean process [19:55] Dulcin: sftp is provided by sshd and has nothing to do with vsftpd (Or the FTP protocol at all) [19:55] ah i see [19:56] if I seem unspeakably plain, I just started setting up a server for the first time last weekend, maybe I'm just too used to what I know best [19:56] i guess i can chmod everything through ssh [19:57] hi all, i have a problem with my server: yesterday evening i could access to shared folders via lan using samba, but now I can't see the server but i can ssh and ping it... what's wrong? [20:00] samba service not running ? [20:01] i made sudo service smbd stop and sudo service smbd start [20:01] what happens when you try to map a network drive to it (I'm assuming the client is windows) [20:01] Does it actually start the service? [20:01] a better question [20:03] cloakable, don't know it shows me this message: smbd start/running, process 8676 [20:03] ikonia, can't access from ubuntu client too [20:03] what happens when you try to mount the remte share [20:06] ikonia, unable to mount location [20:06] bau_: have you run a network scan over the server to see if the port is open? [20:07] cloakable, how can i do it? [20:07] typically with nmap [20:08] bau_: sudo apt-get install nmap && nmap [20:09] here: http://pastebin.com/M3Tpw35M [20:09] bau_: nmap is also available for Windows platform if you don't have a second linux box handy [20:10] kim0, are you online?? [20:12] should i see samba service also? [20:13] bau_: 139 and 445 are shown on that scan. Did you run nmap on the server where samba is running, or on an exterior box of the network? [20:13] genii-around, lol directly from the server, wait [20:16] here, from another linux box: http://pastebin.com/y1jRj7n5 [20:23] any suggestions? [20:24] bau_: Apologies on lag, work required me. [20:24] ok [20:25] bau_: if you run: testparm on the server, does it say your smb.conf file is good? [20:27] genii-around, here: http://pastebin.com/kNueuXFf [20:28] New bug: #851860 in glance (universe) "glance user should not be in the 'nogroup' group" [High,Fix released] https://launchpad.net/bugs/851860 [20:29] bau_: Looks OK there. [20:30] bau_: What is result of: smbclient -L [20:30] genii-around, from ubuntu clients, when i go to network folder, i need to enter on Windows netowork, is it normal? [20:31] bau_: Yes [20:31] ok [20:31] that command, always from the server? [20:31] bau_: No, from a client [20:31] ( to see what shares, etc the server is advertising) [20:32] ok [20:33] genii-around, http://pastebin.com/iPysQrkZ [20:34] bau_: OK, also looks good. [20:35] bau_: When you go in Windows to Network Neighbourhood or similar, the server is not visible? [20:36] windows to Network Neighbourhood ? [20:37] bau_: Normally yes. Sometimes you may need to specifically put in the IP of the server there, if it is not announcing itself [20:38] you mean ctrl+l on nautilus? [20:38] bau_: All the client machines are linux? [20:39] no there is also 1 windows at least [20:39] bau_: In Nautilus you should be able to put in the URL area something like: smb:///sharename [20:40] yeah it works! [20:41] bau_: Good. It is probably that the server is not announcing itself [20:41] ( eg: make sure it's broadcast IP or netmask is properly set) [20:44] genii-around, i don't remember how to do it :/ [20:45] under /etc/network/interface [20:46] i set up static addresses [20:46] bau_: Usually in one of two ways. If the server is set to auto-get by dhcp, check the dhcp server and make sure it's settings are correct... also probably to always assign the server same IP by it's MAC. Second way is interfaces file manually. [20:46] bau_: Could you pastebin the interfaces file? [20:47] sure [20:47] http://pastebin.com/e5kPrUvN [20:50] bau_: netmask is set, but would not hurt to probably add: broadcast 192.168.0.255 ..also if your router is at 192.168.0.1 you may want line: dns-nameservers 192.168.0.1 (or put in actual nameserver IP here) [20:52] genii-around, sorry i'm using 11.10 beta [20:54] bau_: No worries, these instructions are pretty much the same across all versions. [20:55] so is interfaces ok? [20:58] bau_: Did you see my last message about broadcast, and dns-nameservers ? [20:58] no... [20:58] bau_: netmask is set, but would not hurt to probably add: broadcast 192.168.0.255 ..also if your router is at 192.168.0.1 you may want line: dns-nameservers 192.168.0.1 (or put in actual nameserver IP here) [20:58] New bug: #856789 in mysql-5.1 (main) "package mysql-server-5.1 (not installed) failed to install/upgrade: subprocess installed post-installation script returned error exit status 1" [Undecided,New] https://launchpad.net/bugs/856789 [20:59] ok now i give it a try [20:59] after i edit it? [21:02] bau_: an: sudo ifconfig eth0 down && sudo ifconfig eth0 up should make the changes take. Although sometimes it also requires sudo ifdown/ifup eth0 cycle for some reason. Simplest way is of course just to reboot it. [21:02] ok i'll reboot [21:02] :) [21:02] ( I am assuming here eth0 interface but yours may be different) [21:03] yeah it should be eth0 [21:04] genii-around, ok now it's working [21:05] so it was interface problem?ù [21:06] bau_: The server announces to the network on the broadcast IP, so clients do not know it exists if the broadcast is not set or set incorrectly [21:17] he goes away too... [21:22] smoser: did you do triage today? [21:23] hallyn: is bug 855411 expected behaviour? [21:23] Launchpad bug 855411 in kvm "kernel BUG at /build/buildd/linux-3.0.0/arch/x86/kvm/../../../virt/kvm/kvm_main.c:2275!" [Undecided,New] https://launchpad.net/bugs/855411 [21:28] Daviey: uh, kernel BUG is not expected behavior :) [21:28] * hallyn look [21:28] s [21:29] hallyn: okay, is it a regression? :) [21:29] Daviey: i can't reproduce [21:29] Daviey: is the hardware b0rked? [21:29] oh [21:29] heh, just saw the rest. [21:30] Daviey: still can't reproduce [21:31] Daviey: responded to glance mir [21:31] Daviey: (fyi) [21:31] jdstrand: \o/ [21:32] Daviey: can *you* reproduce? [21:33] jdstrand: You sir, are my hero [21:33] Daviey: heh [22:03] synced and installed an Oneric-server image in test-drive, how do I find it to run it later? === kentb is now known as kentb-out [22:07] I have two images I created today - a small one 197120 and a larger one 1650393088, what does the small image do [22:08] smoser: can you reproduce 546572 against nova? [22:09] aqemu insists on a new machine, why can't I get it to import the one made with testdrive? [22:09] what's aqemu? [22:09] tarvid: ^ [22:09] tarvid: you should be able to use a machine that you installed via testdrive [22:10] a gui qemu manager [22:10] yes I should but Launch starts a new install [22:11] there is no apparent way to start a vm you created before [22:12] okay, sorry; no idea about aqemu [22:12] New bug: #525684 in clamav (main) "clamscan crashed with SIGSEGV in mpool_free()" [Medium,Incomplete] https://launchpad.net/bugs/525684 [22:12] New bug: #856828 in cloud-init (main) "package grub-legacy-ec2 0.6.1-0ubuntu8 failed to install/upgrade: Unterprozess installiertes post-installation-Skript gab den Fehlerwert 1 zurück" [Undecided,New] https://launchpad.net/bugs/856828 [22:13] I've posted at launchpad, I may as well post a bug [22:23] looks like virtualbox-ose will not install an amd64 iso [22:26] tarvid: you need to be on a 64bit system to use amd64 virtualbox [22:27] I am on a 64 bit system [22:27] model name : AMD Athlon(tm) 64 Processor 3200+ [22:33] virtualbox-ose says the CPU it is a QEMU [22:33] does that mean the ose version is a 32 bit machine? [23:20] tarvid, just because you have a 64-bit capable processor doesn't mean you're using a 64-bit operating system, libraries, or software === b0nghittr is now known as b0nghitter