[00:17] i didn't change my zsh configuration for ages [00:17] but i founud something really handy recently; zstyle ':completion:*' rehash true [00:17] it means you don't have to type rehash after installing packages [00:21] does pacman work kind of like yum and apt-get ? [00:22] yeah [00:22] "pacman -S zsh" will install zsh [00:22] "pacman -Ss zsh" will search for packages that mention zsh [00:22] -Ss happens to list grml-zsh-config first fwiw [00:23] what still weirds me out is juust how much faster packages install on zsh compared to ubuntu [00:23] the difference is very noticable [00:24] pacman -S --noconfirm nano 0.09s user 0.03s system 47% cpu 0.251 total [00:24] that includes the download [00:25] apt-get -y install nano 0.73s user 0.17s system 36% cpu 2.467 total [00:26] so yeah including download it's about 10x as fast for small packages [00:26] and even if download was instant, ubuntu uses so much cpu/disk/etc that it's still slow [00:27] s/zsh/arch/ [00:27] what still weirds me out is juust how much faster packages install on arch compared to ubuntu [00:36] I am linking arch's documentation [00:37] s/linking/liking [00:37] I am liking arch's documentation [00:37] yeh even if you use ubuntuu it's still useful :) [00:51] how do I install pkgtools [00:51] or startx [00:51] pkgtools? [00:51] You can use pkgfile to know which package own a file. pkgfile is bundled in the pkgtools package [00:52] oh it's in aur [00:52] you need to install cower or such [00:52] https://aur.archlinux.org/packages/cower/ [00:52] so pacman -S cower ? [00:52] i use "meat" [00:52] nah it's in aur :/ [00:53] so it's a pita to get the first one [00:53] https://github.com/falconindy/cower [00:54] so grab that then do makepkg -s [00:54] That's what she said!! [00:54] then pacman -u the .xz file [00:54] err pacman -U [00:55] then you can do cower -s to serach [00:55] and cower -d to download [00:55] cower will download into current directory making a new directory for the package [00:55] I need ssh server first [00:55] i'd recommend downloading meat first [00:55] so I can copy paste [00:55] heh [00:55] is this on a vm or bare metal? [00:55] vm [00:55] ahh [00:56] i'm doing an arch template for arp [00:56] volunteer / paid ? [00:56] or in exchange for Vms and ips / bandwidth :-) [00:56] heh [00:58] so there shoudl be templates early for debian, openbsd etc that are coming out [00:58] I always prefer installing my own os [00:59] i prefer having auto install for vm's normally [00:59] what i hate is when it forces icky things on you [01:00] like most of those solusvm providers have sendmail and so on [01:00] because someone's done terrible templates that seem to lack useful things like man [01:00] but have SENDMAIL [01:00] when it's not even default [01:02] I got ssh working now [01:02] cloned the cower repo [01:04] cool [01:04] then just makepkg -s on it [01:04] ==> ERROR: Running makepkg as root is not allowed as it can cause permanent, catastrophic damage to your system. [01:04] yeh youu have to sudo it :) [01:04] Could not chdir to home directory /home/mnathani: No such file or directory [01:04] useradd doesn't add home directory [01:04] so it seems [01:04] err doesn't create [01:05] yeah it's core unix [01:05] adduser is a fancy nice script [01:05] you hit the same kind of issues on solaris [01:05] bash: adduser: command not found [01:05] yeah they don't include adduser [01:05] just mkdir ~mnathani [01:06] chown mnathani ~mnathani [01:06] i'm not using cower/meat everywhere fwiw [01:06] you can get by without it pretty well [01:07] you can just install xorg-xinit [01:07] i use lightdm though [01:07] ==> ERROR: PKGBUILD does not exist. [01:07] and it looks really ugly, but i don't care, because i just login :) [01:08] when executing the makepkg under mnathani account [01:08] are you in the build/cower directory [01:08] i use /src/builds to store all of mine [01:08] where src is zfs with set mountpoint [01:08] > /home/mnathani/cower [01:09] so youu're in the cower directory? [01:09] I am [01:09] and you can do ls -l PKGBUILD ? [01:09] ls: cannot access PKGBUILD: No such file or directory [01:09] there's the issue [01:09] you sure it's not in a subdir? [01:09] like cower/cower :) [01:10] 6 files in there [01:10] config [01:10] cower.c [01:10] etc [01:10] Makefile [01:10] it's not got the package hmm [01:10] is that the src/ directory ? [01:10] bah [01:10] nope [01:10] no src dir [01:11] just curl -O https://weallsee.net/PKGBUILD [01:12] i uploaded it there [01:12] thanks [01:12] sorry for all the newbie questions [01:12] yeah it's a pita [01:12] i mean cower is [01:12] I really need to catch up on reading manuals [01:13] it's easier once you have it :) [01:14] then you need sudo pacman -U cower-12-2-x86_64.pkg.tar.xz [01:14] error after error [01:14] oh? [01:14] first it wants me to be a sudoer [01:14] what's it doing? [01:14] I added mysefl to sudo file [01:14] su to yourself [01:14] if you added yourself to sudo group [01:14] now its checking pgp signature [01:14] otherwise you're not part of the group [01:15] ==> ERROR: One or more PGP signatures could not be verified! [01:15] https://aur.archlinux.org/packages/cower/ [01:15] Just a quick thanks to runical, adding "keyserver-options auto-key-retrieve" to my ~/.gnupg/gpg.conf fixed the error I was getting. [01:15] it really is a pita isn't it [01:15] error: you cannot perform this operation unless you are root. [01:15] first it complains as I am root [01:15] then I am not sudo [01:16] then I am not root [01:16] heh what does it need root for? [01:16] [mnathani@Arch cower]$ pacman -U cower-12.tar.gz [01:16] curl -O https://weallsee.net/cower-12-2-x86_64.pkg.tar.xz [01:16] oh [01:16] you have to -U the pkg.tar.xz file [01:16] and /that/ needs you to sudo for it [01:16] sudo pacman -U cower-12-2... [01:17] cower-12.tar.gz is the source [01:17] makepkg -s should have made that package [01:17] That's what she said!! [01:17] ok, cool its installed now [01:17] oh sweet [01:18] so makepkg -s worked fine? [01:18] used the one you linked [01:18] now in your build directory do cower -d meat [01:18] and cd meat [01:18] and makepkg -s [01:18] and install meat [01:18] then it's easy to install stuff :) [01:18] there's heaps of alternatives [01:18] error: no results found for meat [01:18] but meat works fine for me [01:19] it maybe meat-git [01:19] yeah it's meat-git :) [01:19] what else should exist in my build dir [01:19] can I just use /root/build ? [01:19] nope because you have to build as a normal user [01:19] and normal user can't access /root [01:19] i dunno what other people do, but i like /src vs /usr/src [01:20] and i like having an extra directory for package stuff [01:20] some people probably usr /usr/local/src [01:20] but /src is much easier to complete to [01:21] not using root user is new to me [01:21] heh yeh [01:21] I usually run everything as root [01:21] not using root is growing on me a little [01:21] except maybe weechat [01:21] yeh i used to root for everything system related [01:21] i figure it's more secure having seperate root / normal logins [01:22] when you can just sudo su or sudo any command as normal user [01:22] it's like your normal user is root [01:22] there are a few advantages though [01:22] like if you have multiple people doing stuff you can tell who did stuff easier [01:22] accounting on a shared system [01:23] does arch download everything as source and build [01:23] rather than get a binary? [01:24] aur stuff yeh [01:24] but not for normal packages [01:24] whats aur again? [01:24] arch user repository [01:24] it's where lots of people submit various packages [01:24] quality can vary [01:24] That's what she said!! [01:25] so like infiniband stuff is in there [01:25] dropbear is in there it seems [01:25] memtest86-efi is in there [01:25] ttf-google-fonts-git is in there [01:26] none of it is really essential to everyone [01:26] how does it compare to say an ubuntu rep [01:26] it's like universe/multiverse [01:26] compared to the standard rep [01:27] except it's kind of more like the extra ubuntu repositorys you can add from external [01:28] how would I go about installing kde and x [01:28] kde is in base [01:29] the kde instructions said have a xserver working before install [01:29] and thats when I couldnt get startx working [01:29] just pacman -S lightdm [01:29] or gdm or whatever you're into [01:30] should that bring in the startx command ? [01:30] nah [01:30] it'll go straight to gui [01:30] xorg-xinit will give you startx [01:31] apt-get install xorg-xinit >> bash: apt-get: command not found [01:31] :-) [01:32] 2 packages: plasma vs plasma-meta [01:32] hahaa [01:32] which one has more stuff [01:32] meta probably? [01:32] i dununo :) [01:33] *** toeshred has quit IRC (Ping timeout: 248 seconds) [01:33] *** hive-mind has quit IRC (Ping timeout: 264 seconds) [01:35] *** toeshred has joined #arpnetworks [01:35] *** hive-mind has joined #arpnetworks [01:52] Hmm..... [01:58] *** milki has quit IRC (Ping timeout: 272 seconds) [01:58] *** milki has joined #arpnetworks [01:58] *** jpalmer has quit IRC (Ping timeout: 276 seconds) [01:59] *** up_the_irons has quit IRC (Ping timeout: 265 seconds) [02:01] *** KDE_Perry has quit IRC (Ping timeout: 252 seconds) [02:02] *** KDE_Perry has joined #arpnetworks [02:26] *** up_the_irons has joined #arpnetworks [02:26] *** ChanServ sets mode: +o up_the_irons [03:54] *** jpalmer has joined #arpnetworks [07:41] pacman -Qo /path/to/file 00:50:02 mnathani_ | You can use pkgfile to know which package own a file. [07:42] Personally, mercutio/mnathani_ I'm a fan of yaourt which builds-in sudo, searches ABS and AUR, handles updates, everything! Eg: "yaourt -Syua" update package lists and install updated packages including checking AUR for updated packages. [07:43] i read that as yaogurt [07:43] The character from Spaceballs? [07:44] yeah, haha [07:44] Also, "makepkg -i" to build + install (with sudo) [07:44] mike-burns: The French for yogurt. [07:46] I imagine if you're wanting KDE, you'd use kdm, fwiw. [12:03] slow day today :) [12:09] Most days :p [12:53] http://blog.pcbsd.org/2015/04/pc-bsd-and-4k-oh-my/ mercutio [13:09] brycec: i mentioned there were alternatives :) [13:09] there are shit loads of them :) [13:10] havingg similar syntax to pacman sounds nice though [13:13] m0unds: my monitor defaulted to supporting 60 hz, but only through displayport [13:14] this motherboard does 4k with onboard video @60 hertz, but only has mini display port. i ordered a display port adapter off ebay, and it's come already. it looks like it's hard to do 60 hortz with onboard video in general. [13:15] when i read about that guy going with two 4k monitors taht' is actually a little bit of an issue, because people usually only have one displayport port [18:05] They can be chained usually. [18:05] That's what she said!! [18:08] BryceBot: no [18:08] Oh, okay... I'm sorry. 'They can be chained usually.' [18:08] (lol) [18:09] I liked it for a twss :P [18:09] Am I wrong? [18:09] no, i was laughing at the bot [18:09] Lol gotcha [18:11] looks like w/displayport 1.2 you can only drive a single 4k or 2k display per port [18:11] Provided the intermediate display supports it, and the display adapter. And 4K maxes out DisplayPort v1.2 bandwidth, so no chaining there. [18:11] http://www.displayport.org/cables/driving-multiple-displays-from-a-single-displayport-output/ [18:11] yeah [18:11] lol m0unds [18:11] that's what i was just looking at [18:11] i remembered seeing it though, must have just been w/1080p displays [18:12] It's news to me, but I have 0 DP displays so no reason I would know :p [18:12] my desktop monitor has dp, but i use dvi because i didn't have a dp cable [18:14] Definitely seems very, very cool. Alas, only my desktop has DP (I think... I know my last gfx card did) so it's not a priority. [18:18] brycec: so the bot collects all these twss, does it replay them sometime ? [18:18] I'm not understanding the question [18:19] do we ever hear back from the bot as in repeat all these phrases that have been recorded [18:19] or is it more like a one time That's what she said!! << comment and thats it [18:20] it doesn't work like that... "twss" trains a bayesian net, akin to spam training. When you "twss" something, it trains the sentence as something "she would say" and that's it. It's not "collected" [18:20] (besides by IRC logs, but that's a totally separate thing) [18:21] I see [18:24] what distribution / BSD most closely resembles archlinux ? [18:25] "distribution" almost exclusively refers to Linux, so... the closest Linux to Archlinux would have to be Archlinux. [18:25] (though VoidLinux might be a close second) [18:25] For BSD's, I'd say FreeBSD [18:26] (but take that with a grain of salt - I've only ever used Open, Net, and FreeBSD) [18:27] is Arch a top level linux, or does it have an upstream? [18:27] none of them [18:27] they are all much more conservative than archlinux [18:30] mnathani_: Top [18:35] * mkb remembers when he used to use arch and had all this free time for messing with my computer [18:36] I still use Arch and it doesn't require all sorts of free time. Unlike Gentoo... (but that was a long time ago) [18:40] I should play with Dragonfly more [19:20] is anyone experience serious lag? [19:20] I am [19:20] i cant use my vps for ♥ nor money [19:24] nvm.. stupid sendmail decided to go on a rampage [19:25] i killed that ages ago in place of postfix and its rearing it's butt ugly face again [19:40] if i had £1 for everytime i forgot to add a new mail alias for root to point to a valid mta, i would be having enough money to buy everyone a round of beer [19:41] kern.ipc.maxpipekva exceeded; see tuning(7) is such a lovely message when sendmail/mailwrapper gets in a knot about having nowhere to send anything then just queues [19:44] lol grody [19:45] i'd say netbsd is more like arch than freebsd [19:45] mercutio: What about Dfly or PCBSD? Have you tried those, do they relate at all? [19:45] brycec: i awnt to try dragonfly but i haven't [19:45] (siteXX.tgz ftw - one of my install.site/upgrade.site's tasks is to ensure there's a sane alias) [19:46] but considering they forked freebsd 4, where freebsd started to destabilise, i think it's on the conserwative side [19:46] * grody misses his 4.11 box [19:46] freebsd 2 and 4 were pretty stable [19:46] had that from bleeding edge til about a year ago, when the actual hardware systematically died.. was my best file server ever [19:47] was there a freebsd 3? [19:48] ahh there was 3 but it was shortlived [19:48] PCBSD is basically FreeBSD, but all GUId up for you [19:48] sounds annoying :) [19:49] archlinux is a beast on it's own and is a linux i enjoy next to gentoo.. and if i were to say FreeBSD was like any linux, i would say it was an easy to use gentoo [19:49] freebsd kind of annoys me [19:49] and i never thought i would read myself typing that [19:49] freebsd feels more like redhat [19:49] "an easy to use gentoo" [19:49] gawd no, redhat is S^&! [19:50] wouldn't excrete on it even if it's immolation spelt $500 to put me out [19:50] freebsd is more unstable than netbsd or openbsd [19:50] freebsd has lost it's way in the last few years, that is fgor sure [19:50] i blame apple [19:50] netbsd is lean and mean like arch :) [19:51] did you ever use slackware grody ? [19:51] never actually used netbsd for anything more than pottering on [19:51] mercutio, for a while.. until i found gentoo [19:51] ahh ok [19:51] then my hair started thinning... [19:51] i tried using gentoo [19:52] i didn't like it [19:52] trinux was something i used to use a lot, a floppy based slackware [19:52] yea gentoo can be infuriating [19:52] it was a very long time ago actually [19:53] only using it again atm as im trying to build "the perfect linux" for my tablet, since there is absolutely no or little "official" support, so im stealing drivers and what not from androids that are suspected to work the wifi and touchscreen (only two things holding me back) [19:53] but it's taken bloody ages to get things even barely right [19:53] heh [19:53] sounds like a huge time sink [19:53] it is :( [19:54] but windows 8.1 is the only other option (even android x86 has "issues"_ [19:54] ) [19:54] windows 10? [19:54] you know you want to :) [19:54] it's just a tablet [19:54] i have the TP on my laptop.. not bad, but i wouldn't put it down as tablet friendly [19:54] haha [19:55] i have tp on my desktop [19:55] for a low ended thing, it's pretty damned fast [19:56] ahh crap and now my slave laptop is useless again... i have too much crap going on on this thing [19:56] i wonder if any project levering arch is going to make significant headway [19:56] like ubuntu is to debian [19:56] compiling AOSP for my Sony phone, compiling stuff in Gentoo and now it's gone into meltdown as SWMBO wants to transcode a blueray for the Roku [19:57] i only came online to make sure the new box i just put on my network isnt revealing anything to the innerwebs [19:59] brycec: what do you think of arch linux for servers? [19:59] mercutio, i think Mint did a better working of debian, although they say it's ubuntu derived.. i never got that fully [19:59] use Mint quite a lot in fact :/ [20:00] have arch on the pogoplug [20:00] thats currently a backup MTA and web server/.. it /seems/ to have held for some months now [20:00] postfix broke recently for me :/ [20:00] but i haven't had many issues [20:00] and it was quite easy to fix [20:01] yea, postfix did something weird for me too after an upgrade [20:01] some execs moved location and didn't get fixed in a config [20:01] ahh [20:01] yes that's the issue i had too ;) [20:01] symlinked the fuckers [20:01] i just fixed the config file [20:02] i didnt have time to do that.. but since im online now, i may as well [20:02] daemon_directory = /usr/lib/postfix/bin [20:02] i think that was it [20:02] i think it was without the /bin before [20:02] yea [20:02] rehash [20:03] bleah, wrong terminal [20:03] grody: zstyle ':completion:*' rehash true [20:04] * grody uses csh [20:04] ahh [20:04] dont know why, always have since day 1 of freebsd and stuck since [20:04] typing rehash sucks :) [20:04] dont usually install new stuff that often [20:05] yeah but the amount of times you want to complete on something you've just installed is probably high [20:06] Fetching mtr-nox11-0.86.txz: 100% 42 KiB 43.5kB/s 00:01 [20:06] pkg: cached package mtr-nox11-0.86: size mismatch, fetching from remote [20:06] thats annoying [20:07] i can sense things are only to get worse if i dig deeper so im going to crack open a brew and watch TV instead :D [20:41] grody: Mint was originally forked from Debian, but later on they re-based off Ubuntu. [20:41] mercutio: As a "professional practice" I think rolling releases in production are a Bad Idea(tm). [20:42] Though even in "production" if updates are carefully checked and tested before being deployed, it's fine. [20:43] yeah there are some caveats [20:45] I've run it personally. But when it boils down to it, I need a server that doesn't have an 80% chance of breaking when I update, so I stick with "released" things like Debian and OpenBSD :D [20:45] i don't think that it's rolling release is necessarily the biggest issue [20:46] it's more that it's hard to know what will break where [20:54] i never had any issues with FreeBSD until 9/10 [20:54] 4 to 5, 5 to 6, 6 to 8 all fine.. 9 and 10.. wow [20:55] 9+ eh? That's about when they added ZFS support. Coincidence? :P [20:55] and MIMD [20:55] but upgrades where all manual and only really security fixes using former portaudit and portupgrade (now seems to all be in pkg) [20:55] and a bunch of other things [20:56] I'm renting a cheap box at digitalocean running not-zfs-on-root (since they don't support it) build my 8.x, 9.x, and 10.x packages. [20:57] by cheap, I'm saying $5/month [20:57] and it has 20 GB SSD. [20:58] that'll make my migrations easier [20:59] I'm tempted to make a ZFS fs by mounting it as a file. [20:59] so I'd just have an outer shim to hold the OS, and everything else would be ZFS on a legacy fs. [20:59] I've asked them for ZFS on root and it's not on their roadmap [21:01] netbsd is pretty conservative. stuff doesn't change on their release branch unless they work in security fixes [21:01] their releng guys do a pretty good job (which is why 7 was delayed repeatedly) [21:02] the freebsd fixit shell is only on the dvd1 release, right? [21:03] you'll get a shell on the cd image [21:03] not dis1 [21:03] disc1 [21:03] fixit shell not there [21:06] m0unds: they release often though compared to freebsd [21:06] and debian [21:06] what? [21:06] actually freebsd used to release rpetty often [21:06] freebsd rolled 10.0 last year, 10.1 this year [21:06] netbsd rolled 6.1 tree last year, iirc [21:06] and they've done 3 minor point releases since (which were all security fixes iirc) [21:07] ahh maybe i'm just nto following it as much [21:07] 9 to 10 took ages [21:07] 9 to 10 was only about a year [21:07] nah it was way more than a year [21:08] NetBSD 6.1 was released in May 2013 [21:08] they're still on that tree [21:08] so no, they're not fast :) [21:08] it's 6.1.5 now though [21:08] And prior to that was 2009 [21:08] all the minor point releases were security fixes [21:08] i don't think they did much in the way of feature roll-ups [21:08] ahh [21:08] (3.5 years between releases :p) [21:08] isn't freebsd 9.2 to 9.3 bug fixes too? [21:09] freebsd 9 was 2012 [21:09] freebsd 10 2014 [21:09] ok it's not that long between releases [21:09] seems to be a couple of years [21:09] so freebsd 11 next year? [21:13] oh... it looks like the 9.x releases can boot disk1 into a livefs mode [21:14] so it's only the 8.x stream disc1 that doesn't have livefs [21:14] i think where i thought freebsd 10 took aes is i read about stuff coming in 10 ages ago [21:15] but like there's stuff coming in 11 out now [22:22] *** toeshred has quit IRC (Ping timeout: 250 seconds) [22:23] *** hive-mind has quit IRC (Ping timeout: 244 seconds) [22:24] *** toeshred has joined #arpnetworks [22:37] *** hive-mind has joined #arpnetworks [23:23] *** mnathani__ has joined #arpnetworks [23:24] *** mnathani_ has quit IRC (Ping timeout: 244 seconds)