/srv/irclogs.ubuntu.com/2014/08/25/#ubuntu-server.txt

=== edwardly_ is now known as edwardly
qman__I'm trying to add NIS extensions to my samba4 domain, following the instructions here: https://wiki.samba.org/index.php/Using_RFC2307_on_a_Samba_DC -- Checking my environment, I don't have them installed, and it says to use ypServ30.ldif to add them. However, this file does not exist anywhere on my system. Running Ubuntu 12.04 with Samba 4.0.0~alpha18.dfsg1-4ubuntu200:06
=== Lcawte is now known as Lcawte|Away
fridaynexthere's my /etc/exports, but when I try to connect to my shares from OSX 10.9, it's slow to connect. Any idea why? http://pastebin.com/raw.php?i=9hPvZDgX00:30
fridaynextI have "rw" in my nfs share, but I can't write to the share - how do I enable the ability to write to it?00:53
qman__fridaynext: file permissions, most likely - that's a really bad configuration from a security standpoint01:01
fridaynextqman__: do you have any links to tutorials about how to increase the security without spending four hours reading the man pages?01:02
qman__it's very simple01:02
qman__192.168.1.0/255.255.255.0(ro,async,no_subtree_check)01:03
qman__is what I have on mine01:03
pfsense_rookiehuh..01:03
fridaynextqman__: and how is mine less secure than yours?01:03
qman__to make it work, your UIDs have to match on all affected systems01:03
qman__and the users have to have permissions to the files01:03
fridaynextthat's why i set the uid to 1000, since I can't change my UID on OSX.01:04
qman__fridaynext: yours turns off all the security features that are built in, allows root and guests to write to anything, etc01:04
fridaynextI want to be able to write to all the folders I connect to - but I can't seem to make that happen without adding all the extra variables.01:04
qman__change your UID on the linux side then, or add a specific user for it01:05
qman__then set the ownership and permission on the files01:05
fridaynextI tried doing that with groups before, but I guess GID is not enough...01:05
qman__NFS is designed to be used within a unified environment, where everyone authenticates to a central authority, UIDs are synced, etc01:06
qman__without one, security is impossible01:06
qman__but allowing root and guests is a particularly bad idea01:07
fridaynextgotcha - i'm making those changes now to see if it works.01:09
fridaynextqman__: so since you have 'ro' in yours - is that read only for even your UID?01:10
qman__yes, for that one, I have an rw one too01:10
qman__it's the same except for that01:10
qman__I also have a samba share on the same location as the rw nfs share, all the files have enforced group-ownership through several methods, and all the share users are a member of that group01:11
fridaynextsee with your settings, I can't connect to the NFS share. Even with creating a user on my *nix box with the same UID as my OSX user.01:12
qman__the user has to have at minimum read permission on the directory you're sharing, write to write to it01:12
qman__and execute on directories to list them01:13
fridaynextthe user does.01:13
fridaynextthe 'casey' folder is the one i'm trying to share: http://pastebin.com/raw.php?i=SJZwXUZa01:14
fridaynextand my nfs export line is: /media/raid/tm_backup/casey192.168.0.0/24(rw,async,no_subtree_check)01:14
qman__ok01:15
fridaynextI gave 'node304' the same UID as my OSX user I'm logged in as.01:15
qman__trying to find where the log is stored01:16
fridaynextI can't find it either...01:17
qman__also, are you running nfs-kernel-server?01:18
fridaynextqman__: ye01:18
fridaynexts01:18
qman__ok01:18
qman__try changing to /255.255.255.0 instead of /24, just to test01:20
qman__I'm not certain if it supports CIDR or not01:20
fridaynexti can connect to another of my shares with /24, but I'll test this anyway.01:21
qman__ok01:21
qman__what error, if any, do you get trying to mount it?01:22
fridaynexthttps://lh5.googleusercontent.com/--VrYk3lnOYg/U_qP9qN8hCI/AAAAAAAAHDk/UbT4XBCdjok/s800/Screen%2520Shot%25202014-08-24%2520at%25208.22.44%2520PM.png01:23
fridaynextthat error message doesn't help much01:25
qman__try this on the server: sudo mkdir -p /tmp/nfsmount; sudo mount -t nfs 192.168.0.X:/media/raid/tm_backup/casey /tmp/nfsmount01:25
qman__replacing X with your server's IP01:25
qman__if it mounts that at least means the NFS configuration works, and points us to a network issue or a mac specific issue01:26
fridaynextjust issued that command - it's hanging.01:27
fridaynextnope - did it. looks like it's mounted.01:28
fridaynext192.168.0.100:/media/raid/tm_backup/casey 5858043904 1247198208 4610845696  22% /tmp/nfsmount01:28
qman__ok01:29
qman__try the same thing on the mac01:30
qman__from the terminal01:30
fridaynext"Operation not permitted"01:31
fridaynexthttp://pastebin.com/raw.php?i=yfZh4n9k01:31
qman__try this: sudo mount -t nfs -o resvport,rw 192.168.0.X:/media/raid/tm_backup/casey /tmp/nfsmount01:34
fridaynextokay, that worked nearly instantly.01:35
fridaynextso now I need to know how to do that via the Finder.01:35
fridaynextwhere'd you find that fix?01:35
qman__ok, that tells us exactly what the issue is01:35
fridaynextnice! what is it?01:35
qman__that option tells the mac to use a reserved port (sub 1024)01:35
qman__so we either need to tell finder to do that, or tell linux it's okay if you don't01:35
fridaynextI wonder if I can add the port to my finder connect comand01:36
fridaynextactually, I don't think I can do that in my finder command.01:36
fridaynextso what's the option in /etc/exports to remove the port specificity?01:36
qman__insecure01:37
qman__add that to the list and it should work01:37
fridaynextAh, I did that once before, and it caused the Finder to freeze up.01:38
fridaynextI just need some program that runs scripts on startup for OSX, then I can avoid this Finder nonsense.01:38
qman__you can configure it to auto mount I think01:38
fridaynextYeah, finder has frozen again (once I've added 'insecure' to the list)01:38
qman__http://apple.stackexchange.com/questions/102092/mount-linux-nfs-share-on-mountain-lion-10-8-501:39
fridaynextah - it worked with the finder after about 40 seconds01:39
fridaynextsuper slow.01:39
qman__finder might be trying to do something silly01:39
fridaynexti'm sure it is.01:39
fridaynextyou've been a great help, qman__!01:40
fridaynextalthough, I do'nt have that same file that the poster is talking about on that page.01:41
fridaynextno /etc/auto_nfs in my 10.9 build.01:41
qman__this may or may not help: http://www.techrepublic.com/blog/apple-in-the-enterprise/mounting-nfs-volumes-in-os-x/01:46
qman__unfortunately this is getting pretty deep into mac-specific territory I'm not familiar with01:46
fridaynextyeah, that article was written bakc when you could mount NFS with disk utility.  Apple removed that option now.01:47
qman__heh01:47
fridaynextyup01:47
qman__well, I think there's a feature of launchd to make stuff run at startup that could be scripted, but that's getting pretty deep for a filesystem mount01:48
fridaynextoh - that did seem to work01:48
fridaynextI just wasn't looking in the right place.01:49
qman__for the performance problem, it could either be using poorly optimized defaults for the block sizes and such, or it could be trying to do something silly having to do with the apple-specific dotfiles01:49
fridaynextoh i have great performance on NFS01:49
fridaynext100-110MB/s01:49
fridaynextpretty much maxing out my RAID5 array01:49
fridaynextDoes that guy add too many attributes to the connect? the stackexchange post?01:50
fridaynextor do those not affect the security?01:50
qman__you don't need resvport since you changed the server side to be ok with it01:50
qman__the rest are performance-related01:50
qman__you can view what each one does in the nfs man page01:51
qman__he is missing the 8 on the rsize01:51
qman__they're supposed to be the same number in that example01:51
qman__while I'm not sure how it behaves on a mac, using "soft" on a linux client is important especially if your network isn't perfectly reliable; the default "hard" will cause any process with a file open on the share, should the share drop off the network, to freeze until it comes back01:54
qman__with soft, it just generates an error and allows execution to continue01:55
fridaynextgood god, now I can't get it to work.02:03
apb1963I've NFS exported my root filesystem (from host/server blue to client orange), which of course includes /mnt/  which itself mounts a secondary drive; i.e. it's a different filesystem than /  So orange sees the mount as /mnt/blue/. Although I'm able to see the directory tree under /mnt/blue/mnt/ which has additional subdirs (i.e. /mnt/blue/mnt/a/b/c/d/e/f/g/h/) the files that should be under ../h/ are not there.  server is ubuntu 12.04, client is02:11
apb1963ubuntu 14.0402:11
sarkisany advice on whether to use ufw or just use iptables directly?02:14
qman__sarkis: either is fine, it's up to your preference02:15
qman__sarkis: ufw does a lot of things for you but can't handle every configuration possibility02:15
sarkisya  i lean with using iptables so if i ever switch distros i don't rely on a ubuntu only thing02:16
qman__personally I prefer to write a shell script that does all the iptables stuff and put it in if-up.d02:17
qman__for anything complicated, at least02:17
fridaynextqman__: well, I can at least mount my NFS share - even though I can't get it to automount yet - but that's all I need for now, so I Can start taking backups of this machine.02:34
fridaynextThanks for all your help tonight!02:34
superspringhey all, is there a way to get a list of which security updates are available for a server with aptitude or similar?03:24
pmatulissuperspring: i guess one cheesy way would be to enable only the security pocket and see what comes down03:52
superspringpmatulis: i see, no one-liner commands to do it? :p03:52
pmatulissuperspring: there probably are03:53
pmatulissuperspring: hint, all security updates will have a '.#' tacked on to its version number03:53
pmatulissuperspring: the kernel is at least one exception to that rule03:54
pmatulisas each kernel is its own package, not an upgrade03:55
trijntjeHi all, ubuntu server running on the local network keeps losing ethernet connection, I've put the output of ping on pastebin. http://pastebin.com/WGe0Eq0Q How can I fix this?07:21
lordievadertrijntje: Run a packet capture and see what happens?07:23
trijntjelordievader: how would I do that? I dont have a lot of experience debugging network problems07:25
lordievadertrijntje: "sudo tcpdump -i eth0" Hopefully it doesn't grow too large before it happens. Wireshark doesn't like large files.07:27
trijntjelordievader: it only happens when I'm using torrents, so it might grow pretty fast07:29
lordievadertrijntje: Ah, then the problem is likely that you open too many TCP connection and DOS your router.07:30
lordievadertrijntje: Tell your client not to open a million tcp connections ;)07:30
trijntjelordievader: I thought that as well, but the router is fine and the other pc's attached to the router are also fine07:31
lordievaderStill, limit the number of connections and see if the problem persists.07:32
trijntjelordievader: I thought I did, this is the relevant part of my rtorrent config http://pastebin.com/br8Fa08d07:35
trijntjealso, netstat shows that rtorrent only has 16 open connections07:35
lordievadertrijntje: Hmm, that should be fine indeed. Carry on with the packet capture ;)07:37
trijntjeok, I added a torrent and its dropped of the network now07:41
trijntjeI can still connect to the router and other pc's on the network07:42
trijntjelordievader: ok, its back online now and I have the tcpdump file, what should I do next?07:50
lordievadertrijntje: Analyse it with Wireshark. See if there is something fishy going on.08:02
trijntjelordievader: "tcpdump.txt isnt a capture file in a format that wireshark understands"08:06
trijntjehm, looks like I have to rerun it with the -w flag to make it readable for wireshark, i'll have to capture it again08:07
trijntjethanks for your help so far, i'll be back when I got the data08:08
lordievadertrijntje: Oh, right. I allways forget that -w flag.. Sorry 'bout that.08:10
trijntjelordievader: no problem, its not an acute problem, just anoying08:16
lordievadertrijntje: I get that ;)08:31
Vladimir_are there any microsoft office irc channels?08:53
sorenVladimir_: If there are, we'd be some of the least likely to know about them.09:13
Vladimir_soren: thanks, no problem=) hehe09:18
=== Lcawte|Away is now known as Lcawte
SrRaven-workso, lets say I have two servers running Ubuntu Server, can I simply copy all relevant postfix files to the new machine ?09:40
lamontSrRaven-work: depends on what  your intent is.  in anycase, make sure that they don't ultimately have the same answer for $myhostname10:21
lamontthough it defaults to /etc/mailname, so you should be ok10:22
mdevis enabling automatic update installs safe/best security practice11:42
mdevam using 14.04.1 lts11:42
mdevnevermind bad packages can wreck havoc, so i'll do manually11:44
Vladimir_Is there anyone who use Rancid ?13:07
=== rapa is now known as Reidadolbuso
Vladimir_Maybe can help me set it up, I'm having alot of errors13:07
Vladimir_I get one problem with Rancid, when I run clogin to a switch it says that the .cloginrc file does not exist in the /home/rancid/.cloginrc directory. Why does it look in that directory since I created that file in /var/lib/rancid/.cloginrc ?? very strange, how do I change where clogin looks for that file?13:24
_rubenwonder if i can somehow combine bonding and mpio on the same set of nics (as in: bonding to have 1 management ip reachable over all nics, mpio to provide extra bandwidth for iscsi)13:26
pgar23Vladimir_: is there a GUI for rancid? If so, look to settings13:27
Vladimir_pgar23: no I have to get it to work before I can get web gui to work :/13:27
_rubenseems setting fail_over_mac to active might work for me13:42
=== Vigour_ is now known as Vigour
=== Tzunamii_ is now known as Tzunamii
=== balloons_ is now known as balloons
=== hachre_ is now known as hachre
=== DavidDuffey is now known as dduffey
=== psivaa_ is now known as psivaa
=== hxm is now known as Guest94481
=== tjaalton_ is now known as tjaalton
=== croepha_ is now known as croepha
smoserhallyn, when we move to systemd does that magically solve the issue with upstart and network namespaces ?15:14
smoserwithout adding other issues?15:15
hallynsmoser: i think so.  don't know enough about systemd15:18
patdk-wksystemd not add other issues? :)15:19
smoserpatdk-wk, ewll, those will be magiclaly solved15:23
=== Beliq____ is now known as Beliq
smoserwith pixie dust15:23
patdk-wkah, my daughter is good with that, I'll ship her over15:24
=== JanC_ is now known as JanC
=== matsubara is now known as matsubara-lunch
=== pleia2_ is now known as pleia2
=== a1berto_ is now known as a1berto
sarnoldapb1963: what was the missing piece?16:52
darrenrIs it possible to create a deployment server on a minibook?16:52
apb1963sarnold: firmware16:52
sarnoldapb1963: groan.16:52
sarnoldapb1963: nice debugging :)16:53
apb1963well, I can't really take the credit....  TP-Link support suggested it.16:53
apb1963(after suggesting some other somewhat dumb things that might have made sense for some people but was clearly a checklist of items that the support girl had no idea what she was really suggesting)16:54
apb1963I have two new issues though :/16:55
=== Ursinha is now known as Ursinha-afk
apb1963It just never ends....16:55
sarnoldapb1963: oh, nice. I guess it makes sense for them to include firmware update in their list of suggestions17:11
apb1963well, that was last on the list17:11
apb1963sarnold: but hey, I'm just glad it's working... better ;)17:12
sarnold:)17:12
apb1963sarnold: how's your NFS?17:13
sarnoldapb1963: heh, I haven't used nfs in a decade.17:13
apb1963sarnold: yeah, same here... and now I need to17:13
apb1963sarnold: unless of course you can think of a better solution17:14
sarnoldapb1963: well, depends what you're trying to do. the new hotnesses are iscsi or ceph, but I like the simplicity of NFS.17:15
apb1963sarnold: never heard of those (this is why I ask these things).  I just want to share my filesystem with my other computer, same LAN.17:15
sarnoldapb1963: NFS is probably best then17:16
apb1963sarnold:  if only it was working :/17:17
apb1963sarnold: I've got the strangest problem.17:17
sarnoldnot surprised :D17:17
sarnoldapb1963: firewalls on either system?17:17
apb1963sarnold: yes... but I don't think that's the issue17:18
apb1963sarnold: 103  7988 ACCEPT     all  --  any    any     192.168.0.0/24       anywhere17:18
apb1963I've NFS exported my root filesystem (from host/server blue to client orange), which of course includes /mnt/  which itself mounts a secondary drive; i.e. it's a different filesystem than /  So orange sees the mount as /mnt/blue/. Although I'm able to see the directory tree under /mnt/blue/mnt/ which has additional subdirs (i.e. /mnt/blue/mnt/a/b/c/d/e/f/g/h/) the files that should be under ../h/ are not there.  It DOES find /mnt/blue/etc/foo; just17:19
apb1963not /mnt/blue/mnt/files - server is ubuntu 12.04, client is ubuntu 14.0417:19
apb1963As if that wasn't enough, at the moment the client is giving me: clnt_create: RPC: Program not registered when I do a showmount -e17:20
sarnoldapb1963: nfs export will only export that one filesystem; if you want clients to have submounts in the proper location, you've got to export that filesystem too, and mount that filesystem too17:23
sarnoldapb1963: program not registered is probably missing the rpc stats or whatever arranges the dynamic ports that nfsv1 loved so much17:24
apb1963portmapper?17:24
apb1963Actually I tried mounting just /mnt17:24
patdk-wkwell, programs that use portmapper17:24
patdk-wklike lockd, statd, mountd, ...17:24
sarnoldah, thanks17:25
apb1963patdk-wk: that still begs the question.... how do I fix it?17:25
apb1963using nfsv4 actually17:26
patdk-wknfs4 has lots more things17:26
patdk-wklike id mapping and stuff17:26
patdk-wknfs4 is a whole nother level of difficulty, over nfs317:26
apb1963actually...  I don't care what version I use, as long as it works17:26
patdk-wkand 10.04 doesn't support nfs4, I don't believe17:26
patdk-wkI would be supprised17:26
apb196312.04 here17:26
patdk-wkI thought that was 12.0417:27
patdk-wkoh, client is 14.0417:27
patdk-wkthought that said 10.0417:27
apb1963server 12.04, client 14.0417:27
patdk-wkdid you edit /etc/defaults/nfs*17:27
patdk-wkto enable nfs4 stuff?17:27
apb1963I did not17:27
patdk-wkconfigured idmapper17:27
patdk-wkand all that other nfs4 config info17:28
apb1963nfs-common    and    nfs-kernel-server17:28
patdk-wkand /mnt/blue isn't valid for nfs417:28
apb1963I took a look at them last night... I didn't see anything that needed changing17:28
patdk-wkall nfs4 exports must happen from the single nfs4 export mount17:28
patdk-wkwell, last I checked17:29
patdk-wkidmapper and gss aren't enabled by default17:29
patdk-wkand idmapper is required for nfs417:29
patdk-wkgss is for kerberos only I think17:29
patdk-wkthough if your doing nfs4, you should be using kerberos17:29
apb1963yes, gss was causing a problem... I blacklisted the  module17:29
patdk-wkotherwise, there is not much point of using nfs4 :)17:29
apb1963ah17:29
apb1963well, it's just on my local lan17:30
apb1963so let me go back to nfs3 since I don't need the new features17:30
sarnoldoh I thought nfsv4 brought tcp support which was nice because tcp17:30
patdk-wkno17:30
patdk-wkthat was nfs317:30
patdk-wknfs4 brings user authenication and mapping17:31
patdk-wkthough, user authenication requires kerberos17:31
patdk-wkand usermapping is still broken17:31
patdk-wkso yournames need to match and user id's17:31
apb1963whoops... I already did go back to nfs3 earlier :)17:31
patdk-wksarnold I switched to tcp for netapp17:31
patdk-wknow I'm not on netapp I switched back to udp, and got more benifits17:32
sarnoldpatdk-wk: oh, what do you prefer about the udp service?17:33
patdk-wkit doesn't have all the performance issues tcp has :)17:33
apb1963my etc exports:     /         192.168.0.101(rw,sync,no_root_squash,no_subtree_check,fsid=0)17:33
patdk-wktcp is nice, if your not staying on a local network, or if you have dropped packets17:33
apb1963I guess I should lose the fsid=0 if I'm going back to v317:34
apb1963patdk-wk: so there's really nothing to do on the client other than mount the fs, is there?17:36
patdk-wkand install the nfs-common package17:37
patdk-wkyep17:37
patdk-wkspecify vers=3 as a mount option17:37
apb1963192.168.0.12:/  /mnt/blue   nfs      auto,noatime,nolock,bg,nfsvers=3,intr,tcp,actimeo=1800 0 017:39
apb1963root       407     2  0 00:37 ?        00:00:00 [rpciod]17:40
apb1963root       415     1  0 00:37 ?        00:00:00 rpc.idmapd17:40
apb1963root       635     1  0 00:37 ?        00:00:00 rpcbind17:40
apb1963statd      709     1  0 00:37 ?        00:00:00 rpc.statd -L17:40
patdk-wkseriously? your exporting root?17:40
apb1963it's local LAN17:40
patdk-wkstill, it's odd :)17:40
apb1963it's just (in theory) easiest17:40
apb1963I didn't want to mess around with exporting one by one what I might need later.17:41
apb1963one export... done.17:41
apb1963again... in theory.17:41
apb1963so do those look like the proper set of processes?17:41
patdk-wkfor what?17:42
patdk-wkclient or server?17:42
apb1963client17:42
patdk-wksame as mine17:43
apb1963and the server...17:45
apb1963root     14707     1  0 01:38 ?        00:00:00 /usr/sbin/rpc.mountd --manage-gids17:45
apb1963root     14826     1  0 01:38 ?        00:00:00 rpcbind -w17:45
apb1963statd    14840     1  0 01:38 ?        00:00:00 rpc.statd -L17:45
apb1963root     16293     2  0 Aug24 ?        00:00:00 [rpciod]17:45
apb1963root     16303     1  0 Aug24 ?        00:00:00 rpc.idmapd17:45
patdk-wkwell, I don't have a 12.04 nfs server anymore17:46
patdk-wkbut it seems right17:46
patdk-wkno firewalls?17:46
apb1963on the server yes17:46
patdk-wkand everything is allowed for nfs?17:46
patdk-wkor for the client?17:46
patdk-wkyou know what ports those rpc processes are using?17:46
apb196353  4250 ACCEPT     all  --  any    any     192.168.0.0/24       anywhere17:46
patdk-wkthat line doesn't mean anything17:47
apb1963it doesn't?17:47
patdk-wkwhat table is it in?17:47
patdk-wkwihtout context, no17:47
apb1963iptable17:47
patdk-wkiptable is a program17:47
apb1963INPUT table17:47
=== unreal_ is now known as unreal
apb1963well that's interesting.... showmount -e with a hostname works... but without gives me clnt_create: RPC: Program not registered17:59
apb1963so I guess... it's not an issue to worry about maybe18:00
apb1963that's from the client18:00
=== Guest94481 is now known as hxm
apb1963the server just hangs with the same command.   I guess I'll chalk it up to different versions.  None of that is my real problem... just thought maybe it might provide a clue.18:01
* apb1963 puts away his red herring18:01
patdk-wkyou did do a, showmount -e 192.168.0.1218:02
patdk-wkshowmount -e works for me, on 14.04 and 12.0418:03
apb1963patdk-wk: it's all very strange.  I can see /mnt/blue/mnt/swapfile but /mnt/blue/mnt/backintime/whatever doesn't exist18:03
apb1963well I did once I realized it needed a hostname18:03
patdk-wkdid you cross filesystems?18:04
patdk-wknfs doesn't support crossing filesystems18:04
apb1963the server has /mnt/backintime mounted18:05
apb1963its a different disk18:05
patdk-wkbut you exported /18:05
patdk-wknot /mnt/backintime18:05
apb1963right18:05
patdk-wknfs depends on inodes to keep things straight18:05
patdk-wkwhen you cross filesystems, inodes get all screwy18:06
patdk-wkand things don't work18:06
patdk-wkthis is why nfs4 has the fsid option18:06
patdk-wkand cause it only has 1 export18:06
xibalbahey folks, i just upgraded to ubuntu 14 lts from 12 lts, i'm trying to start up one of my apps and its giving me the following. http://puu.sh/b7xda/2676f0628e.png18:06
=== matsubara-lunch is now known as matsubara
xibalbai suspect i need to downgrade perl from 5.18.2 to 5.14.018:06
patdk-wkxibalba, oviously you installed some non-ubuntu software on there18:07
patdk-wkthat is made for perl 5.1418:07
xibalbacorrect, zimbra collaboration suite18:07
patdk-wkso when you upgraded, and got perl 5.18, it's broken18:07
patdk-wkcan't help you there18:07
sarnoldwhy not just upgrade zimbra?18:07
xibalbayup, can i downgrade perl?18:07
xibalbai'm on the latest version...i think, double checking18:08
xibalbayeah 8.0.7 is the version i'm on18:08
xibalbaand is the latest18:08
patdk-wknever upgrade, till your software your using, supports it :)18:08
xibalbawell yeah i just made a stupid mistake18:08
xibalbai wanted to try the do-release-upgrade, i hadn't tried it before and just jumped the gun18:09
xibalbacan i downgrade perl?18:09
patdk-wkit's not supported18:09
patdk-wkdunno what would happen18:09
patdk-wkyou could attempt it18:09
xibalbai'd just have to compile and install18:10
patdk-wkbut most likely, the result is, your system will be unusable18:10
xibalbafudge, i wish i snap shotted this thing18:10
=== Ursinha-afk is now known as Ursinha
* xibalba kicks /me18:11
qman__The takeaway: never upgrade without a rollback plan18:11
xibalbayeah, i wouldn't in production18:11
xibalbathis is just my personal mail server18:12
dasjoeYou could upgrade to the Zimbra beta, it's available for 14.0418:12
xibalbadasjoe, ty didn't see that18:13
apb1963patdk-wk: sorry... phone rang18:20
apb1963patdk-wk: well, I thought I had tried what you said.... but apparently I didn't do it right because I just tried it now and it's working.18:20
apb1963patdk-wk: Thank you!!!18:20
xibalbadasjoe, thank you! beta did the trick18:42
qman__got lucky there, hopefully there's no show stopping bugs18:44
=== Ursinha is now known as Ursinha-afk
=== Ursinha-afk is now known as Ursinha
zzxcHey guys. I have kind of a wierd issue. I created a AWS 14.04 instance. When I make a sudo call I get the message "sudo: unable to resolve host (IP Address)". Its only for sudo calls, and I haven't edited the hostfile. Anyone have any ideas?20:45
zzxchostname file*20:45
lordievaderzzxc: Is the hostname in /etc/hosts correct (the localhost entry I mean)20:47
lordievader?20:47
zzxcYep. 127.0.0.1 localhost then the subsqent ipv6 stuff as well20:50
zzxclordievader: Sorry for the delay. I had to kick off a build on another machine,20:50
lordievaderzzxc: Ok, what hostname is in /etc/hostname?20:51
zzxcip.170.30.xx.xx20:52
lordievaderzzxc: Hmm, strange hostname. Anyhow, add it after localhost in /etc/hosts (unless it is defined elsewhere in that file).20:52
zzxclordievader: Its pretty common fomrating for aws instanse.20:57
zzxcinstance* One sec. I'm going to test if that worked.20:58
zzxcYeah. That worked.20:58
lordievaderzzxc: ;)20:59
zzxcFunky. I've never had an instance where it didn't add that in the first place. Cool thank you lordievader.20:59
lordievaderzzxc: No problem ;)20:59
zzxcAlso the whole xx.xx at the end was just because I didn't want to post the machine's ip (though it is interal) on IRC.21:00
lordievaderzzxc: I know ;)21:01
zzxcFigured you would. =]. Also on a unrelated note, I love vundle occationally.21:02
=== phaidros_ is now known as phaidros
=== mwhudson_ is now known as mwhudson
=== TDog_ is now known as TDog
=== NomadJim_ is now known as NomadJim
=== Lcawte is now known as Lcawte|Away
delinquentmeso after I open up a few ports for some of my programs to use ... do I need to restart something to facilitate that?  $ sudo ufw allow 4506 ... then I check it with $nmap -v 127.0.0.1 -p 4505 ... and it says its closed23:59

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