/srv/irclogs.ubuntu.com/2019/02/15/#ubuntu-server.txt

sarnoldsdeziel: I just did an apt-get dist-upgrade that ran probably 15 or 20 times faster than it might have, thanks to removing os-prober :)00:37
sdezielsarnold: hehe :)00:37
sarnoldgranted I still haven't rebooted..but at least the upgrades are going way faster :)00:37
sdezielsarnold: if you'd like to make "apt-get update" faster too: https://paste.ubuntu.com/p/kMh2JXW4jC/00:40
sarnoldsdeziel: heh, I did the acquire-languages one once and apt-cache search didn't work quite right for ages and it took me a lot longer than I'd care to admit to figure out that I'd done it to myself :)00:51
sdezielapt-cache search works well here for some reason, go figure :)01:01
sarnoldhmmmm01:02
sdezielI "inflict" those settings to every machine I manage so I hope it doesn't cause problem </BOFH>01:02
sdezielgood evening01:07
lordievaderGood morning08:46
patstomsis there any way to enable disabled network interface at installation?09:32
patstomsi am aksing this because i can't see them using ifconfig -a09:32
rbasakIf ifconfig -a can't see it then I think the NIC isn't visible to userspace at all (unless you're in different namespace which I presume you're not)09:36
rbasakSounds like a driver or BIOS issue.09:36
patstomsthis should be related to ubuntu 18 installation09:37
lordievaderModule not loaded/available?09:37
patstomsat install it saw all of them and i can see them using lspci09:37
patstomsbut i disabled some of them using disable option09:37
patstomsok, i can see them now after reboot09:45
patstomsi don't know why i was not able to see them before09:45
Hackerpcsis it possible to specify a custom non-53 dns port in "nmcli con mod"?10:10
ren0v0Hi, i'm not getting much help over on ubuntu so thought would try here10:42
ren0v0I'm getting this error when trying to do a release upgrade:  https://paste.ubuntu.com/p/JJkzN4Kdby/10:42
ren0v0any ideas?10:42
blackflowHackerpcs: may I ask why would you want that? And is it for client side or server (dnsmasq/systemd-resolved) side?10:47
HackerpcsI wanted to direct it to localhost:53535 dnscrypt-proxy I run via docker10:48
Hackerpcsdnsmasq runs on 5310:49
blackflowHackerpcs: ideally, since that's localhost, you'd want to turn of dnsmasq and have the docker listen on port 5310:49
blackflow*off . Meanwhile, I think you can run port forwarding without NAT via iptables, but I'm not sure of exact iptables syntax OTOH10:50
blackflowactually I think it's regular DNAT just for the same IP but different port.10:51
HackerpcsI don't want it to act like a server for any other endpoint, just locally10:51
blackflowyes that doesn't conflict anything I said. :)10:52
blackflowyou have several options really, none of which require you to alter the port number for the client/lookup side. You can do DNAT, you can disable all but the docker as the resolver, or you can run the docker on a separate IP, but port 53, and simply adjust your /etc/resolv.conf10:54
blackflow(directly or whichever tool you use that manages resolv.conf)10:54
HackerpcsI think I'll go to the route of disabling dnsmasq on NM and systemd-resolved10:54
Hackerpcsand have dnscrypt act directly on 5310:55
blackflowthat's what I'd do. Keep it simple.10:55
tomreynhttp://releases.ubuntu.com/18.04/ubuntu-18.04.2.0-live-server-amd64.iso.torrent , as found at https://www.ubuntu.com/download/alternative-downloads#bittorrents is a 40411:07
tomreynwho could fix this?11:07
Hackerpcshm dnscrypt via docker doesn't seem to like being run on 53, "[FATAL] listen udp 0.0.0.0:53: bind: permission denied"11:10
cpaelzertomreyn: I think it should be http://releases.ubuntu.com/18.04/ubuntu-18.04.2-live-server-amd64.iso.torrent11:12
cpaelzerlet us highlight a few people on #ubuntu-devel about it11:13
blackflowHackerpcs: I don't know docker, but ports<1000 require CAP_NET_BIND_SERVICE for unprivilegd users11:13
tomreynthanks cpaelzer11:13
HackerpcsI'm trying first directly outside docker to see how to configure it and then try in docker. I've commented out dnsmasq in networkmanager config and stopped/disabled systemd-resolved service but /etc/resolv.conf keeps getting reset11:29
Hackerpcsshouldn't it be used directly after those two are stopped?11:29
blackflowHackerpcs: I think you'll need dns=none rather than just commenting it out, in NetworkManager.conf. systemd-resolved you'll have to "mask", not just disable11:34
blackflowHackerpcs: then restart NetworkManager, and unlink resolv.conf, install a static one under /etc  (because default is a symlink into /run/11:34
blackflowunlink /etc/resolv.conf that's what I mean11:35
blackflowHackerpcs: btw, if it runs outside of docker.... why do you need docker in the first place?11:36
HackerpcsI had a ready made compose with pihole/dnscrypt/openvpn from home https://pastebin.com/vvGp56tL and on the vps I'm working on I just wanted the openvps and dnscrypt part so I just tried if it works directly11:38
blackflowHackerpcs: my question still stands. if it runs normally, why use docker at all. docker is primarily useful when you need environments that can't exist natively (eg. library conflicts or lack of native packaged solutions). everything else is just abuse of dockeer and complicating things for no benefit.11:40
blackflowif it's isolation/security that you need, systemd service unit files have plenty of options to containerize a service with far less complexity.11:40
Hackerpcsthe main thing I wanted was to run openvpn on the vps and the docker image used kylemanna/openvpn makes it very easy. after that I want dnscrypt as the dns resolver, on home it is used by pihole, here I don't want pihole, just dnscrypt directly11:41
Hackerpcsreason to use docker in the first place was the ease of setting up openvpn with the image11:42
blackflowso dnscrypt is part of the openvpn dock(er)?11:42
Hackerpcsyeah, no need to be in docker here though so it can run alone directly outside of docker11:43
blackflowSure. simplify as much as possible.11:43
Hackerpcsuse of docker at home (irrelevant to the vps) is because with docker setting up pihole and openvpn is very easy in contrast to installing the directly and don't touch the main system files with their settings, files, etc11:45
Hackerpcsinstalling them*11:45
blackflowthat's a rather vague reason. openvpn is packaged in Ubuntu and thus with files perfectly under control. the only problem with clobbering "main system files" is when you install outside of the package manager, for which docker was primarily invented: deployment of software alien in the environment where it's installed.11:46
Hackerpcsthe docker container mentioned above has scripts in it to automate the creation of CA, client certs, etc. it takes 6 commands to setup the openvpn server compared to setting it up yourself11:48
blackflowyes and when it breaks you'll be left with no knolwedge of how to fix it, because you never understood the process. ;)11:48
HackerpcsWhy would it break? It's a docker image regurarly maintained11:50
blackflowbecause software breaks. sooner or later.11:50
blackfloweven that one:  https://github.com/kylemanna/docker-openvpn/issues11:50
Hackerpcseverything has issues, if I encounter one I'll deal with it :)11:51
blackflow_anyway_ ... keep in mind docker is probably running it unprivileged by default, so your tests outside of it should reflect that (ie don't run as root). for which it'll need CAP_NET_BIND_SERVICE capability, easily set via systemd unit file11:51
HackerpcsI won't try to run it more from docker, I want to run dnscrypt on two more VPS that doesn't have docker nor need it so I'll take the direct use case on all three11:53
blackflow(set via CapabilityBoundingSet   AND  AmbientCapabilities)11:53
siavoshkcHello. I had a wordpress site which was deleted by a mistake. The www folder. Now I reinstalled wordpress and worked on it. Error log of apache says /var/www/kamanacademy.com/public_html/runtime/wp-content/plugins/akismet/.htaccess: Require not allowed here, referer:13:27
siavoshkcI investigated the matter and read that AuthConfig should be set and I did it. But problem was still there13:28
HackerpcsSeems more like apache/nginx or wordpress issue to me13:29
tomreynsiavoshkc: read http://httpd.apache.org/docs/2.4/howto/htaccess.html#when13:32
kstenerudIs there a way in systemd to make an ExecStart line that, if an env var is set to "no", returns 0 rather than running the normal command?13:33
tomreynshort version: if you manage the server configuration yourself and can move instructions from the .htraccess file into the vhost configuration, then do it, and disable htaccess. If you cannot (why? should only be the case on shared hosting) then loosen AllowOverride.13:33
kstenerudSome kind of ExecStart=if [ "$SHOULD_BE_TRUE" != "true" ]; then return 0; else start_my_daemon; fi13:34
siavoshkctomreyn: Well. Nothing there is done by me. This is one of default plug-ins of WP. It also creates that .htaccess file by itself13:43
siavoshkcI am afraid I may not be able to fully discover the reason this plug-in is using .htaccess there. akismet (the plug-in) even creates that file on a Win machine13:45
tomreynsiavoshkc: if you instruct apache httpd to ignore htaccess files, then it will also ignore this one. you'd just need to ensure you keep the cofiguration you imported into the vhost up to date.13:46
siavoshkchttps://termbin.com/f3b013:46
tomreynsiavoshkc: did you read the full "When (not) to use .htaccess files" section of the Apache HTTPd how-to i pointed you to? did you understand it?13:51
siavoshkctomreyn: No. I will. But for now I know that for some reason wordpress uses .htaccess files by design.13:53
siavoshkcCannot config server to ignore them. I added AuthConfig to server conf. This time in the correct ssl conf file. Seems it is fixed.13:54
siavoshkcI will check if it is WP general policy or not.13:55
tomreynyes, wordpress provides .htaccess files out of the box. this is because it is often used in shared hosting, where .htaccess files may be the only way (if with a performance impact) to add webserver directives.13:55
tomreynAllowOverride=None would make apache httpd ignore .htaccess files (IIRC)13:56
tomreyni'm trying to help you make your website perform a little better, at the expense of having to review / monitor configuration changes on wordpress upgrades. you can choose not to want this, in which case you should loosen AllowOverride to no longer disallow Require directives in .htaccess files (the alternatvie i also suggested initially).13:59
tomreynthis would provide more automation but, on the downside, less oversight / understanding of how wordpress operates.14:00
tomreyngeneral webserver help is also available in #httpd14:01
tomreyn(for apache httpd only)14:01
kstenerudI'm looking at a package that has tests disabled for armhf due to crashes, but that was back in 2017. If I wanted to check to see if the tests are alright now, how would I do so? Do I need an armhf machine?14:27
sdezielkstenerud: I wonder if tests run in PPAs, if yes, that might fit the bill14:41
siavoshkctomreyn: I understood that .htaccess files should be avoided in my case as I have root access to it (Well proven :-). But I am not capable of reconfig apache right now. I should study more to move configurations from .htaccess files to main conf file.14:45
tomreynsiavoshkc: i don't blame you - just moving the configs is really simple though15:01
tomreynthis said, it's a good approach to make concious decisions about what one wants to handle and what seems like too much.15:02
tomreynthe performance impact is probably one you can handle differently, or may not actually need to handle at all.15:03
siavoshkctomreyn: You know I just understood what is going on here while I was chatting with you. Now I need time to digest this knowledge and investigate .htaccess files to see why they are using too many rewrite rules, how many of them exist and how should I move them to .conf in a controlled manner.15:05
tomreyn:) makes sense.15:09
=== BlackDex_ is now known as BlackDex
smoserrbasak: curious if you'd ever seen this https://git.centos.org/15:55
smoseri had not. it looks pretty impressive / workalike15:56
rbasakInteresting, thanks!16:06
sdezielI'm trying to use NRPE to monitor Xenial machines from a Bionic Nagios. The NRPE communication fails with "CHECK_NRPE: (ssl_err != 5) Error - Could not complete SSL handshake with 172.22.30.2: 1". Any idea how to workaround?17:02
tomreynsdeziel: handshake fails - incompatible ssl library versions? you could test with "openssl s_client -connect ip:port" and add extra parameters to limit ssl / tls protocol version and cipher suites.17:12
tomreynor you use a script which automates it, such as testssl, sslyze or the like.17:12
sdezieltomreyn: the pcap shows that is wants to use anon cipher with TLS 1.217:13
tomreynsounds like you should be filing a bug report17:13
tomreynand tag it "security", that's unless you modified the defaults17:13
sdezielbut the README mentions communication problems between 2.15 (Xenial) and Bionic (3.2.1)17:14
tomreyndo you have a link, more info on where to find this?17:15
sdezielI always knew NRPE SSL implementation was shitty but this interop problem I cannot workaround17:15
sdezieltomreyn: /usr/share/doc/nagios-nrpe-server/NEWS.Debian.gz on Bionic17:15
tomreyn"Because the default SSL support without certificates configured in nrpe.cfg uses pre-generated key data, configuring SSL certificates is strongly advised when STunnel is not used."17:21
tomreyn...sounds dodgy.17:21
sdezielyeah, it is17:22
sdezieltelling the agent side (Xenial) to not use SSL make it work17:22
tomreynbut i'm not sure what "pre-generated key data" refers to specifically. if this is the snakeoil certificates which are generated individually per system, maybe it's ok.17:22
sdezielbut I'd rather not have to reconfigure all my agents17:22
sdezieltomreyn: I think it means compile-time generated key17:22
tomreyni'm afraid so, too. whic i'd consider a security bug, if it is a default config.17:23
tomreynhowever, this should be mostly unrelated to the issue you're running into17:24
sdezielright17:25
sdezielhowever shitty the TLS implementation is, I'd like it to work ;)17:25
tomreyni.e. i don't think this explains why anonymous cipher suites are used when TLS *is* used, nor why your handshake fails (unless that's because the smarter end, probably the bionic server, points out that it is not going to connect with an anon cipher)17:26
tomreynwith SSL/TLS there are usually two things you can choose between (though this is now finally changing): (1) make it work, (2) make it work in a way that it provides reasonable security17:27
tomreynmaybe start with a bug report and we explore it further from there?17:28
sdezieltomreyn: the client side is Bionic and I see the server hello from Xenial just fine. The Bionic client then kills the connection with an alert: handshake failure17:28
sdezielyeah, I'll probably open one if there isn't already, I should have checked before asking here17:29
tomreynand how did you tell it's using an anon cipher?17:29
sdezielLP: #178265017:30
ubottuLaunchpad bug 1782650 in nagios-nrpe (Ubuntu) "nrpe plugin in bionic fails with "Error - Could not complete SSL handshake"" [Undecided,New] https://launchpad.net/bugs/178265017:30
sdezieltomreyn: wireshark17:30
tomreynoh right you mentioned this17:30
tomreyndo you see this, too?  "My syslog from the nagios server reports errors such as: check_nrpe: Error: (!log_opts) Could not complete SSL handshake with xxx.xxx.xxx.xxx: dh key too small"17:31
tomreynquote from comment 417:32
sdezieltomreyn: yes!17:32
tomreynwell, 512 bit DH keys were a good thing when time berners lee was doing something useful.17:33
sdezieldon't we love export grade ciphers :)17:34
tomreynso i guess the nrpe package in xenial needs a fix which allows it to use longer keys (but maybe doesn't default to it?).17:37
sdezielthe server gets to pick the DH key AFAICT so it seems the client side (Bionic) would need to accept such weak keys17:39
tomreynthe 'server' here runs on xenial, right? i.e. my current understanding is that the connection is initiated by an ssl client on bionic to something ("agent") running on the xenial system. i'm assumign this because you said "the client side is Bionic and I see the server hello from Xenial just fine."17:42
sdezielcorrect17:44
sdezielbut in TLS, the server picks the DH group and the client agrees or not (kills the connection)17:44
sdezieltomreyn: here's the cipherscan output of the Xenial server: https://paste.ubuntu.com/p/V8ZgrhKgQW/17:45
tomreynso this agent running on xenial, which is the server in the TLS connection, needs to be updated / patched so that it can support, and con be configured to use, 2048-bit DH.17:45
sdezielthat would likely introduce regressions if the server was to pick bigger DH params17:46
sdezielwhich is why I _think_ the new client should be told to support weak DH params to interop with old servers (agents)17:46
sdezieltomreyn: do you know if there is some param to pass to openssl to tell it to not bother with too small DH params?17:47
tomreynyou can specify a cipher suite17:49
tomreynbut as your scan suggests there is a larger problem which is that there is *only* support for ADH cipher suites17:49
tomreynwhich basically means you're happy with MitM and don't need to know about it.17:51
sdezielI don't mind the ADH thing17:51
sdezielyeah, I knew that from the get go17:51
tomreynso we should separate between fixing your immediate issue - monitoring not working - and fixing the actual issue - nagios using terrible TLS.17:52
azxHey guys, i'm looking to learn more about linux server management , so i thought the best way to do this would be to set up my own server from scratch and use it to stream my content to my phone, tv, etc17:53
azxdebating weather i should buy my own vps or set up one on my home network with a spare pc or something17:54
sdezieltomreyn: nrpe supports proper TLS apparently but I don't want to setup a PKI for this :/17:54
tomreynsdeziel: i think the reason you can't convince bionic to use 512 DH will be that its libssl (i'm blindly assuming it uses this for now) will not allow that / no longer supports it.17:54
sdezieltomreyn: yes, that's my understanding of it17:55
tomreynsdeziel: do you have a workaround which works for you, yet?17:55
tomreynmy understanding is that you can do clear text, but not sure you want this.17:56
sdezieltomreyn: correct, clear text works but requires to reconfig all the agents17:56
sdezieltomreyn: I've attached my pcap to the LP if you'd like to take a peak (although we already discussed most of it)17:58
sdezielopenssl seems to now reject DH < 768 bits18:03
tomreyni don't think you'll get around replacing + reconfiguring all xenial agents if you'd like to actually fix this.18:03
tomreynyes, current libssl sets some slightly elevated, still much too low, new standards, and things break (now obviously, while already broken before really).18:06
sdezielhttps://git.openssl.org/gitweb/?p=openssl.git;a=blob;f=ssl/s3_clnt.c;h=218534734dd7e7467a14d1d0914207a77343e218;hb=refs/heads/OpenSSL_1_0_2-stable#l361118:07
sdezielso maybe if I can make it use an export grade cipher the client won't reject the 512 bits DH18:07
sdezielbut EXPORT ciphers are not available on Bionic18:11
sdezielI'll bite the bullet and reconfig all my agents I guess18:11
tomreynyou could also rebuild the bionic 'client' against an older libssl. but... HBD18:13
sdezieltomreyn: yeah, no way ;)18:15
tomreynbtw line 20 of https://paste.ubuntu.com/p/V8ZgrhKgQW/ is also a problem, if true.18:15
tomreynso whether nagios does TLS properly would yet have to be seen. i'm a bit happy right now i no longer depend on it.18:16
sdezielI was wonder to switch run check over SSH and ditch NRPE, this might push me into that direction18:18
tomreynsounds error prone and complex, i guess i'd do the PKI rather, if annoying.18:21
tomreynsdeziel: what i don't yet understand is why this popped up for you today18:22
tomreyndid you deploy updates one either end?18:22
sdezieltomreyn: I started monitoring my legacy (Xenial) machines18:22
tomreynoh ok18:22
sdezielbefore those were monitored by an even older NMS (Trusty)18:23
tomreynby the way there is this https://github.com/NagiosEnterprises/nrpe/issues/3018:23
tomreynlast post refers to a branch adding "backward-compatible update for SSL/TLS" in enterprise nrpe. maybe this is just what we were looking at initially.18:25
tomreynwell this is old, ignore it18:26
sdezielwell, if only the old nrpe allowed configuring the cipher list...18:28
sdezielcase closed ;)18:28
sdezieltomreyn: many thanks!18:28
sdezielhave a good weekend (leaving early :) )18:28
tomreyni'm not sure i added much, but it was 'fun'.18:28
zzlatevHi guys20:07
zzlatevPlease help me with wireless issue20:10
lordcirth__!details | zzlatev20:11
ubottuzzlatev: Please elaborate; your question or issue may not seem clear or detailed enough for people to help you. Please give more detailed information; for example, we might need errors, steps, relevant configuration files, Ubuntu version, and hardware information. Use a !pastebin to avoid flooding the channel.20:11
zzlatevlordcirth__: I use ubuntu server 16, but I don't have wireless20:11
zzlatevIntel(R) Pentium(R) Dual  CPU  T2310  @ 1.46GHz20:11
zzlatevnetwork controller: Broadcom Corporation BCM4311 802.11b/g WLAN [14e4:4311] (rev 02)20:11
zzlatevI have only wired connection20:12
zzlatevlordcirth__: I should install firmware-b43-installer ?20:13
lordcirth__zzlatev, this seems to be a complete guide: https://askubuntu.com/questions/55868/installing-broadcom-wireless-drivers20:14
zzlatevwhen I type : lspci -nn -d 14e4:20:14
zzlatevit shows: Broadcom Corporation BCM4311 802.11b/g WLAN [14e4:4311] (rev 02)20:15
zzlatevwithout "wireless network adapter"20:15
zzlatevлор20:17
zzlatevlordcirth__:20:17
sarnoldлор == floor?20:17
lordcirth__WLAN means wireless20:17
sarnolddang. google says "lore". not what I expected, by a lot ;)20:18
zzlatevnope, this is bulgarian language, sorry about that20:18
zzlatevлорд - lord20:18
zzlatevlordcirth__: after this, how can I configure wirless settings?20:19
lordcirth__zzlatev, What Ubuntu server version?20:20
zzlatev16.0420:21
lordcirth__https://askubuntu.com/questions/464507/ubuntu-14-04-server-wifi-wpa2-personal/464552#46455220:21
zzlatevI will try20:22
zzlatevlordcirth__:20:28
zzlatev[   24.265305] b43-phy0: Broadcom 4311 WLAN found (core revision 13)20:28
zzlatevhow can I check does wifi works20:29
lordcirth__zzlatev, did you set it up in /etc/network/interfaces?20:29
zzlatev# The loopback network interface20:30
zzlatevauto lo20:30
zzlateviface lo inet loopback20:30
zzlatev# The primary network interface20:30
zzlatevauto enp2s120:30
zzlateviface enp2s1 inet dhcp20:30
zzlatevI have two network interfaces20:31
zzlatevlordcirth__:20:34
lordcirth__So no, you didn't20:34
lordcirth__'ip addr' will show you what interfaces are available to be used20:35
zzlatevlordcirth__: https://pastebin.com/s25E5A6a20:36
zzlatevafter ip addr20:36
lordcirth__zzlatev, so, do the setup I linked, using 'wlan0' as the interface name20:36
zzlatevlike this:20:36
zzlatevauto wlan020:36
zzlateviface wlan0 inet static20:36
zzlatevaddress 192.168.1.15020:36
zzlatevnetmask 255.255.255.020:36
zzlatevgateway 192.168.1.120:36
zzlatevwpa-ssid <your_router>20:36
zzlatevwpa-psk <your_wpa_key>20:36
zzlatevdns-nameservers 8.8.8.8 192.168.1.120:37
zzlatev?20:37
lordcirth__Yes. But please don't paste so many lines to channel, use a pastebin20:37
zzlatevOK, sorry20:37
zzlatevlordcirth__: after two of already exiting blocks ?20:38
sarnoldyes20:38
zzlatevlike this:20:39
zzlatevhttps://pastebin.com/ReDs1u3J20:39
sarnoldbe sure to set the ssid and psk to whatever you actually need20:40
zzlatevwpa-ssid Zlatev wpa-psk siriussam20:41
zzlatevshoud I use < > ?20:41
lordcirth__No, <> is used to indicate "substitute here"20:41
zzlatevOK, now I save20:41
zzlatevhow could I try?20:41
sarnoldI think: ifup wlan020:42
zzlatevwpa-ssid is network name, right?20:42
lordcirth__yes20:42
zzlatevRTNETLINK answers: File exists20:43
zzlatevFailed to bring up wlan0.20:43
zzlatevsarnold: aftr ifup wlan020:44
sarnoldis there anything near the end of dmesg output?20:44
zzlatevno, only RTNETLINK answers: File exists20:44
zzlatevFailed to bring up wlan0.20:44
lordcirth__ifdown, then try again?20:44
zzlatevlordcirth__:20:45
zzlatevifdown: interface wlan0 not configured20:45
lordcirth__zzlatev, ip link set wlan0 down20:45
lordcirth__then ifup again20:45
zzlatevifdown: interface wlan0 not configured20:45
zzlatevits shows that interface is not configured..20:46
zzlatevafter ifup : RTNETLINK answers: File exists20:46
zzlatevFailed to bring up wlan0.20:46
zzlatevlordcirth__: sarnold20:49
zzlatevhttps://pastebin.com/qC6ENgxh20:49
zzlatevafter : sudo ifdown wlan0 && sudo ifup -v wlan020:50
zzlatevseems like I going somewhere20:50
zzlatevI'm*20:50
lordcirth__zzlatev, sometimes it says file exists, but still does something. 'ip addr show wlan0;20:50
sarnoldhmm I wonder if it's that ip route add command that fails20:50
lordcirth__'*20:50
lordcirth__Ah, yeah, could be that the default route exists already on the ethernet20:51
lordcirth__You might want to remove the 'gateway' line20:51
zzlatevgateway 192.168.0.1 ?20:51
sarnoldor try ifdown enp2s1 ?20:51
lordcirth__zzlatev, you should only have one gateway line in the file20:53
zzlatevafter I removed gateway I got the same error20:53
zzlatevI have only one gateway line?20:53
zzlatevlordcirth__:20:55
lordcirth__zzlatev, not sure what's up. what's 'ip route' say?20:56
zzlatev./bin/ip addr add 192.168.0.110/255.255.255.0 broadcast 192.168.0.255   dev wlan0 label wlan020:56
zzlatev./bin/ip link set dev wlan0   up20:56
zzlatevhttps://pastebin.com/dZmiVbuD20:56
zzlatevlordcirth__: sarnold21:02
zzlatevAfter I reboot, it doesn't show in dhcp client list21:02
zzlatevin my router21:02
zzlatevso... i get facked21:02
sarnoldyou configured it for static21:03
zzlatevyes, but it doesn't turn on without a lan cable21:09
zzlatevsarnold: what do you mean21:15
sarnoldzzlatev: you gave the wlan0 interface IP address 192.168.0.110 -- so there's no reason for the router's dhcp client list to list this NIC21:15
zzlatevsarnold: so what should I set21:16
sarnoldzzlatev: heh, it's not my network, I don't know what to suggest :)21:17
sarnoldzzlatev: if you want it static, set it static.. if you want it dhcp, set it to use dhcp :)21:17
zzlatevok21:17
Epx998Is there an option I can pass a install to not bother with creating a user?23:03
tewardEpx998: since root is disabled by default, you don't have a choice but to create a user regardless of the method of installation (whether live server or alternate or preseeded)23:26
tewardso 'not really' is the answer here.23:26
tomreyni guess if it was a desktop installation you could do an oem install23:28
teward^23:32

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