/srv/irclogs.ubuntu.com/2011/06/02/#ubuntu-server.txt

earthmeLonChanged what needed to be changed in main.conf.  Pulled all the /etc/postfix/mysql*.cf files.   Restarted postfix.  NO ERRORS :D00:00
earthmeLonSo, now I just have to test this out :D00:00
hallynwould someone with rights mind sponsoring a natty apache upload to fix bug 791410?00:04
uvirtbotLaunchpad bug 791410 in apache2 "Extra Apache instances not started on boot" [Medium,Triaged] https://launchpad.net/bugs/79141000:04
hallyn(mind you the script could be stricter about only allowing ([SK][0-9][0-9])?00:04
hallynoh, doh.  nm, need sru00:05
hallynsilly me00:05
JerryMcFartsHello, If my server randomly disconnects from my router what logs can I check to find the cause?00:11
luitein what sense disconnects?00:14
luiteanyway if you use dhcp, i'd check syslog for entries from your dhcp client. if it's lower level, ethernet disconnects, then kern.log and dmesg00:17
JerryMcFartsluite, It is unreachable. doesn't respond to pings, router does not see it.00:17
JerryMcFartsluite, thank you very much I believe I have found a bread crumb :-)00:22
=== medberry is now known as med_out
awkisopenHaving one heck of a problem with netcat and UDP. If I start listening on a port and begin sending data to said port, the listening instance of netcat will receive it without a problem. However, once I kill the sending instance of netcat and run it again, none of the messages are received.01:02
awkisopenSince UDP is "connectionless" I have no idea how on earth that happens.01:02
awkisopenNow I'm getting the following error when trying to send data to the port I'm listening on: "read(net): Connection refused"01:14
=== oljas_ is now known as oljas
uvirtbotNew bug: #791625 in apache2 "/javascript/* URLs sidelined by conf.d settings" [Undecided,New] https://launchpad.net/bugs/79162501:32
malevhi folks! I'm having a problem with mysql server, I can not make it automatically start once the server is rebooted. I have the file in /etc/init.d but it does not work. any ideas?01:48
awkisopenwow is it dead in here01:52
malevlooks like :(01:52
awkisopendon't suppose you know anything about UDP01:53
awkisopenalso, in my /etc/init.d, I have a symlink called "mysql" pointing to "/lib/init/upstart-job"01:53
RoyKthere isn't much to know about UDP01:55
RoyKthe protocol is fire-and-forget01:56
malevawkisopen, I have that too:01:56
malev[malev@~] ls -l /etc/init.d/mysql -> lrwxrwxrwx 1 root root 21 2011-05-12 02:17 /etc/init.d/mysql -> /lib/init/upstart-job01:56
awkisopenRoyK: so do you have any idea why I'm having the problem I just described?01:57
malevas you can see I have the same, I can not understand why it's not working!01:57
RoyKthat's part of upstart01:57
RoyKmalev: mysql doesn't use udp01:57
awkisopenhe's not the one with the UDP problem, I am01:57
RoyKI guess you can make it, but it normally uses unix sockets or TCP01:57
awkisopensince it is "fire-and-forget," how am I getting a "connection refused" error?01:58
* RoyK frowns - is tierd01:59
RoyKawkisopen: udp will never give you that - that's a tcp answer01:59
awkisopenbut I am getting that. from udp. right now.01:59
awkisopennetcat -u localhost [port]01:59
RoyKan ICMP message in fact01:59
awkisopenread(net): Connection refused01:59
RoyKto the mysql server?01:59
awkisopenno01:59
awkisopenmy problem has nothing to do with mysql02:00
awkisopenit's merely that I can't get netcat -u to work properly02:00
RoyKwhich port do you probe?02:00
awkisopen939102:00
awkisopenrather, my MediaWiki installation is sending data to 939102:00
awkisopenso I'm running netcat -ulp 939102:00
awkisopenthe first time it sends information to port 9391, I receive it02:01
awkisopenall subsequent sends are met with that error message, "connection refused"02:01
awkisopenI've been testing it out purely with netcat since then - one terminal running netcat -u localhost 9392, the other netcat -ulp 939202:01
awkisopenwhen I type messages into the first terminal, they appear in the second02:01
awkisopenhowever, if I stop running netcat in the first terminal, then start it again with the same command - netcat -u localhost 9392 - and send a message, I get the error "connection refused"02:02
=== oljas_ is now known as oljas
RoyKwhy would mediawiki send data to 9391/tcp?02:03
RoyKor udp02:03
awkisopenit sends Recent Changes edits to a UDP port you specify02:04
awkisopenso that you can keep track of edits on the wiki02:04
awkisopenand announce them to an IRC channel, for example02:04
qman__malev, that's because mysql is now an upstart job in ubuntu, not a sysvinit script02:04
RoyKok, haven't used it that way02:04
RoyKawkisopen: but if so, you need a server to receive them02:04
awkisopenyes. I have that.02:05
qman__malev, service mysql start02:05
awkisopenbut even completely ignoring mediawiki - netcat isn't working as expected.02:05
RoyKawkisopen: if you're getting a connection refused, then the server isn't listening correctly02:05
awkisopenit's listening via the command netcat -ulp 939202:05
malevqman__, that works fine, but I want it to auto start every time I restart the pc02:05
RoyKawkisopen: or you may have a firewall rejecting those packages02:05
malevqman__, any idea what to do?02:05
awkisopenand it receives the first edit without a problem02:06
awkisopensubsequent edits, however, it does not.02:06
qman__if it isn't starting, it's probably a bug02:06
RoyKawkisopen: as I said, connection refused is an icmp message, mostly used for tcp, not udp02:06
qman__try starting, stopping, starting again, and then rebooting02:06
qman__I had to do that with squid02:06
malevqman__, oka!02:06
malevI'm gonna do that02:06
awkisopenfair enough, but everything being used here is UDP02:06
awkisopenand as I said, even purely using netcat commands, it's not working right.02:07
awkisopennetcat -ulp 9392 will only receive data for as long as the netcat -u localhost 9392 process is kept alive. once that process stops, it fails to listen properly, and any subsequent sends to port 9392 are met with "connection refused," which should not happen.02:08
RoyKudp is nice for broadcasts, multicasts and immediate messages, by the millisecond, apart from that, I don't see any reason not to use tcp02:08
awkisopenthat would require me to somehow modify MediaWiki, which i'm not prepared to do02:08
awkisopenI'd rather have what is supposed to be working, working.02:08
RoyKawkisopen: this issue isn't really about ubuntu server :P02:08
* RoyK gets to bed - nit02:09
* RoyK gets to bed - nite02:09
awkisopenIt's about connections on a server02:09
awkisopenUbuntu server02:09
awkisopenHow isn't it about Ubuntu server02:09
awkisopenI'm running these commands on my Ubuntu 10.04.2 server and they aren't coming out with the expected results02:09
awkisopenIf that's not about Ubuntu server, I don't know what is02:09
RoyKif I write a crack-pot-app and run it on an ubuntu server, and it doesn't work, well, it's not an ubuntu server problem, is it?02:10
awkisopennetcat is not a crack-pot-app02:10
qman__while it's an issue on an ubuntu server, it's not really an issue _about_ ubuntu server, specifically02:10
awkisopenso where would I go for support for a package in the Ubuntu repositories02:10
qman__it's an issue with either your app, or netcat, or current linux kernels and userspaces02:10
* RoyK bets a tenner it's the app02:11
awkisopenI'm not even *using* the app at this point.02:11
awkisopenI'm *only* using netcat, which is a package available in the ubuntu repositories.02:11
RoyKawkisopen: networking has been rather stable on linux for 10+ years02:11
RoyKawkisopen: 15+ if you are slack on the bug report numbers02:11
awkisopenMy point being, where do I go for support for netcat?02:11
RoyKapt-get install wireshark02:12
* RoyK is off to sleep - night, ladies :)02:12
awkisopenI can't install wireshark. I'm on a server. I have no GUI.02:13
qman__then tcpdump02:14
awkisopenIt's flooding me with data about my SSH connection...02:15
qman__add "port != 22" to the end02:16
awkisopensyntax error02:16
qman__in quotes02:16
awkisopenoh, sorry02:16
awkisopenalso a syntax error02:16
qman__hmm02:17
qman__oh, my bad02:17
qman__"port ! 22"02:17
awkisopenWell that definitely slowed it down..02:18
qman__that will at least tell you what is really happening02:19
qman__and you can hopefully pinpoint the issue from there02:19
qman__I don't deal much with udp or netcat02:20
awkisopenhmm, I'm still getting an awful lot of data02:20
qman__I'm sure there's an argument to filter it down to udp only02:20
* awkisopen tries grep UDP02:20
qman__and futher still to only those on the port you want02:20
qman__also, use the -n option to greatly speed up packet capture and display02:20
awkisopendoes this also include information being sent within the server?02:21
awkisopenI mean, localhost02:21
awkisopenThis is very confusing...02:23
luitewhere does ubuntu store the default labels for the ubuntu selinux policy?02:24
awkisopenIs there anywhere I could go for support for packages in the official Ubuntu repository?02:26
jMCgawkisopen: ubuntu.com/support ?02:26
awkisopen"Ask the Ubuntu Community directly using our Internet relay chat (IRC) channel."02:27
awkisopenYet I was just told this isn't a matter for IRC... curious.02:27
Piciawkisopen: Whats the question?02:28
qman__it's not that that question is not suitable for this channel, it's just that it's a more general linux question and you may be able to get better help for it elsewhere02:29
qman__whereas this channel is more centered around ubuntu-specific problems and solutions02:29
awkisopenPici: I'm having difficulties with netcat using a UDP connection. If I run netcat -u localhost 9392 in one terminal and netcat -ulp 9392 in another, anything I type in terminal A gets sent to terminal B, no problem. But if I kill the process in terminal A, later typing in the exact same command, I get the error "connection refused" which makes no sense in UDP.02:29
awkisopenIn fairness I have no idea whether it's Ubuntu-specific or not...02:30
Piciawkisopen: Likely not, you may want to ask in ##networking, although I'm not sure how busy they are this time of day. (I'm not usually on IRC at this hour)02:30
awkisopenPici: Thank you ^_^02:30
qman__very doubtful, if anything it would affect all debian-based systems02:32
qman__but it's more likely just general linux networking02:32
luitethere's /etc/selinux/ubuntu/contexts/files/file_contexts, but that's a huge file, isn't it built from smaller source files?02:34
awkisopenAs it turns out, RoyK and qman__, it *is* a Debian-specific issue: http://paste.pocoo.org/show/399215/02:55
awkisopenThanks to ##networking's sleuthing skills02:56
awkisopenSo whoever bet a tenner it was the app is, in fact, dead wrong, and there's unfortunately not a thing that can be done to fix this02:57
=== smoser` is now known as smoser
donnieMy new Ubuntu-server install automatically points dnsdyn domain to local host. I had to install ddclient on ubuntu-desktop to get it working. Is this the way ubuntu-server works?05:13
ammarhey i need help my ubuntu-desktop when i go to vi my keybord mess up how do i fix problem05:42
twbdonnie: define "dnsdyn"05:43
ammarit big problem i cant edit what im doing05:44
donnietwb I am sorry i mean DynDNS or Dynamic DNS www.dyndns.com05:44
ScottKammar: This isn't a support channel for Ubuntu Desktop.05:45
twbdonnie: by default Ubuntu will not update any dynamic DNS service.05:45
ammari know i worrying if you would know the problem05:45
donnietwb ah i guess it will stop working as soon as my ip changes.05:47
twbIf you're going to "foo.example.net" and that resolves to 127.0.0.1 or 127.0.1.1, that's because it's in /etc/hosts as such.05:48
twbIf so, you should test resolution of foo.example.net on a third party, e.g. on sdf.org05:48
donnietwb What does DNS Server or/and BIND9 do that i installed with ubuntu-server installation?05:51
twbBy default?  Probably nothing,05:52
donnietwb I will just install ddclient to update ip. Thanks for your help.05:53
oyiptonghey guys06:09
oyiptongsay i'm cloning ubuntu server vm's06:09
oyiptongshould i regenerate the snake-oil cert for each machine?06:10
oyiptongwhat other things should i regenerate so that the different users of the cloned vm's cannot spy on each other06:10
oyiptong?06:10
oyiptongs/users/owners/g06:10
twboyiptong: you should not be using snake-oil certs anywhere06:11
twbThey are BY DEFINITION not safe06:11
oyiptongi mean... postgres uses it by default, so does apache on install. its for dev machines06:11
oyiptongthose won't run in production06:12
twbThat is because it's not possible for the default configuration to have your valid SSL keypairs.06:12
twbYou emphatically should generate proper SSL keys in a proper SSL trust hierarchy, but if you are too lazy or stupid to do that, then regenerating the snakeoil certs is probably slightly better than not doing so.06:13
oyiptongare there any other certificates or keys that i should regenerate if the servers are cloned?06:13
twbSSH host keys06:13
twbSSL and SSH will be the first 90%06:13
oyiptongright!06:14
twbThere's probably another 90% that I can't think of06:14
twbFor SSH, just delete them then run "dpkg-reconfigure openssh-server"06:14
twb(Unless you're running GNU SSH or something.)06:14
oyiptongthank you very much. i'm using the default openssh-server. so bsd06:15
twbWill unattended-upgrades pull in new kernels?07:18
twbIn one case, I specifically don't want it to, because I'm using third-party ko's that need to be rebuilt by hand afterwards, so an unattended upgrade + unscheduled power outage = sad twb07:18
=== gpc is now known as IdleOne
twbIt looks like it does, because on another host that has u-a installed, and /boot mounted ro by default, apt reports it's in an inconsistent state -- looks like it tried to upgrade the kernel and failed because it couldn't write to /boot07:42
jmarsdentwb: /etc/apt/apt.conf.d/50unattended-upgrades     includes a list of packages not to unattendedly upgrade ...08:27
twbThanks.08:27
jmarsdenYou're welcome.08:27
twbjmarsden: while you're there, do you know where the example dpkg pre/post hooks for mount -o remount,rw /usr went?08:28
twb(I want them except for /boot instead of /usr)08:28
jmarsdenNo, I'm not sure where I'd look for those...08:29
twbI thought they were in apt_preferences(5) :-(08:37
twbDPkg::Pre-Invoke  { "mount -oremount,rw /boot"; }08:43
twbDPkg::Post-Invoke { "mount -oremount,ro /boot"; }08:43
* twb tries08:43
twbWorks!08:44
jmarsden:)08:45
jmarsdentwb: There seems to be an example in /etc/apt.conf.d/99tmpfs-noexec  on my machine here... maybe that is what you were thinking of?08:51
twbNo, it was not actually on by default, but it was an example08:51
jmarsdenThat one is present by commented out... OK.08:52
jmarsdens/by/but/08:52
twbOh08:52
twbI don't have that file tho08:52
jmarsdenHmmm.  That is on a 10.0.4.2 Ubuntu desktop... not sure where I got it from, if it didn't come by default.08:53
twblucid and sid servers here08:53
twbdpkg -S might tell you08:53
jmarsdenAh, maybe Ubuntu adds it.  dpkg -S says it can't find it...08:53
=== rsaidan is now known as nerens
=== koolhead11|away is now known as koolhead11
uvirtbotNew bug: #791747 in openssh (main) "Cannot add keys from PKCS#11 provider" [Undecided,New] https://launchpad.net/bugs/79174710:21
RoyKwtf - I create /dev/md3 and after reboot ubuntu has /dev/md_d3, not md3. The create command was 'mdadm --create /dev/md3 --level=5 --raid-devices=2 /dev/sd[ab]' and aslo, after a reboot, the new device shows up without sdb, only one drive!10:39
beshtgood morning11:05
beshti was wandering if anyone could help me with a backup question11:05
beshti am thinking of managing backups with rsnapshot, as it can do ssh and lvm  and is quite easy to manage, but i cannot find any information on how to use ssh and lvm together11:06
beshtcan anyone offer some experience on that topic?11:06
lauhello any issues with ext3 and jdb2 ?11:08
laus/ext3/ext411:08
RoyKwhat's jdb2?11:17
NCommanderDoes anyone know who (if anyone) will be creating the LXC task for oneiric?11:55
zulNCommander: eh?12:09
jenniefriends please help me in downloading these image   files from  http://emagazine.pdgroup.in/pratiyogitadarpan/01052011/pages.xml12:11
jenniethese files are in flash player here at this link http://emagazine.pdgroup.in/pratiyogitadarpan/01052011/Home.aspx12:12
cocoa117anyone had experience on how to backup ufw rules, and put it to freshly installed Ubuntu?12:21
cocoa117I cp -av /var/lib/ufw/user.rule, but in the new system it doesn't run12:21
cocoa117after sudo ufw enable, and sudo ufw status, none of the rules are running12:22
cocoa117k, it seems the /var/lib/ufw/user.rule is now actually function in /lib/ufw/user.rule!!!12:31
NCommanderzul: we need an LXC task in the server image for ARM as LXC + OpenStack is our cloud solution in favor of actual virtualization12:47
jdstrandcocoa117: the files to backup are /etc/ufw and /lib/ufw/ufw*rules12:52
jdstrandcocoa117: on recent systems. ufw used to keep files in /var/lib/ufw. if you have your files in /var/lib/ufw, then just put them in /lib/ufw on the new system12:52
jdstrandcocoa117: this sounds like you are doing some sort of a migration from say hardy to lucid (or later). if this is the case, do what I said and it should work12:53
cocoa117jdstrand, yes, thanx for clear that up. i just start to realise it now12:55
lauRoyK: this one https://bugs.launchpad.net/ubuntu/+source/linux/+bug/60756013:02
uvirtbotLaunchpad bug 607560 in linux "jbd2 writing block every 5 - 10 seconds, preventing disk spin-down and making noise" [Undecided,Confirmed]13:02
lauit sounds like a kernel issue , since I switched to latest 2.6.38-9-generic13:03
lauall my fs (ext4) are having issue writing every few seconds13:03
lauin the bug description lots of disks are seagate , but mine is western digital13:05
laudon't know if it is hardware related (i don't think so) , fs related13:06
uvirtbotNew bug: #788520 in tomcat6 (main) "crash in tomcat web service on file write" [Undecided,New] https://launchpad.net/bugs/78852013:35
zulNCommander: sure but tasksel is going away, the openstack lxc is going to be handled by orchestra though13:35
NCommanderzul: tasksel is going away?13:38
NCommanderWith what? (and also, we still need a task for germinate to handle)13:38
zulNCommander: in the iso yes, but openstack will be seeded when the MIRs are done13:38
NCommanderzul: as part of the virtualization host task, or a new one?13:40
zulNCommander: undetermined13:40
NCommanderzul: I'd like to see it as a new one simply because the existing virtualization host task is slated to be unsupported on armel this cycle (we have no hardware which can support virtualization on ARM)13:41
zulNCommander: ok i think we can do that13:42
NCommanderGreat :-)13:42
zullynxman: is the mcollective-plugins in a bzr branch?13:50
lynxmanzul: nope, it's pending merging upstream13:51
zulwhat about the debian packaging?13:51
lynxmanzul: ah I see where you're going now :)13:51
lynxmanzul: I can create the branch if you want13:51
zullynxman: yes please13:52
lynxmanzul: I'll create one for the provisioner too, you have the package available as well in the same ppa13:52
lynxmanzul: lp:~lynxman/+junk/mcollective-plugins13:54
lynxmanzul: also lp:~lynxman/+junk/mcollective-provisioner for the provisioner13:55
zulcool13:56
Davieylynxman: Do you have a branch with longer history of mcollective-plugins ?14:00
lynxmanDA14:01
lynxmaner14:01
lynxmanDaviey: it's all in git unfortunately14:01
Davieylynxman: Is that Ubuntu enteries in git, or upstream git?14:01
lynxmanDaviey: upstream git, our development branch for our plugins was removed sometime ago14:01
Davieyargh.14:02
lynxmanDaviey: if I just knew... :)14:02
Davieyheh.  Are you working on it atm?14:03
Daviey(Some of the changelog enteries make it a little hard to work out what has been going on)14:03
lynxmanDaviey: nope, that's the changelog from our mcollective-plugins, what happened in this last version is that we merged in our own plugins (as patches for now)14:04
Davieylynxman: Okay, super - what are you doing on that package this week?14:04
lynxmanDaviey: so far in the ppa we had one mcollective-plugins and one mcollective-canonical-plugins packages14:04
lynxmanDaviey: nothing else, it's all good until we get merged upstream14:04
Davieylynxman: so the need for -plugins is being totally dropped?14:05
Davieyand merged into upstream mcollective14:05
Daviey?14:05
lynxmanDaviey: nope, merged to the upstream mcollective-plugins package :)14:05
lynxmanDaviey: -plugins are still and will still be needed14:05
Davieyhmm.. so mcollective-canonical-plugins is going into mcollective-plugins?14:06
lynxmanDaviey: yes14:06
lynxmanDaviey: need to meet with Volcane in a week or two to get it done14:07
zullynxman: i just had a look at the debian/patches the names of the patches are....umm....not good can you give them a bit more descriptive names please?14:07
lynxmanzul: I was afraid you would say that ;) on it14:08
Davieylynxman: am i right in saying that -plugins upstream is still puppet?14:08
lynxmanDaviey: yes14:08
Davieylynxman: zul doesn't miss a trick! :)14:08
lynxmanDaviey: :D14:08
Davieylynxman: Well adam_g is spending the afternoon with puppet, do you want anything asked of them?14:08
lynxmanDaviey: no need to, the plugins are maintained by Volcane who's in London, I just need to get my arse back14:09
lynxmanDaviey: we had a planned meeting last Friday but unfortunately he couldn't make it14:09
i2v8anhi, could someone direct me to some good documentation for setting up exim4 to use remote smtp?14:10
Davieylynxman: Maybe, i should come and visit at some point :)14:10
smosersmb, you have any clue on bug 78493714:10
uvirtbotLaunchpad bug 784937 in cloud-init "/mnt not mounted, swap not used, disk is xvde" [Medium,Confirmed] https://launchpad.net/bugs/78493714:10
lynxmanDaviey: I'll be around again from June 13th onwards, so please drop in anytime :)14:10
Davieylynxman: i'll do that!14:12
lynxmanDaviey: yay ^^14:12
lynxmanzul: is this better? http://pastebin.ubuntu.com/616732/14:21
zullynxman: the fact.ddl.patch fact.rb.patch is for the same plugin right?14:23
lynxmanzul: yes, two different files though14:23
lynxmanzul: same goes for mc-fact14:23
zullynxman: i would just combine them since its for the same plugin will make maintenance alot easier if the code hasnt gone upstream yet and we get a newer snapshot14:24
lynxmanzul: okidoki, doing that14:24
sommermorning all, weeee14:27
lynxmanzul: http://pastebin.ubuntu.com/616741/14:28
zullynxman: cool now make the change in bzr :)14:29
lynxmanzul: yessir14:29
lynxmanzul: all done, pushing new package in the ppa14:31
zullynxman: no need14:31
lynxmanzul: heh okay :)14:31
RoastedHow can I see what IPs I handed out from my Ubuntu server?14:32
lynxmanRoasted: you have a dhcp server installed?14:46
Roastedlynxman, I got it. It's under /var/lib/dhcpd/dhcpd.leases14:46
Roastedthanks though14:47
lynxmanRoasted: np :)14:47
quesoShould sudo hostname newname be updating /etc/hostname and /etc/hosts ?  Or do those have to manually be changed?14:53
lynxmanqueso: as far as I understand it'll change /etc/hostname only14:53
quesolynxman: unfortunately it didn't even do that14:53
quesolynxman: cat /etc/hostname gives me the original name, but when I use the hostname command it displays the new one.14:54
lynxmanqueso: hm...14:54
quesolynxman: I guess as root doing echo newname > /etc/hostname accomplishes the same thing.14:56
lynxmanqueso: it does, it's ugly though :)15:00
quesolynxman: what's the right way?15:00
lynxmanqueso: the one you were doing ;)15:01
queso(I'm trying to do it in a script)15:01
quesolynxman: ha, okay, but that one doesn't seem to work.15:01
lynxmanqueso: that's the weird thing15:02
jpdsCheese.15:03
lynxmanjpds: good point ;)15:05
quesoAfter manually modifying /etc/hostname, is a reboot necessary, or restarting some network processes?15:06
lynxmanqueso: a reboot after a hostname change is cleaner15:16
quesolynxman: okay, thx15:16
quesoWhere is the standard place to put a self-written script, intended to be run with root privs (sudo), but by other users (such that it will be in their path)?15:22
zullynxman: you havent updated your bzr branch15:23
lynxmanzul: hmm I pushed the code...15:30
smoserjamespage, SpamapS our friend udev is rearing head again.15:30
smoserbug 79186815:30
uvirtbotLaunchpad bug 791868 in udev "udevd dies, loses events, network doesn't come up" [Undecided,New] https://launchpad.net/bugs/79186815:30
lynxmanzul: it's there :)15:31
zulyeah it is but you removed the files but didnt add them back15:33
lynxmanzul: err :)15:37
lynxmanzul: fixing!15:38
lynxmanzul: and done15:38
hallynjamespage: anything new i should know since http://ubuntuserver.wordpress.com/2011/03/02/natty-jenkins-for-ubuntu-call-for-testing/, or can i still follow those instructions?15:49
jamespagehallyn: lemme take a look15:51
jamespageyep - thats still good for natty15:51
zullynxman; for your *.postinst why are you using invoke-rc.d since mcollective is an upstart job?15:55
hallynjamespage: and for o?15:57
lynxmanzul: because you told me to use it instead of service :)15:57
jamespagehallyn: not avaliable yet either in PPA or archive15:57
jamespageworking on that one now15:57
=== Refael_ is now known as FernandoTertiary
hallynjamespage: ok, thx.  will test in natty, then hoping to use it with ensemble15:58
lynxmanzul: service would exitstate 1 if the service wasn't running and made the postinst fail, invoke-rc.d doesn't15:58
hallyn(dunno if that needs oneiric or not)15:58
jamespageshould be OK on natty15:59
zullynxman: did i? well i was wrong you should be able to do stop mcollective 2>/dev/null || true ; start mcollective || true15:59
jamespageare you going to write a formula?15:59
hallynyup15:59
jamespagegreat - I had the same idea; if you want to work together on that more that happy to16:00
hallynexcellent16:00
hallynbut first i need to just use it :)  get the feel fir it16:00
hallynthx, ttyl16:00
lynxmanzul: want me to fix it now? it should be quite fast16:03
zullynxman: sure16:03
lynxmanzul: okay on it16:03
=== oyiptong_ is now known as oyiptong
lynxmanzul: done16:10
zullynxman: cool16:15
=== oyiptong_ is now known as oyiptong
jamespageSpamapS: around?17:08
bencer_hi all17:09
SpamapSjamespage: indeed, hallo!17:10
jamespageSpamapS: hey - any chance you could put your SRU hat on a look at bug 78383617:11
uvirtbotLaunchpad bug 783836 in openldap "slapd syncrepl failing using SASL" [High,In progress] https://launchpad.net/bugs/78383617:11
jamespagethere are a few challenges around reproducing this issue (i.e. we can't)17:11
jamespagebut the fix has good heritage17:12
jamespageand confirmed resolution of the issue17:12
jamespage(albeit elsewhere)17:13
SpamapSjamespage: right I remember that one.17:14
SpamapSjamespage: is it uploaded to -proposed already?17:15
jamespagenot yet - Daviey is on the case there17:15
SpamapSIt should be fixed in Oneiric just by virtue of the newer upstream, yes?17:16
jamespageyep - Oneiric does include this fix17:16
=== med_out is now known as medberry
mecodehey all - trying to get into better habits. i usually ssh as root into my ubuntu server and do everything that way. this time around i've made myself a user account and given myself sudo privileges. permissions are throwing me off a little bit. how should i set the permissions on /var/www so that i can edit stuff in there (well pull using git, but same thing) and also www-data (the nginx user) can have access?17:23
smwmecode, I would use sudo to git pull17:24
smwmecode, just make sure it is readable by the nginx user17:25
smwby default it is17:25
smwmecode, so... no problem, right? :-)17:25
mecodeok so just chown the /var/www for www-data and then use sudo to get around in there? seems like it'd work just fine17:25
mecodeok i'll go with that then, thanks17:25
smwno17:26
smwmecode, I would not give nginx write access17:26
smwmecode, I would only chown the folders it NEEDS to write to17:26
mecodeok17:26
mecodethen who has write access?17:26
mecodejust my user then?17:26
smwmecode, root17:26
mecodeoh ok17:26
smwor your user17:27
smwmecode, the idea is that nginx should have as little power as possible.17:28
mecodethat makes sense - in case it gets compromised i guess17:28
smwmecode, so, if you have a bug, they can't change the code17:28
ruben23hi guys i installll phpmyadmin on ubuntu server- but ti did not ask me to be used fro apache2, directly install now when i try to open http://ipaddress/phpmyadmin- its timeout17:46
m3asmisudo service isc-dhcp-server start  ___________17:48
m3asmi * Starting ISC DHCP server dhcpd   _____________* check syslog for diagnostics.   [fail]17:48
m3asmi sudo service isc-dhcp-server start * Starting ISC DHCP server dhcpd * check syslog for diagnostics. ...fail! ..18:02
pmatulism3asmi: check syslog for diagnostics18:03
m3asmipmatulis: No subnet declaration for eth0 (10.42.44.1).18:03
pmatulism3asmi: there you go18:03
m3asmihow18:04
m3asmipmatulis: how can I configure it18:04
pmatulishttp://www.google.com/search?client=ubuntu&channel=fs&q=No+subnet+declaration+for+eth0&ie=utf-8&oe=utf-818:05
uvirtbotNew bug: #791944 in samba (main) "package samba 2:3.5.8~dfsg-1ubuntu2.2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1" [Undecided,New] https://launchpad.net/bugs/79194418:06
frewsxcvin arch, there's an array you fill out for daemons you want to load on startup. is there an equivalent in ubuntu?18:13
=== robrt` is now known as robrt``
SpamapSfrewsxcv: by default, if something is installed, it starts18:27
=== robrt`` is now known as robrt`
zulhey SpamapS18:33
frewsxcvwell i don't always have the option of installing stuff from the repositories18:35
smosersmb, around ?18:47
nigelbkirkland: around?19:04
RoAkSoAxnigelb: he's on a trip I think19:11
nigelbRoAkSoAx: ah, its fine then.  I'll just reply on his MP :)19:11
RoAkSoAx;)19:11
=== eerie_ is now known as eerie
uvirtbotNew bug: #791984 in dovecot (main) "dovecot-postfix upgrade overwrites main.cf settings" [Undecided,New] https://launchpad.net/bugs/79198419:26
smoserhggdh, can you approve me for ~ubuntu-server-iso-testing-dev19:26
hggdhsmoser, of course19:26
hggdhsmoser, welcome :-)19:28
kirklandnigelb: howdy19:35
kirklandnigelb: am now19:35
nigelbkirkland: I wanted to ask you the license for the comments.png in the summit MP, but I got http://people.ubuntu.com/~mhall119/icons/icons_preview.html :)19:36
kirklandnigelb: ah, yeah much better19:36
nigelbI was fixing that up today :)19:36
kirklandnigelb: fwiw, i got comments.png from famfamfam-silk, which is in the archive19:36
nigelb:)19:36
kirklandnigelb: but those from mhall are much nicer19:36
nigelbkirkland: Yup :)19:37
kirklandnigelb: sweet, can I test it somewhere?19:37
nigelbkirkland: sadly, we don't have a test server, I'm only submitting MPs19:38
nigelbI could give you a screenshot though once I'm done with this.  (still working on it)19:38
kirklandnigelb: heh19:38
kirklandnigelb: you guys need ensemble + ec2 :-)19:39
kirklandnigelb: sure19:39
nigelbkirkland: no no, we want Canonical to pay for ec2 :P19:39
nigelbmhall119 is working on getting us a server, so it should happen soonish19:40
=== skrewler_ is now known as skrewler
nigelbkirkland: Loosk good? http://i.imgur.com/u9scA.png19:47
nigelb*looks19:48
hggdhsmoser, are you generating oneiric ec2 images?19:49
smoserhggdh, well, yesh.19:51
smoseri just released some!19:51
smoserhttp://uec-images.ubuntu.com/releases/oneiric/alpha-1/19:52
hggdhsmoser, ooooohh sooo cool19:52
erichammondsmoser: Are we getting fresh natty, too?19:57
smosererichammond, do you have a reason for wanting newer natty?19:57
smoseri'm in the process of releasing updated lucid19:57
erichammondsmoser: Seems like there were some good bugs fixed recently, or perhaps I'm not paying attention closely enough.19:58
smosererichammond, http://paste.ubuntu.com/616973/20:01
smoserthat is the collected changes between release and most recent natty20:01
smoserwas there something that jumped out of that list as particularly noteworthy?20:02
smoserdid you really need the "Egypt abandons DST in 2011" fix ? :)20:04
erichammondsmoser: Thanks, nothing jumps out from that list.  Perhaps it was another Ubuntu version or a bug that is close to being fixed.  It's hard to keep track with so many other things going on in life.20:21
smoserwhat could possibly be more important than tracking bug fixes to a operating system release?20:21
kirklandnigelb: sure, thanks!20:24
nigelb\o/20:24
_Neytiri_how do i set up VM's on my server?20:43
pmatulis!kvm | _Neytiri_20:46
ubottu_Neytiri_: kvm is the preferred virtualization approach in Ubuntu. For more information see https://help.ubuntu.com/community/KVM20:46
_Neytiri_ok20:52
_Neytiri_can i still use KVM if my cpu doesent support hardware virturalation?20:56
hallynyou can use qemu20:57
soren_Neytiri_: Well, I don't know about "use".. It functions, but it's really, really slow.20:57
hallynwithout acceleration20:57
hallyneh, iit can be acceptable depending on what you're doing :)20:57
_Neytiri_i am just running a DNS server20:58
_Neytiri_so how would i use qemu, i manage the server i want to run vm's on via ssh21:02
irong33kwhen i installed apache like 'tasksel ^lamp' apache services cant work...without first being connected to the net,.any solutions?21:03
irong33kthanx 4 your help :(21:05
guntbertirong33k: as I said - I've never seen that: please have a look into /var/log/apache2/error.log - there you should see *why* it doesn't start21:05
RoAkSoAxkirkland: o/!! Were u able to test the second stage?21:08
kirklandRoAkSoAx: negative, not yet21:09
RoAkSoAxkirkland: alrighty! no worries!21:09
jonesst1anybody got vmware's esxi vmtools to install on ubuntu?21:15
kirklandRoAkSoAx: is Oneiric desktop working for you in Testdrive?21:24
kirklandRoAkSoAx: its not working at all for me21:27
Joshua__I am trying to configure postfix to send outgoing mail to my exchange server on the LAN, can anyone help with that? Server 11.0421:30
jonesst1joshua u need a smarthost setting, it probably goes in main.cf but im not a postfix guy21:31
Joshua__where is that located at?21:31
jonesst1um /etc/postfix/21:33
jonesst1let me go look on rhel6.1 is should be the same thing21:34
kirklandRoAkSoAx: also, I'm testing Cobbler on Oneiric21:37
kirklandRoAkSoAx: and I'm following https://help.ubuntu.com/community/Cobbler21:37
=== skrewler_ is now known as skrewler
jonesst1looks like its the relayhost parameter21:37
kirklandRoAkSoAx: looks like there's a step missing between your "Importing" and "Deployment" stages21:37
kirklandRoAkSoAx: the part about adding the machine to Cobbler21:37
jonesst1so relayhost=mail.domain.com21:37
jonesst1and restart postfix21:37
jonesst1and test21:37
jonesst1:q!21:38
jonesst1oops21:38
jonesst1doh21:38
* RoAkSoAx checks21:41
RoAkSoAxkirkland: you mean adding a "system"21:41
kirklandRoAkSoAx: you have to add the machine to cobbler21:42
kirklandRoAkSoAx: if you want to be able to install it by cobbler21:42
RoAkSoAxkirkland: hold on, let me check21:43
kirklandRoAkSoAx: i'm testing powernap now21:43
RoAkSoAxkirkland: you mean this? : https://fedorahosted.org/cobbler/wiki/DeployFeature21:44
kirklandRoAkSoAx: right21:45
RoAkSoAxkirkland: haven't yet tested that but will do now21:45
RoAkSoAxkirkland: the "deploy" command does not exist21:47
kirklandRoAkSoAx: okay, powernap worked for me21:49
kirklandRoAkSoAx: looked at the diff, looks reasonable, good work!21:49
kirklandRoAkSoAx: shall i release and upload?21:49
RoAkSoAxkirkland: please!21:49
kirklandRoAkSoAx: wilco21:49
RoAkSoAxkirkland: so anyways, I could add the documentation to add systems but the "cobbler deploy" command does not yet exists21:50
hallynjamespage: do i need to install a jenkins git plugin separately, or should that be there?21:54
kirklandRoAkSoAx: uploaded, thanks!21:55
RoAkSoAxkirkland: thank you!21:55
hallynzul: are you in the mood to sponsor a trivial apache upload for me?  :)21:55
kirklandRoAkSoAx: re: my cobbler questions ....21:55
zulhallyn: can do it tonight21:55
kirklandhallyn: i can, if zul isn't around21:55
kirklandRoAkSoAx: so i have a cobbler server running21:56
kirklandRoAkSoAx: in virt-manager21:56
RoAkSoAxkirkland: ok21:56
kirklandRoAkSoAx: and i created a new virtual machine, also in virt-manager21:56
kirklandRoAkSoAx: both on the bridge interface21:56
kirklandRoAkSoAx: so i boot the new vm21:57
RoAkSoAxkirkland: ok21:57
kirklandRoAkSoAx: tell it to boot from the network21:57
kirklandRoAkSoAx: it doesn't get the pxe information, though21:57
hallynzul: thanks, it's the trivial debdiff attached to bug 78701321:57
uvirtbotLaunchpad bug 787013 in apache2 "Please merge apache2 2.2.19-1 (main) from debian unstable (main)" [Wishlist,Fix released] https://launchpad.net/bugs/78701321:57
hallynkirkland: thanks for the offer.  this is far from urgent :)21:57
kirklandRoAkSoAx: i presume because the cobbler server doesn't know about the new vm's mac addr21:57
kirklandhallyn: np21:57
kirklandhallyn: any luck with oneiric in kvm?21:58
RoAkSoAxkirkland: uhmmm no I don't think so21:58
hallynkirkland: hm, i just got the failure on 'try ubuntu'21:58
RoAkSoAxkirkland: so when you tell it to boot from the network, it will try to search for a PXE server in the network21:58
hallynkirkland: looks liek we need spice :)21:58
kirklandhallyn: you should get (back) on that :-)21:58
hallynkirkland: the ball is in Daviey's court actually21:59
RoAkSoAxkirkland: so the DHCP server does not know of any PXE's so the idea is to tell the DHCP server that the VM is the cobbler server21:59
hallynhm, and -vga vmware locked up over vnc22:00
hallynwell, that sure looks bug-worthy22:01
hallynkirkland: have you filed one, or should I?22:01
RoAkSoAxkirkland: so for example, in my DD-WRT router i tell this to DNSmasq: dhcp-boot=pxelinux.0,,192.168.230.122:02
kirklandhallyn: i haven't sorry;  please do22:02
hallynk22:02
RoAkSoAxkirkland: so whenever I fire up a VM that uses the bridge, then the router dhcp's server tells that the IP is the boot server and it obtains the list of available profiles from there22:02
RoAkSoAxnegronjl_: ping22:02
kirklandRoAkSoAx: ah, right22:02
kirklandRoAkSoAx: so how should I do this over virt-manager?22:03
negronjl_RoAkSoAx: hi22:03
=== negronjl_ is now known as negronjl
RoAkSoAxnegronjl_: did you ever do PXE of a VM using a cobbler server that was a VM using the same bridge?22:03
RoAkSoAxkirkland: I'd use koan :)22:03
negronjlI did but, without koan kirkland, RoAkSoAx22:04
RoAkSoAxnegronjl: how were you able to tell that the cobbler server in the VM was the PXE? did you modify the router or did you do something in the host?22:04
negronjlI suspect that it would be a lot easier with koan22:04
kirklandnegronjl: yeah, how did you do it :-)22:05
negronjlLet me get the steps together and put them on pastebin22:05
lynxmannegronjl: share the pastebin love, I would like to know as well :)22:05
kirklandzul: lynxman said that you sponsored his mcollective-plugins into oneiric?22:05
negronjlsure thing lynxman22:06
RoAkSoAxkirkland: if you wanna use koan, please use the virtinst from ppa:ubuntu-virt/ppa22:06
kirklandRoAkSoAx: okay....why's that?22:06
negronjlkirkland, RoAkSoAx, lynxman:  I started by creating a bridge interface on the host system.  Here is the one I made on my laptop: https://pastebin.canonical.com/48138/22:09
RoAkSoAxkirkland: cause when using koan, it hands of the url of the HTTP directory to virtinst, which examines it to determine the distro and stuff, and the one in PPA has more logic that I discovered later, it was missing from the one I patched in Natty22:09
RoAkSoAxkirkland: will be uploading to Oneiric soon22:09
kirklandRoAkSoAx: perfect, that's what I was checking ;-)22:10
negronjlkirkland, RoAkSoAx, lynxman: I started by creating a bridge interface on the host system. Here is the one I made on my laptop: http://pastebin.ubuntu.com/617064/22:11
hallynjamespage: (btw, nm, found my answer, thx :)22:11
negronjlkirkland, RoAkSoAx, lynxman: In virt-manager, create a machine and bind it to that interface ( in my case, br0 ).22:13
negronjlkirkland, RoAkSoAx, lynxman: Craate n-number of machines, all of them bound to that interface22:13
negronjlkirkland, RoAkSoAx, lynxman: That creates your network.22:13
negronjlkirkland, RoAkSoAx, lynxman:  For DHCP and access via the host to the internet, I have the following on my machine:22:14
negronjlkirkland, RoAkSoAx, lynxman: sudo /usr/sbin/dnsmasq --strict-order --bind-interfaces --pid-file=/var/run/libvirt/network/br0.pid --conf-file= --except-interface lo --listen-address 10.1.1.1 --dhcp-range 10.1.1.100,10.1.1.200 --dhcp-lease-max=253 --dhcp-no-override22:14
negronjlkirkland, RoAkSoAx, lynxman: On one of the machines, install ubuntu-orchestra-server.22:15
negronjlkirkland, RoAkSoAx, lynxman: PXE boot any of the other machines....it should work.22:15
RoAkSoAxnegronjl: cool!!22:16
RoAkSoAxkirkland: yeah that there should do the work, so dnsmasq in the host itself is given addresses to the VM's. If it doesn't work out of the box, then, you'd just need to also especify that the PXE is the VM running cobbler22:16
RoAkSoAxs/given/giving22:17
negronjlkirkland, RoAkSoAx, lynxman: In my setup, I have the orchestra-server running on static IP and the rest of the clients running off of dhcp.22:17
kirklandnegronjl: rock!22:18
kirklandRoAkSoAx: perhaps you could add a wiki page under the Cobbler documentation with this magic from negronjl ;-)22:18
RoAkSoAxkirkland: will do!!!22:18
kirklandRoAkSoAx: cheers22:18
negronjlkirkland, RoAkSoAx, lynxman: If all else fails, I can always just dump my configuration and images somewhere for you to take ( chinstrap comes to mind)22:18
kirklandRoAkSoAx: do you mind if I make cman a recommends of cobbler (promote from a suggests)?22:19
lynxmannice22:19
kirklandRoAkSoAx: that will help with one of the cobbler check messages22:19
RoAkSoAxkirkland: If you want, but I'm uploading fence-agents either by the end of the week or next week22:19
kirklandRoAkSoAx: is that better?22:19
kirklandRoAkSoAx: looks like cman is in main ...22:19
RoAkSoAxkirkland: yeah cman pull useless cluster stack stuff and contains the fence-agents that have been separated into its own source package22:20
RoAkSoAxkirkland: i'm uploading fence-agents and filling a MIR22:20
RoAkSoAxkirkland: we could put that in a PPA if you like until that happens22:20
kirklandRoAkSoAx: okey doke;  make sure you remove cman as a suggests, and add it as a recommends22:20
RoAkSoAxkirkland: will do22:21
kirklandRoAkSoAx: cool22:21
kirklandRoAkSoAx: oh, powernap feature/request for you ...22:22
RoAkSoAxkirkland: I have fence-agents 3.1.4 here: https://launchpad.net/~andreserl/+archive/ha/+packages and it includes one fence-agent for eaton device sadded by arnaud recently22:22
RoAkSoAxkirkland: shoot :)22:22
kirklandRoAkSoAx: could you make powernap touch/remove a file in /var/run when a system is powernapping/not-powernapping?22:22
kirklandRoAkSoAx: I'd like to add an indicator in byobu .zZ that shows when a system is powernapping22:23
kirklandRoAkSoAx: or is there an easy way?22:23
RoAkSoAxkirkland: uhmmmmmmmmm let me think22:24
kirklandRoAkSoAx: nevermind, i'm hacking it myself now22:25
RoAkSoAxkirkland: i was thinking that maybe pm-powersave had something we could use22:25
RoAkSoAxkirkland: but there isn't really22:25
RoAkSoAxkirkland: so yeah I could add that22:25
=== skrewler_ is now known as skrewler
kirklandRoAkSoAx: something like this:22:30
kirklandRoAkSoAx: http://paste.ubuntu.com/617078/22:30
RoAkSoAxkirkland: yeah we could do that, or whithin the daemon itself to create the file after executing pm-powersave and removing the state file when recover action was taken22:32
RoAkSoAxkirkland: cause, it will only be useful when in powersave22:32
kirklandRoAkSoAx: hmm22:33
kirklandRoAkSoAx: i'm testing this now22:33
RoAkSoAxkirkland: ok ;)22:33
RoAkSoAxkirkland: oh btw... have a patch for bikeshed. This should not break the release-build script cause of the source format: http://paste.ubuntu.com/617085/22:37
kirklandRoAkSoAx: seems to be working well for me22:38
kirklandRoAkSoAx: i'm going to commit22:38
kirklandRoAkSoAx: feel free to enhance/rework22:38
kirklandRoAkSoAx: ah22:38
kirklandRoAkSoAx: nice fix22:38
RoAkSoAxkirkland: hehe It had me scratching my head for a while :)22:39
kirklandRoAkSoAx: heh22:40
lauI am having a lot of jbd2 write on my ext4 fs , I rolled back to 2.6.35 but it is the same22:41
RoAkSoAxkirkland: I was also thinking on adding WARN methods, so that we could nose notify-send or something instead of only wall messages22:41
kirklandRoAkSoAx: intersting ...22:42
kirklandRoAkSoAx: i like it22:42
laudo you have any idea how to figure out why all these writes ? I looked at log files without any evidence22:42
RoAkSoAxkirkland: or even send emails to the administrator22:42
kirklandRoAkSoAx: release-build patch worked *perfectly*22:45
RoAkSoAxkirkland: heheh I must admit that without barry's help would have found the solutiuon lol!22:46
kirklandRoAkSoAx: i recently added a release-test script too22:48
RoAkSoAxkirkland: what does it do?22:48
RoAkSoAxkirkland: btw.. I'm getting the UPS on monday22:48
kirklandRoAkSoAx: same as release-build, but it doesn't change the changelog entry22:49
kirklandRoAkSoAx: so that you don't have to revert that22:49
RoAkSoAxkirkland: cool!22:49
OldschoolI'm having trouble installing a software Raid5 11.04 server - anyone have experience with this?  I think my problem has to do with Grub222:55
OldschoolI've created my RAID and mounted it using LiveCD, but getting Grub2 installed and working is what is causing my problems.22:56
pmatulisOldschool: you don't need a live cd to install a server22:57
OldschoolI can't boot without one.  The install usually will leave me with a GRUB> prompt.22:57
hallynjamespage: well, the jenkins git plugin appears to die a horrid death trying to git-clone git://www.linux-cr.org/pub/git/linux-cr.git22:58
hallynon that failure, i leave this for another day22:58
pmatulisOldschool: i cannot see how an install can leave you at a grub prompt.  do you mean after first boot?22:59
OldschoolYes - I create the RAID during the install, and depending on the options I use with the partitioner, either GRUB will not install, or it will install onto a /boot partition, but when I reboot, it ends up giving me a grub recovery> prompt23:00
pmatulisOldschool: then use the live cd to get the installer logs (syslog) to see what happened.  or install again and get to the menu and choose to see the logs23:00
Oldschoolwhere are those logs?23:00
Mostoleshi23:05
Mostolessorry for my english23:05
Mostolesany can try to resolve me a question?23:06
DavieyMostoles: you need to ask the question, :)23:06
Mostolesyes23:06
Mostolesi like to stop the harddisk to save energy23:07
Mostolesmy s.O23:07
OldschoolNo entries under /var/log/boot23:07
Mostolesmy S.O is ubuntu server23:07
Mostolesi have one disk for S.O, and 3 for data23:08
Mostolesi like to stop the data disk23:08
Mostolesim try to use hdparm, but dont know the flag23:09
DavieyMostoles: sudo hdparm -S 120 /dev/sda ?23:10
Mostolesif I reboot, this is persistent?23:11
Davieyno23:12
WMPhello23:12
DavieyMostoles: you could add it to your /etc/rc.local23:13
Daviey(above exit 0)23:13
WMPwhat limit in limits.conf can block memory (RAM) per user?23:13
WMPand maybe who know program who use eq. 200MB from ram23:14
WMPi wan tto test this limits ;)23:14
Mostolesi try to put in /etc/hdparm.conf23:15
Mostolesbut dont do any23:15
Mostolesthis /dev/sdc {spindown_time = 120}23:16
=== RoAkSoAx is now known as andreserl
=== andreserl is now known as RoAkSoAx
=== roaksoax__ is now known as andreserl
martynHey all !23:26
Mostolesthanks for all23:47
Mostolesbye23:47

Generated by irclog2html.py 2.7 by Marius Gedminas - find it at mg.pov.lt!