/srv/irclogs.ubuntu.com/2012/07/18/#ubuntu-server.txt

=== Aaton is now known as Aaton_off
=== bitmonk_ is now known as bitmonk
=== baggar11_ is now known as baggar11
=== n0ts_off is now known as n0ts
=== ReTFEF is now known as TheTFEF
=== cpg is now known as cpg|away
=== Aaton_off is now known as Aaton
=== exocaesar is now known as Guest88597
=== cpg|away is now known as cpg
=== TheTFEF is now known as Guest26587
=== Guest26587 is now known as TheTFEF
hallynstgraber: bleh, a problem with set_config_item.  I was hoping to be able to 100% use the existing callback code.02:04
hallynstgraber: but if you want to be able to do set_config_item("lxc.network.0.ipv4", "1.2.3.4") when 2 nics are defined, that requires changes02:05
hallynbc right now it's all based on the order of items in the config file02:05
hallyni guess i must change that.  with the api it's too hacky otherwise02:05
hallyn:(02:05
hallynadded to todo list.  it would be a crime not to02:09
=== Aaton is now known as Aaton_off
stgraberhallyn: heh, sorry ;) note for the next open source project => properly design config file (and don't make it depend on ordering ;))02:42
=== Corey_ is now known as Corey
addisonjI am looking for any docs/guides on getting juju working with rackspace cloud via openstack?04:39
addisonjanyone have ideas on that?04:39
addisonjhey, people who are using node in production, whats your preferred way of doing server config and management?04:40
addisonjoops, wrong channel04:40
=== Aaton_off is now known as Aaton
* RoyK += 0xc0ffee06:38
=== Aaton is now known as Aaton_off
=== Aaton_off is now known as Aaton
RoyKhm... where can I set the package version in making a deb package?06:56
RoyKis the UEC still not possible in a mesh configuration? I mean - no single point of failure thing in front (although I know it's possible to build that fault tolerant with DRBD or similar, I just don't want all that hassle)07:03
=== matsubara-afk is now known as matsubara
alex88hi guys, how can i disable ufw for an interface? as i'm trying to use multicast on private lan, and i want to disable firewall for eth107:52
RoyKalex88: afaict, ufw allow in on eth107:53
RoyKalex88: man ufw ;)07:53
alex88i've tried "ufw allow in on eth1 from any to any"07:54
alex88and it added the rule07:54
alex88but it seems they stil don't see each other http://pastebin.com/7Qbh6nDs i'm trying to use corosync + pacemaker07:55
alex88nm, it seems the same with firewall disabled07:56
Adri2000does #ubuntu-cloud actually exist? (looks like I can't join because I'm not invited)07:59
RoyKalex88: ufw disable ;)08:01
alex88RoyK: yup, just tried, still not working, it was working fine before restart and now..boom08:02
RoyKalex88: but - are you sure someone's actually listening to that multicast address?08:02
RoyKalex88: also, make sure there's no router between your machine and whoever's going to receive that traffic08:02
alex88RoyK: it worked fine until last restart, machines are using crossover cable, also, both corosync are running on same multicast address and port08:03
alex88just that now, each machine doesn't see the other08:03
alex88let me try to reboot again with ufw disabled08:05
=== Jasonn is now known as juicy
alex88mhh.. same thing08:07
alex88RoyK: how can i check if something is listening on multicast?08:07
RoyKlsof -p <pid> might help08:09
RoyKthat'd be the pid you hope is listening08:09
alex88"corosync 6225 root    9u  IPv4              26096      0t0       UDP 226.94.1.1:5405"08:10
alex88seems so08:10
RoyKthen debug that app ;)08:16
RoyKor sniff the traffic on that host to see if you can see incoming multicast traffic08:16
=== railsraider_ is now known as railsraider
=== Aaton is now known as Aaton_off
=== Aaton_off is now known as Aaton
=== railsraider_ is now known as railsraider
Pupeno_WHow do I do sudo -u postgres without getting "could not change directory to "/root"", do I have to cd into some other directory or is there a better way?08:53
Pupeno_WMaybe something similar to su -08:53
Pupeno_W?08:53
RoyKPupeno_W: su - postgres08:53
Pupeno_WCan't sudo do it?08:53
RoyKsudo si roy@smilla:~$ sudo su - postgres08:54
RoyKpostgres@smilla:~$08:54
RoyKnever mind the initial 'sudo si '08:55
Pupeno_WThat's still su doing it. :)08:55
RoyKyep, with sudo helping08:55
RoyKsudo -iu postgres08:55
RoyKsame thing08:56
RoyKjust a tiny difference in how the new shell is started08:56
Pupeno_WRoyK: I'm not trying to have an interactive shell, just run a command.08:57
peterruspkexec?08:59
RoyKPupeno_W: no idea - according to the docs, -EH should help, but AFAICT it doesn't09:00
Pupeno_WOk… thanks :)09:00
* RoyK tries to fix sanlock09:00
philballewdo we use SysV or Upstart in precise?09:01
RoyKbpth, really, but upstart is preferred09:04
RoyKsysv for things that don't do upstart09:04
RoyKs/bpth/both/09:05
philballewalright. seems good RoyK . Thank you for making Ubuntu awesome.09:06
=== Aaton is now known as Aaton_off
KingKatarii need to know how to use IPTables to allow any and all traffic to/from a specific IP allowed while any other rules in the IPTables are still in effect09:14
RoyK!ufw09:20
ubottuUbuntu, like any other Linux distribution, has firewall capabilities built-in. The firewall is managed using the 'ufw' command - see https://help.ubuntu.com/community/UFW | An alternative to ufw is the 'iptables' command - See https://help.ubuntu.com/community/IptablesHowTo | GUI frontends such as Gufw (GNOME) and Guarddog (KDE from Lucid onwards) also exist.09:20
RoyKKingKatari: normally, ufw is the preferred way of doing things unless you know iptables by heart and need more capabilities than ufw can offer09:20
RoyKKingKatari: ufw allow from x.x.x.x will do what you want09:21
KingKatarii need it via iptables09:21
RoyKKingKatari: or iptables -I INPUT -s x.x.x.x -j ACCEPT will allow all traffic from that IP09:21
KingKatarithanks09:21
RoyKsomething tells me that if you didn't know that, you shouldn't be using iptables in the first place :þ09:22
KingKatariso iptables -I INPUT -s 97.96.233.45 -j ACCEPT will allow any traffic in from that IP and iptables -I OUTPUT -s 97.96.233.45 -j ACCEPT will allow all traffic out to that IP?09:22
RoyKnormally, the output chain won't block anything09:23
RoyKbut if it does, you need to 'iptables -I OUTPUT -d 97.96.233.45 -j ACCEPT'09:24
RoyK-d, not -s09:24
KingKatariwhat it is, is that a friend locked my vps down for me more so then what the Host provider does and i cant get ahold of him to mod it to allow some connections from the vps to a home server and vice versa09:24
KingKatarilol i have a perl script on my vps that will query my windows system and then send the info to my linux system ( both windows and linux systems are on my home network ) but due to a conflict on my linux box on home network i cant run this perl script09:27
BuenGeniohi09:36
BuenGeniohow do I get fts_lucene for dovecot? it's not in any of the repos, afaik09:37
=== zyga is now known as zyga-afk
=== n0ts is now known as n0ts_off
XeusI'm trying to install ubuntu server and when I select the menu option to install it reboots the computer, any ideas?10:23
=== n0ts_off is now known as n0ts
=== n0ts is now known as n0ts_off
=== n0ts_off is now known as n0ts
=== zyga-afk is now known as zyga
=== matsubara is now known as matsubara-afk
=== cpg is now known as cpg|away
antiheroIf I have PHP sending output to syslog with ubuntu, how do I make it go to it's own file?11:09
antiheroI have no idea what the default version of syslog installed with ubuntu is - rsyslog? syslogng?11:12
* KingKatari takes a sledge hammer to his bamt rig and begins to beat it to dust11:13
antiheroany ideas?11:20
RoyKerror: internal error cannot load AppArmor profile11:45
maplesoft iam unable to see room list or creat any room for xmpp based openfire server used kopete (didnt see any options for rooms) and fastpath webased client (didnt showed a list either . any help?12:04
=== n0ts is now known as n0ts_off
=== K4k_ is now known as K4k
raubvogelOk, resolvconf is driving me nuts13:09
raubvogelso I removed it13:09
raubvogelset both of my interfaces to static13:09
raubvogeladded the dns-nameservers stuff to both in /etc/network/interfaces13:10
raubvogeland the dns-search thingie13:10
raubvogelsetup resolv.conf to match them13:10
raubvogeli.e. they are all supposed to point to this machine since I have bind init13:10
raubvogelI reboot13:11
raubvogelmy resolv.conf is changed13:11
raubvogelwtf?13:11
raubvogelThis is 12.04 BTW13:11
azeihello there13:19
azeianyone here ?13:19
azeii would like to run an application when you open a terminal13:20
azeihow to do ?13:20
Exopaladinazei: Use a .bashrc file in your home directory maybe?13:25
azeiwell do you heard about13:26
azeicmartrix ?13:26
Piciheh13:26
azeihello Pici13:28
azeido you know about that ?13:28
azeii simply trying to launch this application at terminal startup13:29
azeihow ot o do ?13:29
azeihow to do ?13:29
Piciazei: Ubuntu server doesn't have a GUI, so there really isn't any "opening a new terminal".  If you're running GNOME, or whatever, take a look at the manpage for gnome-terminal for the right arguments for doing whatever you want to do.13:30
azeistop13:30
azeiyou don't listening13:30
Piciazei: then clarify what you're trying to do.13:31
azeifirst tell me do you know that applicatioN ?13:31
Piciazei: Yes, I've played with it before.13:32
azeipefect we can exchange better13:33
stgraberzul, bencer: uploaded openldap with smbk5pwd13:33
azeiwhen you try to ssh to your server13:33
zulstgraber: cool13:33
azeii would like that that application run itself13:33
rbasakDaviey, smoser: for bug 1024408, my recollection is that add-apt-repository has never been in any relevant seed. I've always had to install it manually, and just verified this in Oneiric (I don't have a Precise non-VM image handy). But cloud-init depends on python-software properties (and more recently software-properties-common, bug 1021418), so we don't usually find add-apt-repository missing on cloud instances. Would adding software-properties-13:33
rbasakcommon to an appropriate server seed be the best solution here?13:33
uvirtbotLaunchpad bug 1024408 in ubuntu-meta "Quantal installs do not include software-properties-common by default" [Undecided,Confirmed] https://launchpad.net/bugs/102440813:33
uvirtbotLaunchpad bug 1021418 in cloud-init "Replace python-software-properties Depends with 'software-properties-common'" [Undecided,Fix released] https://launchpad.net/bugs/102141813:33
rbasakI'd certainly like to see add-apt-repository available on Server by default (VM or not)13:34
azeiand by pressing a key i would like that it give hand to prompt13:34
azeihow to do ?13:34
Piciazei: adding it to the end of your .bashrc should be sufficient.13:34
azeiadding what to where ?13:35
bencerstgraber: zul, cool thanks!!13:35
smoserrbasak, well it seems that javiewr is implying there is a dependency bug13:35
smoser(that i was not aware of)13:36
rbasaksmoser: "Quantal server installations do not include software-properties-common by default."13:36
rbasaksmoser: this has never been the case. Precise server installations don't include that either, AFAIK, and by design. Unless you install cloud-init13:36
azeipefect Pici working13:36
smoserit seems to me that adding it to server seed would be reasonable.13:36
Piciazei: great13:36
smoserrbasak, yes, but commen t2 in that bug suggests a dependencies problem13:37
smoser(in addition to it not being seeded)13:37
azeibut it don't give the hand to cli13:37
azeiwhen you press something13:37
jamespagerbasak, just uploaded you libnss-ldap fix to quantal - made one small tweak which was to use dh_link in the rules file rather than doing it using mkdir && ln -s13:38
rbasakI think he might have it backwards. Comment #2 sounds like he expects add-apt-repository to appear if he installs python3-software-properties. This is now backwards. From >=quantal, you're supposed to install software-properties-common for add-apt-repository. bug 102141813:39
uvirtbotLaunchpad bug 1021418 in cloud-init "Replace python-software-properties Depends with 'software-properties-common'" [Undecided,Fix released] https://launchpad.net/bugs/102141813:39
azeiget my questioN ?13:39
rbasakjamespage: I didn't use dh_link because the links file can't do multiarch. Or can it?13:39
jamespagerbasak, you can use it directly in debian/rules13:39
rbasakjamespage: ah, I didn't know that. Thanks!13:40
jamespagerbasak, http://paste.ubuntu.com/1098313/13:40
rbasakjamespage: got it. That makes sense. Thanks for the upload!13:40
jamespagerbasak, I'm not sure whether we need to SRU that tho - its broken but are we actually seeing any bugs because of it?13:40
rbasakjamespage: I fear that ldap nss is completely broken on precise, but that nobody has noticed13:41
rbasakjamespage: actually no, scrap that13:42
jamespagerbasak, well until somebody does and can come up with a test case....13:42
jamespagelol13:42
rbasaknss looks for /lib/.../libnsswitch_ldap.so.2 or something, which does exist (on amd64). So I think I agree - no SRU unless somebody complains with an impact statement13:42
rbasakjamespage: however, armhf is completely broken right now and on my todo list13:43
jamespagerbasak, ack13:43
jamespagesounds good to me13:43
rbasakUpstream detect the presence of glibc in an "interesting" way in autoconf, and an armhf system isn't glibc according to that :)13:43
rbasakSo it puts all the libraries in the wrong places13:43
henkjangrmbl, server upgrade from lucid to precise13:45
henkjanbut grub doesnt fit in my bootsector :(13:45
henkjanstarting on sector 6313:45
patdk-wkinstall it on your partition instead? and let the normal bootsector chainload it?13:47
henkjanwil that work on an mdadm + lvm partition?13:48
=== joete is now known as joegazz84
=== joegazz84 is now known as bca
=== bca is now known as Guest29702
=== Guest29702 is now known as bca
zulsmoser: ping14:05
smoserzul, here.14:05
zulsmoser: where can i get the cirios images again?14:06
smoserzul, launchpad.net/cirros oficially14:11
smoserbut if  you are playing, i'd appreciate testing on http://cirros.brickies.net/download/0.3.1~pre1/14:12
smoserzul, ^14:12
zulcool beans14:13
maplesoftwhich is the most feature full xmpp server ? any suggestions?  which one is this jabber.org using? how can i ban kick or gline (similer to irc) in jabber? using openfire at the moment? are there any stardard commands? which xmppds have largets user communities14:20
zulsmoser: does the cirios lxc image work?14:21
smoserzul, i believe so14:23
Davieyrbasak: agreed, that has always been the case14:38
Davieyalso.. vim being missing, wtf :)14:38
rbasakDaviey: I found bug 43956614:38
uvirtbotLaunchpad bug 439566 in ubuntu-meta "add python-software-properties to ubuntu-standard" [Wishlist,Triaged] https://launchpad.net/bugs/43956614:38
=== Lcawte|Away is now known as Lcawte
Davieyrbasak: perhaps liase with cyphermox?14:40
rbasakDaviey: don't we just need to add software-properties-common to a seed now?14:46
rbasakDaviey: which seed? ubuntu-standard?14:46
Davieyrbasak: well, standard hits desktop aswell... is this just required for server?14:47
rbasakDaviey: desktop ends up with it already I think. I think it should be in both though, since lots of Ubuntu-related instructions use add-apt-repository (eg. instructions on a PPA page)14:48
Davieyrbasak: Okay, do you want to get a MP ready?  we'll JFDI and see if there is comment.14:49
rbasakDaviey: OK, will do14:49
Davieysupr14:51
=== Aaton_off is now known as Aaton
jamespagesmoser, zul: how do you feel about an upgrade to python-boto?  I have one in the sponsorship queue....15:18
raubvogelDoes anyone have an example of an iptable egress rule (allow to, say, connect to www.server.com:80 from a LAN) for a firewall?15:20
smoserjamespage, well.. i do not have strong feelings against.15:20
smoserother than that i finally got to using the debian package in the last upload15:20
smoser(after like 2 years of carrying our own)15:21
zuljamespage: depends on the changelog15:21
smoserzul, the changelog is massive of course15:21
zulsure i wouldnt mind sticking it in the openstack-ci and see what breaks first15:21
smoserhttp://paste.ubuntu.com/1098457/15:23
smoserwe are fairly light on boto usage. really15:24
MkaysiHi, is it possible to install Ubuntu Server from USB-stick? I am just receiving error about reading from CD. What I want is to install Ubuntu Server and then install MATE on it, without getting Unity nor KDE nor XFCE nor LXDE.15:24
jamespagesmoser, yeah - I noticed15:25
zulsmoser: still i would rather have someone install it and the nova testsuite with it on though15:25
zulsafer than sorry15:25
jamespage(debian package finally in use)15:25
jamespagezul: does the nova build do that - I can check it if you like?15:26
zuljamespage: sure15:26
smoserhttp://paste.ubuntu.com/1098459/15:27
MkaysiNevermind, Google is full of similar issues.15:27
smoseri generally trust python-boto though to be backwards compatible.15:28
jamespagesmoser, ack - I pushed back on the additional changes proposed to the packaging anyway - I'll look again later.15:31
smoserjamespage, mp link?15:32
jamespagesmoser, https://code.launchpad.net/~logan/ubuntu/quantal/python-boto/new-upstream/+merge/11546515:33
smoserhm..15:34
=== Aaton is now known as Aaton_off
MoleManI understand that you guys are doing and discussing specific dev stuff, but would it really be that hard to answer a few 30 second questions? (not me, just people I can see further up that have been completely ignored with questions that even I could have answered...)15:42
=== matsubara-afk is now known as matsubara
ScottKThen why didn't you answer them?15:47
ogra_++15:48
jamespagesmoser, hm..?15:49
=== Aaton_off is now known as Aaton
=== Ursinha` is now known as Ursinha
=== Aaton is now known as Aaton_off
=== Aaton_off is now known as Aaton
=== Aaton is now known as Aaton_off
=== i23 is now known as py_can
smoserjamespage, my hmm... was just wondering why the suggested watch file move to pypy16:51
ssvssN17:09
=== cpg|away is now known as cpg
=== cpg is now known as cpg|away
ssvss /statusbar window add -after lag -priority 10 act17:39
RoyK /me smiles17:40
ssvss sorry, new to irssi, and trying out some settings :)17:46
RoyKnp :)17:47
SpamapSssvss: 20 pushups, now!17:59
MoleMan" 16:47:19 - Wed 18.07.2012 <ScottK> Then why didn't you answer them?" because I wasn't here, I was idle... I was commenting to people who were active and talking at the time...18:26
dbsrgood afernoon/eve people, can i ask support questions about ufw/iptables here?18:39
dbsrimma ask my questions, and hope this is the right channel, because this is driving me crazy18:40
r0tha_dbsr: lol18:40
r0tha_go for it18:40
RoyK!ask18:41
ubottuPlease don't ask to ask a question, simply ask the question (all on ONE line and in the channel, so that others can read and follow it easily). If anyone knows the answer they will most likely reply. :-) See also !patience18:41
dbsrfirst, im new to linux, so, probably how i did it was not the most efficient way, i wanted to be able to open the ssh port on my server remotely through apache, made a c wrapper that gets called by www-data but is executed as root, the c wrapper calls a bash script that reads the ip from a text file the php page makes after i have succesfully logged in (prob could have used the c wrapper for it but this was easier :p)18:44
dbsranyhows, everything works18:44
dbsri use ufw by the way, not iptables itself18:45
dbsrthe rule gets added18:45
dbsrbut somehow18:45
dbsrit doesnt work18:45
RoyKwhat exactly are you trying to do?18:45
RoyKopen ssh port to apache seems rather - well - strange18:45
dbsrthe weird thing is, that when i add the rule with gufw, it does work, i checked user.rules, and it looks exactly the same, checked iptables-save no difference between the ufw added rule and the rule added through gufw18:46
dbsri dont open it for apache18:46
RoyKexplain the application18:46
dbsri use apache to open it 8)18:46
RoyKwhat you are trying to do18:46
RoyKtrying to login via ssh on port 80?18:47
RoyKor 443?18:47
RoyKor what?18:47
adam_gzul: can you push that python-warlock packaging somewhere so i can get builds going agian?18:47
dbsrwell, my server was gettung hammered by baddies tryingi to get access to it through ssh, i disabled password auth and am using keypass now, so its not really needed anymore18:48
dbsrbut i thought it would be fun to make18:48
zuladam_g: yep18:48
dbsrwhat it should do is when i want to ssh my server, i visit a php page that needs user/pass, when user/pass is correct, apache calls a script that opens the ssh port (22)18:49
dbsrand when i close the remote session ive got a script that closes the port18:49
zuladam_g: http://people.canonical.com/~chucks/tmp/18:49
dbsrthe problem is that somehow, i cant use ufw to open the port for my ip18:49
dbsrwhen I add the exact same rule through gufw18:49
dbsrit does work18:49
dbsrand every setting file ive looked, both rules look exactly the same18:50
dbsrI have even looked at the gufw source code to see if it is doing anything special when it applies the rules, couldnt find it18:51
dbsrso im at wits end18:51
RoyKdbsr: apt-get install denyhosts ;)18:53
RoyKor fail2ban18:54
Seveasor knockd18:54
Seveasor use openvpn18:54
dbsr_sorry guys, got d/c18:56
RoyKSeveas: vpn is nonesense if you want a server to be available18:56
RoyKdbsr: try denyhosts or fail2ban18:56
dbsr_yea, im not making it as much any more for security reasons as for fun/learning18:56
dbsr_im running fail2ban18:56
RoyKthen those worms won't get through18:57
dbsr_yea, dunno much about that, but was wondering howd they get my servers ip18:57
dbsr_i did register a website at freedns18:57
dbsr_thought that was it18:57
RoyKprobably by sweeping18:57
dbsr_like mass port scanners?18:58
RoyKdbsr_: forget about secret addresses18:58
RoyKjust secure your host18:58
dbsr_one of the ips that was hammering my server was apparently a well known botnet'18:58
RoyKlisten: they'll find your address, just secure it18:58
dbsr_yea18:59
dbsr_thanks for the advice guys, if anyone knows what could cause the discrepancy between gufw and ufw would be cool18:59
RoyKdbsr_: the best advice is to secure your services - that way you won't need a firewall19:00
dbsr_no firewall at all?19:00
RoyKnope19:00
dbsr_neither on the router?19:01
RoyKa firewall is there to secure insecure systems behind it19:01
dbsr_heh19:01
* RoyK works at hioa.no and we don't have a firewall19:01
dbsr_like only idiots need virusscanners?19:01
RoyKor windows users ;)19:02
dbsr_heh19:02
dbsr_same19:02
* dbsr_ windows user19:02
dbsr_:)19:02
dbsrwell hi again, webirc is no good apparently :)19:09
dbsrthere has been one linux virus right? read an article about it a while back, decent read19:10
RoyKdbsr: there have been worms, but no big one since the BIND worm back in 1999 or so19:12
RoyKoh, 2001, that was19:13
dbsrRoyK: Have you ever tried archlinux? thought it would be fun to try it out, heared it isnt really a distro for (headless) servers tho19:15
RoyKdunno19:15
RoyKubuntu works well for me19:15
dbsrfair enough, and any input on the lack of quality codecs for (hd) media playback19:16
dbsrif theyd have those19:16
dbsri would switch back instantly19:16
dbsraight, thanks for the help, gn all19:23
=== ReTFEF is now known as TheTFEF
streulmahello19:27
streulmamy sh script works if I am in the directory, but not outwards19:27
=== roaksoax_ is now known as roak
=== roak is now known as andreserl
=== andreserl is now known as roaksoax_
=== segv_ is now known as segv
=== Daviey_ is now known as Daviey
=== three18ti_ is now known as three18ti
=== roaksoax_ is now known as roaksoax
=== LordOfTime is now known as TheLordOfTime
raubvogelCan anyone tell me why apparmor is not allowing mysql to start: http://pastie.org/private/idr4qq2ewnqewdtlfz0zlg20:49
raubvogelgoogling did not get me a good answer so far20:49
SpamapSraubvogel: I don't see any evidence that apparmor is preventing mysql from starting20:49
SpamapSraubvogel: the profile_replace is just from /etc/init/mysql.conf loading its profile into place before it starts20:50
raubvogelAh ok. I have been having too much fun with apparmor this week so I am a bit in a knee-jerk mode20:51
SpamapSraubvogel: check /var/log/mysql*20:52
SpamapSJul 18 12:45:54 certmysql kernel: [11966.798666] init: mysql main process (6145) terminated with status 120:52
raubvogelSpamapS: It did not write to its log file20:53
raubvogelI think I know now what is going on20:53
raubvogelbind-address20:53
SpamapSraubvogel: when that happens I try running /usr/sbin/mysqld manually20:53
=== cpg|away is now known as cpg
bananapieHi, I want to compile a package that was downloaded using apt-get source [package name]. I compiled it using 'dpkg-buildpackage -rfakeroot --target=x86_64'. I am running on a 32bit machine, I was hoping to cross compile. Can someone point me to a straight forward guide on how to do this ?22:20
smw_I all, I have an ubuntu ec2 server and I am trying to use apt-get install. I cam getting 403s for everything22:58
smw_led to fetch http://us-east-1.ec2.archive.ubuntu.com/ubuntu/pool/main/g/gtk+3.0/libgtk-3-common_3.4.2-0ubuntu0.2_all.deb  403  Forbidden22:58
smw_s/led/Failed/22:58
* smw_ pokes utlemming22:59
utlemmingsmw_: did you run "apt-get -y update" firsT?22:59
smw_oh... that would be a good idea :-)23:00
smw_thanks23:00
smw_utlemming, it is working now :-)23:00
utlemmingsmw_ :)23:01
* utlemming is happy23:01
utlemmingsmw_: unfortantly, this is an area where I think apt is deficient23:01
utlemmingit should update the meta-data before any operation, so you don't see 403's23:01
smw_yeah23:02
=== joete is now known as bca
=== Lcawte is now known as Lcawte|Away
hoover_dammHi, trying to use perf-top and well perf in 12.04 can't seem to find the package that has it?23:41
uvirtbotNew bug: #882581 in glance (main) "install/upgrade questions re glance-manage db_sync" [Low,Confirmed] https://launchpad.net/bugs/88258123:49
uvirtbotNew bug: #974046 in maas (main) "running just the command "maas" causes an error" [Medium,In progress] https://launchpad.net/bugs/97404623:49
uvirtbotNew bug: #1007314 in krb5 (main) "trying to upgrade from 11.10 to 12.04: The package 'postgresql-contrib-8.2' is marked for removal but it's in the removal blacklist" [High,Fix committed] https://launchpad.net/bugs/100731423:49
uvirtbotNew bug: #1026256 in pptpd (main) "pptpd.conf" [Undecided,New] https://launchpad.net/bugs/102625623:49
uvirtbotNew bug: #1026261 in postfix (main) "[regression] mail stalls; postfix chroot setup nests /etc/ssl/certs to deep" [Undecided,New] https://launchpad.net/bugs/102626123:49
uvirtbotNew bug: #1026375 in php5 (main) "package libapache2-mod-php5 5.3.10-1ubuntu3.2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1 (dup-of: 1026374)" [Undecided,New] https://launchpad.net/bugs/102637523:49
uvirtbotNew bug: #1026057 in openldap (main) "Segfault when setting bad olcTLSCipherSuite" [Medium,Triaged] https://launchpad.net/bugs/102605723:50
uvirtbotNew bug: #1026015 in openbsd-inetd (main) "wrong variable in /etc/default/openbsd-inetd" [Undecided,New] https://launchpad.net/bugs/102601523:51

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