/srv/irclogs.ubuntu.com/2013/06/08/#ubuntu-server.txt

atrius`silly question time... it is possible to install ubuntu _server_ via nfs/PXE, right?01:39
sarnoldatrius`: PXE should be possible though I've not tried. NFS, no idea.01:40
atrius`sarnold: i can get it to boot just fine.. but it then promptly ignores the netboot=nfs bits and complains it can't mount the CD. if i use the initrd.gz from the netboot directory on the iso it ignores the NFS argument again and wants to load everything from the internet01:41
atrius`lots of google hits for doing this on the desktop install, which works fine, but largely nothing for the server image01:43
sarnoldatrius`: hrm, indeed, my quick searches turn up the same results.01:48
atrius`sarnold: and it is looking worse.. pulling apart the netboot initrd for server is starting to make it look like it doesn't support NFS installs at all01:49
sarnoldatrius`: for some (many? all?) releases, the server installer has been the debian installer.. it might be done differently..01:49
atrius`checking that01:50
sarnoldatrius`: this page seems to suggest it is possible.. it also describes ftp and http. http feels more likely to work than ftp, but that's just me.. :)  http://www.tldp.org/HOWTO/Network-Install-HOWTO-8.html01:51
atrius`suggest yes.. but no deatils01:52
atrius`details even01:52
sarnoldindeed. this page also suggests HTTP or FTP: http://www.debian.org/releases/stable/amd64/ch02s04.html.en#idp563736001:52
atrius`which probably means setting up an entire mirror01:52
atrius`which negates the rather extensive work already done on my PXE boot/NFS install server01:53
atrius`which installs everything else in the universe just fine01:53
* atrius` kicks ubuntu server01:53
sarnold:(01:53
atrius`can't imagine why they don't use the same installer for both Desktop and Server :(01:53
sarnoldatrius`: you might be able to configure a preseed file that leaves out all the gui and network-manager pieces... (not saying that's awesome, but it might get you where you want.)01:54
atrius`i suppose it would be better than nothing01:54
atrius`i'm searching the initrd file for any references to NFS01:56
atrius`lovely.. the only references are via kickseed01:57
atrius`well.. it appears that so far installing _server_ via NFS isn't possible. one guy even resorted to using squid to cache files from an HTTP source on the internet02:11
atrius`if this is true that's pretty bloody lame since pretty much every other distro supports NFS install easily02:11
sarnoldatrius`: if you choose to go down the squid route rather than http, there's a squid-deb-proxy package that may help.02:12
sarnoldatrius`: please also file a bug.02:13
atrius`sarnold: i'll probably file a bug after i'm less upset and less likely to write something like "lack of NFS install ability is retarded" :D02:13
sarnoldatrius`: heh, that's kind :) but once in a great while, an anger-induced bug report can do great good: https://jira.mongodb.org/browse/PYTHON-53202:18
atrius`lol02:21
tohuwsarnold: That bug report was a thoroughly entertaining read. Thanks.02:33
sarnoldtohuw: happy to make your friday night / saturday morning :)02:34
tohuwFor awhile, I was wondering if "Jibbers" was actually someone on the pymongo team!02:35
geniiI was asked by work to see if there is a way to not have the Symantec PGP Universal Server in between a Blackberry Enterprise Server and an MS Server 2008 with Exchange. So the idea I'm entertaining currently is 13.04 with hockeypuck or sks for keyserver then something like either make some procmail rules to encrypt and forward to the MS box, or perhaps something like Google's gpg-mailgate app with postfix to accomplish that part. Is anything02:56
geniilike this feasible?02:56
samgloverHey all. I'm trying to set up BitTorrent Sync on an Amazon EC2 Ubuntu server instance.03:04
samgloverI've provisioned a new Ubuntu server, installed btsync, and run it. Now, I just need to figure out how to connect to the web UI.03:05
samgloverAnyone able to help me figure this out?03:05
sarnoldsamglover: there's probably a few things to keep track of ...03:11
samgloverI'm sure.03:11
sarnoldsamglover: there's the AWS security groups.. and then whatever address the gui server binds to.. and then whatever access controls the GUI server might impose itself03:12
sarnoldsamglover: if you forward http over ssh, your connections will appear to come from localhost (from the perspective of the GUI server), so it can bind to localhost and allow only localhost -- and not require any new AWS security groups03:13
samgloverOkay, I'm already lost. Is there a tutorial you can point me to? I don't want you to waste your time walking me through it if I can try on my own with some guidance.03:13
sarnoldsamglover: if you want to connect directly to it with a web browser, that'd require configuring it to listen publicly, setting up security groups to allow it, and maybe configuring some access controls to limit access to you and yuou alone..03:13
sarnoldah, good thing, it's dinner time ;) hehe03:13
samgloverOr maybe some keywords I can use to find a tutorial? I don't even know what I'm looking for.03:14
sarnoldsamglover: ssh -L and -R are probably the things to start with. here's a guide, but I don't love what I see so far.. https://help.ubuntu.com/community/SSH/OpenSSH/PortForwarding03:15
sarnoldsamglover: oh, my fault, there's a <host> argument at the end of the examples of "local port forwarding". they're tolerable examples. :)03:15
sarnoldgood luck :)03:15
samgloverThanks. I'll come back if I can't figure it out (which will probably be the case). But hopefully with more-informed questions.03:16
samgloverOkay, so my btsync process is listening:03:24
samgloverHere's what netstat -lp shows:03:24
samglovertcp        0      0 *:8888                  *:*                     LISTEN      951/btsync03:24
samgloverAnd the btsync manual says: WebUI is the default way of accessing BitTorrent Sync. It can be reached at: YourLocalIP:8888/gui03:25
samgloverBut when I try it with my EC2 instance, like this, I get nothing: ec2-##-###-##-##.us-west-2.compute.amazonaws.com:8888/gui03:27
samgloverThe private DNS doesn't work, either.03:27
samgloverSo what I gather from sarnold's comments are that I could access it using local port forwarding. But wouldn't I need to insert my key pair somewhere in the command, in order to make it work?03:28
qman__that netstat line means that it should be listening from any address, so it sounds to me like an AWS problem03:28
qman__I don't know enough about AWS to tell you how to fix it, though03:28
qman__to SSH with an arbitrary key, use the -i parameter03:29
samgloverFWIW, it's a clean Ubuntu 12.04 server, updated, with btsync.03:29
qman__e.g. ssh -i /path/to/private_key -L 8888:127.0.0.1:8888 youramazonserver.com03:30
samgloverCool. I'll try that.03:31
qman__if establishing that connection works, you'd then browse to your local host on 8888 to get to it03:31
samgloverYou mean I'd enter 127.0.0.1:8888/gui in my web browser?03:32
qman__yes03:32
qman__this also assumes you're running linux on your local computer, or at least a system with openssh client03:34
qman__if you're on windows you'll need to use putty and configure the port forwarding the GUI way03:34
samgloverIt's a Mac, so I think I'm good.03:34
samgloverThe Ubuntu PC is at my office, but I'll need to connect that, too, at some point.03:35
samgloverHoly shit, that worked!03:35
jacksonkaHello03:35
jacksonkaMy port 5060 is open filtered but will not allow SIP registration.  Anyone had this problem with Ubuntu Server 12.04?03:37
jacksonkaI changed the ports to 5070 and presto everything registered.03:39
qman__the port can't be open and filtered, it's either open, closed, or filtered03:40
samgloverYou guys rock. Thanks! Now I'm rolling my own Dropbox.03:41
qman__which corresponds to Accept, Reject, or Drop respectively03:41
samgloverUp yours, NSA.03:41
qman__samglover, neat, I'll have to check out that software03:41
samgloverI'll post a tutorial shortly. How do I turn off the local port forwarding? I want to make sure it keeps working.03:44
jacksonkaok here it comes03:44
jacksonkasmall flood03:44
jacksonkaonly way03:44
jacksonka6.00 ( http://nmap.org ) at 2013-06-07 23:42 EDT03:44
jacksonkaNmap scan report for cinsolar.com (69.61.144.14)03:44
jacksonkaHost is up (0.0011s latency).03:44
jacksonkaPORT     STATE  SERVICE03:44
jacksonka5058/udp closed unknown03:44
jacksonkaMAC Address: F4:CE:46:0F:44:74 (Hewlett-Packard Company)03:44
jacksonkaNmap done: 1 IP address (1 host up) scanned in 0.20 seconds03:44
jacksonkajacksonkirka@jacksonkirka-HP-ProBook-4520s:~$ sudo nmap -p 5060 -sU cinsolar.com03:44
jacksonkaStarting Nmap 6.00 ( http://nmap.org ) at 2013-06-07 23:42 EDT03:44
jacksonkaNmap scan report for cinsolar.com (69.61.144.14)03:44
jacksonkaHost is up (0.0011s latency).03:44
jacksonkaPORT     STATE  SERVICE03:44
qman__please use a pastebin03:45
jacksonkaSorry about the small flood03:45
qman__!pastebin03:45
ubottuFor posting multi-line texts into the channel, please use http://paste.ubuntu.com | To post !screenshots use http://imagebin.org/?page=add | !pastebinit to paste directly from command line | Make sure you give us the URL for your paste - see also the channel topic.03:45
jacksonkaThanks03:45
qman__samglover, exit from the SSH session, and the tunnel goes away03:46
jacksonkaWhy is my port 5060 closed?03:46
qman__jacksonka, it means either nothing is listening there or the firewall is filtering it03:47
samgloverHm, that doesn't seem to have done it. I can still access the server using my browser.03:48
samgloverI assume if the tunnel goes away, I shouldn't be able to access the web UI, at least.03:49
jacksonkaAfter I disabled ufw it still blocks this port although my router is from Cincinnati Bell and the router may be blocking the port.03:49
qman__you can check on the server side with netstat -tulanp | grep 506003:51
jacksonkak, logging in using ECDSA 521 ssh.03:52
qman__if you find that is listening on udp 5060 on the correct interfaces, then it's probably a firewall somewhere down the line03:52
jacksonkano03:54
jacksonkaUDP ports do not listen.03:54
jacksonkaONly tcp ports listen03:54
qman__so it means you don't have anything listening, which answers the question03:55
jacksonkaUsing nmap with -p 5060 -sU03:55
jacksonka-sU with nmap specifies udp03:56
qman__yes, which is why I said UDP03:56
qman__while UDP is stateless the software still needs to bind to the port03:56
qman__and will remain bound to that port in order to accept connections03:56
jacksonkaNotice in the print nestat printout the udp ports don't say listen03:56
qman__if netstat does not show any software bound to 5060 then that is your problem03:57
jacksonkaPort 5070 is bound03:57
jacksonkaNo I can use 5070 and the phones work03:58
jacksonkaWhy would 5060 be closed if Asterisk sip.conf is configured for 0.0.0.0:5060?03:58
jacksonkaI disabled ufw.03:59
jacksonkaI changed the port to 507003:59
qman__it's closed because you're not using 5060 right now03:59
qman__you will need to change it back in order to trace down the issue03:59
jacksonkaAddr->IP     : 192.168.200.126:506004:00
jacksonkaThis is text from Asterisk cntl04:01
jacksonkaIt is shows my phone at home on 5060 but it works and Asterisk PBX is configured for 5070.04:01
jacksonkaLike you say 5060 isn't accepting data.04:02
jacksonkaI have the phone Polycom 321 expressly configured to use port 5070.04:02
jacksonkaIt matches the port in Asterisk.04:02
jacksonkaSo the phone works but it reports its still on 5060.04:03
qman__what device is 192.168.200.126?04:04
jacksonkaSome party I am associated with Ubuntu, Asterisk, Yaai, Cincinnati Bell or other is intentionally blocking my ports.04:04
qman__does that IP belong to the asterisk server or to the polycom?04:05
jacksonkaThe Polycom 321 TCP/IP parameters04:05
jacksonka.......................................................04:05
jacksonkaIP: 192.168.200.12604:06
qman__ok04:06
qman__what that output is telling you is that the polycom's sip port is still 5060, that is not telling you about asterisk's sip port, which should be 5070 based on what you've said04:07
qman__both ends have a sip port set up04:07
jacksonkaWhat I am saying is I used 5070 when I discovered that 5060 was being intentionally block and not by me because it was working for a long time.04:07
qman__well, if it worked before, it's a simple matter of finding out what changed04:08
jacksonkaNo sir, I have the phone expressly set up on the line as port 507004:08
qman__if you didn't change server config for it to break, it wasn't your server04:08
jacksonkaAbsolutely04:09
qman__no, you have the phone set up to connect to asterisk on 5070, which is a separate setting04:09
qman__the phone still has a sip port on it configured elsewhere, which that output says is 506004:09
jacksonkaOh, I don't know or have info to confirm this.04:09
qman__it may not even be changeable depending on the device04:09
jacksonkaI will double check everything on the phone.04:09
qman__it shouldn't need to be changed04:10
jacksonkaIf I change it to 5060 it will not work because that port is closed.04:10
jacksonkaI have the sip server Asterisk in /etc/asterisk/sip.conf set up on 99.99.99.99:507004:12
jacksonkaactual server address left out04:12
qman__yes, and we cannot troubleshoot it unless you change it back to 506004:12
jacksonkaIt is absolutely changeable04:12
qman__that is not what I was referring to04:13
jacksonkaOK04:13
jacksonkaI will04:13
jacksonkaedting /etc/asterisk/sip.conf now.....04:13
qman__ok04:13
qman__also pastebin the output of iptables -nvL | grep 506004:13
jacksonkadone04:14
qman__assuming there is any04:14
jacksonkaMy address is 69.61.144.1404:14
jacksonkaso udpbindaddress: 69.61.144.14:506004:15
qman__ok04:15
qman__it's showing as open from here04:15
jacksonkarebooting asterisk04:15
jacksonkarestarting daemon04:15
jacksonkaChanging extenion 101 to port 506004:16
qman__ok\04:16
jacksonkaOk furthermore, my router is 69.61.144.13 and server is 69.61.144.14  configured on the internet as public interface /etc/network/interfaces.04:19
jacksonkaI could log on physically near the server on lan but not from wan or public internet infrastructure04:20
qman__ok, that is a separate issue04:21
qman__SIP and NAT don't get along well at either end, you have to configure your phone device to play nice with NAT, and make sure the routers at both ends don't break anything04:21
jacksonkaI can log on now on 5060 as before but have to wait until I get to work to test with I can from public infrastructure log on thru 5060.  See, when I changed the port to 5070 I could log in thru public internet without being on lan.04:22
jacksonkaI don't use port forward to 192.168.200.100 server address but configure my server on Cincinnati Bell's public IP4 address.04:23
qman__correct04:23
qman__I am referring to the client side04:23
jacksonkaYes, client side ok on 5060 lan.04:24
qman__the phone which you are connecting with at work is behind a NAT router04:24
qman__so the phone itself must be configured in a NAT friendly mode04:24
jacksonkaYes and configured as nat=yes and qualify=yes04:24
qman__ok04:24
jacksonkaIt has worked for a long time.04:24
jacksonkaAfter some event, the port 5060 status changed.  I will check status of 5060 now.04:25
qman__you may also be running into UPnP causing you trouble04:25
jacksonkaOh, I saw a post about this.  Can you explain further.04:26
jacksonkaDo you have a link?04:26
qman__UPnP is basically a dynamic port forwarding system04:26
qman__so if some other device requested 5060 be forwarded somewhere, it may have interfered with your ability to connect04:26
jacksonkaPort 5060 appears to be ready.04:26
jacksonkavia nestat04:27
jacksonkavia netstat04:27
qman__due to the dynamic nature of UPnP, this failure would have been temporary and difficult to diagnose04:28
qman__and yes, 5060 appears to be working from where I'm sitting as well04:28
jacksonkaNmap reports :   5060/udp open|filtered sip04:28
jacksonkaDo you have a sip phone04:29
jacksonkaDo you have a sip phone?  Softphone would do.04:29
qman__yes, if you would like to /msg me an account I can test it for you04:30
jacksonkasudo apt-get install ekiga04:30
jacksonkathans04:30
jacksonkathanks04:30
jacksonkaediting sip.conf to add04:30
jacksonkak.  Try login 105 passwd 359304:36
jacksonkaqman you there?04:38
qman__yes, trying now04:38
jacksonkaIts ok I can delete the account afterward.04:38
qman__I get a request timeout04:39
jacksonkacorrect04:39
jacksonkaNow, sudo apt-get install nmap04:39
qman__yes, I have nmap, it shows as open04:39
qman__if you open the asterisk console, do you see me attempting to register?04:40
jacksonkaUse sudo nmap -p 5060 -sU 69.61.144.1404:40
qman__also, was the output of iptables -nvL | grep 5060    blank?04:40
jacksonkalogging back in04:41
jacksonkaI restarted asterisk a second time just to make sure.04:42
jacksonkasip show peers04:43
jacksonka105 is (unspecified)04:44
qman__yes, it still has not registered04:44
jacksonkachecking iptables....04:44
qman__ok04:44
qman__ufw is just a front end to iptables, so this will check if there is anything at that level interfering04:44
qman__you will also need to check the policy, you should probably not actually grep it and just read it04:46
jacksonkasudo iptables -nvL shows only labels with no output when logged in to the server.04:46
qman__ok04:46
qman__are they all accept?04:46
jacksonkaNo there is no output at all04:46
jacksonkasudo iptables -nvL04:46
jacksonkaonly header with no data04:47
qman__you should at least have something along the lines of "Chain INPUT (policy ACCEPT)"04:47
jacksonkapolicy ACCEPT 4331 packets, 404k bytes04:47
qman__ah, ok04:47
jacksonkaI have no expertise with iptables.04:48
jacksonkaSorry for the ignorance.04:48
qman__don't need to, that's what I was looking for04:48
qman__so it's not being blocked there, and it works from LAN so the server is working04:48
qman__the next step in the chain is your router04:48
jacksonkaYou bet.04:49
jacksonkaI believe that Cincinnati Bell is intentionally block incoming 5060 because they are a phone company.04:49
qman__the exact steps for it can vary wildly based on model and ISP, so I can't really tell you exactly04:49
jacksonkaChecking router....04:50
qman__that's entirely possible, you may want to call customer support and ask04:50
jacksonkaWestell router04:50
qman__however, they normally only apply such restrictions to residential, non-static customers04:50
qman__they meaning ISPs in general04:51
jacksonkaFirewall is set to low only known security holes are protected.04:51
qman__SIP may have been added as a "known" security hole04:51
qman__I would recommend turning it off/allow all at least for the testing phase04:51
jacksonkaI am static and have both a residential and commercial ip account with Cincinnati Bell.04:51
jacksonkak04:51
jacksonkaI will allow one minute.04:52
jacksonkago04:52
jacksonkaThe firewall is down04:52
jacksonkaat the router04:52
qman__ok04:52
jacksonkaAll traffic is allowed.04:52
qman__timed out again04:53
jacksonkaIt said the outbound ports were all available but inbound it says may be configured via port forwarding.04:54
jacksonkaI get nothing in port forwarding tab04:54
qman__ok, it should be blank, as your server should have its own address04:54
jacksonkaso they are clearly block the incoming port on the wan router04:55
qman__maybe, one way to test for sure04:55
qman__install tcpdump on the server04:55
jacksonkaat the nearest station to my house.04:55
qman__and run it with these parameters04:55
jacksonkadoing it04:55
qman__tcpdump -n udp dst port 506004:55
qman__by doing this, it should log all incoming SIP connections to the screen04:56
jacksonkaalready have it.04:56
qman__all attempts04:56
jacksonkaudp as well04:56
qman__I will attempt to connect a few times and you should see me04:56
qman__if you don't, it's being blocked04:56
jacksonkano suitable device found04:57
qman__ah, add -i eth0 where eth0 is your network card that has your external IP configured04:57
qman__in front, so like04:57
qman__tcpdump -i eth0 -n udp dst port 506004:57
jacksonkaok go04:58
qman__ok04:58
jacksonkawait I need -v option04:58
jacksonkaIt is listening now.04:58
qman__ok, I just attempted04:59
qman__did you see any output?04:59
jacksonkayes04:59
qman__from 66.188.36.22?04:59
jacksonkatcpdump: eth0: You don't have permission to capture on that device05:00
jacksonka(socket: Operation not permitted)05:00
jacksonkajacksonkirka@hpm110g6:~$ sudo tcpdump -i eth0 -n udp dst port 506005:00
jacksonkatcpdump: verbose output suppressed, use -v or -vv for full protocol decode05:00
jacksonkalistening on eth0, link-type EN10MB (Ethernet), capture size 65535 bytes05:00
jacksonka00:59:16.827851 IP 69.61.144.14.5060 > 38.100.174.200.5060: SIP, length: 65805:00
jacksonka00:59:16.890484 IP 38.100.174.200.5060 > 69.61.144.14.5060: SIP, length: 44005:00
jacksonkaSorry05:00
qman__hmm, that's odd05:00
qman__is 38.100.174.200 work?05:00
jacksonkaYes that is Geils in New York05:01
jacksonkaIt is my trunk05:01
qman__oh, ok05:01
qman__makes sense05:01
qman__but you don't see any from me05:01
jacksonkaThis is my expertise.05:01
jacksonkaI trunk to geils and deploy Asterisk PBX on port 5060 along with many other services.05:02
qman__if you don't have anything coming from 66.188.36.22 then it looks to me like an issue on your router or futher upstream stopping the traffic from getting there05:02
qman__and you may need ISP support to get that resolved05:02
samgloverHere's my BTSync on Amazon tutorial: http://samglover.net/bittorrent-sync-amazon-ec2/05:02
samgloverTell me if I screwed anything up.05:03
qman__I'm also seeing other open ports so I'm pretty sure your IP setup works, which leads me to believe that 5060 is explicitly blocked05:05
jacksonkaThanks qman I will contact Cincinnati Bell because they are the only culprit left.05:05
qman__sure, glad I could help05:05
jacksonkaWith your permission I will delete exten 10505:05
qman__yeah05:05
jacksonkaHow do I stop tcpdump05:06
qman__ctrl+c05:06
jacksonkaWait -vvv05:06
jacksonkaok I increased the verbosity05:06
jacksonkathe account is still good05:07
qman__ok, I sent a few more packets that way05:07
jacksonkaqman I cannot see your IP at all05:12
qman__ok, that further confirms the diagnosis, 5060 is being blocked somewhere05:12
qman__most likely the ISP or router, and since you don't have any config saying it's blocked, you will probably have to contact them about it05:13
Chunky56I have a RAID 5 array in ubuntu server where one of the hard drives died--I got a replacement under warranty and am now trying to add it to the array and have it resync, but using mdadm --manage /dev/md127 --add /dev/sdd1 is not working or giving any response (I verified sdd1 is the new hard drive)06:00
=== greppy is now known as nm9o
=== nm9o is now known as kc9uls
=== kc9uls is now known as nm9o
imancI'm trying to install a backport of cacti and despite following instructinos to add the ppa, et.c it's still consistently installing the version i don't want. If I prefix the package with the version number in apt-get, it says that the version is not found12:28
imancdoes anyone have any ideas how to solve this?12:28
dassoukithis morning I had a high I/O rate. I checked it out and it was high. my httpd server is still running but my sql is not. I'm assuming it's something with fake accounts creating wiki comments on mysql and blocking it or something of that sort12:35
dassoukiwhen i go to any website htat has a db i get an "error conencting to database" and when i do "mysql" in terminal, I get the following error "ERROR 2003 (HY000): Can't connect to MySQL server on '127.0.0.1' (111)"12:35
dayaany one have tried the ubuntu from scratch, https://help.ubuntu.com/community/LiveCDCustomizationFromScratch12:42
dayaI am able to make the Live CD, but could not add installer,12:42
=== acrocity_ is now known as acrocity
demonoid_mehello i have a problem with openvpn13:38
demonoid_mewhen i write command ./build-ca13:39
demonoid_methis is the log http://paste.ubuntu.com/5745114/13:42
demonoid_mepls hellp me13:43
demonoid_me:)13:43
demonoid_mecan you help me please?!?!?!13:45
demonoid_meexooooooooooooo13:56
demonoid_mehijos de puta13:56
e_t_!language14:18
ubottuPlease watch your language and topic to help keep this channel family-friendly, polite, and professional.14:18
aarcaneI have an ubuntu server where a bunch of stuff is suspect now.  I don't have the time to do a reinstall completely, is there some way to tell apt or aptitude to verify every installed file against the version from repos?15:56
shaunodebsums does what you're describing, but I fear it'll just lead you to misplaced trust.  it's nothing close to a proper audit, just one tool in the box16:02
aarcaneshauno, I can manually verify my configuration if I can verify the binaries.  The only issue then is the dying disk, which I've replaced.16:14
gyre007guys I need to export PATH globally on the server...so I thought sticking a script into /etc/profile.d/ with export PATH="$PATH:/foo/path" would do it but it doesnt seem to do the job...16:17
gyre007anyone ideas how to do this ?16:17
=== mrmist is now known as mist
=== egersdorfer_ is now known as egersdorfer
=== ejv_ is now known as ejv
nineteen67cometG'day everyone .. I was wondering; can I have a startup script on a headless server box that'll run a rsync command and shut-back-down? (I can have the bios start the box; and the script shut it down).18:31
nineteen67cometIt's an old computer that I don't want running all the time; just startup/backup via rsync to my media box and shut back down.18:32
* nineteen67comet I'd love it if Ubuntu-Server worked on Raspberry pi18:32
=== _KaszpiR__ is now known as _KaszpiR_
=== neunon_ is now known as neunon
=== alex88_ is now known as alex88
OiCory_Hi guys, I'm trying to install OpenVPN on my Ubuntu server 12.10 using an offcial guide from Ubuntu.com and I'm hanging on this one command20:22
=== Ursinha is now known as Ursinha-afk
=== Ursinha-afk is now known as Ursinha
yousafhi all20:31
yousafat the moment my webserver default home is at /var/www/ how can I change this to /var/www/laravel/public_html?20:31
ScatterBrainHow do I add multiple IP addresses to one NIC?  (I want a block of say 5 addresses on the same physical card).20:44
ScatterBrainI can still do eth1:1, eth1:2, etc...right?20:45
=== ikonia_ is now known as ikonia
=== aard__ is now known as aard
beneterso much activity here ^^22:54

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