/srv/irclogs.ubuntu.com/2008/10/15/#ubuntu-server.txt

NCommanderScottK, ping00:06
mathiazkirkland: do you have a libvirt daemon running?00:22
mathiazkirkland: or you just use a plain kvm?00:22
kirklandmathiaz: both00:23
kirklandroot      6136     1  0 Oct13 ?        00:00:00 /usr/sbin/libvirtd -d00:23
kirklandnobody    6213  6136  0 Oct13 ?        00:00:00 dnsmasq --keep-in-foreground --strict-order --bind-interfaces --pid-file  --conf-file  --listen-address 192.168.122.1 --except-interface lo --dhcp-leasefile=/var/lib/libvirt/dhcp-default.leases --dhcp-range 192.168.122.2,192.168.122.25400:23
mathiazkirkland: ok - so with libvirt you need to update the configuration of the guest00:23
kirklandmathiaz: k, how so?00:24
mathiazkirkland: http://paste.ubuntu.com/57644/00:24
mathiazkirkland: ^^ this is the configuration of a running guest00:24
kirklandmathiaz: where does this go?00:24
mathiazkirkland: the important part is when you define the interface00:25
mathiazkirkland: <model type='virtio'/>00:25
mathiazkirkland: try to use the virsh command00:25
mathiazkirkland: virsh dumpxml guest-vm-name00:25
mathiazkirkland: or start with00:25
mathiazkirkland: virsh list00:25
mathiazkirkland: to get the list of running guest.00:25
mathiazkirkland: then dump the xml configuration to a local file00:26
mathiazkirkland: virsh dumpxml guest-name > libvirt.xml00:26
mathiazkirkland: edit libvirt.xml to set the network interface model to virtio00:26
mathiazkirkland: and reload the configuration with00:26
kirklandmathiaz: virsh list shows nothing00:26
kirklandmathiaz: but i have two kvm's running from the command line, with kvm .....00:26
mathiazkirkland: virsh define guest-vm-name00:26
mathiazkirkland: hm - try: virsh list --all00:27
mathiazkirkland: if nothing is listed, then you don't have any vm guest defined in libvirt00:27
kirklandmathiaz: okay, now i see a few ***ancient*** vm's i created in virt-manager, long ago00:27
mathiazkirkland: I don't think that libvirtd knows about the kvm machines started from the command line00:27
kirklandmathiaz: should i do this testing through virt-manager?00:27
mathiazkirkland: you could - I tend to use virsh00:28
mathiazkirkland: virsh is just a command line/shell front-end to libvirtd while virt-manager is the GUI front-end to libvirtd00:28
mathiazkirkland: I don't know if you can set a virtio network interface with virt-manager00:29
kirklandmathiaz: okay, fair enough00:29
kirklandmathiaz: okay, so i have a vm in virsh that I can overwrite, or replace the disk or whatever00:29
mathiazkirkland: ok - so dump the xml configuration to a local file00:30
mathiazkirkland: virsh dumpxml vm-name > new_vm.xml00:30
kirklandmathiaz: http://paste.ubuntu.com/57647/00:30
=== samuraip1nguin is now known as samuraipenguin
mathiazkirkland: ok - edit the xml file to add "<model type='virtio'/>00:31
mathiazkirkland: to the network interface section00:32
mathiazkirkland: below source network='default'/>00:32
BaryonMy ubuntu 7.10 server has ceassed allowing XWin (via cygwin) to connect.  XWin can connect to other Linux X-Windows server.00:32
kirklandmathiaz: done00:33
mathiazkirkland: all right - now reload the configuration with00:33
mathiazkirkland: virsh define new_vm.xml00:33
Baryonmore ... so not firewall issue, unless a firewall has grown in Ubuntu?00:33
kirklandmathiaz: done00:33
mathiazkirkland: now you can start the vm with:00:34
mathiazkirkland: virsh start vm-name00:34
Baryonmore ... this all worked last month, and then ceased (maybe an ugrade introduced new security?)00:34
kirklandmathiaz: okay.00:34
kirklandmathiaz: and to connect to it?00:34
Baryonmore.. Has anyone had a similar experience, or a suggested solution?  (over)00:34
mathiazkirkland: if you can get the vncdiplay with the vncdipslay command00:35
mathiazkirkland: virsh vncdisplay vm-name00:35
kirklandmathiaz: nope00:36
kirklandmathiaz: can i just get a console?00:36
mathiazkirkland: try ttyconsole then00:36
mathiazkirkland: virsh ttyconsole vm-name00:36
kirklandmathiaz: didn't work either00:37
mathiazkirkland: try virsh dumpxml vmname00:37
mathiazkirkland: there should be the vnc port there00:37
kirklandmathiaz: hang on00:37
kirklandmathiaz: kernel panic'd00:38
kirklandmathiaz: not enough memory00:38
kirklandmathiaz: it's booting now00:38
mathiazkirkland: on the host or on the guest?00:38
kirklandmathiaz: i connected to it through virt-manager00:38
kirklandmathiaz: guest00:38
mathiazkirkland: ok - you can use virt-manager to connect to it also - it uses the vnc display IIRC00:39
kirklandmathiaz: okay network is working00:39
kirklandmathiaz: how can i verify that i'm virtio-networking?00:39
kirklandmathiaz: lsmod | grep virt shows: virtio_net, virtio_pci, virtio_ring, virtio00:40
mathiazkirkland: on the host try to get the kvm command line00:42
mathiazkirkland: the list of modules seems correct too00:42
kirklandmathiaz: ?00:42
kirklandmathiaz: kvm command line?00:42
mathiazkirkland: on the host, libvirtd starts kvm to run your guest00:43
mathiazkirkland: so if you grep the kvm processes you'll see the one that runs your virtio guest00:43
kirklandmathiaz: ah, looking good00:43
mathiazkirkland: it should show that the network interface is started with a virtio driver00:43
kirkland/usr/bin/kvm -S -M pc -m 512 -smp 1 -name intrepid -monitor pty -no-acpi -boot c -drive file=/local/virt/intrepid-virtio.img,if=ide,index=0,boot=on -net nic,macaddr=00:16:3e:32:80:31,vlan=0,model=virtio -net tap,fd=11,script=,vlan=0,ifname=vnet1 -serial none -parallel none -usb -vnc 127.0.0.1:00:43
mathiazkirkland: right - so I think it all looks good00:44
mathiazkirkland: you've got a guest running with a virtio network device.00:44
kirklandmathiaz: excellent, i think this one is put to bed ;-)00:44
kirklandmathiaz: and TheMuso has committed the remaining fix for virtio disks00:45
kirklandmathiaz: now, I just need to go through the dozen or so KVM CVE's that kees threw at me :-)00:45
mathiazkirkland: right - to be correct the virtio network bug was in the installer00:45
mathiazkirkland: the installer wasn't able to load the virtio network modules00:45
kirklandmathiaz: right00:46
kirklandmathiaz:  i just mean that you've verified hardy host, me intrepid host now00:46
mathiazkirkland: have you booted an install?00:46
kirklandhrm, no00:47
keeskirkland: well, many of those aren't kvm00:47
kirklandmathiaz: ah, i see what you mean00:47
kirklandkees: i know, i was just lighting you up :-)00:47
keeshaha00:47
mathiazkirkland: I've done a couple of test install today and they all completed correctly (all my guests are setup to use virtio networking by default)00:48
mathiazkirkland: so I'm confident the installer work is working correctly.00:48
kirklandmathiaz: sounds good00:53
kirklandmathiaz: i need to respond to a couple of ecryptfs and raid bugs that i've neglected while focusing on virtio over the last few days00:54
kirklandmathiaz: btw ...  i moved my blog00:54
kirklandmathiaz: we'll need to update the ubuntu-server pull00:54
kirklandmathiaz: new location is at blog.dustinkirkland.com00:54
kirklandmathiaz: i imported all of my old articles from wordpress00:54
kirklandmathiaz: planet.ubuntu.com is currently broken00:55
mathiazkirkland: noticed that. I'll update the feed on ubuntuserver.00:55
mathiazkirkland: is there a feed for the Ubuntu-Server label?00:59
mathiazkirkland: I don't see an obvious link to just pull post labeled with Ubuntu-Server01:00
kirklandmathiaz: one sec01:00
kirklandmathiaz: http://blog.dustinkirkland.com/feeds/posts/default/-/ubuntu-server01:01
mathiazkirkland: awesome - thanks.01:05
mathiazkirkland: note that the url is case sensitive01:05
BaryonXDMCP/GDM: problem connecting to Ubunut 7.10 w/ XWin under cygwin.  It worked last week. Won't work this week! Has latest upgrade added some firwall security? Any ideas on where to lok for a solution?01:06
mathiazkirkland: http://blog.dustinkirkland.com/feeds/posts/default/-/Ubuntu-Server01:06
mathiazkirkland: ^^ that works01:06
mathiazBaryon: I'm not sure that here is the best place to ask for X related questions.01:07
mathiazBaryon: you may wanna try #ubuntu instead.01:07
Baryonmathiaz: I thought that it may be a server security issue - e.g blocked port.01:08
Baryonmathiaz: But I will try #ubuntu. Thanks.01:09
mathiazBaryon: an update in a stable release won't introduce such a new feature.01:11
Baryonmathiaz: Then I am at a loss, and don't know how I broke XDMCP!01:12
Baryonmathiaz: If you are right, then that leaves but one other possibility.  Thanks!01:18
BaryonXDMCP or GDM or port problem.  It worked last week. Cannot login to Ubuntu Server 7.10 via thin client (XWin under cygwin on XP64). I don't know what changed. Any ideas?01:48
mathiazzul: is the -virtual kernel working in a xen environment?02:09
uvirtbot`New bug: #283534 in openssh (main) "Segmentation Fault with SSH" [Undecided,New] https://launchpad.net/bugs/28353403:47
owhHiya, never done this, so I thought I'd ask before I break some stuff seriously. Have a ubuntu server in production that is running samba without domain logons. All users are connected as guests. I want to migrate to it being a domain server, but I don't want to break everything immediately...03:59
owhI want to turn domain logons on, but before I do, will this kill all the clients, require accounts or any such major impact, or can I just turn it on and the clients will be able to connect as they have as a guest?04:00
* owh is slowly bringing this client into the 21st century :)04:01
owhWhere might I locate a process that will allow me to migrate from this essentially peer-to-peer environment into one where the server is a pdc?04:03
=== bdmurray_ is now known as bdmurray
maxwave3h04:50
=== mcasadevall is now known as NCommander
ScottKNCommander: Pong05:05
NCommanderScottK, I need your 2 cents on a backport which is somewhat unique05:06
ScottKOK05:06
NCommanderScottK, https://bugs.edge.launchpad.net/hardy-backports/+bug/28346805:07
uvirtbot`Launchpad bug 283468 in hardy-backports "[hardy] kdesvn not compatible with svn 1.5 - please backport (import) kdesvn from debian unstable to hardy" [High,Incomplete]05:07
ScottKI'm all for it.05:07
NCommanderOk, I confirmed it build, and installs05:07
ScottKHow's it work with svn 1.5?05:08
NCommanderI haven't confirmed the original but I"m about to test to make sure it works with the version from SVN05:08
NCommanderI am testing that now ;_)05:08
NCommanderScottK, I'm suprised you said yes, I was expecting a no since it requires backporting a sid package05:09
ScottKNCommander: It's not really different than sticking KDE3.5.10 in hardy-backports when we have no KDE3 in Intrepid.05:10
ScottKI think KDE3 in Intrepid is a special case.05:10
ScottKThis is part of that because if we hadn't gone to KDE4 in Inrepid, then you'd be able to backport from there.05:11
NCommanderWell, we can't fix the problem in intrepid since thats frozen, and kdesvn won't qualify for a FFe. and it will be fixed in Jaunty via an import from Debian, I don't see the huge issue05:11
ScottKIn Intrepid we'd want the KDE4 version anyway.05:12
ScottKWhich there is one.05:12
NCommanderAh05:12
NCommanderThat makes sense05:12
NCommanderThis bug must also exist in intrepid then ...05:13
ScottKUnless the KDE4 version is an updated one.05:13
ScottKI know it's packaged, but not if it works with 1.505:13
NCommanderIt's the same version05:14
NCommander(in both intrepid and hardy)05:14
ScottKThe KDE4 one is kdesvn-kde405:14
ScottKDunno why we didn't transition it.05:15
NCommanderProbably got overlooked05:15
ScottKSo it's a bug in Intrepid.05:15
ScottKYeah.05:15
NCommanderProbably should be fixed now05:15
NCommanderkdesvn just crashes for me05:15
ScottKLemme see if I can find someone to sponsor it for you.05:16
ScottKNCommander: There you go (#kubunut-devel)05:18
ScottKFor some better spelling of kubuntu05:18
NCommanderlol05:18
ajmitchseems accurate to me05:18
NCommanderScottK, so when are we going to create intrepid-backports?05:18
ScottKNCommander: That's up to jdong, but it can be created as soon as the release happens.05:19
NCommanderAh05:20
NCommanderScottK, I'm confirming both the bug, and that backporting kdesvn fixes it05:21
ScottKNCommander: OK.  See nixternal about fixing Intrepid and then we'll deal with the backport.05:22
NCommanderScottK, the package is in the PPA, but I'm unsure I got the versioning right (I assume its normal, but this might be a special case since its a backport from sid vs intrepid/jaunty)05:22
ScottKNCommander: What version are you pulling in?  0.14.6-1 or 1.0.4-2?05:24
NCommander1.0.4-2 from Debian sid05:32
NCommanderWhich works05:32
ScottKOK.05:41
ScottKThat's a KDE3 version still.05:41
ScottKThe KDE4 version is some higher number.05:41
NCommanderah05:50
ganeis there any tool to tset the squid performance06:39
=== freaky_t is now known as fReAky_t
=== fReAky_t is now known as freaky_t
ScixIs there a large resource loss installing ubuntu-desktop on top of a ubuntu-server?07:10
Scixtalking about the ubuntu-desktop package... CLI is to time assuming...07:11
lukehasnonameinstall xfce07:12
lukehasnonameif you're going to use a gui07:12
lukehasnonameI mean, most of the tools you use on a server are console based anyway07:12
ScixThe main reason i want a gui is to run tools like gbind or QG (GQ?)07:13
ganeis there any tool to tset the squid performance07:19
_rubenScix: best way is to just install the xlibs and run an X server on your desktop .. then use ssh -X to tunnel your X traffic07:20
Scixxlibs and that's it? Sounds realy easy :)07:22
_rubenand any other dependencies you might need for gbind .. shouldnt require a full blown X install07:23
Scix_ruben: tanks :) I'll try it out07:24
ScixDo i need to install gbind on the server, or at the workstation?07:33
=== mdz_ is now known as mdz
gane please anyone tell me, how to get the "switchable on-the-fly I/O schedulers " in kernel 2.6.2610:02
ivoksidea for intrepid+1 - bring up SSH daemon when in single user mode, since network is already up :/10:16
[Solars]ivoks that makes too much sense10:38
ivoksi have a situation where server is couple of thousands of miles away10:42
ivoksand it has filesystem error and no ipmi and no any remote management10:43
ivoksbut it did bring network up, i can ping it and everything10:43
ivoksi just can't do anything about it :/10:43
=== freaky_t is now known as fReAky_t
=== fReAky_t is now known as freaky_t
bigonhi could some one have a look at bug #25819212:51
uvirtbot`Launchpad bug 258192 in dhcp3 "problem with paths and binding to ldap server" [Medium,Confirmed] https://launchpad.net/bugs/25819212:51
Koonzul: would you consider bug 280428 a bug or a feature ?12:59
uvirtbot`Launchpad bug 280428 in openvpn "Prompted for VPN (openvpn) user info at boot-up" [Undecided,Invalid] https://launchpad.net/bugs/28042812:59
zulKoon: just a sec13:00
zulKoon: bug imho13:01
Koonzul: it's a debian "fix" we merged13:02
Koonzul might also cause bug 27878413:02
uvirtbot`Launchpad bug 278784 in openvpn "openvpn configuration with token (pkcs11 provider) blocks the boot" [Medium,New] https://launchpad.net/bugs/27878413:02
Koonsince according to the reporter it did not occur with hardy13:02
zulKoon: *sigh* yeah I saw I still think its a bug though13:03
Koonzul: so we should revert the change and add the < /dev/null again ?13:03
zulI think so13:03
Koonzul: I wanted confirmation that it would fix 278784 too, but I won't have it before tomorrow13:04
zulKoon: ok hmmm....13:04
KoonI'll prepare the fix today and we'll see how we can slip it before freeze tomorrow ?13:04
Koonor just fix it13:05
zulslip it13:05
TrioTorusubuntu.com lets me download an alternative desktop cd, is there an alternative server cd available as well?13:13
TrioTorusI would like to install ubuntu server to a software raid with lvm13:13
ScixTrioTorus: there is not a alternate server disk. but google ubuntu lvm raid, and you should find something to help you :)13:15
nijabaTrioTorus: You do not need an alternate cd, but I would recommend waiting for Intrepid as kirkland as worked a lot to make it easier to set this up13:16
TrioTorusok, anywhere I can see a 'what's new' page for intrepid server?13:19
TrioTorusI guess a 'what's new is only for after the release. Makes sense. Thanks for the pointers.13:30
W8TAHim doing all my server updates today -- is there a way i can make it do an update, upgrade and all in one command without me having to come back to it and tell it yes i want to do it?14:26
sommerW8TAH: you can try sudo apt-get update && sudo apt-get -y upgrade14:34
W8TAHcool14:36
W8TAHthanks14:36
slicslakif i specify dns-nameservers in /etc/network/interfaces will ubuntu overwrite /etc/resolv.conf on boot?15:14
uvirtbot`New bug: #283807 in freeradius (universe) "freeradius with openssl support doesn't compile" [Undecided,New] https://launchpad.net/bugs/28380715:31
brewmasteranyone have any recommendations about the best way to prevent people from sending e-mail from addys on my domain?15:43
brewmasterI've tried using SPF records, but it seems to still be happening15:44
maswanstop using smtp?15:44
maswansorry, there really isn't any good cures for spam out there15:45
brouschbrewmaster, there is nothing you can do. It is totally up to the receiving mail server to check and enforce your SPF15:46
brewmasterbrousch, meaning the people that the mail's are being sent to?15:47
maswanbrewmaster: yes15:48
brouschbrewmaster, not even the recipients, it is up to the recipient's mail server admin. I don't think there is any SPF checking for mail clients15:49
brewmasterbrousch, I'm just a little distraught that I can do this: http://pastebin.ca/122786415:51
brewmasterif I run that code on a completely different server, gmail sees no problem with it15:52
brewmasterthey even give an SPF pass15:52
brouschGmail is one of the few that that checks SPF15:53
brewmasterSPF records are in a server's DNS, no?15:53
brouschright15:53
maswanBut most recipient mail servers don't care about SPF15:53
brouschGmail checks SPF, but I don't think they reject based on it. I think they just send it to spam15:54
brouschIf Gmail is passing SPF from what should be incorrect servers, then your SPF may be set up wrong15:56
brewmasterbrousch, weird, openspf tells me everything is fine with my spf records16:01
brewmasterit rejects from the IP i'm testing16:01
brewmasteryet gmail labels it as a "pass"16:01
brouschthat is unexpected16:02
brewmasterjust tested somewhere else, it gave me a "softfail"16:04
brewmasterwait a minute...16:06
brewmaster"However, the domain is still testing its SPF policy, so the message should not have been rejected."16:06
brewmasteri didn't realize my domain was testing the SPF policy....16:06
brewmaster(and I have no idea what that mean :P)16:06
brouschI have no idea either16:07
brewmasterbrousch, if I'm getting rejection letters saying that messages from "spammer@yourdomain.com" are being rejected, then that is a good thing, no?16:09
brouschIt means people are rejecting spam that is using your domain name. Whether that is good or not is subjective. ;)16:10
Koonzul: posted openvpn fix for bug 280428, will you handle it or should I subscribe main-sponsors ?16:21
uvirtbot`Launchpad bug 280428 in openvpn "Prompted for VPN (openvpn) user info at boot-up" [Medium,Confirmed] https://launchpad.net/bugs/28042816:21
zulKoon: ill do it right now16:22
Koonthis one behaves like hardy did16:22
brewmasterbrousch, good that it's recognized as spam since it's not me who's sending it, bad that people are trying to send spam through my domain16:23
zulKoon: done16:27
* Koon hugs zul16:27
Ahmucki'm trying to install and use ltsp on ubuntu server, which i thought was available with tasksel.  however tasksel does not execute.16:34
Ahmuckwhat am i doing wrong?16:34
rrittenhouseI am trying to use the break=top option on the Ubuntu Hardy Server CD. Should this work like it typically does?16:37
rrittenhouseIt's just going straight to the install screen without dropping me into busybox16:38
uvirtbot`New bug: #283844 in sg3-utils (universe) "missing scsi_reserve script" [Undecided,New] https://launchpad.net/bugs/28384416:41
r2bithi there. i've a question about how ubuntu server releases updates. does it only send out patches like rhel or new releases aswell?16:44
r2bitsay.. will there wver be a php 5.3 package in 8.04LTS?16:44
=== freaky_t is now known as fReAky_t
uvirtbot`New bug: #277213 in apache2 (main) "Apache 2.2.9 strange logs" [Undecided,Invalid] https://launchpad.net/bugs/27721316:57
rrittenhouseI am trying to install Ubuntu Hardy on an IBM Netfinity 5100 and it is failing with all sorts of different issues. I just tried pure Debian and it seems to be working fine.17:08
rrittenhouseWith Ubuntu server it gets through part of the screens until it stops and errors about reading the cd. The cd has been checked and is fine...17:11
rrittenhousewith the Ubuntu hardy live cd it spits out IO errors17:11
greenflyrrittenhouse: was this an official cd or one your burned?17:14
rrittenhousegreenfly: One that was burned. I just used it in another machine and it worked fine.17:19
greenflyrrittenhouse: I've seen things like that some times when I burn a CD at a fast rate. it seems some CD-ROM drives can read it fine and others can't17:22
greenflyperhaps try burning a new CD-ROM at a much slower speed, or alternatively, on a different CD-R17:22
rrittenhousegreenfly: Weve tried 3 different cd-rom drives and a new ide cable17:34
rrittenhousegreenfly: It always seems to get to the same step with the server cds when it fails17:35
rrittenhousegreenfly: For some reason the Debian cd worked like a charm17:35
ScottKDid you try the alternate CD?  It uses the same installer that Debian uses.17:37
rrittenhouseScottK: Yeah with the same results.17:37
ScottKOdd.17:38
rrittenhouseScottK: Like right now for instance it's stuck on binutils-static-udeb and it ends up erroring out.17:44
ScottKSorry.  No ideas here.17:44
rrittenhouseok17:44
rrittenhousethanks anyhow17:44
rrittenhouseScottK: https://bugs.launchpad.net/ubuntu/hardy/+source/linux/+bug/148466 Appears to be the same problem were having here.17:53
uvirtbot`Launchpad bug 148466 in linux "Won't boot on a DELL Poweredge 2500" [Undecided,Fix released]17:53
=== fReAky_t is now known as freaky[t]
=== ogra_ is now known as ogra
mm_202Hey guys, quick question.  How can I tell if the ubuntu version of 32bit or 64bit?19:30
ivoksuname -a19:31
mm_202No, tried that.19:32
mm_202On a 32bit install: Linux jayoffice 2.6.24-21-generic #1 SMP Mon Aug 25 17:32:09 UTC 2008 i686 GNU/Linux19:32
mm_202dammit19:33
mm_202Linux terra 2.6.24-19-server #1 SMP Wed Aug 20 18:43:06 UTC 2008 x86_64 GNU/Linux19:33
mm_202Just noticed the second-to-last word...19:33
mm_202ivoks: Thank you and sorry!19:33
ivoksnp19:34
ScottKivoks: You should have to do VERY little custom configuration of amavisd-new in Intrepid.  The Ubuntu defaults will look very familiar to you.  Thanks.19:34
ivoksScottK: :D19:34
ScottKFor Jaunty I think we're well positioned now to automate integration with postfix, clamav, and spamassassin.19:35
ivoksScottK: we could push quarantine system there too19:35
ScottKI think so, but I haven't looked at the specifics.19:36
ivoksthe main problem is that there's lots of products19:36
ivoksbut they don't blend very nice...19:36
xbxbIs it possible to deinstall Apache & PHP cleanly so that no traces of the software are left and I can reinstall them from scratch?19:36
ivokswe should just take the code and make one final solution :)19:36
ivoksxbxb: apt-get --purge remove apache.* php.*19:37
xbxbthanks... will this also get rid of configuration files, etc?19:37
ivoksxbxb: yes19:37
xbxbivoks: thank you19:37
ivoksxbxb: unless you created your own configs in /etc/apache2/conf.d/* or /etc/php5/conf.d/*19:38
ivoksxbxb: you'll have to remove those manualy19:38
xbxbbut it will delete every file of the software that was created automatically, yes?19:38
ScottKivoks: Then I guess we ought to pick one and make it play nice.19:38
ivoksScottK: or write something from scratch :/19:39
ScottKYes, but we should avoid that where it's reasonable to do so.19:39
ivoksScottK: i told you i'm thinking of starting a project inside my company which should result with something like that19:40
ivoksScottK: in the end, it would be open source, and pushed into ubuntu19:40
xbxb..19:40
ivoksScottK: but this is like... 2 years time frame19:40
ivoksanyway... time to grab and work on ebox19:41
xbxbivoks: is this correct?19:41
ivoksxbxb: yes19:41
xbxbk19:41
ivoksxbxb: man apt-get19:41
ivoksUse purge instead of remove for anything that would be removed.19:42
ivoksoh...19:42
ivoksthere's apt-get purge now19:42
ivoksnice...19:42
ivoksdidn't know about that :D19:42
Level15hi. i installed ubuntu server 8.04 with postgresql, but postgresql does not seem to have the fuzzystrmatch functions. why is that_19:53
xbxbLevel15:  I don't know, but #postgresql may be a better place to ask19:56
Level15xbxb: im asking there now19:56
uvirtbot`New bug: #283982 in samba (main) "Windbindd crashes while handling something with trusted domains" [Undecided,New] https://launchpad.net/bugs/28398220:31
anlifHi all. I have a problem with Torrentflux-b4rt. I just set it up and got it running now, the problem is, I can only access it locally on my network (with a local ip, e.g 192.168.1.10) and not with my dns (or the ip that I get from my provider, which is the same). When I try to do this I get a "404 error, file not found". I suspect it might have something to do with my routers ability to be remotely configured. It's a Linksys WRT54gl router. Th20:54
ropetinanlif: what port is it running on, and have you forwarded that in your router?21:01
lamontScottK: kewl21:22
lamont(integration fun)21:22
ScottK;-)21:22
=== ajmitch_ is now known as ajmitch

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