[00:13] sarnold: if you're there it seems the problem is that the realtek driver / module isn't loaded so i can't load the -d part of my wpa_supplicant command [00:14] lsmod is saying it's loaded but wpa is saying nope [00:15] RevertToType: o_O really? [00:15] can you pastebin it all? [00:15] which thing? [00:15] lsmod or the error? [00:15] wpa output. lsmod output [00:15] might as well do em both ;) [00:15] (pastebinit command helps immensely here, if you haven't seen that package yet..) [00:16] lsmod | grep rtl lists All of the things /lib/modules........./rtl8192se is present [00:16] thank you for that tip by the way!!! [00:16] i was like "how do i do that!?! [00:16] it's saying "unsupported driver rtl8192se' for wlan0 [00:17] oh crap... is this a hardware revision thing (lenovo is the bane of all that is holy for this) [00:17] no it can't be.. the damn lshw shows it as realtek [00:18] it is common for vendors to release something completely different under an old and well-established name.. [00:18] well lenovo is notorious for it [00:45] i have like 3 catalog computers here that are all the same model, 3 different wireless cards === markthomas is now known as markthomas|away [01:24] ugh why is it not liking this driver.... butttt [01:27] meh start over from scratch nbd now i know what's up i can do it from the start right === Lcawte is now known as Lcawte|Away === CrypticS_ is now known as CrypticSquared [03:21] Greetings. I have a fresh install of Ubuntu Server 15.04. I ran "sudo apt-get install mysql" and I've had trouble ever since. I finally got it to install, but now when I run "sudo mysql -u root", it throws: "ERROR 1524 (HY000): Plugin 'unix_socket' is not loaded" Several websites have mentioned adding "plugin-load-add = auth_socket.so" to /etc/mysql/my.cnf", then running "sudo mysql -u root", but it spits the same error. Any ideas? [03:38] hey folks [03:38] hey folks, what happen if you have two interface which on the same subnet ? [05:09] lkthomas: You've already had an answer to that a few hours ago in ##networking :) [05:28] TJ-, yes sure :) === lukasa_away is now known as lukasa === NaStYdoG is now known as Guest52938 === Lcawte|Away is now known as Lcawte === lukasa is now known as lukasa_away === lukasa_away is now known as lukasa === lukasa is now known as lukasa_away [08:45] Hi I'm about to clean install my server and copied (hopefully) all files, but can anyone double check if they think I might be missing something? I copied: all websites, a mysqldump of all databases, mysql config, apache config files === lukasa_away is now known as lukasa [09:52] does anyone know how to get dlm-pcmk on ubuntu trusty? [09:52] I've got the sources but they won't build :-| === lukasa is now known as lukasa_away === lukasa_away is now known as lukasa === Lcawte is now known as Lcawte|Away === Guest52938 is now known as NaStYdoG === randrews is now known as dft === ashleyd is now known as ashd [14:32] hey all - if I want to copy a file (same name) from many directories and keep the directory beneith the file into a nother dir how do I do that [14:32] i..e copy dir1/config.xml and dir2/config.xml into confits/dir1/config.xml and configs/dir2/config.xml [14:34] cp --parents dir*/config.xml configs/ [14:35] kgirthofer: is that what you've been trying or what actually worked? [14:36] yep [14:36] worked [14:36] excellent [14:36] gold star [14:36] assuming all dir* is in your cwd? [14:36] ya [14:43] I was thinking of something a little more complex regardless of cwd [14:43] find ./Documents/ -type f -name "config.xml" -ls | sed -e 's/.*\/\(.*\)\/\(config.xml\)/ \1 \2/g' | while read -r d f; do echo "cp $d/$f config/$d/$f";done; [14:52] hi === Lcawte|Away is now known as Lcawte === markthomas|away is now known as markthomas [16:38] kgirthofer, rsync has builtin functionality to do that [16:41] dft, no solution that involves ls and sed is correct, ever [16:42] (find -ls counts as ls for our purposes here) [16:43] I would like to install ubuntu server from a USB stick with preset preferences. So all I need to do is plug it in and the installation with my settings starts and completes without any interaction. Is there a simple way to do this? [16:45] Meerkat: Yes, create a preseed file [16:46] Meerkat: https://help.ubuntu.com/lts/installation-guide/amd64/apbs02.html [16:49] I'm running simple server which services are mostly used by me and couple of my friends. Server IP is dynamic. How I could make simple failover for the server? By simple I mean that I could let the users to see static "server down" page. [16:49] Meerkat: If you're managing a fleet of servers, you're better off creating a provisioning server [16:49] Lihis: If the server is down, how are you going to make it display any page? [16:50] jpds: Maybe with another server, maybe some cheap VPS? [16:50] Lihis, in which case, that's where you should put your services, typically [16:50] (perhaps having it forward some things to your other server, depending on your needs) [16:50] jpds, thanks. looking into this. seems promising. =) [16:53] cwillu_at_work: Okay. How I could do the forward? And stop the forwarding when the server is down? [16:54] Lihis, depends on what you're forwarding [16:54] apache has builtin things for this, for instance [16:54] Lihis: That would involve some fancy DNS/IP flipping, easier to just fix the server ;-) [16:54] without some sort of heartbeat system though, this usually requires one failure before apache (or whatever) notices that it's not working [16:55] (otherwise it could interfere with a working connection and foul things up, which is why planes with 2 engines crash more than planes with 1 engine) [16:55] (more things to go wrong) [16:56] Lihis, active error handling tends to be like this: you have to do a lot more work before the end result is actually more reliable than the do-nothing approach, let alone simple passive approaches [17:00] cwillu_at_work: Apache and UDP traffic. I'll stick with the do-nothing approach then. [17:01] jpds: As you said, probably just easier to fix the server :) [17:01] yeah, apache is straightforward'ish (I do something like this just to local services listening only on localhost, exposed by apache), but really only because http has lots of provisions for these sorts of things [17:01] and, on the other hand, a random udp protocol almost certainly does not [17:02] Lihis, if your protocols have some way of determining if they're up unintrusively [17:02] i.e., via a no-op udp message that gives a reply you can check [17:02] then you could add a service that polls it on some interval, and emails someone if it's brokejn [17:03] that's an example of the "passive" style approach I referenced, where instead of trying to actively fix something, it just makes sure someone knows that it broke [17:04] where a simple active approach might try to restart the service, causing hilarity if the service was actually working fine, but something else broke in the monitoring program, or the network config (potentially in a way that doesn't matter to actual users; think hardcoded ip address in the monitoring app, while users use dns to get the current address, etc) [17:11] cwillu_at_work: Yeah.. You have a good point. I will do some kind of passive approach. Thanks for the help! === markthomas is now known as markthomas|away === IdleOne- is now known as IdleOne === Lcawte is now known as Lcawte|Away