/srv/irclogs.ubuntu.com/2009/09/18/#ubuntu-server.txt

bnjmnanyone using ubuntu on ec2? i'm trying to decide which version to use00:24
bnjmnalso-- anyone know where i can get the kernel source w/ any patches used to create ubuntu's ec2 kernels?00:25
bnjmncan't seem to find that anywhere...00:25
DebolazAre there any good NAS server management software packaged for Ubuntu?00:30
erichammondbnjmn: What do you mean "which version to use"?00:45
erichammondbnjmn: The EC2 kernel source may or may not be available, but it isn't much use since you can't build your own kernels for EC2.00:45
uvirtbotNew bug: #288379 in virt-manager (universe) "4th network extremely slow/broken" [Undecided,New] https://launchpad.net/bugs/28837900:51
crashsystemsI'm trying to install Ubuntu 9.04 server onto a computer that has no CD drive, via a USB stick. The installer does not like this, and wants me to give it a CD drive. Google is not pointing me in the right direction. Does anyone know how to do this?00:52
bnjmni want to build my own kernel module00:58
bnjmnif i could just get the config that would be great01:09
uvirtbotNew bug: #335809 in kvm (main) "KVM activates (GNOME) Screensaver when inside SDL window" [Low,Fix released] https://launchpad.net/bugs/33580901:11
uvirtbotNew bug: #362550 in kvm (universe) "ignores -no-shutdown" [Low,Fix released] https://launchpad.net/bugs/36255001:21
uvirtbotNew bug: #365569 in kvm (universe) "KVM segfaults with a specific disk image." [Low,Invalid] https://launchpad.net/bugs/36556901:21
uvirtbotNew bug: #370270 in kvm (universe) "ttyS0 pass through in guest running  in KVM doesn't work and eventually hangs" [Low,Fix released] https://launchpad.net/bugs/37027001:21
uvirtbotNew bug: #390278 in virtinst (universe) "Windows 2000 server won't install on kvm84/hardy" [Undecided,New] https://launchpad.net/bugs/39027801:26
erichammondbnjmn: Yep, kernel modules are buildable for EC2.  What EC2 kernel are you using?01:28
yonatanhi01:37
yonatani'm looking for some help with ubuntu server 9.04 "minimal virtual machine" option01:38
lukehasnonamesoooo.... something happened to Samba so it doesn't start on my server at startup. It doesn't fail out, it stops the startup process so the server doesn't start.02:10
twblukehasnoname: echo /etc/rc?.d/???samba02:20
Chris-Awayanyone around? (with lib mono exp & apache)02:55
uvirtbotNew bug: #333000 in kvm (universe) "qemu/kvm incorrecty enters fullscreen when using nvidia twinview" [Wishlist,Incomplete] https://launchpad.net/bugs/33300002:56
uvirtbotNew bug: #353995 in kvm "BLTs appear broken - moving blocks on the remote leaves cruft" [Wishlist,Fix released] https://launchpad.net/bugs/35399502:56
uvirtbotNew bug: #393430 in kvm "kvm: please prefer ALSA over OSS" [Wishlist,Fix released] https://launchpad.net/bugs/39343002:56
=== monteith is now known as monteith_afk
altf2ohello all, i have 'git' up and running on my Ubuntu 9.04 server perfectly. Only issue is i'd like to start the daemon automatically on each reboot. Perhaps i'm just searching for the wrong thing, but i'm not finding where to add that into Ubuntu's normal boot\startup process, any ideas?04:11
twbIf there's a daemon, there should already be an init script.04:17
twbWhich package provides the daemon?04:17
altf2ogit itself. You can launch it as a daemon, via: sudo -u git git daemon --base-path=/home/git/repositories/ , i just need that to launch when i startup.04:18
twbOK, you mean "git-core".04:18
twbThat has no init script, so you will need to write one.04:19
twbIt is probably simplest to put it in /etc/rc.local, which runs at the end of the boot process.04:19
twbYou should also use start-stop-daemon rather than sudo -u git.04:19
altf2oawesome, found a couple things on it so far, let me give it a whirl. (Good thing for test virtual servers, have a feeling i'm gonna get this wrong before right :). )04:23
twbYou can run /etc/rc.local by hand until you get it riht04:24
twb*right04:24
altf2ocool, so i got that working w/ rc.local. Now while i investigate the actual 'init script' i did notice it launches the process as user 'root' i definitely want to change that to user 'git.' Any ideas? My searches are coming up with a lot about 'fork' or Perl function, not just a generic way to launch /any/ process as another user.04:52
altf2on/m, got it. Awesome thanks for the help :) I'll continue to read this tutorial on init scripts. Ultimately that's what i want.04:55
twbaltf2o: you need to pass --user to start-stop-daemon05:00
twb(--run-as?)05:00
altf2oahh, perfect...05:01
android60just curious, what does everyone use for ftp server and why05:03
android60software wise05:03
qman__android60, openssh-server05:04
qman__because ftp is insecure05:04
android60well, I am just looking to use the ftp on my lan, of course i use winscp and openssh to do over internet transfers :)05:06
android60its b.c some of the programs i have will connect either via samba or ftp, and id rather avoid samba05:06
qman__over a lan, smb or nfs are better choices05:06
twbFor anonymous read access, HTTP beats FTP.05:06
twbFor uploads, use SFTP (OpenSSH)05:07
qman__and yes, read-only, http is great05:07
android60i also have apache because as a hobby i do websites with php etc05:07
twbBoth in terms of security and protocol design, FTP has serious limitations that make it unsuitable for use in production.05:07
altf2oi just finished setting up Samba on my little test server, i was amazed how easy it was. I changed 1 line, added my shares, added libpam-smbpass, rebooted, done.05:07
qman__ftp was originally designed before the concept of firewalls existed05:08
qman__as such it's completely obsolete and difficult to work with05:08
android60altf2o: what did libpam-smbpass do?05:09
qman__libpam-smbpass makes samba authentication less difficult05:09
altf2oandroid60: Samba keeps it's own db of user\pass's. That PAM module syncs Samba w/ local Linux user\pass's.05:09
android60I've tried samba but I was having user permission problems. and I don't like having to add a user to samba access, i wish i could just create a user on the system and have it automatically allow them access to specified shares05:10
android60well then,05:10
altf2oSo if i add user 'steve' instead of having to then do: smbpasswd .... to give him a Samba password, it updates it for me. I maintain one, much easier.05:10
android60thats exactly what i want05:10
android60i better write it down before i forget05:10
android60is there any setup for libpam-smbpass or once installed its good to go05:11
altf2oandroid60: what i've done 2 things. If i'm creating private shares, i add it to my home directory, limit access to myself. If i need a public share for multiple people i create a group, add them to that group, create the directory i want to share and assign it to that group. I usually: chmod 0775 the folder and just use "read only = user, list here" for folks i want to be 'read only' on it.05:11
qman__samba's magic homes share is incredibly useful05:12
qman__you can usually just use that, plus a public share05:12
altf2oandroid60: yep, should be good to go. One thing i noticed is it won't update for me until that user 'logs in' even: su steve , <steves pass> did it. Can't figure out how to manually say "please re-sync"05:12
altf2oagrees w/ homes share.05:12
android60ya, see im mostly using mine as a nas, so all relevant files and folders are not on the system hard drive. that was another question i had05:13
android60was is there a way to have the home directories point to like /media/MainStorage1/Documents/usernames_here05:13
android60b.c i would like encrypted home directories05:13
android60just not on my 40gb system drive05:13
qman__you can create a separate /home partition05:14
android60ya, i just kinda didnt want to do that05:14
qman__that's the usual way to do that, or use ecryptfs for encrypted homes05:14
android60i have 2 1TB drives, one is for archive via cron job rsync05:14
qman__you could use symbolic links, but be aware that if the target is ever missing, it will break logins05:14
android60ya thats what i was trying to avoid also05:15
android60ubuntu server is great for my needs, and the system its on is only like sempron 1250+ and 1 gb ram05:15
android60i think i might up ram alittle bit once i get mythtv backend going05:16
qman__what is probably ideal for what you want is to have a separate /home partition, and use ecryptfs for homes05:16
qman__putting the /home partition on a separate hard drive05:16
android60ya, i might do that down the line. im not in a hurry to do that right now05:17
android60does widnows support nfs? like if i want to map a network drive?05:19
qman__no05:19
android60didnt think so05:19
qman__windows uses SMB05:19
qman__which is what samba does05:19
qman__there are NFS clients for windows, but I've never used them, and from what I've read, they're rough05:20
android60ya same here05:20
android60i didnt know if vista/win7 supported it or what05:20
qman__nfs is generally something to be avoided also, unless you're really taking care to set up a secured nix enviroment05:20
android60oh, i wasnt aware of that05:21
qman__unless you're using an nfsv4 with kerberos setup, it's pretty insecure05:21
qman__and it uses RPC, which is somewhat painful to deal with05:22
android60never really heard of any of that, but ill take your word for it05:22
qman__it's another one of those really old protocols that just weren't built in today's internet05:22
qman__samba's not much better, but on a LAN you're fine05:22
qman__it's also pretty much the only way to integrate well with windows05:22
android60ya05:23
altf2oKerberos looks really nice, and not to bad to setup. That's sort of my next project LDAP + Kerberos05:26
qman__openssh is the swiss army knife of secure protocols05:28
qman__shell access, tunnels, file transfer, even mounting filesystems05:28
qman__all on one port05:29
qman__all encrypted05:29
altf2oi'm new to it, but i don't know what i'd do without it now.05:29
swoodyI have a guy with an issue about how to use a custom 404 page on his Apache server06:17
swoodycan anyone help me/him out?06:17
swoody"i run apache built into a WAMP server for my website, but i cant figure out how to set the 404 page to a custom one in the httpd.conf file for apache"06:17
twbWe do not support Windows.06:28
twbTry apache's channel, which IIRC is #httpd.06:29
swoodytwb: ok, thanks for the pointer :)06:31
swoodythere's just not many people around, so I figured I'd see if anyone here was familiar with it as well06:31
lukehasnonametwb: I can't even log in. It stops the boot process. Is that not a bug? Should a program be able to lock a server up like that? I know I could probably go in grub and boot to single user mode, wipe Samba or take it out of the startup list, but wtf mang06:59
acalvohi08:01
uvirtbotNew bug: #432291 in php5 (main) ""Fatal error: Call to undefined function gzopen()" on php5 5.2.10.dfsg.1-2ubuntu3" [Undecided,New] https://launchpad.net/bugs/43229108:01
acalvoI've been trying to set up squid with NTLM auth without succeed08:01
acalvoit seems that my main problem is that winbind is not working properly because squid is not in the same machine as samba PDC08:02
acalvobut I'm not able to find any site which talks about this08:02
acalvoand all tutorials I've been reading point to the same scenario: samba and squid in the same computer08:02
acalvonow I'm able to do a wbinfo -t and wbinfo -a domain\\user%password and it works08:03
acalvobut wbinfo -u nor wbinfo -a work08:03
_rubenbah .. why do customers still request servers with php4 installed .. its been dead for years08:15
henkjando you still install php4?08:17
henkjanon request?08:17
Maelos`because dead isn't defined by whether or not there are still releases occurring08:19
Maelos`people with revenue generating apps don't necessarily convert to the latest version of a language08:19
_rubenhenkjan: sortof .. i completely firewall the box and them fuck things up themselves08:23
uvirtbotNew bug: #423465 in eucalyptus (main) "euca.p12 owned by root" [Undecided,New] https://launchpad.net/bugs/42346508:31
=== cjwatson_ is now known as cjwatson
SockPantshey all08:47
SockPantsi have a standard install of 8.04 server. how can i configure ftp?08:48
ivoksinstall vsftpd08:49
SockPantsi'm finding stuff about vsftpd and proftpd but what's the difference, and which is installed by default?08:49
SockPantsah, none is installed/08:49
ivoksubuntu server by default doesn't install any services08:49
ivoksit has no open ports08:49
SockPantsi chose to install LAMP though08:49
SockPantsand apache is on by default08:50
ivoksyou don't get ftp service with that08:50
SockPantsok08:50
ivoksbrb08:52
SockPantsthen whats the difference between the different ftpds?08:52
ivoksit's up to you08:52
ivoksi prefere vsfptd08:52
ivokssome like proftpd08:52
ivoksyou can't go wrong with eny of them08:52
ivoksany08:52
ivoksbrb08:52
acalvohow can I get a version of a packages installed?08:55
acalvos/get/check08:55
ivoksdpkg -l08:55
acalvothanks08:55
ivoksdpkg -l | grep package08:55
_rubendpkg -l package ;)08:55
ivoksor that :)08:56
twbapt-cache policy package08:56
SockPantsare there no suitable alternatives to ftp for accessing files?08:57
ivoksof course there are08:57
ivokssftp, scp, webdav08:58
ivoksetc...08:58
twbafs :-)08:58
SockPantsdoes ubuntu come with netatalk client?08:58
SockPantsor is it easy to set up?08:58
ivoksno, n/a08:59
SockPantsi'm installing netatalk anyway for my mac08:59
sorenjdstrand: Yes, a quick workaround would be lovely.08:59
himanshurauthanhow can I use ubuntu server to host any website08:59
ivokshimanshurauthan: you should install web server08:59
twbhimanshurauthan: you can't host other people's websites08:59
himanshurauthanon ubuntu server can't I do09:00
himanshurauthanwhat is this web server then09:00
himanshurauthanin ubuntu?09:00
twbUnfortunately, unlike Debian, Ubuntu's initrd does not include a web server.09:00
himanshurauthanSo for what purpose I can use ubuntu server09:01
ivoksapache09:01
twbbreak=bottom, busybox httpd FTW09:01
ivokshimanshurauthan: sudo tasksel install lamp-server09:01
ivokshimanshurauthan: https://help.ubuntu.com/community/ApacheMySQLPHP09:02
himanshurauthanok so after installing lamp server can I host a website in that09:02
ivokshimanshurauthan: yes09:02
himanshurauthanso what all other stuffs do I need if I want to host websites on a ubuntu server09:03
himanshurauthando I need some special hardware also09:03
twbhimanshurauthan: "I want to host a website" is not really a meaningful approach.09:04
ivoksyou need a working system09:04
ivokshardware depends on how serious you are09:04
twbWhy do you want to host a website?  What are you intending to host?09:04
ivoksand how many websites you plan to have09:04
himanshurauthanno it is not for hosting many sites but it is about hosting my own site09:05
twbAre you intending to host an intranet CMS, a family photo album, a flash-heavy bulletin board, or what?09:05
himanshurauthanmy business site09:05
himanshurauthanshould I go for shared server or my own dedicated server09:05
himanshurauthansince I want to expand it in future09:06
twbOK, then the next question is: do you want to do this yourself, or do you want to hire an expert to handle it for you?09:06
himanshurauthanI'm a web developer basically09:06
twbYou're a webdev, but you don't know how to set up a webserver?09:06
ivoksthen install lamp-server09:06
himanshurauthanfor this what type of expert I need09:07
ivoksnone09:07
ivoksyou install it09:07
ivoksand it works09:07
ivoksyou just need to put your website on disk09:07
himanshurauthanis it networking or webdev09:07
twbSo you're already familiar with developing with technologies like PostgreSQL (or MySQL), Apache, and Python (or PHP)?09:07
himanshurauthanyes09:07
ivoksis it networking or webdav?09:07
ivokshuh?09:07
SockPantsits not networking09:08
twbhimanshurauthan: OK, so really all you need to do is learn how to do the underlying system administration.09:08
SockPantsits not webdev09:08
himanshurauthanok09:08
ivoksoh, how do you access the disk?09:08
ivokshowever you want - SMB/SCP/FTP/SFTP...09:08
twbIf you already understand how to USE stuff like Postgres, then you can probably pick up sysadmin of those services easily.09:08
ivoksbut you need to configure server for that09:08
twbInstalling the lamp-server task, as already recommended, will give you a basic setup that you can then tweak if/as necessary.09:09
himanshurauthanhm ok09:09
SockPantsbasically once you install it you can just put your files there and it will work09:09
SockPantsit's not very difficult09:09
twbhimanshurauthan: as for hosting your own server vs. buying hosting space or a VPS, that comes down to issues like cost and who administers what.09:09
himanshurauthanfor external purpose means not for interanet I need server right??09:10
himanshurauthanthat has access to the world09:10
himanshurauthanthen I need to go for Domain name also09:10
twbhimanshurauthan: for a website you will also need to sort out an adequate network connection, a domain name, etc.09:10
SockPantsbtw, is there a way to install i386 packages on a 64 bit OS (its a fuse filesystem)09:10
twbSockPants: in general, no.  It requires fundamental changes in dpkg, which are pending.  There are various workarounds, however.09:11
twbSockPants: I don't know what you mean by "it's a fuse filesystem"09:11
SockPantswell that's what i'm installing, afpfs-ng09:11
SockPantsthere's only a .deb for 32 bit09:11
ivoksbye09:11
twbSockPants: good luck with that09:12
SockPants>.>09:12
SockPantshow so09:12
twbSockPants: why are you still running MacOS 9?09:12
SockPantstwb: whats an alternative, and i'm not09:12
twbSockPants: AFP sucks.  You would be better off using CIFS (Samba) and/or NFS.09:13
SockPantsi always thought cifs sucked09:13
SockPantsand i never got nfs to work09:13
twbCIFS does suck.09:13
SockPantsbut if afs is that bad i'm willing to try again09:13
twbBut AFP sucks more unless you are stuck on MacOS 9 where it's your only option.09:13
SockPantsok09:13
twbNote: AFS is not AFP.09:13
SockPantswell then i'll try nfs again09:13
SockPantsunless that's not very good either09:14
twbAFS is for people who have thousands of users around the world.09:14
SockPantsyeah09:14
SockPantsi don't09:14
twbIf you are in a heterogeneous environment, CIFS is by far the easiest to set up09:14
SockPantstwb: the clients are only ubuntu or os x09:14
twbSockPants: what do you need a client on, other than OS X, Ubuntu and Windows?09:14
twbOh sorry, I misunderstood09:15
SockPantsso nfs would work i suppose09:15
twbIf you are only using Ubuntu and OS X, NFS or CIFS is appropriate.09:15
SockPantsbut is nfs any good09:15
SockPantsfundamentally09:15
twbI hear that NFS is much easier on recent versions of OS X.09:15
SockPantsit seems all the file sharing protocols suck09:15
twbYES09:15
twbBasically you have to choose which kind of suck to have09:15
SockPantscifs sucks, ftp sucks, afp sucks09:15
SockPantshahah09:15
SockPantsok09:15
SockPantsbut nfs sucks less than those three?09:16
SockPantswhat sucks most about nfs?09:16
twbOS X and Ubuntu both have good CIFS and NFS clients, and Ubuntu has good servers for both of those.09:16
SockPantsok09:16
twbProbably the suckiest things about NFSv3 are its (lack of) security and its dodgy locking.09:16
SockPantslocking?09:17
twbBut basically all network filesystems have broken locking semantics09:17
SockPantsalright well09:17
twbSockPants: as in, stopping two computers from trying to edit the same file at the same time09:17
SockPantsif it's not a severe problem09:17
SockPantsand i don't think that will happen btw09:17
SockPantsthen i'll go with NFS09:17
twbe.g. dodgy locking can break OpenOffice and Firefox 3, if /home is on a network filesystem.09:17
SockPantsfor security i would be tunneling over ssh anyway whenever i'm outside of the lan09:18
twbThis happens with CIFS and NFS, and probably all other network filesystems.09:18
twbSockPants: if you are outside the lan, sshfs is very good for small files09:18
SockPantssshfs != sftp/09:18
SockPants+09:18
SockPants?09:18
twbCorrect.09:18
twbsshfs is a way to mount SFTP as if it is part of the filesystem09:19
SockPantsok09:19
twbSo programs that don't know SFTP can just read and write files normally09:19
SockPantsi'll start with nfs since i'm on the lan most of the time09:19
SockPantswhat port does nfs run on09:25
SockPantsmm many09:30
SockPantsdoes ssh tunnel both tcp/udp?09:30
twbSockPants: yes09:31
twbYou will not successfully tunnel NFS over ssh -w.09:31
twbNot without great pain.09:31
twbNFS not only uses multiple ports, it will by default negotiate additional ports during MOUNTP09:32
twbAnd by default it refuses to countenance ports that can be bound to by unprivileged users (i.e. >= 1024).09:32
SockPantshurrr but then how will it ever get past my firewall09:37
SockPantsi could open the default ports but it still couldnt negotiate any additional ones09:37
twbSockPants: DO NOT use NFS over the WAN without using encryption (e.g. ssh, openvpn).09:38
SockPantshence ssh09:38
SockPantsbrb09:38
twbIf you need a network filesystem on the WAN, either use SSHFS or AFS.09:38
twbNFS is only appropriate if you're inside LAN or an encrypted VPN09:39
SockPantsi might just try to set up a vpn then09:42
acalvowhat do I need to be able to use winbind in one computer to auth against a samba PDC in another computer?09:42
SockPantsthough i've never used vpn so that should be interesting09:43
SockPantsbut that would solve all my problems in one go i suppose09:43
twbacalvo: first of all, make sure the samba side works09:46
acalvotwb: it is working (wbinfo -u, wbinfo -g, wbinfo -a worked but no plaintext support)09:47
twbacalvo: OK, I don't know what is next09:47
twbI never got samba auth working right09:47
uvirtbotNew bug: #408947 in likewise-open5 (universe) "@reboot local crontabs do not run for likewise-open5 domain users." [Low,In progress] https://launchpad.net/bugs/40894710:41
Jeeves_Hmm10:44
Jeeves_[  392.560519] vcpu not ready for apic_round_robin10:44
Jeeves_soren: How can I fix that? You're the KVM-guru, aren't you? :)10:45
sorenJeeves_: Just ignore it?10:46
Jeeves_soren: :)10:46
sorenJeeves_: IIRC, it's just informational.10:46
Jeeves_kvm migration makes the vm crash10:47
sorenI need more detail to form an opinion on that :)10:47
Jeeves_which is kinda annoying10:47
Jeeves_What detail do you want? :)10:47
Jeeves_I'm currently testing convirt10:47
sorenYou migrate a vm from one machine to another, and in the process, the vm crashes?10:47
sorenOh. With convirt, you're on your own.10:47
Jeeves_Why?10:48
sorenI have no clue about convirt.10:48
Jeeves_Ok10:48
sorenand it doesn't use libvirt.10:48
Jeeves_Well, I've never seen it work with libvirt either, so :)10:48
soren..so it's /completely/ unknown territory.10:48
sorenWell, that I /might/ be able to help you with, given enough detail.10:49
Jeeves_just a sec, i'll install libvirt10:49
garymcYo!11:01
Jeeves_soren: Same thing happens :)11:04
Jeeves_What do you need to know?11:04
sorenJeeves_: Everything.11:08
sorenJeeves_: What are you doing? Which version of ubuntu, libvirt, and kvm are you using?11:08
sorenJeeves_: Where's your storage?11:08
sorenJeeves_: What's the guest OS=11:08
soren?11:08
sorenJeeves_: Define "crash".11:09
Jeeves_soren: Right.11:09
Jeeves_Running Ubuntu Jaunty on Sun Fire X2200's11:09
Jeeves_Shared storage is nfs on a Ubuntu Jaunty server11:10
sorenThose are Intel boxes, right?11:10
Jeeves_No, AMD11:10
sorenOk.11:10
Jeeves_Quad-Core AMD Opteron(tm) Processor 237611:10
sorenCool.11:10
Jeeves_Quad-Core AMD Opteron(tm) Processor 235411:10
* soren prefers AMD11:10
Jeeves_Both boxes have 8GB RAM11:10
Jeeves_When migrating, the bridge interfaces become busy11:10
Jeeves_So, migration is done11:11
sorenRight.11:11
Jeeves_when it (seems to be) is finished11:11
Jeeves_I can use the vnc-like interface to view11:11
Jeeves_but the vm hangs11:11
Jeeves_the kvm process is moved (or restarted) on the target host11:11
Jeeves_and is using 100% cpu load11:11
sorenFantastic.11:12
sorenOk.11:12
sorenThe NFS is mounted in the same place on both hosts?11:12
soren(let's start with the basics)11:12
Jeeves_it is11:12
sorenOk.11:12
Jeeves_10.0.0.1:/export/vmstore /mnt/vmstore1 nfs rw,vers=3,rsize=8192,wsize=8192,namlen=255,hard,nointr,nolock,proto=tcp,timeo=4,retrans=9,sec=sys,mountaddr=10.0.0.1,mountvers=3,mountproto=tcp,addr=10.0.0.1 0 011:12
sorenCan you pastebin the contents of /var/log/libvirt/qemu/name_of_the_domain.log from both hosts?11:13
Jeeves_http://pastebin.ubuntu.com/273366/11:14
Jeeves_http://pastebin.ubuntu.com/273367/11:15
sorenNothing jumps out at me. Erm..11:19
sorenCan you start up the domain again and look for a few things for me?11:20
Jeeves_sure11:20
Jeeves_what should i look for?11:20
soren/sys/devices/system/clocksource/clocksource0/current_clocksource11:24
Jeeves_both tsc11:25
Jeeves_Anything else?11:34
sorenCan you change that?11:39
sorenTry "echo acpi_pm | sudo tee /sys/devices/system/clocksource/clocksource0/current_clocksource"11:40
Jeeves_Done11:43
Jeeves_Doesn't help11:50
sorenDid it accept the change?11:52
Jeeves_root@kvm4:/var/log/libvirt/qemu# cat /sys/devices/system/clocksource/clocksource0/current_clocksource11:53
Jeeves_acpi_pm11:53
sorenAlright.11:53
Jeeves_restarted the vm11:53
Jeeves_deleted sound devices11:53
Jeeves_that doesn't help either11:56
uvirtbotNew bug: #428650 in php5 (main) "PayPal WPP requires the PHP cURL library. (Currently using cURL Not found)" [Undecided,Confirmed] https://launchpad.net/bugs/42865012:18
=== georg is now known as kwork
=== georg is now known as kwork
Jeeves_soren: Switched to cifs storage, doesn't change a thing12:58
sorenJeeves_: No, it wouldn't.12:59
sorenJeeves_: I'm afraid I don't have a Jaunty rig to test this on.12:59
Jeeves_soren: Need access? :)13:00
Jeeves_(i'm serious though)13:00
yonatanhi anyone here who can help me with the "minimal virtual machine" installation option in Ubuntu Server 9.04?13:00
sorenyonatan: Just ask your question.13:01
sorenWe won't know unti lwe know what the question is.13:01
yonatantowards the end of the installation you get a choice of what packages to install. I don't understand the option: "basic ubuntu server" should I select this option as a minimum?13:04
sorenDepends. What's the server for?13:04
sorenyonatan: It's kind of like asking "should I install a web server?". We have no way to know.13:05
yonatanok i'll elaborate13:05
yonatani'm looking to create a "management" virtual machine that will run Splunk, VMware vCLI and that's pretty much it13:06
yonatanwhat is installed with the "basic ubuntu server"? is there a way of listing the packages?13:11
Jeeves_yonatan: The safest option is to choose nothing13:14
Jeeves_and apt-get install it later on13:14
yonatanJeeves_: Ok. Can you tell me when using apt-get is it possible to get a list of available packages?13:15
zulmorning13:15
Jeeves_yonatan: yes. 'apt-cache search .'13:17
Jeeves_But that's not what you want13:17
Jeeves_you want to apt-cache search 'the stuff i need'13:17
yonatanok and can a similar command be used to see what is actually installed on my ubuntu server?13:18
Piciyonatan: dpkg -l | grep "^ii"13:20
yonatanok thanks Pici13:20
Jeeves_Pici: That only shows packages that are installed, or have been installed13:21
PiciJeeves_: Thats what he asked, isn't it?13:21
yonatanyep I want to know what is installed so that I know if I need to get anything else13:21
* soren takes a break13:21
* Jeeves_ curses on kvm13:22
yonatanmight sound strange but I'm having problems installing something called VMware vCLI13:22
yonatanand haven't found an answer anywhere13:22
Jeeves_nothing concerning 'vmware' and 'problems' is strange13:22
henkjan:)13:22
ewookwell, perhaps the absense for problems.13:24
Jeeves_ewook: Yes, that would be surprising indeed :)13:24
Jeeves_henkjan: How's your redhat install on vmware going? :)13:24
ewookas suprising as if my grammar would be correct all the time.13:24
Jeeves_ewook: :)13:24
yonatanJeeves_: hehe do you know how to get vCLI installed and working?13:27
Jeeves_yonatan: No. And I don't want to know either13:28
=== georg is now known as kinnaz
ttxsmoser: ping13:46
jdstrandsoren: re workaround> ok13:55
jdstrandsoren: do you think I should allow rw for the initrd? what about the kernel?13:56
sorenNo.13:57
sorenJust r.13:57
soren...but you already do that, right?13:57
sorenI know I tested that.13:57
sorenjdstrand: ^13:57
jdstrandsoren: well, I'm looking at https://bugs.launchpad.net/ubuntu/+source/eucalyptus/+bug/431090/comments/413:59
uvirtbotLaunchpad bug 431090 in eucalyptus "libvirt apparmor profile is preventing libvirt from running eucalyptus VMs" [High,Incomplete]13:59
sorenjdstrand: Right. I thought that was just the console thing.14:00
jdstrandsoren: Daniel says it is also the kernel and initrd14:00
sorenOh... Perhaps I tested everything before we ould go into enforce mode?14:00
jdstrandsoren: possibly... though -10 fixed all that14:00
sorenI *know* I tested with a domain that booted form an external kernel and ramdisk.14:01
jdstrandsoren: anyhoo, this is just a workaround until I get virt-aa-helper to use the xml14:01
sorenjdstrand: Well, this was back when you first asked me to test. :)14:01
zulttx: do you have any patches you are sitting on for samba for karmic?14:01
ttxzul: no.14:02
zulk14:02
jdstrandsoren: I've added kernel, initrd, serial, console, attach-disk and detach-disk to the list of tests in https://wiki.ubuntu.com/SecurityTeam/Specifications/AppArmorLibvirtProfile. I'll get all that working14:02
* soren hugs jdstrand14:02
jdstrandsoren: I'll upload a eucalyptus specific workaround in the meantime14:02
sorenThanks!14:02
smoserttx, here. whats up?14:16
ttxsmoser: bug 36491614:17
uvirtbotLaunchpad bug 364916 in eucalyptus "When running Ubuntu as an Eucalyptus VM instance, module acpiphp is not available to be loaded, complicating the use EBS volume" [Undecided,Confirmed] https://launchpad.net/bugs/36491614:17
ttxsmoser: is there still something to do on that precise bug ?14:17
zulttx: http://pastebin.ubuntu.com/273481/14:17
ttxzul: sounds good14:18
smoserttx, comment 13 is correct there14:18
smoserthe eucalyptus page does now mention how to get acpiphp into the ramdisk14:19
ttxsmoser: a) is done and b) is todo but has another bug opened to track it ?14:19
smoserbut we really should be producing a kernel and ramdisk alongside the images14:19
smoserso yeah14:19
smoseryou're correct.14:19
ttxok, will close this one and point to the other then.14:19
uvirtbotNew bug: #432481 in vm-builder (universe) "please provide a man page for ubuntu-vm-builder" [Wishlist,New] https://launchpad.net/bugs/43248114:31
kpettitI've got a Xeon quad-core, and when I run backup's and such a single gzip process seems to slow down my entire machine14:32
kpettitWhen I look at resources the gzip process isn't taking much memory, but it still slows down my entire system make it unresponsive and pokey until it's finished.14:33
kpettitAny ideas on how to make this better?14:33
kpettitIf I had a single-core processor I'd understand but it doesn't make sense to me when I have a quad-core14:34
ScottKIf you're running Intrepid or later, use iotop to see what's going on with io.14:34
kpettitI'm running 9.0414:34
kpettitI'm installing it now.  I'll start backup's again to see what happens with it14:35
jdstrandsoren: does 'attach-disk' work for you at all in karmic? I added to /etc/libvirt/qemu.conf 'security_driver = "none"' to make sure apparmor wasn't getting in the way (see 'virsh capabilities' after libvirt restart to be sure) and then did:14:35
jdstrandvirsh attach-disk testme /var/lib/libvirt/images/mini.iso hdc --driver file --type cdrom --mode readonly14:35
jdstranderror: internal error No device with bus 'ide' and target 'hdc'14:35
jdstrandsoren: am I doing something wrong? is this a regression? bug #203020 indicates it is a long-standing problem14:36
uvirtbotLaunchpad bug 203020 in libvirt "virsh attach-disk doesn't work" [Undecided,Confirmed] https://launchpad.net/bugs/20302014:36
kpettitScottK, anything specific I'm looking for.  I can see the gzip/tar runnning with iotop14:37
ScottKI guess see if it seems to be 'a lot' of IO.14:37
kpettitThe gzip is the top process and I see tar as a second process popup then remove then popup.14:38
ScottKHard for me to say what that would be for your system14:38
kpettitUnder the IO column it's always 0.00, there is of course alot of disk read/write activity14:38
ScottKPerhaps do something you know is IO intensive, like copy a file, and see how it compares.14:38
sorenjdstrand: It worked in Jaunty.14:39
sorenjdstrand: I haven't really used it in Karmic, I guess.14:39
* soren has to go pick up his daughter..14:39
kpettitScott the system gets slow when I do a normal cp as well.14:43
kpettitIt's anoying.  I know there is alot of disk IO from my one disk to the other, but that shouldn't slow down process that are in memory and already running.14:45
kpettitLike firefox for example.  Why would copying things slow down a web browser, can't figure that out.14:45
kpettitScottK, thanks for showing me iotop though, I like it alot better than top.14:46
_rubenbecause firefox uses the disk for cache14:52
ScottKBTW, since you mention firefox, it's also relatively clear that this isn't the right channel for the question in any case.14:53
kpettitIt's not just firefox, it's everything on the sytem.  Doing server backup's shouldn't slow down all the other processes14:55
kpettitI do VoIP on this box and any slow downs will mess up the phone calls.14:55
kinnazyou never run Xorg on server14:56
kpettitI'll figure it out, was just wondering if it was something obvious.  Haven't delt much with quad-cores so wasn't sure if it was something I needed to configure for it to better handle resources14:56
kpettitkinnaz: for production that's what I do, this is a dev box at my house though.14:56
kinnazthou dunno, if i copy files i doesnot affect my box performance so bad14:57
kinnazthat everything would lag14:57
clustyhey14:57
kpettitkinnaz: that's what's tripping me.  I've never seen disk i/o effect running processes like this.14:58
clustystill having trouble with local DNS. anybody willing to help me diagnose the issue?14:58
kpettitclusty: descriibe the problem, somebody will help if they can14:58
aubreafter doing dist-upgrade all my image bundling problems were solved with eucalyptus-1.6, but when I try to run an instance I get the following: http://paste.ubuntu.com/273505/14:59
clustyso: i am having a linux box doing bind+dhcp. I wrote a zone ffile to the best of my ability14:59
clustything is I can resolve form any computer the name of the dns server, but pc's can't resolve each other, nor can the server resolve computres15:00
aubrebut after dist-upgrade, walrus and sc both work well15:00
clustyi am stuck for a week now. don't know how to proceed. I think the only way is for somebody to tak a peak at my conf files15:01
aubreahh I see bug https://bugs.edge.launchpad.net/ubuntu/+source/eucalyptus/+bug/430093 addresses this15:02
uvirtbotLaunchpad bug 430093 in eucalyptus "Eucalyptus "403 Forbidden" when trying to run instance" [High,Triaged]15:02
kpettitclusty: Sorry, I can't help with that one, it's been awhile sense I've done those.15:04
* kpettit installing more memory15:05
uvirtbotNew bug: #368718 in dbconfig-common (universe) "package dbconfig-common 1.8.40 failed to install/upgrade: o subproceso post-installation script devolveu o estado de saĆ­da de erro 1" [Undecided,Incomplete] https://launchpad.net/bugs/36871815:07
aubreon my new install of karmic alpha 6 I am using XFS and was amazed how fast the filesystems were created, and it was nice to see that there wasn't going to be any fsck happening at boot15:14
clustyaubre, i thought xfs had a few showstoppers, like FS cannot be shrunk15:18
clustythis makes it really annoying for a desktop installation15:18
aubrewell I am not planning to shrink my server file systems15:27
=== SyL is now known as Guest44374
aubreclusty: so I don't think it will bother me too much15:27
aubreaubre: what I'd really like is for Oracle/Sun to give ZFS a linux-compatible license15:28
clustyaubre, i loved ZFS15:31
clustydunno how fast it is, but is insanely easy to admin15:31
uvirtbotNew bug: #341003 in php5 (main) "php5 crashed with SIGSEGV in start_thread()" [Low,Incomplete] https://launchpad.net/bugs/34100315:32
zulttx: we said yes to bug #403599 right?15:34
uvirtbotLaunchpad bug 403599 in php5 "Installing PHP5 performs a reload to apache instead of a restart" [Low,Confirmed] https://launchpad.net/bugs/40359915:34
ttxzul: looked alright to me, and you confirmed it. Some validation testing is in order, I guess15:35
ScottKWRT 341003, isn't a php crash a security feature?15:38
zulhmmm?15:39
clustyare the zone files in /var/cache/bind automatically generated?15:39
ewookit's a windows look-a-like feature.15:39
incorrectcan i build a software raid10 set ?15:54
BrixSathello15:57
BrixSatim root on my server but i cant remember mysql login15:58
incorrectjust google for a mysql recovery15:58
incorrectyou can easily do it15:58
BrixSati have removed mysql and installed it but it does not ask for the password15:58
incorrectapt-get --purge remove mysql15:58
incorrector you could try dpkg-reconfigure mysql-server-5.0 iirc15:59
JoshLmysqld_safe --skip-grant-tables15:59
JoshLThen you can login as root with no password and manually change the user information in mysql.users16:00
clustyi got dynamic dns to work for all the windows machines on the LAN, but linux is still resilient :(16:03
clustyi configured send host-name "blahh";16:04
clusty on all dhcp linux clients16:04
clustywhat else can i do16:04
clustygrrr16:04
teddymillsdeleted the /var on a production server...restored the /var/www...and /var/logs...any reason to rebuild the server..or can i patch this up?16:11
clustyteddymills, depends what you had there16:12
clustylike /var/lib is where postgres has the database files16:12
mathiazttx: re bug 34899016:20
uvirtbotLaunchpad bug 348990 in postfix "Deinstallation doesn't delete all files" [Low,Fix released] https://launchpad.net/bugs/34899016:20
mathiazttx: did you check with lamont if it makes sense?16:20
ttxmathiaz: yes16:20
ttxmathiaz: no. I checked that it was needed for proper purging though16:21
mathiazttx: hm right.16:22
mathiazttx: I had a discussion about what should be done on purge for daemons16:22
ttxmathiaz: ah ?16:22
mathiazttx: with slangasek when I was reviewing stomp-server16:23
mathiazttx: deleting a user on purge wasn't suggested16:23
mathiazttx: just to make sure that the system uid is not reused16:23
ttxmathiaz: that's not what the patch does though.16:23
mathiazttx: agreed16:23
mathiazttx: I just so it in the patch16:23
mathiazttx: as far as /var/lib/postfix16:23
mathiazttx: the suggestion was that if there were files in /var/lib/package that weren't reproducable/recoverable it should never be deleted by the maintainer scripts16:24
mathiazttx: however it's a grey area16:25
mathiazttx: policy doesn't say anything about it16:25
ttxnot sure the master.lock is really unrecoverable16:25
mathiazttx: right - master.lock should be removed16:25
ttxbut it for sure prevents reinstall of a purged postfix16:25
mathiazttx: may be not with a rm -rf /var/lib/postfix16:25
ttxagreed.16:26
mathiazttx: as this could potentially deleted other things16:26
ttxmathiaz: could you bring this up to lamont ? I'm nearing the end of the day and I still have plenty of things to finalize.16:26
mathiazttx: sure - not urgent though16:27
ttxmathiaz: I plan to spend some time on basic first-user-experience / usability Eucalyptus bugs next week. Do you think you will have time to participate in that effort ?16:29
mathiazttx: I'll be in portland for ldapcon and linuxcon next week16:29
ttxarg.16:29
mathiazttx: so I doubt it.16:29
ttxok.16:29
zulttx: can you have a eucalyptus cluster with different arches ie one being i386 and the other amd64?16:38
incorrecti hope a RAID10 mdadm setup will improve disk performance for my vm's16:38
ttxzul: You mean nodes with different arches ? I don't know. nurmi or soren would know for sure.16:39
zulttx: if yes then I could probably help16:39
ttxzul: ok, noted.16:40
lamontttx: doesn't prevent reinstall of a purged postfix16:42
lamontmathiaz: ^^16:42
clustypfff gave up setting dynamic DNS for localhost17:01
clustywrote a zone file and that's that :(17:02
incorrecti should have used the server preseed file for my pxe install17:03
incorrecturg this server is going to need some apt-get --purge loving17:03
bnjmnif i try installing gcc on canonical's hardy image on ec2, it says i need to remove libc6-xen. what gives?17:10
uvirtbotNew bug: #432581 in libvirt (main) "[karmic] libvirt/apparmor breaks non-default serial, console, kernel and initrd" [High,In progress] https://launchpad.net/bugs/43258117:26
yonatanhi how do I check that the following packages are installed on my system: binutils, glibc or libc6, libxml2, perl-doc, liburi-perl ?17:35
SyLyonatan: dpkg -l |grep package17:36
SyLif it has an ii on the left, it's installed17:37
yonatancool thanks will try now17:37
SyLno problem17:37
yonatandpkg -l | grep binutils doesn't return anything17:38
SyLcan you try something that you know is installed?17:39
blistovWhat's being used these days, for a distributed, replicated, elastic file system?17:39
yonatani just installed a clean system but added wget at the end17:39
SyLalso you can just run "apt-get install binutils" and it will try to install it and if it's already installed it will say that17:39
yonatanit returns ii wget17:40
SyLok, then they aren't installed17:40
yonatanah17:40
blistovLooking into Eucalyptus, but it doesn't seem to have anything that does distribution, replication, and elastic growth.17:40
SyLyonatan: "apt-cache search package" will show you what could be installed by apt-get.17:41
SyLblistov: what do you mean by elastic file system?17:41
SyLcrap, lunch, I'll be back later17:41
yonatanok thanks SyL17:42
blistovSyL: IE: I have 5TB of data between 2 physical units.  Data is replicated and striped.  I need to increase capacity to 10TB by adding a few more physical units.17:43
blistovI don't want to have to build new partitions all over.17:43
=== JoshL is now known as JoshL[Away]
blistovI'm really looking for a p2p fs, providing aggregate performance.17:59
bnjmnhow can i get the kernel config for canonical's ec2 hardy image?18:01
erichammondbnjmn: I would not recommend Canonical's EC2 Hardy image at this point.  It was last published in April and has a number of serious bugs filed against it.  Most of these bugs have been fixed in revision control, but a new image may not be published for a while yet.18:04
aubreerichammond: I read your comments about XFS after I had used it on my Eucalyptus proof of concept system and I have to say I am so far impressed with it.18:18
yonatani'm getting the following error message ""hiding the command line arguments : symbol lookup error: /usr/lib/perl/5.10/auto/Crypt/SSLeay/SSLeay.so: undefined symbol: Perl_Tstack_sp_ptr""18:22
=== JoshL[Away] is now known as JoshL
erichammondaubre: I'm not a filesystems expert, but I started using XFS on EC2 and it's worked well for me.18:47
uvirtbotNew bug: #431063 in image-store-proxy (main) "Enable tests during build" [High,In progress] https://launchpad.net/bugs/43106319:12
=== centaur5_ is now known as centaur5
Hypnozseeing a strange NIC issue. I have a server with 2 nic cards, each on a different subnet (10.1.10.xx and 10.1.11.xx). I start a ping to both interfaces, and disable the switch port that the .10 interface is going to, but it continues to ping. Then I disable the switch port that the .11 interface goes to, and they both stop pinging at the same time19:45
Hypnozthe /etc/network/interfaces is setup correctly, giving each server its own ip, and the mac addresses on the cards are different in "ifconfig"19:47
incorrectwhen netboot installing, what does 'basic server' install?19:49
=== mushroomtwo is now known as mushroomblue
uvirtbotNew bug: #432659 in mysql-dfsg-5.0 (main) "package mysql-server-5.0 5.1.30really5.0.75-0ubuntu10.2 failed to install/upgrade: podproces post-installation script zwr?ci? kod b??du 1" [Undecided,New] https://launchpad.net/bugs/43265919:57
=== freenode is now known as Guest35677
KeizerHey guys20:09
KeizerHow can I see the IO taking place so I can identify what is locking up my server20:09
PiciKeizer: Install and run iotop?20:09
mcupplesI'd like to see all the mail leaving my server.  Is there an outgoing maillog?20:24
mcupples/var/log/mail.log?20:25
mcupplesAnd that's it?20:25
incorrectstupid fake RAID controllers20:32
mcupplesincorrect:20:32
incorrectdamn, i wish i hadn't old the installer to erase data from a partition20:33
EtienneGhey guys ... where should we report bugs against the UEC karmic image?20:42
EtienneGnot about a specific package, but the AMI itself?20:43
HypnozI have a server with two nic cards, and both have their own ip. But both are pushing traffic through the same cable. Anyone know how thats possible?20:44
SyLHypnoz: it isn't, how do you know they are pushing through both IPs?20:45
Hypnozif i disable the switch port for one of the nics, it keeps pinging20:46
Hypnozand it's running at 100mbit instead of 1gig, same speed as the other port20:46
Hypnozand if i disable the switch port for the 100mbit connection, both stop pinging at the same time20:46
SyLthen I would imagine that you have 2 IPs on 1 NIC card.20:47
SyL /sbin/ifconfig will show you. eth0 and eth1 will have tx and rx20:47
zulsmoser: ^^^20:47
Hypnozeth0      Link encap:Ethernet  HWaddr 00:21:5e:4d:c7:4120:47
Hypnoz          inet addr:10.1.11.195  Bcast:10.1.11.255  Mask:255.255.255.020:47
Hypnoz          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:120:47
Hypnoz          RX packets:668438 errors:0 dropped:0 overruns:0 frame:020:47
Hypnoz          TX packets:389284 errors:0 dropped:0 overruns:0 carrier:020:47
Hypnoz          collisions:0 txqueuelen:100020:48
Hypnoz          RX bytes:61820665 (58.9 MB)  TX bytes:50181250 (47.8 MB)20:48
Hypnoz          Interrupt:1620:48
Hypnozeth1      Link encap:Ethernet  HWaddr 00:21:5e:4d:c7:4220:48
Hypnoz          inet addr:10.1.10.195  Bcast:10.1.10.255  Mask:255.255.255.020:48
Hypnoz          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:120:48
Hypnoz          RX packets:1694179 errors:0 dropped:0 overruns:0 frame:020:48
Hypnoz          TX packets:983370 errors:0 dropped:0 overruns:0 carrier:020:48
Hypnoz          collisions:0 txqueuelen:100020:48
Hypnoz          RX bytes:2178889683 (2.0 GB)  TX bytes:102839047 (98.0 MB)20:48
Hypnoz          Interrupt:1820:48
Hypnozshit20:48
Hypnozsorry20:48
Hypnozhttp://pastebin.com/d403b2ac920:48
Hypnozthought the link was in my clipboard20:48
smoserEtienneG, https://bugs.launchpad.net/ubuntu/+filebug?field.tags=uec-images20:48
Hypnozboth interfaces look good right. both have their own IP and mac20:49
incorrecti have 4 disks, i've set up a swap partition on each, a /boot RAID 1(x4) same for / and /var and a /srv as a raid1020:50
EtienneGAAAAaaaargh! filebug redirection20:50
SyLHypnoz: can you do "route -n" for me and put it in a pastebin?20:51
Hypnozhttp://pastebin.com/d6dec17b520:51
zulhave a good weekend20:52
Hypnozthe 10.1.5.0 to 10.1.11.190 is an openvpn static route20:52
mathiazEtienneG: https://bugs.edge.launchpad.net/ubuntu/+filebug?no-redirect&field.tags=uec-images20:52
EtienneGmathiaz, that is so much better20:53
HypnozSyL, there is one weird thing, I have my default gateway set for the 11 interface in /etc/network/interfaces20:54
Hypnozbut still showing 0.0.0.0 in route -n20:55
Hypnozerr nevermind, its the default one at the bottom20:55
SyLHypnoz: I don't know the full details, but I'm guessing the traffic is going out the vpn.20:56
SyLthere are 2 ways you can test what's going on. unplug cables one at a time, or shut down the interfaces one at a time.20:56
incorrectthis expert installer doesn't seem too stable20:57
bnjmnerichammond, which Ubuntu ec2 image would you use at this point?21:28
erichammondAll of my production systems run on the Ubuntu 8.04 Hardy AMIs I publish on http://alestic.com (32- and 62-bit) though I sometimes use the 9.04 Jaunty as well.  As far as I know, these are probably the most popular two Ubuntu images out there at this time.21:30
erichammondI'm supporting the Canonical AMI development process with the goal of having those AMIs become the public standards.21:31
bnjmncool. great, I will check those out. how might I also get the kernel source & config used on those so i can build my own kernel module?21:32
incorrectso, like mdadm RAID10 is a bad idea21:38
qman__why21:46
bnjmnerichammond, nevermind, i see your AMI is using one of amazon's kernels, so I know where to get the stuff i need. thanks21:50
erichammondbnjmn: http://alestic.com/2008/05/kernel-modules-2-6-2121:51
erichammondbnjmn: Yes, and you should be aware that using Amazon's kernel makes it not not completely "Ubuntu".  It's just the most reliable way I've found to run Ubuntu on EC2 at this time.  I believe better times are coming :)21:53
erichammondbnjmn: If you need to use XFS on 2.6.21, you'll need to pick up a special xfs.ko built by Amazon.  Ping me later if you can't find this.21:54
bnjmnerichammond, actually, i needed a newer squashfs of all things. i got it worked out now.22:01
bnjmnthanks22:01
axisyshow do I make my ubunut server a print server ? i like to take print requests and send it over to the printer which is on different network22:04
mathiazaxisys: https://help.ubuntu.com/9.04/serverguide/C/cups.html22:05
mathiazaxisys: this is for jaunty though.22:05
axisysmathiaz: that is what i am running22:06
axisysit does not explain how i can take a request from another server and send it over to a printer which is on a different network..22:07
axisysmathiaz: does it? may be i should read it again?22:07
axisyshow do I send a print request from client 192.168.0.21 to a cupsd running on a remote machine 192.168.0.98 ?22:32
incorrectright, so RAID10 is a no go22:33
incorrectso what kernel should i use to run a kvm server?22:34
EtienneGam I correct in thinking that ec2-init in jaunty do not work when the instance is run on Eucalyptus?22:44
axisyslooks like this is what i was looking for http://ubuntuforums.org/showpost.php?p=511007&postcount=322:44
=== erichammond1 is now known as erichammond
smoserEtienneG, i dont know why hat would  be23:01
EtienneGsmoser, I am filing a bug23:01
EtienneGhold on23:01
EtienneGsmoser, if you care, it is bug #43277323:04
uvirtbotLaunchpad bug 432773 in ec2-init "ec2-fetch-credentials do not work in jaunty instance being run on Eucalyptus" [Undecided,New] https://launchpad.net/bugs/43277323:04
swoodyis there a way to connect to a remote server, like with SSH, but be able to see/use the desktop on that server?23:06
mushroomblueswoody: FreeNX23:07
mushroomblueswoody: VNC can tunnel through SSH23:07
mushroomblueswoody: RDP can be used, as well.23:07
swoodyok, I'm going to point someone in here, if you guys can help him out with that? :)23:07
mushroombluehah.23:07
mushroombluesadly, my tech support shift is over now.23:08
swoodyhaha23:08
johndoe14ok was told by swoody to come ask for help in here23:10
swoody:)23:10
johndoe14I have a remote server with ubuntu desktop 9.04 and am wondering if i can access the gui on it via remote23:10
mushroombluehttps://help.ubuntu.com/community/FreeNX23:11
mushroomblueread that.23:11
mushroombluethat's by far the easiest solution.23:11
johndoe14k will try ty ill probaly beback :/23:13
incorrectkernel does not matter for kvm?23:13
hokatichenciI just installed server 9.04 but I can't get the static network configuration to work23:33
hokatichenciI edited /etc/network/interfaces as the documentation says, but "/etc/init.d/networking restart" and reboots do not bring the interface up23:33
hokatichenciHowever, "ifup eth0" works23:33
blak111do you have "auto lo eth0" in the /etc/network/interfaces?23:34
cemcwhat filesystem to use for a large number of small files, like /usr/src, lots of small source files and headers23:35
hokatichenciblak111 - danke :)23:36
hokatichenciI've found reiserfs to be good with large numbers of small files23:36
hokatichenci<4kb23:36
johndoe14im having problomes installing nx does someone have time to go to a msg box and help me walk thru the steps i am new to ubuntu23:37
hokatichencilinux is pretty good at storing a lot of metadata in cache so if you're doing repeated actions you'll see decent lookup performance23:37
android60I want to be able to access my computer via ssh over internet, but I am worried about security. a WOL udp port 9 and 777-> 22 for ssh are the only ports I have open on my router. any suggestions?23:47
mathiazbdmurray: hey - any news on running my bug scripts on qa.ubuntu.com?23:48
bdmurraymathiaz: hey - yes I'm actually work on that right now! ;-)23:49
mathiazbdmurray: \o/23:49
mathiazbdmurray: let me know if you have any question23:49
bdmurraymathiaz: line 86 in acceptedbugs.py should be Distro Series I think23:50
mathiazbdmurray: http://people.canonical.com/~mathiaz/buglists/acceptedbugs.ubuntu-server.latest.html23:51
mathiazbdmurray: ^^ it's just one serie23:51
mathiazbdmurray: or may be I'm confused by the spelling23:52
bdmurraymathiaz: okay, how about we call it Release ?23:52
mathiazbdmurray: sure23:52

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