/srv/irclogs.ubuntu.com/2018/12/14/#ubuntu.txt

plujonVBoxManage guestcontrol $guest stat /bin/sh # hangs for me using 5.2.18_Ubuntur123745 on host and guest additions 5.2.18_KernelUbuntu r12374500:20
plujonVBoxManage guestcontrol $guest stat /bin/sh # does not hang when using 5.2.22 direct from Oracle.00:28
Jerbotanyone about?00:34
JerbotI added new nvidia drivers to 18.04 and reset.  after resetting the pc, I tried to log in...00:34
JerbotThe screen blinks and then goes back to login.00:34
cognition___is automatic upgrade of packages turned ON in this configuration:00:42
cognition___https://pastebin.com/0SEgvsBj00:43
Jerbotupgrade =/= update00:46
OerHeks20auto-upgrades and 50unattended-upgrades are responcible for that00:47
cognition___k, I am wondering if packages like, apache2/mariadb/redis will get upgraded00:47
mutantecognition___: no, it's downloading the lastest list of packages and even downloads the packages, but it stops short of installing them it looks. seems reasonable if somebody wants to keep control _when_ it happens but automate it partially00:48
cognition___OerHeks: theres no 50unattended-upgrades00:50
OerHekshmm maybe part of livepatch, not sure00:51
cognition___https://pastebin.com/Jt2XieCK00:52
cognition___mutante: TY00:52
cognition___OerHeks: It is zenial 16.04.3 LTS00:56
cognition___xenial00:56
OerHeksso yes, "1" means enabled01:00
CoreyW`curl -v fake.url` is routing back to our network router. any ideas how to fix? this happens for any unknown hosts. so when I would normally get "server not found" errors in Chrome/Firefox, I just get our local web server trying to serve the request.01:13
tomreynCoreyW: dont make your resolver respond (incorrectly) with the routers' ip address instead of NX, or switch to a resolver which works correctly.01:16
CoreyWtomreyn: i dont know what any of that means, aha. is that something i do on my local machine or at router level?01:16
CoreyWi assume my machine bc the windows machines dont have this issue01:17
tomreynCoreyW: it's not a default configuration, so it is something the administrator of your computer, your network or your ISP setup.01:19
CoreyWtomreyn: no one has touched the computer except myself, and i just did a normal installation of ubuntu01:20
CoreyW`systemd-resolve --status` shows on last line `DNS Domain: ourdomain.com`, so that must be the culprit01:21
CoreyWnot sure how to fix though01:21
brandonkalHow can I get git to track symbolic links? It seems to be hit and miss. Thanks.01:22
tomreynCoreyW: "ourdomain.com" sounds like you may have copied and pasted instructions from a tutorial, and missed to replace this by your actuual domain name.01:23
CoreyWtomreyn: that was just an example. it actually is our domain there01:23
CoreyWsorry for confusion01:23
CoreyWresolv.conf also has `search ourdomain.com`01:24
tomreynCoreyW: this search domain is probably sent by your router upon dhcp and inherited by your ubuntu system.01:25
CoreyWtomreyn: ah okay. so is it okay to override that on my machine? or should i modify the router setup?01:25
CoreyWnot sure if dhcp will overwrite my changes or not01:26
tomreynCoreyW: in other words: if you don't like those lookups you should either reconfigure the router not to send it to this or all of your systems or reconfugre your ubuntu system to ignore this information received as part of the dhcp response.01:26
CoreyWis reconfiguring my ubuntu simple enough? i dont want to mess with router if possible.01:27
tomreynif it is plain wrong and you manage the network / router then you should 'mess with the router'.01:28
iosecureCoreyW: That sounds like a common ISP move where they'll intercept DNS requests for invalid domains and direct them to an ISP landing page, either on the router, or elsewhere.01:28
CoreyWokay i will have my boss contact our ISP and see if they can get it sorted out01:29
CoreyWiosecure: sounds very likely01:29
CoreyWiosecure: in this case though its just sending it back to us, which is weird01:29
CoreyWthanks tomreyn01:32
tomreynCoreyW: you can have the isp change it, thats good, but if this is a company environment you should also configure these values on the router yourself properly, and (beforehand) understand what they do. if you dont want to do it on the router but on the clients, it's a matter of configuring 'supersede domain-name ""' and 'supersede domain-search ""' in /etc/dhcp/dhclient.conf01:32
CoreyWokay. im not a network guy, but i will look into that. appreciate the information!01:33
tomreynif you dont have a network guy / gal, then either have $boss hire one, teach it yourself (have your $boss have someone teach you) or find an isp which doesn't provide you with such intentionally-misconfigured-for-profit-maximization gear / network configurations.01:36
CoreyWtomreyn: dang, my boss just said we cant configure our router because its managed by our ISP01:36
CoreyWlol01:37
fishcookerhow to calc the disk the ubuntu got when we do apt autoremove? https://bpaste.net/show/9ae148c73d0e afaik we only know only disk space needed01:37
iosecureCoreyW: If it were me, I'd set up a DHCP and DNS server internally, and bypass the router for those functions.01:40
iosecureBut that's me.01:40
tomreynCoreyW: so that's a small office / home office setup, not unusual. have the isp fix it and tell them you dont approve their default configurations which cause mistyped domain names and non found domain names to be sent over the (Internet) wire, in what is a non default configuration.01:40
tomreynCoreyW: i'm the same as iosecure there01:40
tomreynfishcooker: it will say once you actually do the autoremove01:42
=== daniel is now known as Guest29493
=== capella|away is now known as capella
CoreyWiosecure: after talking more, we do have DHCP server setup here.01:47
iosecureCoreyW: Is it on that router?01:47
OerHeksapt-get dist-upgrade --dry-run #might tell?01:47
tomreynbrandonkal: try asking in #git if you haven't. this matches my observations: https://stackoverflow.com/questions/954560/how-does-git-handle-symbolic-links01:47
CoreyWtomreyn: there is line `option domain-name "ourdomain.com";` that i just commented out to see if it works. restarting dhcp service, but not sure if that resets active leases or not01:48
CoreyWiosecure: on that router? all i know is our router is setup to go to our local server, which has dhcp server running01:48
tomreynCoreyW: it won't, since this is initiated by the clients.01:48
CoreyWok. is there way to reset my machine?01:49
tomreynCoreyW: actually, it will reset the leases, most likely, but the clients will have to request new ones to catch up on the new configuration01:49
tomreynnew ones /renewal01:49
tomreynwhich they will do after half the lease time01:49
brandonkalThanks tomreyn01:50
CoreyWsorry, not sure what that means01:50
CoreyWboss mentioned i could just take a static IP and then it prob won't be issue. but still would be nice to fix while im here01:50
tomreynCoreyW: either wait or reboot the router (temporarily disconnecting all users and their connections) or restart the dhcp clients on all computers, or a combination of these.01:52
CoreyWok thanks01:54
tomreynCoreyW: if you use network-manager (default on ubuntu desktops), you can "systemctl restart network-manager", this shoould also restart the dhcp client or get you a new lease anyways.01:55
tomreynor just use the gui to disconnect from, then reconnect to the network.01:55
brandonkaltomreyn, that helps. I also found: `ln -s new-file ./gitignored/file` works with git but `ln -s new-file gitignored/file` only works on the system but not in git01:57
tomreynthat's interesting, news to me.01:58
CoreyWtomreyn: i did restart network-manager after `systemctl restart dhcpd` and `system restart network` on the server for good measure. didn't seem to help commenting out the "option domain-name" line.02:01
CoreyWmaybe its something else in our config02:01
iosecureChanging that domain name will not affect the function of the router in intercepting DNS queries.02:02
CoreyWwhat should i change then?02:02
iosecureThe router's configuration, or stand up your own forwarding resolver that refers to an external DNS service that doesn't do that crap.02:02
iosecureAs long as you're going to that router or your ISP for DNS, this will continue to occur.02:03
CoreyWiosecure: so youre saying it is something above our dhcp server and actually a router configuration then?02:03
CoreyWbecause i see DNS information on our DHCP server settings, it has a couple of our IPs and then 8.8.8.8 and 8.8.4.402:03
iosecureAre any of those "couple of our IPs" the router itself?02:04
iosecureAnd handing an external DNS server, like 8.8.8.8/8.8.4.4, directly to clients is a bad idea.02:04
iosecureClients should -always- use internal DNS, or -always- use external DNS.02:04
CoreyW"our IPs" may be wrong actually, they look similar to ours, but they are probably just our ISPs ips. but no, one of them is not the router02:04
tomreynso the DHCP server you run is separate from the (potential, and likely existing) DHCP server on the router?02:05
CoreyWat least as far as i know its not the same ip02:05
iosecureMixing the two will almost always lead to inconsistent behavior.02:05
CoreyWtomreyn: possibly.02:05
CoreyWbest i do just consult with our ISP then.02:05
tomreynCoreyW: which single system works as a DHCP server for your network is what you need out first. if it's two, kill one.02:05
tomreyn* nneed to find out02:06
tomreynyou almost never want more than one02:06
CoreyWtomreyn: i can view the active leases for our local DHCP server, and it shows my machine there. if that means anything02:07
tomreynCoreyW: you said you (company) run your own DHCP server. whoever stated this should know where it runs. alternatively you could analyze DHCP reponses sent on the network (as a result of DHCP requests), or, simpler, switch off the router for a while (cutting everyone off the network) and see if you can still get a dhcp lease (i.e. an IP address assigned via DHCP) at the time. if that happens, you have a separate (and probably two, one in addition02:10
tomreynto the router, DHCP servers which is a very bad configuration for a small company network).02:10
tomreyncognition___: 16.04.3 is much outdated, 16.04.5 is current.02:12
tomreyn(so apparently updates ar eindeed not applied automatically, and even then you'd still need to reboot for kernel patches to be applied)02:13
tomreynJerbot: you should probably diuscuss what you mean by "I added new nvidia drivers", i.e. how you added those.02:15
Jerbottomreyn I already reformatted.02:15
TheCowboyIs the Deja Dup app automatically backing up data to a remote server by default?02:15
Jerbottomreyn What I'm trying to do is verify that my os uses the dedicated gpu when necessary.02:16
ertsHi! I'm trying to install Ubuntu and Elementary side by side on different partitions of the same SSD, and I would like to have a different UEFI entry for each of the systems, however both get named "ubuntu" on the UEFI bootloader. I've tried several ways to rename them but no luck. Does anybody know the right way to rename the UEFI label of an Ubuntu based distro? Thanks!!02:16
Jerbottomreyn installing the driver was difficult.  I added the nvidia graphics repository with some ppa command then updated then did apt install nvidia-driver-default and was shown the error E: dependencies required but not met.  The nvidia-415 driver was the dependency, and it also had a dependency.  So, traced the dependencies down installed them all and finally nvidia-driver-default worked....02:18
TheCowboyI think I figured it out, looks like the answer is No02:18
JerbotThen I restarted my computer and got the "login loop" issue.  Typing the correct password sends you back to the login screen.02:18
* Jerbot breathes 02:18
tomreynJerbot: i have no current first hand experience but i think the proprietary nvidia drivers provide some kind of gui to configure which applications (based on executable name) to run through the dedicated gpu. one of them could be glxinfo.02:18
Jerbottomreyn I'm going to try that.  Ijust don't understand why nvidia's driver-managing gui doesn't allow me to force dedicated.02:19
CoreyWtomreyn: i just talked to ISP, they said they have no DHCP servers running or anything special.02:19
CoreyWso it must be our server.02:20
epicmetalerts: efibootmgr probably02:20
CoreyWthats all the help they could offer02:20
tomreynJerbot: i'm really the wrong person to give advice regarding nvidia, i don't use it - sorry for responding at all. i hope someone else can help.02:20
Jerbottomreyn Chatting about stuff helps, man.  I'd rather talk to someone unknowing than nobody at all.  Thanks for contributing.02:21
ertsepicmetal: I tried using that to re-create the entry with a different name, but it doesn't work..still looks for an ubuntu directory02:21
CoreyWlooking over our dhcpd.conf, only place i see "ourdomain.com" is on that one line. so idk where else it would be coming from02:22
CoreyWit has "option routers 192.168.2.1" which is our router. but i assume that is normal02:23
CoreyWwhich apparently our server *is* our router though, according to said boss02:23
mutanteCoreyW: a Linux server can also be a router by flipping one switch basically02:24
mutanteso that's possible02:24
CoreyWmakes sense then. so something on our server/router is causing our ubuntu machines connected to it to pass unresolved requests back to itself02:25
CoreyWresolution is set to Hosts file > DNS > Local hostname. might that be the issue?02:27
CoreyWoh shoot, nvm. i see Search domains now.02:27
mutanteCoreyW: is there "search" in /etc/resolv.conf ?02:28
mutantewhat is the issue again? i did not follow this from the start02:29
CoreyWyes there is02:29
CoreyWissue was our ubuntu machines, going to `fake.url` in browser/curl results in request made to our server/router02:29
CoreyWinstead of 'server not found' error02:29
mutanteCoreyW: the second part to that is /etc/nsswitch.conf it decides where names are looked up, can be "files" /etc/hosts/ or "dns"  or both02:30
CoreyWresolve.conf has a `search ourdomain.com` line, and it says `Generated by NetworkManager` at top02:30
mutanteCoreyW: when you say "request", do you mean the DNS lookup ?02:31
mutantei mean it first has to try before it knows that it is "not found"02:31
mutanteand probably you have your DNS server set as your router02:32
mutantefor caching02:32
CoreyWyes sounds right. i just mean though if i make an http request to a nonexistant domain, it ends up back at our router IP02:32
mutanteor do you mean sometihng else, like a captive portal02:33
mutantewhere you get an actual HTML page that is on the router02:33
CoreyWyeah02:33
tomreynCoreyW: if you want to check whether you have multiple DHCP servers on your LAN and using nmap is an option and you have it installed already, you can run this and see if you receive more than one response (i.e. if it says something other than "Response 1 of 1" you have a rogue DHCP server and need to fix this first):  sudo nmap --script broadcast-dhcp-discover -e eth002:33
mutanteoh yea, i think this brings us back to "open a ticket with the ISP"02:33
mutanteyea, i wanted to say that too. see here  http://ask.xmodulo.com/monitor-dhcp-traffic-command-line-linux.html02:34
mutantehow to check for DHCP traffic , where it really comes from02:34
CoreyWmutante: i just called them and they made it sound like they had no control over anything like that02:34
mutanteCoreyW: ask them how _you_ can get access to it then. everything needs some admin, heh02:34
mutantesince the boss claimed they manage it02:35
tomreynCoreyW: oops, had a typo there, here's the right commands: MAINIF=$(ip -o route list default | cut -d' ' -f5); echo "Main interface: $MAINIF"; sudo nmap --script broadcast-dhcp-discover -e $MAINIF02:35
CoreyWmutante: he said they manage the router, but they said all the router was doing is passing to our server. idk. this stuff is over my head mostly.02:35
CoreyWtomreyn: ok i'll try that.... after editing resolv.conf, it is overwritten by networkmanager and adds the search domain back in02:35
mutanteCoreyW: ok, try to run the "sniffing" tool (tcpdump) to find out if they are saying the truth or not02:36
CoreyWhow is that happening?02:36
cryptodan_mobileOne should ask permission before running tools like nmap or tcpdump02:36
omryWhat could be adding things to the path of a non login bash shell except ~/.bashrc and /etc/bash.bashrc?02:36
=== DrWatson_ is now known as DrWatson
tomreynCoreyW: not to insult you, maybe you should question why you are tasked with network management stuff if your boss seem to know well about it and you don't.02:37
mutanteCoreyW: i dont think it's the search domain, unless you get "fake.url.yourdomain.com" in the browser02:37
forgotmynicki'm trying to install ubuntu server 18.04.1 and i'm on the screen that shows which interface i want to use as the default. if i switch to another tty how can i get the interfaces/ip addresses? ifconfig doesn't work02:37
CoreyWmutante: okay. no the url remains fake.url in browser.02:38
mutanteforgotmynick: "ip" replaced "ifconfig"02:38
CoreyWtomreyn: youre right, hes just not concerned as i am02:38
mutanteforgotmynick: try "ip a s"02:38
CoreyWtomreyn: nmap shows "Nmap done: 0 IP addresses (O hosts up)02:39
forgotmynickthank you02:39
CoreyWit showed on IP offered02:39
CoreyWwhat tcpdump command do i run?02:39
mutanteCoreyW: it was in the link above02:40
mutantein method 102:40
cryptodan_mobileCoreyW: I would ask permission prior to running tools like nmap or tcpdump02:41
tomreynCoreyW: is there no output about "broadcast-dhcp-discover" from nmap?02:41
CoreyWtomreyn: yes it showed a few lines. what line has meaning?02:42
tomreyncryptodan_mobile: you havbe a point, but this very command i provided only does what a dhcp client does, send a broadcast request and see whats returned.02:42
epicmetalerts: maybe just copy the EFI app to the default path02:42
epicmetalerts: EFI\BOOT\BOOTX64.EFI02:43
CoreyWtomreyn: https://pastebin.com/5JsW8wQA02:43
tomreynCoreyW: quopting myself: if it says something other than "Response 1 of 1" you have a rogue DHCP server and need to fix this first02:43
epicmetalerts: where "EFI\" is a directory in the root of your ESP02:43
tomreynCoreyW: oh you run an older nmap than myself, it doesn't say it in this version, but you seem to only have this one dhcp server there.02:44
CoreyWtomreyn: okay cool02:44
CoreyWso if search domain isnt the issue, i wonder what would be02:45
tomreynCoreyW: so no rogue dhcp servers. line 12 lists the resolvers (Domain Name Servers) returened by your DHCP server. i don't think the google ones (#3 and #4) would return those fake responses., so it's probably either #1 or #202:46
CoreyWtomreyn: those look like our ISPs IP addresses. but they claim to not be doing it.02:46
cryptodan_mobileCoreyW: you maybe appending your domain to URLs maybe02:47
CoreyWso basically its not even trying googles dns youre saying?02:47
CoreyWcryptodan_mobile: huh?02:47
CoreyWwill the tcpdump be useful or was that just to check for double dhcp server?02:48
cryptodan_mobileCoreyW: https://askubuntu.com/a/47393202:51
CoreyWcryptodan_mobile: on no, i dont have that line in there02:52
tomreynCoreyW: your computers will use the resolvers provided in the order they are provided, so usually the first of them and only failover to the next if the first one fails to respond entirely.02:52
CoreyWtomreyn: i see. so you think that the first DNS server can't find the URL, and responds by sending back our IP?02:53
tomreynCoreyW: i think it's likely that the first DNS server can't find the host name you asked for ("fake.url"), then your client asks it about fake.url.$YOURDOMAIN instead and the first resolver either correctly or incorrectly responds with your routers WAN ip address.02:56
=== mnemonic is now known as semeion
CoreyWtomreyn: hmm.. lookin in nsswitch.conf i see `hosts: files dns myhostname`02:56
CoreyWliterally `myhostname`02:56
CoreyWand the hosts file has several entries for the local and public IP of our router/server02:58
tomreynCoreyW: you want to configure your DHCP server to send the dns domain-name02:58
tomreynCoreyW: you want to configure your DHCP server NOT to send the dns domain-name02:58
tomreyn^ this02:58
tomreynor maybe you want it to send a diferent domain name, one which you manage for internal DNS lookups only. but then you wouldn't know how and explaining this now takes more time than i'm willing to spend.03:00
CoreyWtomreyn: haha i know, and youve been super patient.03:00
tomreynso the easier option is to not have it send the domain name03:00
CoreyWwhere do i set that option?03:00
tomreynon the dhcp server03:00
CoreyWright but how?03:01
tomreynthe *much* less manageable option is to se all clients to supersede the domain-name option by the empty string03:01
pi0is there a web browser anitivirus03:01
pi0for website protection03:01
tomreynCoreyW: which dhcp server do you run there?03:02
mutantepi0: https://en.wikipedia.org/wiki/NoScript03:03
tomreynCoreyW: do you want to fix this just for yourself or for the entire organization?03:03
CoreyWISC DHCPd version 4.2.503:03
CoreyWentire org would be great03:04
tomreynCoreyW: do folks at work usually enter things like "www" in their web browsers and expect to end up on your website?03:04
CoreyWtomreyn: just www by itself? no03:05
tomreynor "ftp" to end up on your ftp server or similar03:05
CoreyWno03:05
pi0thank you03:05
pi0installing it now03:05
pi0how do i tweak my laptop monitor to set the settings higher03:06
pi0not enough to squint lol but just to have the apps navigatable03:06
tomreynCoreyW: ok, then check your dhcp server's configuration files (main configuration file and zone files) for "option domain-name"03:07
CoreyWtomreyn: yes, its set to "emrl.com"03:07
tomreynCoreyW: so comment it out or set it to the empty string, then reload the dhcp server. then clear your local dns cache and try fake.url again03:08
CoreyWtomreyn: i did that earlier with no luck. can try again though to make sure all is reset03:09
mutantepi0: for me it's System -> Preferences -> Hardware -> Displays but it depends what desktop environment you are using03:09
CoreyWtomreyn: restart dhcp server with `systemctl restart dhcpd` should do it yes?03:10
tomreynCoreyW: be sure to know how to revert this configuration change, since this can have side effects on how your collecgues need to / expect to be able to work. as indicated above ("short names to access your website, ftp server etc. weill no longer work, people and systems need to always use the fully qualified domain name to access resources hosted on your WAN IP address).03:11
tomreynCoreyW: yes, this should do it if this is a system using systemd03:11
CoreyWthats fine. we dont do anyting like that hear... and by local DNS cache, do you mean at my local ubuntu machine level? or browser level? DHCP server level?03:11
CoreyWdo i need to renew lease?03:12
tomreynon your client you need to: systemd-resolve --flush-caches03:12
tomreynclent = your local ubuntu machine03:12
tomreyn...that's if it uses systemd-resolved03:12
CoreyWits standard 18.04 ubuntu so i assume03:13
tomreynyes it does then03:13
CoreyWhey it worked this time! last time I just hadnt cleared the dns cache03:13
tomreynok, problem solved. it's indeed not your ISPs fault, just your org's03:14
CoreyWperfect! i don't know who set that before or why but i'm glad its gone now03:14
GeoIs there a super simple GUI analog to 'notepad' in ubuntu?03:18
Geosomething that pops open in 1 second, just to scrawl a note real quick?03:19
CoreyWtomreyn: thanks very much for sticking with me. appreciate it.03:19
CoreyWand others as well!03:19
mutanteGeo: try "pluma"03:20
Bashing-omGeo: There is namo for quickies .03:20
sam_wongI have trouble using the RPM command on Ubuntu 18.04.  Is the command only suitable for Redhat?03:20
mutanteGeo: also "atom" is cool but that's much more powerful03:20
Kumoolmutante: did you seriously just suggest atom as a simple "notepad" clone?03:21
mutantesam_wong: yes, rpm is for redhat only, the r is for redhat03:21
mutantesam_wong: well and anything based on redhat, like centos, fedora, mandrake..03:22
GeoBashing-om: is that namo or nano?03:22
sam_wongmutante: ok, thanks03:22
tomreynCoreyW: for the general approach in an organization environment: it's common to have the company LAN's DHCP server return your company LAN's resolvers as DNS servers to DHCP clients, as well as a domain-name or domain-search option value of "emrl.corp" (or similar), which can't be resolved on the internet's and ISP's resolvers. then you have your own LAN-only DNS server at the location the DHCP server points your clients to, which manages the03:22
tomreyn"emrl.corp" zone, and allows you to point anyone on your office LAN requesting resources such as "mailserver" to "mailserver.emrl.corp", and that to your actual LAN mailserver.03:22
Geosam_wong: apt is the command you're looking for on ubuntu03:22
mutantesam_wong: there is a package called "alien" to convert rpm to deb but first try other solutions03:22
Bashing-omGeo: Sorry ,, typo . nano .03:22
sam_wongmutante: ok03:22
KumoolGeo: leafpad is by far the simplest text editor/notepad looking clone03:23
GeoBashing-om: no worries, wasn't sure if that was some new fork or something :P03:23
CoreyWtomreyn: i see. still, never seeing a "server not found" message for anything is weird isn't it?03:23
Geook, thanks all. I'll take a look at thiese03:24
mutantesam_wong: apt-get install <package>  is the oldschool way on Debian-based distributions. Ubuntu is one of them. The more modern one is  apt or aptitude03:24
tomreynCoreyW: it should happen now, does it not?03:24
Kumoolnano is not GUI Bashing-om03:24
Bashing-omGeo: :) .. yeah never can tell .. thinks progress so quickly.03:24
mutantesam_wong: or if you have a local file,  dpkg -i package.deb03:24
CoreyWtomreyn: it does. but you were saying some orgs can type "mailserver" as shortcut, but if "mailserver" does not exist, shouldn't they still see a "server not found" page?03:24
CoreyWor would they expect to see their orgs page?03:24
Bashing-omKumool: I do stand corrected .03:25
sam_wongmutante: I have to download another file with a "deb" ending, right?03:26
mutantesam_wong: the best optioon is you use the "apt" commands to do both for you, download AND install03:27
mutantesam_wong: only if that is not possible, go to option b to download a .deb manually03:27
tomreynCoreyW: depends. some companies have internal-only resources, just as a local file sharing server which is to be only available form your lan. and then you don'T want to make everyone type "files.mydomain.com" in their web browsers (or whatever client application) every time they want to access it, but just "files". that's what the 'dns-search' and 'dns-domain' option are usually used for.03:27
CoreyWtomreyn: right i get that. but with that setup, what if someone typed "filse" (wrong spelling), what would happen?03:28
sam_wongmutante: the first option seems easier03:28
mutantesam_wong: what are you looking for specifically?  you can search with apt-cache search or look on https://packages.ubuntu.com/   then all you need to know is the package name itself, not an URL03:29
KumoolBashing-om: I think your full stops are not stopping well      .03:30
sam_wongmutante: I am looking for Arduino IDE03:31
tomreynCoreyW: first, clients will make a dns lookup against "filse.", which won't exist (resolver returns "NX domain"), then against "filse.emrl.corp." which your local DNS server will then repond to with what you configured it to respond to, if anything (if nothing is configued it will also respond with "NX domain" and the client software will return a DNS error)03:31
mutantesam_wong: "arduino - AVR development board IDE and built-in libraries03:32
mutantesam_wong: so that means try "apt-install arduino" and that should do it all03:32
CoreyWokay so i could have left the domain setting and configured something else to respond better basically?03:32
CoreyWim fine with the empty domain setting, but just for sake of understanding03:32
mutantesam_wong: sorry, either "apt-get install arduino" or "apt install arduino" , my bad03:33
CoreyWi gotta take off now anyways though. thanks again.03:33
sam_wongmutante: I am trying "sudo apt-get install arduino" and it seems to work fine03:33
mutantesam_wong: cool, looks good03:33
tomreynCoreyW: if you would like to drive your company's network to this next level you really should have your boss send you to training though.03:33
sam_wongmutante: the program has been successfully installed. thanks a lot03:34
mutantesam_wong: you're welcome. i recommend you to always use apt-get instead of downloading manual software unless there really is none03:35
mutantesam_wong: that way it will stay more stable and should have no issues with dependencies03:35
tomreynCoreyW: the way things were was not a good configuration, it effrectively leaked your employees DNS requests for non existing hostnames to the ISP, which is not needed and should not happen. as a company, you should always run a local DNS server for all requests from your employees (something you do not do, yet).03:35
sam_wongmutante: yes, you are very much helpful03:36
CoreyWtomreyn: yeah that would be cool.03:36
CoreyWor at least hire someone who knows what theyre doing more so03:36
doge-dogeanyone here run a multihead display and use the nvidia driver? i'm having some issues apparently that xorg doesn't like...05:04
fishcookernoted OerHeks + tomreyn05:05
jmazaredohaving issue when installing ubuntu server on hardware raid  Intel® C246 controller. When it reaches the partition/disk stage it show 2 disk instead of hardware raid 1 then if i continue05:29
jmazaredoubuntu 18.10 server05:30
guiverc_djmazaredo, i have no idea, but I'd assume it was your intelc246 setup (in error), whenever I've used hardware-raid the OS only sees single-disk (without play to get past raid for smartctl diags purposes etc)05:42
jmazaredoI tried using other distro like centos7 only shows 1 disk05:47
jmazaredoactually i removed the centos7 to install ubuntu05:48
jmazaredoi will test the ubuntu desktop to see if same issue occurs05:48
jmazaredocurtain command install preparing for installation configuring storage running 'curtain block-meta custom' curtain command block-meta removing previous storage devices06:00
guiverc_djmazaredo, you could ask on #ubuntu-server ; I recall there are multiple images of server, some/one I believe have less hardware-modules (drivers) on it but I don't recall details..06:10
jmazaredook im trying now the old iso anyway thanks!06:17
jmazaredoguiverc_d, i tried 16.04 and works just fine :D06:23
BrickedInTheHeadHey. Is there any point trying to upgrade lte release07:13
lotuspsychjeBrickedInTheHead: wich is your current release?07:14
BrickedInTheHead16.0407:16
lotuspsychje!ltsupgrade | BrickedInTheHead07:16
ubottuBrickedInTheHead: Upgrade from 16.04 to 18.04.1 is now available, if you do not receive the upgrade window try update-manager -c07:16
lotuspsychjeBrickedInTheHead: you can choose yourself what to do, stay on 16.04 or move to 18.0407:16
lotuspsychjeBrickedInTheHead: is that what you were hoping to hear?07:20
BrickedInTheHeadYes. Next trying for bluetooth audio07:26
lotuspsychje!details | BrickedInTheHead if you need more help07:28
ubottuBrickedInTheHead if you need more help: 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.07:28
=== SP6NKW is now known as nikow
SchnabeltierchenDieser Kanal wurde in einen privaten Kanal umgewandelt.08:28
lotuspsychje!de | Schnabeltierchen08:31
ubottuSchnabeltierchen: In den meisten Ubuntu-Kanälen wird nur Englisch gesprochen. Für deutschsprachige Hilfe besuche bitte #ubuntu-de, #kubuntu-de, #edubuntu-de oder #ubuntu-at. Einfach "/join #ubuntu-de" eingeben. Danke für Dein Verständnis!08:31
Schnabeltierchensorry lotus, it was an automated message from my irc-relay...08:32
=== capella is now known as capella|away
sentimenthello08:45
sentimentSo I finally reinstalled 18.04 using a new image08:46
sentimenteverything looks good except the mp3s08:46
sentimentstil can't get it to work08:46
lotuspsychjesentiment: whats wrong08:46
sentimentI have installed restricted extras and gstreamer stuff too08:46
sentimentneither banshee nor rhythmbox play mp308:47
sentimentboth raise an error08:47
sentimentI am freakin at my wits end with this08:47
lotuspsychjesentiment: did you try vlc or smplayer?08:47
sentimentit's a new installation and still doesn't work08:47
sentimentlotuspsychje: vlc worked in the previous installation08:47
lotuspsychjesentiment: wich error do you get?08:48
sentimentthis is the exact same problem that happened in the prev installation08:48
sentimentvlc works, others don08:48
sentimentt08:48
sentimentGStreamer-CRITICAL **: 12:18:44.455: gst_object_unref: assertion 'object != NULL' failed08:48
sentimentI reinstalled 18.04 into the root directory08:49
sentimentbut did't touch the /home directory08:49
sentimentso I suppose I did the right thing08:49
sentimentyet, this kind of crap makes me doubt that08:49
sentimentGStreamer-CRITICAL **: 12:18:44.111: gst_bin_add: assertion 'GST_IS_ELEMENT (element)' failed08:50
lotuspsychjesentiment: if you reinstall ontop of your /home you also keep all the previous configs08:50
sentimentI know, but what kind of 'personal' config can mess up such a basic functionality?08:50
sentimentis there no separation of concern in this OS?08:51
sentimentI formatted the root partition, and that is what should matter as far playing mp3 is concerned, because it's a system function08:51
sentimentwhat do you think I can do to make it work besides booting into Windows as I have done in the last two weeks?08:52
lotuspsychjesentiment: to test this, you could try booting a liveusb and see if you can play mp3 by default to compare with your current install08:53
lotuspsychjesentiment: is your system up to date also?08:54
sentimentlotuspsychje: how can I install coreelements?08:55
sentimentit seems to be related08:55
sentimenthttps://forums.freebsd.org/threads/gstreamer-broken.12158/08:55
sentimentit's almost fuckin 2019 and this distro still got issues with mp308:56
sentimentAnd no, /home should not be related to such things at all... for gods sake08:56
sentimentI'm sorry but I have been struggling with this for almost 2 weeks now08:57
lotuspsychjesentiment: please stop complaining, you cant generalize such statements, you can only ask for your own system08:57
TheMesquitoMP3 is proprietary I thought?08:57
sentimenttried various crap since the last botched upgrade and wasted freakin time over that08:57
sentimentuntil it was suggested here that I should reinstall the whole thing08:57
lotuspsychje!language | sentiment08:57
ubottusentiment: Please avoid any language that may be considered offensive, including acronyms and obfuscation of such - also see https://wiki.ubuntu.com/IRC/Guidelines || The main channels are English only, for other languages, see https://wiki.ubuntu.com/IRC/ChannelList08:58
sentimentso I did that and most of issues went away except this one so far08:58
lotuspsychjesentiment: uname -a please?08:59
sentimentTheMesquito: As far as reality is concerned, ogg is more 'properietary'09:00
sentimentLinux Ubuntu-Desktop 4.15.0-29-generic #31-Ubuntu SMP Tue Jul 17 15:39:52 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux09:00
lotuspsychjesentiment: so...you come here and complain with an outdated system..09:00
sentimentwhat? mp3 needs updated software? are you serious?09:01
sentimentWindows 98 played it out of the box for gods sake09:01
lotuspsychjesentiment: in the future please only seek for help with a fully updated system09:01
sentimenteven previous versions of Ubuntu09:01
lotuspsychjesentiment: if you feel to discuss it more join #ubuntu-discuss ok09:02
TheMesquitoWhy don't you just pruge gstreamer to remove any messed up cfg files and reinstall it?09:02
TheMesquitoI've had success with doing that when various libs break09:03
sentimentmessed up config files? I reinstalled, formatted /09:03
grougcpaelzer, Hi ! Is there a chance to see a QEMU 2.11.2 update for 18.04 LTS at some point ?09:15
sentimentso I fixed it finally09:18
sentiment    rm -r ~/.cache/gstreamer-1.009:18
sentimentyou were right09:18
lotuspsychje!info qemu bionic09:18
ubottuqemu (source: qemu): fast processor emulator. In component universe, is optional. Version 1:2.11+dfsg-1ubuntu7.9 (bionic), package size 204 kB, installed size 687 kB09:18
sentimentbut I doubt that I was wrong09:18
lotuspsychjegroug: if you like a newer version test, try a higher ubuntu version or look into !backports or snaps09:19
sentimentwhat was the discussion channel?09:19
lotuspsychjegroug: we dont reccomend mixing package versions on ubuntu09:20
lotuspsychje!discuss | sentiment09:20
ubottusentiment: Want to talk about Ubuntu, but don't have a support question? /join #ubuntu-discuss for non-support Ubuntu discussion, or try #ubuntu-offtopic for general chat. Thanks!09:20
grouglotuspsychje, it isn't a newer version actually, it is the latest stable release of QEMU 2.11.x... It doesn't bring new features, just bug fixes. I'd like to know if there's a chance to provide those fixes to LTS users09:26
lotuspsychje!latest | groug09:28
ubottugroug: Packages in Ubuntu may not be the latest. Ubuntu aims for stability, so "latest" may not be a good idea. Post-release updates are only considered if they are fixes for security vulnerabilities, high impact bug fixes, or unintrusive bug fixes with substantial benefit. See also !backports, !sru, and !ppa.09:28
lotuspsychjegroug: when security flaws are found in package versions, updates will handle those09:28
ducasse!sru | groug09:28
ubottugroug: Stable Release Update information is at https://wiki.ubuntu.com/StableReleaseUpdates09:28
lotuspsychjegroug: for example, ubuntu 18.10 uses Version 1:2.12+dfsg-3ubuntu8.209:30
grouglotuspsychje, I'm talking about LTS... not about interim releases09:31
=== davor_ is now known as davor
grouglotuspsychje, the fixes I'm interested in affect Live Migration of VMs between 16.04.x and 18.04.x, which is an important feature for our (IBM) customers. I'll follow the SRU procedure and see how it goes. Thanks.09:42
lotuspsychjegroug: see also snap find qemu09:50
thagabeGuys!09:59
thagabeAnyone know how to route traffic from ports into my lxd container?10:00
Amok_Huginnssonhow to get pip for python.36 working on 19.04?10:01
Amok_Huginnssonpython3.610:01
Ben6419.04 isn't close to out yet10:03
Amok_HuginnssonBen64: well, I have it installed on my computer10:04
Ben64ok, but it is supported in #ubuntu+1 until release, which is in April10:06
Amok_HuginnssonBen64: thank you!10:06
thagabeAnyone know if this ticket does what im trying: https://github.com/lxc/lxd/issues/451210:09
MrokiiHello. Is it possible to show a DVD-movie via some video player (vlc for example) on a TV using a hdmi-cable? Are there any things I should consider or would that work out of the box?10:10
MrokiiI mean, playing the DVD on Ubuntu and showing the signal on a connected TV, if that wasn't clear.10:10
thagabeWhat id like is to create a lxd container that is restricted to 2 core 8GB of ram. I will have a steam game running as a server. Now this game need inbound traffic to be open at ports 7777,7778,27015, 27017 and TCP via 27020. For the life of me i cannot figure out how to get the firewall open at all. I have tried disabling the ufw on both the host10:12
thagabeand the container to no avail. When I finally gave up and ran the server on the host boom everything worked out of the box. This mean either 1) the filesystem in lxd is creating issues or 2) Firewall is not allowing the direction of incoming traffic through the nat btw host<->container10:12
guivercMrokii, for info on playing dvds - https://help.ubuntu.com/stable/ubuntu-help/video-dvd-restricted.html.en   i haven't tried it in ages, but I've connected fine via hdmi to tv10:13
Mrokiiguiverc: Playing DVDs works fine, that's not the problem. I was just wondering about getting the signal to the TV.10:13
guivercI've connected to tv with no problems, and with problems (some where the edges aren't shown, the tv overscans I think it's called) - on some tv's it's perfect, other tv's have provided me hassle (where the tv seems to have trouble with any computer/os so it's tv & not Ubuntu in my experience)10:16
Mrokiiguiverc: Okay, thanks, so I guess I have to give it a try.10:16
Mrokiiguiverc: Just in general, do you know if signals are transferred automatically to a connected TV or is there usually some option I have to tweak, like redirecting the signal or something?10:17
guivercno sorry I can't help there Mrokii - i have no idea how it works, just talking from my experiences..10:19
Mrokiiokay, thanks.10:20
MrokiiI'll try and see what I can achieve.10:20
ddoobbIs it possible to access the files on an Ubuntu PC if I have forgotten the password?10:26
Mrokiiddoobb: As long as the files aren't encrypted, there should be no problem.10:28
ddoobbMrokii how can I do this? I am seeing some tutorials that do it with "recovery mode" prompt.10:29
TheWildhello10:30
Mrokiiddoobb: As long as the files aren't encrypted they are accessible at least as a superuser (using sudo for example). I have never had that problem, so I'm not sure if there's a specific way to reset the password.10:31
ddoobbI don't need to reset the password, just copy them to an external drive10:31
Mrokiiddoobb: The easiest way to me seems to be to boot from another medium, then use "sudo" from the terminal to become superuser and then to use "cp" to copy the files from one drive to another.10:34
ddoobbThanks I'm going to try this Mrokii10:34
Mrokiiddevault: You're welcome. Hope it helps.10:35
TheWild"Don't reinvent the wheel", but I can't just find a simple way to mirror a part of ubuntu repository without it relying too much on sources configuration of my PC or requiring httpd or ftpd. Say I want gedit, latest version for amd64 (http://archive.ubuntu.com/ubuntu/pool/main/g/gedit/gedit_3.30.2-1_amd64.deb) along with all its dependendies. Then let apt take packages from there. Does apt support filesystem paths or file:// at all?10:36
TheWildI think I'll end up writing something myself.10:36
=== SimonNL is now known as _SimonNL
afx_geirha, are you here?11:06
sentimenthey anyone knows of a dlna server that can push content to the receiver?11:07
sentimenti.e the the player becomes the server11:07
sentimentin Windows WMP could do this using PlayTo11:07
geirhaafx_: yes-ish11:41
=== astra` is now known as astra
=== astra is now known as ASTRA
=== ASTRA is now known as astra`
=== astra` is now known as astra
thagabeI've given up on lxd to do what i wanted it to do11:58
thagabeAnyone know how to route incoming traffic from internet (0.0.0.0) -> (localhost:port) -> (kvm:port)11:59
lotuspsychjethagabe: perhaps a question more for ##networking ?12:00
afx_geirha, sorry to interrupt! I am going to add my user to the input group but I am wondering if this is a secure approach to resolve the permission issues I have with python-evdev and /dev/input/xxx12:02
thagabelotuspsychje I'll give that a shot! Thanks12:06
geirhaafx_: well, the user will get access to all the input devices12:08
afx_geirha, can I give access to a specific /dev/input somehow ? Are there any keylogging concerns to think about?12:09
geirhaif you don't trust the user, it may be better to force the user to use sudo instead12:10
geirhae.g. In sudoers you can specify that user X are allowed to run (only) your python-script as the group input12:11
geirhaand the user would then execute your script with   sudo -g input yourpythonscript12:12
afx_I am the only user and I am a sudoer , so in case someone steals my password it doesnt really matter what group I am in right ?12:13
EriC^^afx_: maybe you could use an ACL or something on the specific /dev/input?12:13
afx_EriC^^, let me read about ACL12:14
EriC^^if you have sudo and someone gets your password then he can do whatever he wants12:15
afx_EriC^^, exactly! But what about a malicious keylogging program for example that is run under my user account?12:16
EriC^^afx_: sure that could be done12:17
EriC^^there's actually a keylogger in the repos i believe12:17
BrickedInTheHeaddid I Ident proper?12:19
EriC^^BrickedInTheHead: if you were able to join, then yeah12:19
afx_EriC^^, :O ! I didn't know that is a ready made solution for this :)12:19
BrickedInTheHeadsome idiot made password of 10x same digit and fat fingered one in the middle. Anyway Ill be bothering you here setting up this new environment12:20
afx_EriC^^, So atm without my user account being part of input group, can a keylogging program get my keyboard input ?12:20
EriC^^afx_: i'd think so, but anyways they could always add your user to the input group12:20
afx_EriC^^, let's say you don't have my passwrd ,and somehow you managed to install a keylogger .. By having the account out of the input group will the keylogger get my input ?12:21
afx_I am trying to understand why a user account gets restricted from accessing /dev/input/ and this is the only thing that comes to mind12:22
EriC^^i have no idea, i'd think so, as i dont have my user in the input group but 'xev' shows key strokes12:22
EriC^^ah but xev only shows the strokes if it's selected as the terminal12:24
EriC^^afx_: try it and see i guess, try installing the keylogger, you'll know at least if it's easily possible, or possibly just harder to do12:24
EriC^^!info logkeys | afx_12:25
ubottuafx_: Package logkeys does not exist in bionic12:25
EriC^^!info logkeys xenial | afx_12:25
ubottuafx_: logkeys (source: logkeys): keylogger for GNU/Linux systems. In component universe, is optional. Version 0.1.1a+git5ef6b0dcb9e3-2 (xenial), package size 32 kB, installed size 120 kB12:25
afx_I see, so its not in bionic12:26
EriC^^yeah seems so12:26
afx_xev as the terminal shows strokes , but I guess you can have a software emulating a terminal12:26
afx_so it can forward any input you do12:27
EriC^^afx_: yeah but xev is taking the input you're giving it i think so maybe it's different like that12:27
EriC^^let me try installing logkeys i'm on xenial12:27
afx_ok12:28
EriC^^afx_: it works, even though i'm not in the input user group12:29
EriC^^i guess since it uses sudo it can access /dev/input anyways no need for group chananigans12:29
EriC^^it does mention in the man page that it uses /dev/input to get the key logs12:30
afx_EriC^^,logkeys needs sudo ?12:30
zprdhi all, trouble with skype 8.34.0.78, my mic does not seem to work, it looks ok on gnome device settings though, any tips?12:30
EriC^^afx_: yes, it asks for sudo12:30
afx_EriC^^, this makes sense, as with sudo I can run the python script in question12:30
afx_I would like to use this but stay on the safe side too ..12:31
EriC^^use what? i wasnt following earlier12:32
afx_ EriC^^ yes sorry . This is what I am trying to use https://gist.github.com/t184256/f4994037a2a204774ef3b9a2b38736dc12:32
afx_it uses evdev which needs access to /dev/input12:33
afx_EriC^^, also found this https://askubuntu.com/questions/1057120/is-adding-a-user-to-input-group-secure if that helps in any way12:33
EriC^^afx_: if they dont have your password i think you'd be good12:35
EriC^^just add to sudoers to run the python script only and set the script non writable and in a dir it cant be deleted and recreated in12:35
afx_EriC^^, the SE answer suggests removing the w/r access from users not in the group (???)12:36
BrickedInTheHeadHey. (asked in #quassel, anyone know where to get not so glitched one). And bit laggy with nvidia 560ti switching tabs. Just went with default drivers, but dont think messing with nvidia is worth it. How about disabling some of the 3d effects?12:37
afx_EriC^^, can you give me any instructions for this please ?12:37
TheWildI want to install postgres server but *not* start the service right now. Is there a way or just use Docker (new toy in office ;))?12:37
TheWildTEST12:38
TheWild(oh, Thunderbird screwed up)12:38
EriC^^afx_: put the script in like /opt/pythonscript.py and chown root:  then chmod 77012:38
EriC^^afx_: and in sudoers add the line <your user> ALL= (ALL) NOPASSWD: /opt/pythonscript.py12:39
EriC^^afx_: then run the script as "sudo /opt/pythonscript.py" via some startup file or something i guess12:40
afx_EriC^^,thank you !12:41
afx_Will try that out and let you know12:41
EriC^^afx_: no problem, ok12:41
geirhamake sure you use ''sudo visudo'' to edit /etc/sudoers. Don't edit it directly12:42
pagiosHello community, is it possible to encrypt my /home on ubuntu 18.04, i dont need full disk encryption only /home, which has all my files, what software can i use for this? and i need to decrypt upon boot as /home will be read upon successfull login12:43
BrickedInTheHeadwith TMP chip you should be able to get reasonable security without any upkeep. Likely requires uefi boot12:44
BrickedInTheHeadtpm12:44
EriC^^pagios: ubuntu has a built in home encryption that uses ecryptfs12:44
EriC^^pagios: sudo adduser <your user> --encrypt-home creates it, it'll wrap the passphrase (be sure to write it down somewhere) using your login password, so once you log in it'll automatically decrypt it for you, obviously use a good login password as well12:45
iosecureBrickedInTheHead: The level of configuration and mucking around required to get a TPM working under Linux makes it not a great recommendation for someone that has to ask how to encrypt stuff in an IRC channel.12:46
EriC^^pagios: create another temp user, move your files there, then delete and recreate your old user using adduser and move the stuff back after logging into the account12:47
iosecurepagios: So you know, only encrypting /home gives very little -real- security. It leaves innumerable places for remnant data to exist: temporary files, swap space, etc.12:48
pagiosone second12:48
pagioshow come its not secure if i use home encryption?12:49
iosecureI just said that.12:49
pagiosunless the attacker guesses the pass12:49
pagiosswap will die on system shutdown12:49
BrickedInTheHeadis there a suite to full drive(s) crypt that doesnt break everything?12:49
pagiostemp files too12:49
iosecureNo, it won't.12:49
EriC^^well, temp files get erased upon next booting, not while shutting down12:49
iosecureOn boot, yes, but not on shutdown.12:49
pagiosbut temp files are on /home no?12:50
EriC^^in theory if the attacker has access to the pc, he could easily get the password next time you log in12:50
iosecurepagios: No.12:50
BrickedInTheHeadon drives ssd/hdd the data just gets de-adressed instead of format12:50
pagioshe can boot using resuce disk, reset the user pass no?12:50
iosecureThere's also the reality that remnant data does not get removed upon deletion. Only unlinked.12:50
pagiosand login as decrupted12:50
iosecurepagios: You are strongly advised to use LUKS or something similar to encrypt the entire system.12:51
EriC^^pagios: even if he resets the password, it wont decrypt it, the actual literal login you used will only work, cause it was used with the passphrase to encrypt it12:51
pagiosbut my system is already running i dont want to format12:51
iosecurepagios: Do you want the security that encryption provides or not?12:51
pagiosyea12:51
BrickedInTheHeadLUKS. I'll type that down, hope it can do chip + pass crypt12:52
pagiosi see EriC^^12:52
iosecurepagios: Then you'll need a rebuild.12:52
pagioshis only option is to bruteforce then12:52
iosecureBecause /home-only encryption is basically crap.12:52
EriC^^pagios: i think it depends what you're worried of, if the laptop getting stolen is an issue, then i think home encryption would be enough12:52
EriC^^pagios: if you're worried of meddling then LUKS would be better12:53
iosecurepagios: If someone's going to steal the system with the intent of stealing data, digging through remnant data on the disk is task #1.12:53
iosecureIf they don't care about data, they won't even notice its encrypted.12:53
pagiosi am gonna put a desktop in a shared environment12:53
pagiosand worried about someone stealing the hardisks12:53
iosecurepagios: Then you need to encrypt the entire disk, not just /home. Easiest way to do it is to create a LUKS container on the disk, use that as an LVM physical volume, and create your LVs inside that. That way you only need to unlock one disk, instead of every filesystem.12:54
BrickedInTheHeadToo lazy to rm old assets under NDA so locked for just that.  also hackmaster, typing that 24 digit passkey12:55
pagiosi dont have lvm12:55
iosecurepagios: You can configure it when you rebuild the system. Yes, you need to rebuild the system.12:56
EriC^^pagios: ubuntu will do everything for you, just reinstall using 'encrypt disk with LUKS + LVM'12:56
iosecure^12:56
EriC^^pagios: then copy your data back and set things up again12:56
pagiostrying to avoid a reinstall here12:56
iosecurepagios: Too bad. I thought I made that clear.12:56
pagiosso a reinstall is needed12:56
iosecure07:52 <iosecure> pagios: Then you'll need a rebuild.12:57
iosecureYes.12:57
BrickedInTheHeadjust got things running "smooth". might as well upgrade to newer LTS while at it then12:57
EriC^^well not necessarily, it'd just be more difficult to set it up manually, not so much i image though12:57
=== tsglove2 is now known as tsglove
EriC^^pagios: you dont need a reinstall, you can convert it to LUKS but you'd have to do the legwork yourself and not rely on the installer12:57
iosecureEriC^^: Migrating the entire system to new filesystems and hoping that the initramfs and bootloader don't vomit on you later?12:57
iosecureNo thank you.12:57
EriC^^iosecure: um, he can edit the UUID and everything and update-initramfs etc12:58
BrickedInTheHeadUEFI hehe12:58
iosecureEriC^^: It is NOT that simple. Sorry.12:58
EriC^^yes it is12:58
iosecureI've done that kind of conversation. It sucked.12:58
iosecureNo, it isn't.12:58
EriC^^how did it suck?12:59
iosecureinitramfs refused to recognize the LUKS container, just sat there screaming about how it couldn't find the root volume.12:59
=== andyhuzhill_ is now known as andyhuzhill
iosecureNo amount of triple-checking configs and rebuilding the initramfs would change its mind.13:00
=== _SimonNL is now known as SimonNL
pagiosi will buy a new hardisk , install on it the OS and then add those hardsisk to the lvm13:00
EriC^^well you missed the initramfs parts of the conversion i'd guess13:00
iosecureEriC^^: You missed the "triple-checking configs and rebuilding the initramfs" part of what I said, I'd guess.13:00
pagiosi will install a fresh new OS on a new hardisk and add those disks at a later stage, wjats wrong with that13:01
iosecureEriC^^: So apparently neither sarcasm nor reading comprehension are your forte.13:01
EriC^^iosecure: it's a computer, if everything is right it'll work, if not it wont, so yeah you missed something13:01
EriC^^iosecure: no need to get nasty, i did understand what you said, i just dont agree13:02
pagiosso?13:02
iosecurepagios: Honestly, the easiest thing you could do is rebuild the system on a new disk, with LUKS/LVM in place from the installer. Copy /home to the new system.13:02
EriC^^anyways this is all going offtopic very quickly, so let's just stop shall we13:02
pagiosiosecure, ok13:03
iosecureEriC^^: Nice walk-back. If you're going to pull out condescending crap like "well you missed the initramfs parts of the conversion i'd guess," don't be surprised when someone comes back in kind.13:03
iosecureEriC^^: And I wasn't asking if you agreed to begin with.13:03
EriC^^iosecure: how is that condescending?13:04
iosecurepagios: I'd advise against coping anything other than /home. That can cause weirdness, depending on what you copy.13:05
EriC^^iosecure: you're reading into stuff a lot it seems, i just dont want pagios to think it's so difficult and 'just wont work' you said it didnt for you, i said you must have missed something for it not to, geez13:05
pagiosthank you both, and apologies if that created a clash between you guyus13:06
=== TheHonorableKitt is now known as ThKitten
iosecureNo clash at all.13:07
EriC^^no worries13:07
BrickedInTheHeadIs the guest account similar to live boot? does it have any/configurable storage?13:08
EriC^^BrickedInTheHead: it's very different and limited, i think you could add storage manually13:08
iosecureThere used to be. I'm not sure if it exists, still, as various transitions somewhat broke the functionality.13:09
BrickedInTheHeadI did set 26GB swap. that probably is included13:10
iosecure26GB swap? Is that a typo?13:10
BrickedInTheHeadmore is less here?13:11
iosecureHow much RAM do you have?13:11
BrickedInTheHead16GB13:11
iosecureOuch, yeah. Overkill.13:11
iosecureCouple questions: Is this a desktop, and do you want hibernation functionality?13:12
iosecure(or laptop)13:12
BrickedInTheHeadDesktop yes. And probably, ubuntu takes forever to boot. and the bios time is at least 25s on this motherboard13:12
iosecureGotcha. Okay, then it isn't THAT much overkill. I'd bring it down to 20GB, save a few gigs.13:13
iosecureBut you probably have enough storage that 6GB isn't a big deal.13:13
griphookhey guys13:14
BrickedInTheHeadThis HDD will die any day. 6 years running. Seagate quality +113:14
griphookdoes gnome-tweaks not work on ubuntu 18.10 ?13:14
iosecureBrickedInTheHead: Oh, then totally screw with the swap sizing. Live life on the edge. ;)13:15
rasmalabarI have recently migrated from Ubuntu 14.04 to 18.04. In 18.04, very few applications show in the System Tray. Dropbox is consistently there, CopyQ (the clipboard manager) too shows up whenever it is on. But Pidgin, to provide an example, does not show an icon. Is this the expected behaviour in 18.04?13:16
BrickedInTheHeadThe motherboard error checks blinking like disco lights already for years. Anyway offtopic....13:17
tomreynrasmalabar: how did you migrate, which desktop are you using? this is not the default behaviour on 18.04.13:23
rasmalabar@tomreyn: I re-installed, from scratch. I am Ubuntu with GNOME 3.28...13:33
BrickedInTheHeadCheck install media for faults13:34
ioriarasmalabar, you probably need an extension ; many tasks have been moved to that13:35
ioriarasmalabar, and, btw, has been reported as a bug (!):  https://bugs.launchpad.net/ubuntu/+source/pidgin/+bug/178608413:36
ubottuLaunchpad bug 1786084 in pidgin (Ubuntu) "Indicator does not show as tray icon on 18.04" [Undecided,Confirmed]13:36
rasmalabarioria, You mentioned about the extension, which one is it?13:39
ioriarasmalabar, go here https://extensions.gnome.org/# ; type 'pidgin' and see if there's something useful for you13:39
=== TheHonorableKitt is now known as ThKitten
rasmalabarioria, ubottu: Thanks for the tips and will check further after going offline as it might take a while to decide on which option to choose... Thanks!13:48
ioriarasmalabar, ok13:48
whallzhi there, is it normal to have "Ubuntu 16.04.5 LTS (4.15.0-42-generic #45~16.04.1-Ubuntu SMP Mon Nov 19 13:02:27 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux)" showing unbalanced CPU usage across cores? i launched gnome-system-monitor just for fun only to encounter cpu4 is constantly peaking between 80/100% and the other 3 are almost 0/10% ?14:06
whallzshouldn't cpu usage be balanced between the N cores avaiable? how can i debug this?14:06
iosecureA process can only reside on one core.14:08
tarzeauwhallz: no that's normal14:08
tarzeauwhat software is it that only runs on one?14:09
tarzeauit should be optimized to run on more (eventually)14:09
iosecureSo if a process starts, then later starts to consume large amounts of CPU resources, it's going to max out the core where it is.14:09
iosecuretarzeau: Only if the application is spawning multiple processes.14:09
iosecurePlenty of applications are single-process. OpenVPN is a good example.14:09
whallzi have only google-chrome and guake with tmux running14:10
tarzeauiosecure: or threads?14:10
tomreynrunning "top" (better "htop") should tell which application is keeping this core busy14:10
whallzif i close google chrome they all balance out around 10% for a while, then cpu4 goes back up to 80% constant14:11
whallzlets see14:11
tarzeauiosecure: plenty are multi14:11
tarzeauiosecure: objc2 also uses multiple cores (relevant for gnustep)14:11
iosecuretarzeau: And plenty are not.14:11
iosecuretarzeau: My statement is correct. A single process is resident on a single core.14:12
tarzeauunless it's a single process supporting multithreading14:12
iosecureMultithreading is not multiprocessing.14:12
iosecureA single process that spawns multiple threads is still single-core resident.14:12
tarzeaui know, that's why your statement is not correct14:12
iosecureYes, it is.14:13
tarzeauiosecure: no it's not14:13
iosecureYes, it is.14:13
iosecureBy definition, yes, it is.14:13
whallzok depends on multithreading, but how do i find in top/htop which one runs on just 1 core?14:13
iosecurewhallz: Any process shown in top/htop/ps is running on a single core.14:14
tomreynhttps://imgs.xkcd.com/comics/duty_calls.png14:14
whallzXorg seems busy too xD14:14
iosecurewhallz: Any application that shows multiple copies in those programs is potentially running on multiple cores.14:14
whallziosecure: i mean, i a specific core14:14
iosecurewhallz: Ah. Not sure how to show which core a process resides on.14:14
whallziosecure: right, that what i need to find out14:14
whallzsomething is killing cpu4 while cpu1, 2 and 3 are drinking mojito14:15
whallzneed to find out what that process is14:15
iosecureLikely a single runaway process.14:15
whallzright, but is it grabbing always the same core? is there an un-even degradation of whole cpu?14:16
iosecureNo idea. Processes generally do not have an assigned affinity.14:16
whallzfirst, i still need to know which process is it top and htop dont help14:16
iosecureWhichever core it starts on, it stays on.14:16
griphookGuys I am running Compuwiz found here https://code.mradford.com/post/the-ubuntu-compiz-desktop/ How can I use gnome-tweaks with this?14:17
herald85whallz:  you can configure htop to show the "PROCESSOR" column14:17
whallzherald85: that's what i need14:18
herald85open htop, press F2 , go down to 'columns'14:19
whallzawesome, thanks herald8514:20
griphooki am also on ubuntu 18.1014:20
whallzok, seems to be /usr/bin/Xorg wtf14:22
whallzsorry /usr/lib/xorg/Xorg14:22
conjohello all can anyone tell me why there are two of every application one is small in size one is large in filesize...eg vlc from the sofwware center has two choices of the same version but different file size14:25
conjowhy does the software center have two of every application now days?14:25
EriC^^maybe each is an architecture specific?14:26
whallzcpu4 always seems busier that the other 314:26
EriC^^i only have 1 vlc in software center, ubuntu 16.04 unity here14:26
whallz:(14:27
conjoI am running Ubuntu 18.10 and re architechture do you mean different versions of ubuntu eg 8.0418.1014:27
EriC^^conjo: no i mean 32 bit and 64bit14:27
conjo1810 vs 18.0414:27
conjookay14:27
BluesKajHey folks14:27
coz_BluesKaj, hey guy14:28
conjoi see no mention of architecture under details how do i tell the difference14:28
coz_BluesKaj, I keep saying hi back, since you are one of the few I remember from way back ")14:29
BluesKajhi coz_14:29
zetheroowhere in 18.04 is the network interface names defined?14:29
BluesKajyeah, coz_ guess we've been around a while14:30
herald85whallz: that sounds familiar, gnome-shell is horrible with software drawn windows. Do you have a slow cpu ? atom? old celeron?14:30
coz_BluesKaj, ")  for sure14:30
tomreyngriphook: i would not recommend using compiz on 18.04 and newer. it's mostly considered to have failed now. https://www.reddit.com/r/linux/comments/75hxp6/why_did_compiz_die/ - better stick to gnome-shell and, if needed, customize it with extensions.14:33
tomreyn...and gnmoe-tweak-tool14:34
BluesKajzetheroo, which "network names" ?14:34
zetherooBluesKaj: eth0 eth1 etc ...14:34
BluesKajzetheroo, /etc/network/interfaces14:35
tomreynzetheroo: you may want to read this if you haven't https://www.freedesktop.org/wiki/Software/systemd/PredictableNetworkInterfaceNames/14:41
zetheroowe have a system with 18.04 which hasn't got ifup installed and there is a network interface installed as eno1p (at least it seems to be that in the /etc/netplan/*.yaml file) but how do we get the interface up?14:46
zetheroowe cannot install ifup because it's not online14:47
zetherooalso it seems that when we do 'service networking restart' there is no 'networking' service :/14:47
tomreynip link set dev eno1p up14:47
tomreynpleasse read the !releasenotes14:48
zetheroocannot find device eno114:49
olabazHi, I am on 18.10 and I closed my laptop and opened it14:49
olabazand now my screen is all black14:49
olabazi only see the title bar up at the top14:50
tomreynzetheroo: "ip link" shows available devices14:50
olabazany ideas how to get the gui to pop up again?14:51
tomreynzetheroo: as a result of reading the release notes, you should use use 'systemctl', not 'service', and use ip (from iproute utils), not ifup/ifdown (from ifupdown utils)14:52
olabaznvm I figured it out! I just did ctrl alt f1 and logged in and everything reloaded fine14:52
olabazphew14:52
olabazthanks for listening lol14:53
zetherootomreyn: ok, thanks. The netplan file had the wrong interface name.14:54
deadromheya15:01
meph1st0hey everyone15:02
meph1st0best linux native games?15:02
meph1st0share your opinion15:02
deadrom16.04->18.04 failed yesterday due to "cannot calculate upgrades" on do-release-upgrade. cannot figure what's offending, so I think of "upgrade from ISO", but is there an option to install over ex. system and keep custom /etc etc. or is it "raze root or bust"?15:02
leftyfbmeph1st0: try #ubuntu-offtopic. This is a support channel15:03
meph1st0leftyfb, OK, THANKS :)15:03
meph1st0sorry for caps)15:03
herald85my ubuntus keep failing to download http://be.archive.ubuntu.com/ubuntu/pool/main/l/linux/linux-headers-4.4.0-140_4.4.0-140.166_all.deb , but after some experimenting I've noticed that using ftp:// works. Whats the best way to notify the repo maintainers? General ubuntu bugzilla?15:05
BluesKajdeadrom, I have to ask , didyou update/upgrade existing packages first?15:08
deadromBluesKaj, yup15:08
BluesKajdeadrom, ok, is the package manager set to upgrade LTS only?15:11
deadromBluesKaj, yes15:12
BluesKajany ppas?15:14
deadromBluesKaj, truckloads. upgrade-core tells me it disables those, though15:14
BluesKajor changes to the sources.list15:15
BluesKajdeadrom, yeah, it's supposed to15:15
deadromBluesKaj, http://paste.ubuntu.com/p/b5GkD49Ddb/ <- current sources.list15:16
=== [1]MrMobius is now known as MrMobius
deadrombtw I cannot paste proper outputs becuase LC_ALL=C gets me this: https://pastebin.com/Xdr1qpVL15:20
lordcirth_deadrom, use 'LC_ALL=en_US.UTF-8'15:32
lordcirth_You need UTF-8 support15:33
koffelcan ubuntu lts support 12 cores?15:48
nacckoffel: ... yes15:48
nacckoffel: unless you mean some specific hardware version or something, but 12 cores in general, yes. It can support 100s of cores.15:48
koffelsome reason i can only get it to see 615:48
lordcirth_koffel, what CPU?15:49
koffeldual xeons15:49
nateSince most processors use some sort of threading these days, make sure you have HT/SMT on15:49
koffelyes i do15:49
koffelit shows in bios 24 cores15:49
lordcirth_koffel, ... more specific. What CPU model?  Also, which Ubuntu LTS? 18.04?15:49
koffele5656 16.04lts15:50
nacckoffel: 12 or 24 cores? and do you mean cores or hardware threads15:50
koffelmy unit has 4 e5656 xeons 6 cores each15:50
nacckoffel: `dmesg`, `lscpu` in a pastebin15:51
lordcirth_I don't see the "e5656" in Intel Ark.  Sure that's right?15:51
koffelsorry i mean e567015:52
koffelIntel® Xeon® Processor X567015:52
lordcirth_Ok, so each one is 6 cores, 12 threads15:52
koffelyes15:53
lordcirth_koffel, and what tool are you using, which is showing 6 cores?15:53
koffellscpu15:53
koffeland top15:53
nacctop doesn't show cores, it shows logical cpus15:54
nacckoffel: and again, can you pastebin the output asked for?15:54
koffelsome reason in lscpu model is blank15:54
nacckoffel: did you buy it after-market?15:55
styx__hi! is there a lxc 2.0.9 package for ubuntu 18? can't find one online :(15:57
koffelno nacc i bought it new in my dell poweredge r72015:57
koffelhttps://pastebin.com/3DpEBcpr15:57
nacckoffel: uh, you installed 32-bit15:58
nacckoffel: that seems wrong15:58
naccand actually, that looks likea  VM15:58
koffeloh shit i thought it was 64bit15:58
nacc"linux-Standard-PC-i440FX-PIIX-1996"15:59
koffelnot vm15:59
naccjust to santiy check, are you trolling? :)15:59
naccoh did you accept the random hostname it provides at install time?15:59
koffelyes15:59
naccin any case, i'd install 64-bit and see if it sees your processor correctly15:59
koffelit a server15:59
koffelwill do15:59
nacckoffel: i would suggest giving a real hostname as well16:00
koffelwill do16:00
koffelthank ya16:00
naccstyx__: why would you want 2.0.9 in 18.04? it's at 3.0.316:00
styx__nacc: project reasons :/16:00
naccstyx__: afaict, 2.0.9 is not in any ubuntu16:01
styx__nacc: hmmm and any 2.* version?16:01
tewardstyx__: of LXC? 2.0.7 in Xenial, 2.0.8 in Xenial Backports, but that's it.  (1.x in Trusty)16:13
tewardbionic and newer have 3.x16:13
naccstyx__: sorry, what teward said, there is the snap option as well, but that's for lxd16:18
tewardstyx__: if your project *must* have 2.x of LXC (and NOT lxd) then you must use Xenial 16.04 - the older LXC versions are not available in 18.04 or newer.16:19
PlHas anyone worked with NS3 on ubuntu here?16:24
pragmaticenigma!details | Pl16:31
ubottuPl: 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.16:31
pragmaticenigmaPl, also, NS3 could mean name server, nonstructural protein 3, network simulator, and many more... please don't abbrviate16:32
pragmaticenigma*abbreviate16:33
Plpragmaticenigma: Hey sorry. I meant the network simulator. The C++ version. Not OTcl.16:33
CheggyCheepsGot a semi ubuntu related question16:33
pragmaticenigmaPl, what version of ubuntu are you running16:33
pragmaticenigma!ask | CheggyCheeps16:33
ubottuCheggyCheeps: Please don't ask to ask a question, simply ask the question (all on ONE line and in the channel, so that others can read and follow it easily). If anyone knows the answer they will most likely reply. :-) See also !patience16:33
CheggyCheepsah ok16:33
PlSorry guys. This might be off-topic.16:34
Plpragmaticenigma: 16.0416:34
CheggyCheepsI used to use a peice of software years back pre Ubuntu, for debian for displaying disk/cpu/mem statistics down the side of the screen. Any idea what it might be called or similar packages16:34
pragmaticenigmaPl, yeah, sorry, network simulator doesn't appear to be a package or snap provided by Ubuntu or it's official channels. You might want to try in #networking or reaching out directly to network simulator community16:35
ioria!info ns3 xenial | Pl16:35
ubottuPl: ns3 (source: ns3): discrete-event network simulator for Internet systems. In component universe, is optional. Version 3.22+dfsg-2build1 (xenial), package size 105 kB, installed size 338 kB16:35
jjeCheggyCheeps: try conky?16:36
CheggyCheepsThat'll do it!16:36
CheggyCheepsThanks,16:36
Plpragmaticenigma: Sorry. I did try #networking but did not get a response so I thought someone here can help. But I understand that it is completely off-topic.16:36
tewardpragmaticenigma: ns3 might be the specific one they're talking about (See ioria's call to ubottu)16:36
tewardPl: are you talking about the 'ns3' package or something else?16:37
Plteward: Yes, I'm talking about the discrete-event network simulator.16:37
PlI'll post my script anyway. If anyone has any thoughts, well appreciated! :) Link: https://paste.ubuntu.com/p/G4vGkXcq5F/16:39
ioria!info libns3-dev xenial16:41
ubottulibns3-dev (source: ns3): Static and header files of ns-3. In component universe, is optional. Version 3.22+dfsg-2build1 (xenial), package size 6417 kB, installed size 55989 kB16:41
ioriaPl, try to install that ^16:42
got_me_an_ircdoes anyone know the correct incantation to make apt-get fully accept anything thrown at it?16:43
Plioria: Hey thanks! I'll try that.16:43
got_me_an_ircapt upgrade -y isn't it; neither is apt-get dist-upgrade -qq --force-yes\16:43
pragmaticenigmagot_me_an_irc: what are you trying to do, and blindly telling apt to accept all prompts is not recommended16:43
got_me_an_ircit seems to get stuck (if unattended) on stuff like /etc/default/grub. I've tried removing /etc/default/grub before issuing the upgrade, doesn't work either16:43
got_me_an_ircpragmaticenigma: i'm trying to create an up-to-date ec2 AMI16:44
pragmaticenigmagot_me_an_irc: If you have customized those files, apt will not be able to automatically update them if they are included in an update. It requires user intervention16:44
got_me_an_ircso basically I want an unattended script I can run that gets me from their image to "now"16:44
got_me_an_ircpragmaticenigma: right, but there are options. I want it to take the "just do it" option.16:44
pragmaticenigmagot_me_an_irc: It can't16:45
got_me_an_ircthe first option is "just do it" e.g. overwrite it and don't care.16:45
got_me_an_ircso it's impossible to do an unattended upgrade16:45
WoCHow do you install perl modules ? i.e. Automake::Config16:45
got_me_an_ircthere are results online for people who have had this issue on 12.x, 14.x, and so on, I just need the incantation that works on 18.0416:46
pragmaticenigmagot_me_an_irc: No, what you should do is make sure you're not updating package maintained files and leverage the appropriate means of adding customized preferences16:46
pragmaticenigmasuch as many programs offer a conf.d folder where you place system specific configurations to override the defaults16:46
got_me_an_ircpragmaticenigma: i'm going from the base image on EC2 with no customizations16:46
got_me_an_ircsure, it's their issue for having modified it, i assume someone else must have had this problem though16:47
pragmaticenigmaIf you have seen those incantations they should still be working. without an example to work from, i'm shooting in the dark to help16:47
WoCHow do you install perl modules, system wide ? i.e. Automake::Config16:48
pragmaticenigma!patience | WoC16:48
ubottuWoC: Don't feel ignored and repeat your question quickly; if nobody knows your answer, nobody will answer you. While you wait, try searching https://help.ubuntu.com or https://ubuntuforums.org or https://askubuntu.com/16:48
nisankhindia@got_me_an_irc: can you please re elaborate the issue ..16:48
WoCWas clarifying ;P16:48
got_me_an_ircnisankhindia: take the base ubuntu 18.04 image on amazon EC2 and try to apt update and apt upgrade.16:49
got_me_an_ircyou can't do it unattended. i want the incantation to do that upgrade unattended.16:49
got_me_an_ircspecifically the issue is that it appears amazon have modified /etc/default/grub or /boot/grub/menu.lst or something16:49
nisankhindia@got_me_an_irc: ok so in your case have you asked or dropped any query on amazon support16:50
got_me_an_ircokay. just imagine I asked about not being able to find the X button in the corner or something, nevermind.16:50
nisankhindia@got_me_an_irc: I do suggest to discuss this with Amazon EC support16:52
pragmaticenigmanisankhindia: They already left16:54
giacoI've installed ubuntu server two times in the last month on 2 different machine. Both times I had to revert from the new installer to the old alterative one due to lack of previously available features16:57
giacoeg: install from serial terminal and boot from raid1 partition16:58
tarzeaui have an ubuntu 18.04 on a super new computer (nvme on pci), however the network interface doesn't come up (systemd-networkd), i have to unplug/replug and re-run restart systemd-networkd; autofs every time. known problem?16:58
sentimenthi, does anyone know what could make grub boot into slic loader?16:58
sentimenti don't even know what the heck it is. I just upgraded to 18.4 and all of a sudden I can't boot into Windows anymore16:59
tarzeauthe very same machine also doesn't boot with 18.04 on usb stick, hangs at: [ ok ] started session c79 of user gdm.16:59
tarzeau(many of these starting from c41)16:59
sentimentsome creepy shit pops on the screen about memory addresses16:59
tarzeauit's got a graphics card like GeForce RTX 2080 Rev. A in.17:01
nisankhindia@tarzeau: system details like network interface make , log details e.g system log etc are helpful to identify ... if you can provide these we can check about the issue17:01
tarzeaunisankhindia: 0000:06:00.0 Ethernet controller: Intel Corporation I210 Gigabit Network Connection (rev 03)17:02
nisankhindia@tarzeau: boot log , system logs etc also required17:02
tarzeaunisankhindia: boot log: https://people.phys.ethz.ch/~myczko/dmesg.txt17:03
tarzeaunisankhindia: can you be more specific what exactly of system log you want? for the usb stick 18.04 i don't have any logs since systemd doesn't give me a chance to get a shell by default17:03
tarzeauwithout saying init=/bin/bash, and i'm not at the machine now17:04
nisankhindia@tarzeau: alright .. let me go through the dmesg output17:06
tarzeaualso the preseeded install would fail (bios doesn't boot the nvme on pci), manually partitioning the preseeded stuff, worked17:06
tarzeauit's 12 cores, 256 gb memory17:06
tarzeauwe're using nvidia 410 driver with cuda 10 with tensorflow (py3)17:07
TJ-tarzeau: if you've got very new hardware, bear in mind the 18.04 kernel is relatively old (v4.15 released in late 2017) - you might need to use a recent kernel from the HardWare Enablement (HWE) stack (v4.18), or even a mainline build of a later version17:09
TJ-!info hwe | tarzeau17:09
ubottutarzeau: Package hwe does not exist in bionic17:09
TJ-!hwe | tarzeau17:09
ubottutarzeau: The Ubuntu LTS enablement stacks provide newer kernel and X support for existing LTS releases, see https://wiki.ubuntu.com/Kernel/LTSEnablementStack17:09
tarzeauTJ-: good idea, i can try that!17:10
tarzeauit's very new hardware, got it 2 days ago, bios dated a few weeks old17:10
tarzeaulinux-image-4.18.0-1004-gcp - Signed kernel image gcp17:10
tarzeaulinux-image-4.18.0-1006-azure - Signed kernel image azure17:10
tarzeaulinux-image-4.18.0-1006-aws - Linux kernel image for version 4.18.0 on 64 bit x86 SMP17:10
tarzeauis one of these what i want?17:10
TJ-tarzeau: see the link provided by ubottu17:11
TJ-tarzeau: I think you'll need to enable the bionic-proposed archive to get the 4.18 kernel (which comes from Ubuntu 18.10)17:13
* tarzeau will try, thanks!17:14
nisankhindia@tarzeau: bionic proposed must be enabled to get 4.18 ...17:15
tarzeaui see, so just add bionic proposed to sources.list17:15
maeudAnyone about?17:16
lordcirth_maeud, many of us.  What do you need help with?17:17
nisankhindia@maeud: ask anything related to ubuntu issue or discussion17:18
=== capella|away is now known as capella
nacctarzeau: uh, don't just add bionic proposed.17:24
nacctarzeau: that will make your system install all -proposed packages17:24
maeudHi nisankhindia, I'm trying to preseed an Ubuntu Bionic installation. I've created an offline repo using aptly which I can use without issue on an installed system, but trying to use it to actually install I get an error: "anna[3950]: WARNING **: bad d-i Packages file"17:25
maeudso it works fine when adding it as a source in apt, I can install other packages, update etc17:26
maeudbut when I use that mirror to do an installation it throws that error17:26
naccmaeud: did you mirror the installer udebs?17:26
naccmaeud: they aren't ussed by anything except the installer, so your installed system wouldn't care17:27
WoCWhich package provides autotools, i only see the autotools-dev17:28
maeudThat could be it nacc, I included packages and sources but not the .udeb option, but I have lots of .udeb files17:29
maeud /pool/main/o/openssl1.0/libcrypto1.0.0-udeb_1.0.2n-1ubuntu5.1_amd64.udeb17:29
maeudetc17:29
naccmaeud: i'm not sure, that was just a guess17:29
maeudI'll try re-creating with that option enabled and see17:29
maeudthanks :)17:29
naccWoC: autotools isn't a command17:30
WoCnacc, i thought it was the combo of; autoconf, automake, libtool17:31
ZteamHi all! I have a problem with fstrim taking over 7 minutes to perform a TRIM on my 120 gb ssd, this is happens once a week with Ubuntu 18.10 never had this issue with Ubuntu 18.0417:32
Zteamany ideas about what could be wrong here?17:33
compdocdo you issue a command, or how do you se it takes that long?17:33
compdocsee17:33
Zteamcompdoc, I used systemd-analyze blame  ton find out why my system is taking that long to boot, and it reported that fstrim took that long to perform, after that I manually tried  sudo fstrim / and vailidated it17:36
ZteamI should also add that I have an encrypted lvm on this machine as well, but that has existed long before I upgraded Ubuntu too 18.10 too17:37
TJ-Zteam: I'd suggest reviewing the device's SMART report for indications it is wearing out17:39
lordcirth_Zteam, any IO errors in dmesg or syslog?17:39
ZteamTJ-, device has 2 bad sectors, but those has existed for over 3 years, and the disk passes the self-tests just fine :)17:40
naccWoC: autoconf, automake, libtool17:41
naccWoC: respectively. use apt-file :)17:41
pragmaticenigmaZteam: Smart is still reporting only 2 bad sectors?17:41
compdocwhen the number of sectors grow, its time for a new one17:42
Zteampragmaticenigma, yes, those arent growing17:43
caipiblackHi, I have a problem building GNURADIO: No package 'gmp' found No package 'mpir' found. I have search and try to install many packages but I don't arrive to found the good one .. Did someone know witch package is needed ? How to know it ?17:45
TJ-Zteam: generally you need to consider other values, such as wear_levelling - these values are highly specific to individual make/models too, so you may need to research what they infer17:45
Zteamlordcirth_, I can't find any errors there, it complains about a BIOS bug, however, I have already upgraded BIOS to latest version, no change of Mainboard since upgrading from 18.0417:45
ZteamTJ, all vaules are OK as far as Ubuntu thinks,  I be happy to provide a screenshot or something if you like :)17:47
deadromlordcirth_, gives me german. but - later, gotta run17:48
jorbugh, dd'ing the desktop iso is not working for me. should it?17:48
jorbhttps://www.ubuntu.com/download/desktop/17:48
jorbgonna try a different sub stick, but just a sanity check from here would help,thanks17:48
jorbusb*17:48
lordcirth_jorb, dd'ing it to a usb stick, like /dev/sdd? should work, yes17:48
lordcirth_jorb, what's the exact command you are trying?17:49
TJ-Zteam: I'm wondering if strace-ing the fstrim might reveal anything17:49
jorbdd if=ubuntu-18.04.1-desktop-amd64.iso of=/dev/sdb bs=8M17:49
TJ-Zteam: what is the make/model of the SSD?17:49
lordcirth_jorb, did you run 'sync' before removing it?17:50
Zteamjorb, make sure u try with conv=fsync , to make sure it writes data direct after the command is completed17:50
TJ-jorb: tip: if you want to speed up transfer, increase the block-size. It controls size of the in-memory buffers. I generally use >100M (sometimes 1G) for large sustained transfers17:50
lordcirth_Last I checked, I didn't get much performance improvement past 1M17:51
fassli used cp 2 days ago, was kinda surprised it worked17:51
TJ-jorb: "conv=sync,fdatasync status=progress" also help17:52
lordcirth_caipiblack, are you sure you need to build GNURADIO from source?17:52
caipiblacklordcirth_ Yes I, I already do it many times but not on this computer.17:53
caipiblackFor some supports I need it17:53
fasslthis is nice to test for the blocksize you wanna use http://blog.tdg5.com/tuning-dd-block-size/17:54
lordcirth_caipiblack, are you using pybombs, or build-gnuradio?17:54
lordcirth_Or manually?17:54
ZteamTJ-, here is output from strace with fstrim https://paste.ubuntu.com/p/bGYRV9Hv9j/17:56
ZteamTJ-, Kingston V300 (KINGSTON SV300S37A120G)17:57
TJ-Zteam: that strace log doesn't look to be complete; I don't see a final 'exit' - also, I guess it could help to have timestamps!17:58
caipiblacklordcirth_ no, I am using this: http://blog.reds.ch/?p=43 I already done this on the past.17:58
caipiblackThis installation works well with limesdr17:58
WoCnacc, i would love to use apt, but the versions are obsolete17:59
TJ-Zteam: as in "strace -r fstrim /"17:59
ZteamTJ-, sorry for that my bad17:59
TJ-Zteam: i forgot myself so don't worry :)18:00
naccWoC: i don't know what you mean.18:00
TJ-Zteam: so used to reading kernel logs with timestamps the default18:00
naccWoC: the versions apt talks about are the versions apt knows about based upon the last time `apt update` was run18:00
Zteamhow do I cancel this strace CTRL+C can't cancel it18:00
naccWoC: they are not obsolete unless you are running an obsolete version of ubuntu, or if you aren't keeping your package lists current18:00
WoCles than 15 mins ago18:01
TJ-Zteam: if it's in a syscall got to wait for it18:01
naccWoC: ok, so what do you mean by obsolete?18:01
WoCdisco dingo18:01
naccWoC: that's not released yet, so you need to be in #ubuntu+118:01
TJ-Zteam: also, use a log-file, as in "strace -o /tmp/strace.log -r fstrim /" then you can do "pastebinit /tmp/strace.log"18:01
naccWoC: that's an ubuntu release, not an answer to my question, anyways18:01
WoCk18:02
tomreynZteam: if you don'T mind revealing this information, maybe you could also post dmesg?18:02
tomreyn / journalctl -b18:02
ZteamTJ-, okey, wasn't sure how to automate that, since fstrim doesn't write to stdout, that's why I pasted it manually18:03
nisankhindiaas you can see guys.. do anyone found any issues with ubuntu bionic release with kernel 4.19.9 . https://usercontent.irccloud-cdn.com/file/abNfrdnT/irccloudcapture8407092872226339893.jpg18:03
naccWoC: the version in 19.04 prerelease is whatever it is, e.g. for autoconf it's 2.69-11. apt-file finding the pacakge you want has nothing to do with the package's version.18:03
naccnisankhindia: that's an invalid kernel for 18.04.18:04
naccnisankhindia: if you are running mainline you are not supported18:04
nisankhindia@mac 4.19.9 is not mainline18:04
tomreynZteam: notable kernel change between default kernels in 18.04 and 18.10 is much improved sata power management, this could be a side effect.18:04
naccnisankhindia: ... uh yes it is.18:04
naccnisankhindia: stable tree is a mainline tree.18:04
ZteamTJ, I should tell you that I killed strace once before, releasing it writes to stderr so I killed it by closing the terminal, hope, that don't mess up the output if We run it again?18:05
naccnisankhindia: in any case, the point being, it's not an ubuntu kernel.18:05
tarzeaunacc: but?18:06
nacctarzeau: ?18:07
Zteamtomreyn, yes, it complains about a BIOS bug or something with SATA, but mainboard is the same and BIOS is upgraded, so I don't know what to do with it18:07
nisankhindia@nacc: ubuntu kernel ??? Ubuntu uses linux kernel ..... and it can be fetched from ubuntu itself18:07
naccnisankhindia: the ubuntu kernel in 18.04 is 4.15.0-...18:08
naccnisankhindia: there is no other supported kernel in 18.04 currently18:08
Zteamnisankhindia, Ubuntu does make several changes to the linux kernel, so it not the vanilla kernel18:08
tomreynZteam: please post this bios bug message as well as any ata related messages18:08
tarzeaunacc: not just add proposed...18:08
tarzeaunacc: just bionic-proposed i'd add to get 4.18 kernels. i didn't understand the HWE page i got the link for (it's not listing 18.04 really)18:09
nacctarzeau: 18.04 isn't in hwe yet18:09
tomreynZteam: also note there is also fstrim -v and read what the man page has to sayon it (though i concur on the fstrim approach in this case)18:09
TJ-Zteam: I think you'll be ok as long as there isn't an fstrim process hanging about. Worth checking with "ps -efly | grep trim'18:09
tarzeauso how can i try a newer kernel on ubuntu 18.04?18:09
nacctarzeau: bionic-proposed has many packages18:09
tarzeauthe thing i was suggested to18:09
tarzeaunacc: i know about that18:09
Zteamtomreyn, whole dmesg http://paste.ubuntu.com/p/NFxDMchWbJ/18:09
ntdi saw 18.04.2-named openoffice packages the other day18:09
nacctarzeau: you dont' just want to add the repository, as it will add many packages18:09
ntdsomething tells me: soon18:09
nacctarzeau: you might just try the mainline PPA if you want to do a one-off test, but it's not supported18:10
nacctarzeau: nor is -proposed technically18:10
tarzeaumany package updates, and they are still security supported (if from main), even if proposed right?18:10
nacctarzeau: no.18:10
nisankhindiahttps://www.irccloud.com/pastebin/gVQzl6jj18:10
nacctarzeau: -proposed has no support18:10
tarzeaui tried avoiding PPAs, we run our own repo, so i'll just be back building kernels myself again18:10
nacctarzeau: they are for testing18:10
tarzeauaha got that18:10
nacctarzeau: as is the mainline ppa18:11
tarzeauso there is no simple way to run a newere prebuilt kernel for ubuntu 18.04 as of now18:11
naccnisankhindia: you don't seem to understand how ubuntu, downstream/ustream, etc work18:11
Zteamtomreyn, dmesg | grep IO http://paste.ubuntu.com/p/7cSvxbJPvg/18:11
lordcirth_nisankhindia, notice how "Ubuntu" does not occur in that line, as it does on a normal Ubuntu system.18:11
nacctarzeau: well, it depends on what you mean, the ubuntu mainline PPA is not a PPA like other, you download debs from it by hand18:11
nacctarzeau: that's quite easy to do to test18:11
lordcirth_Mine: Linux hostname 4.15.0-39-generic #42-Ubuntu SMP Tue Oct 23 15:48:01 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux18:11
Zteamtomreyn, sorry man, I got confused and belived I already posted those :D18:12
tarzeaunacc: ah that sounds good, but linux kernel packages are like a bunch of packages i'll have to download18:12
nacctarzeau: no, just two18:12
nacctarzeau: or three, as the mainline builds don't have -extra, etc18:12
tarzeaunacc: which? linux-image and?18:12
nacc!mainline | tarzeau18:12
ubottutarzeau: The kernel team supply continuous mainline kernel builds which can be useful for tracking down issues or testing recent changes in the Linux kernel. More information is available at https://wiki.ubuntu.com/Kernel/MainlineBuilds18:12
nacctarzeau: i think that page lists them, just the image and modules18:12
TJ-nacc: I'd rather have a supported kernel package from cosmic rather than a mainline build, since the former is supported. as in as I have on my systems: linux-image-lowlatency-hwe-18.04-edge => linux-image-4.18.0-13-lowlatency18:12
tarzeaui'll need headers too since i have nvidia 410 driver plus cuda 1018:12
tomreynZteam: please keep working with TJ,, i just meant to add to it for later. i think you were on a good path there.18:12
nacctarzeau: ah, i doubt nvidia will work18:12
naccTJ-: oh i didn't know -edge had been updated18:13
* tomreyn reads dmesg18:13
naccTJ-: last i checked i didn't see the an 18.04-edge18:13
naccTJ-: oh it's in -proposed specifically18:13
naccTJ-: yes, that would be ok as well, tarzeau18:14
TJ-nacc: ye18:14
naccTJ-: weird there's no non-lowlatency one?18:14
tarzeauso i'll just stick with what i have, it works, it's only a problem during the installation with preseeding and pxe, and another with systemd-networkd (which i'll get fixed somehow else)18:14
nisankhindia_why i have asked this coz as linus - linus git launchpad , and mainline crak things ... if people can revert here few more details regarding 4.19.9 use with ubuntu .. like issues and performance that would be helpfull18:15
TJ-Zteam: tomreyn  I see "\_SB.PCI0.SAT0.PRT2._GTF.DSSP" which, decoded, means something like South-Bridge -> PCI root bus 0 -> SATA controller 0 -> Power something-or-other and you can make up your own meaning for _GTF.DSSP! but it does point to an ACPI node that could be affecting the SSD18:15
naccnisankhindia: no, that's not he purpose of this channel.18:15
TJ-nacc; there is; I just prefer lowlatency on desktop systems18:16
naccTJ-: oh forgot the -generic- prefix18:16
naccTJ-: you're right, sorry18:16
* tarzeau still looking for ppa testers (pkg lix), bionic: https://launchpad.net/~gagarin/+archive/ubuntu/bionic18:16
nacctarzeau: that's not the purpose of this channel either :)18:17
tarzeaunacc: is there a specific place for ppa testing?18:18
WoCnacc, figured it out, turned out it was because some old program required the 1.15 version which i built from source and installed but was used as default... thanks again18:18
nacctarzeau: what is the ppa for? a bugfix?18:18
naccWoC: ack18:18
TJ-Zteam: tomreyn "_GTF" apparently returns a bunch of ATA commands the drive requires to reset it, so those errors very much look like a possible cause18:19
tarzeaunacc: a package not yet in debian/ubuntu, test the game18:19
ZteamTJ-, here is the log from completee strace of fstrim this time it didn't take long at all, for some reason18:19
tarzeaunacc: i just use it to figure out missing b-ds :)18:19
tarzeaunacc: prototype is an r-type remake, also nice. and fasttracker2 well ...18:20
ZteamTJ-, http://paste.ubuntu.com/p/6kbx2C5Wf9/18:20
TJ-Zteam: there are 2 possible causes, and 1 possible fix. Causes: 1) the PC's firmware ACPI tables/code do NOT include the _GTF.DSSP method of 2) the method exists but is not enabled because the firmware is tuned to only enable it for recent Windows versions, not Linux. In the case of (2) then the acpi_osi workaround may work for you, which I've written about here:18:21
TJ-http://iam.tj/prototype/enhancements/Windows-acpi_osi.html18:21
TJ-Zteam: Your strace confirms it is the TRIM itself that is delaying things18:22
TJ-Zteam: in that case 16 seconds not 7 minutes, fortunately18:22
tomreynTJ-: good finding. i'm wondering whether the microcode update is too old. it's "revision 0xc6, date = 2018-04-17" on this "Intel(R) Core(TM) i7-6700K CPU @ 4.00GHz (family: 0x6, model: 0x5e, stepping: 0x3)"18:23
jorbthanks for the dd help earlier folks, it was just me looking at gparted that messed me up :(18:24
jorbits just a 2GB usb stick, but it says there is an 8GB partition on there somehow.. probably this error is a clue18:25
jorbThe driver descriptor says the physical block size is 2048 bytes, but Linux says it is 512 bytes.18:25
TJ-tomreyn: Cannot imagine microcode would help; this is an ACPI method missing or masked off18:26
ZteamTJ-, usally it takes much longer than that, there are some settings in BIOS which is about compatiblilty with older Windows versions or something like that, should I try to change that?18:26
tomreynTJ-: ok, maykes sense.18:27
TJ-Zteam: no, they won't solve this partcular issue.18:27
TJ-Zteam: give the acpi_osi workaround a try18:27
tomreynZteam: did you upgrade from 18.04 to 18.10 or reinstall? i'm wondering whether you switched from klegacy bios to efi booting18:27
TJ-Zteam: if that doesn't help we can grab the ACPI tables out of the firmware and I can analyse them to see if those nodes/methods really are missing18:27
ZteamTJ-, will do, but since this never happenened with Ubuntu 18.04 should this be considered a bug?18:28
TJ-Zteam: in which case it'd be a pretty severe firmware bug, because some other ACPI method is referencing them!18:28
jorbbut also the Type recorded from fdisk is "Empty"18:29
TJ-Zteam: it may be to do with the kernel being stricter on ACPI now, and trying to force more functions to be enabled18:29
Zteamtomreyn, upgraded, and I haven't change any bios related settings, before that showed up18:29
tomreynaccording to https://www.intel.com/content/dam/www/public/us/en/documents/sa00115-microcode-update-guidance.pdf (page 16) the microcode is current for this cpu.18:30
tomreynZteam: thanks for confirming18:31
ZteamTJ-, okey, I will try that, thanks for all your help TJ18:32
Zteam:)18:32
TJ-Zteam: looking at some other system's ACPI DSDTs, they define DSSP on controller ports but so far not discovered precisely what 'DSSP' stands for although I suspect something like "D???? Solid State Power"18:35
TJ-Zteam: aha, _GTF == Get Task File, DSSP appear to flags that control whether or not certain non-standard SATA controller features are enabled18:37
tomreynZteam: there's a firmware update available for your drive from kingston. your version: 506ABBF0, latest version: 60AABBF0. details at https://www.kingston.com/us/support/technical/downloads/9068318:38
TJ-Zteam: is that an HP PC by any chance?18:39
tomreyn(the readme lists 56 intermediate firmware revisions)18:39
tomreyn* 6, not 5618:40
TJ-Zteam: I'm reading in an HP system manual, for its BIOS, it has the option "BIOS Support for _GTF in ACPI Mode" with an explanation "BIOS supports _GTF (Get Task File) ACPI control method while in AHCI mode. However a Registry key is required to enable the port(s)" - this obviously targeted at ensuring it works for MS Windows.18:41
TJ-Zteam: the ACPI spec says, for _GTF: "This optional object returns a buffer containing the ATA commands used to restore the drive to boot up defaults (that is, the state of the drive after POST). "18:45
TJ-Zteam: I suspect it's a bug in the firmware of that PC because I notice it refers in your log to SATA ports 2 & 3 'PRT{2,3}'  (\_SB.PCI0.SAT0.PRT2._GTF.DSSP) and I'd take a bet that it doesn't happen for a device connected to SATA Ports 0 or 1 (PRT{0,1})18:48
nacctarzeau: maybe ubuntu-users? not sure18:51
nacctarzeau: presumably you are packaging it for a purpose, contact the group interested in the purpose, which is not hte support channel :)18:51
SlidingHorn So my laptop with bionic seems to randomly freeze entirely (no key/mouse response, cannot ssh in from another computer, etc), and when I have to force restart with the power button, there seems to be no hint of the cause in any of the logs (kern.log, syslog, x-session-errors, etc).  I'm kind of at a loss here :/  Any suggestions?18:54
SlidingHorn(this only happens with my laptop - I have the same distro running on my desktop with no problems, and an 18.04 headless system running on another tower that doesn't have an issue)18:54
TJ-SlidingHorn: which kernel version? I've been investigating that same issue with the v4.18 series of kernels18:55
SlidingHornTJ-: 4.15.0-42-generic18:58
tomreynZteam: if you also wantto try the firmware update (the change log doesn't seem related but sounds like you'd still very much want to apply it) and dont have a windows system available, you could try this: https://gitlab.com/vinibali/kingston_fw_updater18:58
TJ-SlidingHorn: possibly a different cause then; I've test 4.15 through 4.17 so far without being able to reproduce. With no log clues your  only option is to try to narrow down which versions are affected. I'd recommend trying the v4.18 kernel from 18.10 ( which is available as a HWE 'backport' ) in 18.04 via bionic-proposed and the linux-image*hwe-18.04-edge packages19:01
cryptodanSlidingHorn: how often does this happen and what are you doing prior to the freezes?19:03
SlidingHornTJ-: stupid question, will apt only pull upgrades from proposed if I specify it using -t?19:06
`mist_hey guys, i've got a corrupt vmware disk with ubuntu 18 on it. When i check the partition table it's only showing 40gb of the lvm, it should be 15019:06
`mist_and i'm missing some valuble data unfortunately19:06
elias_aWhat would be a handy method of testing the reliability of DVD drive/disc? I have some old DVD-RW discs and I am thinking whether I should move the data to other media.19:07
stavrosHello19:10
stavrosDoes anyone know how apport installs its Python exception hook?19:10
tomreynstavros: cat /proc/sys/kernel/core_pattern19:12
tomreyn(if that's what you mean, not sure)19:12
stavrostomreyn, the crash handler installs a Python exception that intercepts crashes in Python programs, but I can't figure out exactly how19:13
stavrosAhh, I found something in the docs, thanks19:13
_Sym_Hi, I'm using Ubuntu 18.04 and with an HP laptop and I just noticed that the airplane mode key does not work in the GUI, but it does work in TTY.  Anyone know of a solution? Same as this: https://askubuntu.com/questions/1042333/aiplane-mode-key-not-working-in-gui-but-working-in-tty19:37
donkdonkHello! Maybe simple question but what is the difference between these two versions of the same package? https://gist.github.com/jglenn9k/3a84ab7bb3207f2a8dafbe8b537ff69d19:40
donkdonkWas there a change in version naming?19:40
tewarddonkdonk: -1build1 was a no-changes rebuild19:42
tewarddonkdonk: -1ubuntu0.1 had some Ubuntu-specific changes that differed from the Debian synced version19:42
tomreynhttp://changelogs.ubuntu.com/changelogs/pool/main/l/lxml/lxml_3.5.0-1ubuntu0.1/changelog19:43
tewarddonkdonk: namely, -1ubuntu0.1 fixed CVE-2018-19787.  See https://launchpad.net/ubuntu/+source/lxml for details and version comparisons and changelogs under "Xenial"19:43
tewardor what tomreyn gave you :P19:43
tomreynor what clicking on "ubuntu Changelog" at https://packages.ubuntu.com/xenial/python-lxml gvies you19:44
donkdonkteward and tomreyn thanks a ton!19:47
tomreynalways happy when nvidia accepts help19:49
fasslSlidingHorn, does it have an intel gfx? some user in #centos added  i915.enable_rc6=0 kernel boot parameter to fix a freeze20:00
sarafI am having an issue with a sys V init.d script that uses start-stop-daemon http://paste.debian.net/1055898/20:00
sarafsometimes when I do a service restart - the init script stops the process, but does not start it again20:01
sarafhow can I debug this20:02
iosecuresaraf: Have you ever considered translating that to a systemd unit, given that 16.04 and 18.04 run systemd?20:06
griddleI'm having a problem in a VM in proxmox with the lxcfs systemd unit. I'm unsure what to do with it. It suddenly says that there was an invalid argument to the fuse mount after a reboot20:06
griddlejust says `failed to mount /var/lib/lxcfs`20:07
SlidingHornfassl: yes...I could try that.  What exactly is it?20:07
sarafiosecure: I have the following script in /etc/systemd/system/hubot.service - http://paste.debian.net/1055902/20:09
sarafdoing a systemctl daemon-reload ... seems to not do anything. I cannot do a sudo service hubot start20:10
sarafiosecure: which makes me think that systemd is not being used on this server, even though the directory exists.20:10
sarafokay - this server is still 14.0420:12
sarafhm20:12
fasslSlidingHorn, something to do with power management if i read it correctly, not sure though20:14
iosecuresaraf: That would be why. Remember that 14.04 goes out of support in a few months.20:15
sarafhmmm ... yes ... need to upgrade :)20:16
fasslSlidingHorn, ill just paste you the links https://bugs.freedesktop.org/show_bug.cgi?id=105962 https://bugzilla.redhat.com/show_bug.cgi?id=1573482 https://bugs.centos.org/view.php?id=863020:16
ubottuFreedesktop bug 105962 in DRM/Intel "[KBL] "enable_rc6" parameter deprecation brings back freezing" [Normal,New]20:16
ubottubugzilla.redhat.com bug 1573482 in xorg-x11-drv-intel "i915.enable_rc6=0 is not respected in new kernels" [High,Closed: eol]20:16
SlidingHornfassl: is that supposed to be enclosed in quotes?  Sorry, I don't deal with kenel boot parameters often/at all20:17
fassli think the whole parameter line is enclosed in quotes, not parts of it20:18
fasslbefore adding it permanent, you could just edit the boot parameters for the next boot and see if it fixes the issue20:18
fassl*permanently20:18
caipiblackHi, did someone know witch package provide Qt5Qwt6 on ubuntu 18.04 ?20:19
SlidingHornfassl: it's a very random crash that doesn't happen on every use, so enabling it permanently would really be the only "true" test20:19
fasslthats true20:19
fasslcaipiblack, does apt-cache search qwt give any hints?20:22
ioria!info libqwt-qt5-620:23
ubottulibqwt-qt5-6 (source: qwt): Qt widgets library for technical applications (runtime, qt5). In component universe, is optional. Version 6.1.3-1 (bionic), package size 446 kB, installed size 1618 kB20:23
caipiblackMaybe it'"s not this one20:24
caipiblackBecause cmake doesn't find the library20:24
ioria!info libqwt-qt5-6-dev20:25
ubottuPackage libqwt-qt5-6-dev does not exist in bionic20:25
ioria!info libqwt-qt5-dev20:25
ubottulibqwt-qt5-dev (source: qwt): Qt widgets library for technical applications (development, qt5). In component universe, is optional. Version 6.1.3-1 (bionic), package size 35 kB, installed size 177 kB20:25
caipiblackif the package doesn't exists, what does it means ?20:28
caipiblackI will not be able to get it by apt-get ?20:28
caipiblackShould it be added in the future ?20:29
ioriacaipiblack, what are you looking for ?20:29
caipiblackioria --   No package 'Qt5Qwt6' found20:29
ioriacaipiblack,  libqwt-qt5-620:30
ioriacaipiblack,  or libqwt-qt5-dev ,butmif you don't tell what are you doing ...20:30
caipiblackI already have this lib20:30
ioriacaipiblack,  also the -dev pkg ?20:30
caipiblackI am trying to  build gnu radio from sources on ubuntu 18.0420:31
ioriaha20:31
caipiblackThe two ones are installed*20:31
ioriacaipiblack,  you know it's in the repo, right ?20:32
caipiblackno ?20:32
caipiblackwhich repo ?20:32
caipiblackoh you speak about gnu radio ?20:33
ioria!info gnuradio20:33
ubottugnuradio (source: gnuradio): GNU Radio Software Radio Toolkit. In component universe, is optional. Version 3.7.11-10 (bionic), package size 7550 kB, installed size 81633 kB20:33
caipiblackYeah I know20:33
ioriaok20:33
caipiblackBut I need the last version with last libs, for get the LimeSDR working.20:33
caipiblackI have already installed this many times on another computers20:33
caipiblackBut on this ubuntu 18.04 computer, I'm locked because of damn libraries.20:34
caipiblackThey also don't have the support for 18.04 in the "automatic building script"20:34
ioriacaipiblack,  who's they ?20:36
caipiblackhttps://wiki.gnuradio.org/index.php/InstallingGRFromSource20:36
caipiblackhttp://www.sbrac.org/files/build-gnuradio   this script didn't have ubuntu 18.04 support, So I can't check the libraries that are installed for 18.04 :D20:37
BrickedInTheHeadwait unregged?20:37
caipiblackI already tryed the libraries of 16.XX but some of them doesn't exists on 18.0420:38
caipiblackNow I have to go, i come back tomorrow, if i don't resolve the problem looking for the damn libraries20:38
caipiblackThanks for your help20:38
SlidingHorncaipiblack: you've already been shown the libraries....more than once.20:38
ioriaah, it wants the python version of qt20:41
eelstrebori'm having trouble with installing bionic onto a hp6200 but the boot from either a dvd or thumbdrive hanges with a tpm error message - i disabled the tpm in the bios but it still hangs with a tpm error message - no other info found on a web search but i guess i can blacklist the module on the thumbdrive?20:44
TJ-eelstrebor: could it be that it's an EFI Secure Boot and it needs access to the TPM?20:51
roraclehey guys, i just opened my laptop to clean out the dust, and found out the CD-ROM drive had been disconnected since the last time i had done that (which is why it wasn't working) but i'm not sure why it won't show up. I think it may have something to do with SecureBoot being on, but i'm kind of stupid when it comes to this. Anyone know something about how to get it identified?20:53
eelstreborTJ-, don't know. but i just tried modifying the bootup with nomodeset and got past the tpm error message20:53
roracleactually, i'm going to go check the bios thing, and try a few other things before i come back in here, if i'm back again that means it still isn't working lol20:54
TJ-eelstrebor: maybe that is just the last thing you see, and is only a warning, not an error21:00
lazr47i have a vmware vm with 17.10 server that i'm trying to upgrade to 18.04. i was able to do the upgrade and end up at a seemingly working 18.04 shell. however when i reboot the server it won't successfully boot, just drops to an initramfs prompt complaining about "mount: mounting /dev/mapper/vg1-root on /root failed: No such device21:08
lazr47does anyone have any ideas for me to look into to try and fix this?21:09
TJ-lazr47: you get a busybox 'initramfs' shell? is /dev/mapper/vg1-root there? if not does it show up doing "vgchange -ay" - if that command isn't available it would seem the initramfs-tools didn't correctly add the lvm2 scripts and tools21:12
TJ-lazr47: it may be the virtual disk naming has changed and has caused an issue if the lvm.conf is excluding it, for example21:13
somasonicpene21:14
=== ubuntu is now known as Guest77907
Guest77907o/ Does anyone know which building system is used in ubuntu?21:15
Guest77907like fedora->koji21:15
=== Guest77907 is now known as chuyd
OerHeksGuest77907, for ubuntu/debian it is DPKG21:16
de-factoHey Guys, is there a good IDE for C++ on Bionic?21:18
de-factoI tried Code::Blocks but its very old and unstable21:18
acheronukchuyd: https://wiki.ubuntu.com/Launchpad21:18
OerHeksde-facto, tons of them21:19
OerHeks!ide21:19
ubottuProgramming editors/suites: Terminal-based: vi/vim, emacs - KDE: Kate, KDevelop, Quanta+, Umbrello - GNOME: gvim, gedit, anjuta, pida, monodevelop, geany - Others: eclipse, netbeans, qtcreator21:19
chuydOerHeks:  DPKG is the building tool, but what i'm  wondering is which building system is used to orchestrate the building for all the ubuntu packages21:19
acheronukchuyd: launchpad21:19
eelstreborTJ-, it is an error and it hangs (i waited 5 minutes) unless i use nomodeset21:19
eelstreborheh, it turns out it isn't the pc that i had ordered anyway21:20
OerHekschuyd, koji is exactly the same, why do you want to know and why did you not find such easy info?21:20
* chuyd reading acheronuk ty!21:20
chuydI'm never imagined that launchpad would handle the package building, i was reading through doccumentation but i found the way to do it manually with dpkg-buildpackage21:23
acheronukchuyd: well, it hands off to buildds hosted with (I think) openstack.21:24
lazr47TJ-:  yes it's a BusyBox 'initramfs' shell. /dev/mapper/vg1-root is indeed there according to 'ls /dev/mapper/vg1-root' 'vgchange -ay' gets 'WARNING: Failed to connect to lvmetad. Falling back to device scanning.' (has not returned to prompt after a couple of minutes)21:24
acheronukbuild farm: https://launchpad.net/builders/21:24
TJ-lazr47: ignore lvmetad, that is expected - that process doesn't start until the real root file-system and init is started21:25
chuydacheronuk: thx for pointing me to the right direction21:26
acheronuknp21:27
TJ-lazr47: if the node exists you need to check the file-system21:27
TJ-lazr47: as in "fsck /dev/mapper/vg1-root"21:27
=== daniel is now known as Guest17986
TheWildhello21:30
TheWildwhat was the name of a torrent downloading software that was already in Ubuntu right after installation?21:30
SlidingHornTheWild: transmission21:30
OerHekstype torrent in search ..21:31
SlidingHornHey TJ- if I install that kernel from Proposed, is there anything I need to do to make sure that it's the only package taken from that repo?21:31
TheWildhmm... :/   considering that I use i3 and thought I had mistyped a command21:31
TheWildokay, thanks SlidingHorn. Transmission doesn't seem to be installed on my computer.21:32
OerHeksktorrent, transmission, maybe some other tool, depending on the desktop21:32
eelstreborthis is interesting, the pc does have a nvidia pci  video card but it didn't show up on lspci or lshw21:33
TJ-SlidingHorn: hmmm, I'm not sure. We do have apt pinning but I'm not sure if we can deploy it that way.21:41
TJ-SlidingHorn: I suspect the apt_preferences "APT::Default-Release "bionic"; would do it combined with "apt-get install -t bionic-proposed <package-name>" to fetch the package from the (-t)arget distribution 'bionic-proposed' - assuming that is listed in the apt sources.list - you may need to test this hypothesis though!21:48
johnnyfiveHello, I have a question about a package.21:50
johnnyfiveWhoops, premature enter21:51
johnnyfiveAnyway, the package is 'iucode-tool', which exists in main as a package to install, however the sources are listed in restricted.21:51
johnnyfiveAFAIK, this shouldn't happen, the sources for any given package should exist in the same component as installation package.21:52
johnnyfiveIs this an error, an exception to the rule, or am I misunderstanding the apt ecosystem?21:52
johnnyfiveThis specific occurrence is in Bionic, I haven't investigated if this situation exists in other releases21:54
TJ-johnnyfive: it is due to it being an automatic import from Debian21:55
johnnyfiveTJ-, thanks for the response. What i'm reading from your statement is that this is intended (not a bug), so this situation could occur again.21:58
johnnyfiveand more specifically won't be fixed. Is there any other data that explains your statement further? They made this decision so it was copied here, or something else?21:59
TJ-johnnyfive: I'm trying to figure it out; it looks like it was originally (pre 2014) in multiverse around the time of the Vivid release, and then moved through 'main' to restricted' at version 1.1-122:03
johnnyfiveTJ-, roger, thanks.22:04
notbobdoleSo.. Anyone here using an Acer Nitro 5?22:05
TJ-johnnyfive: I wonder if in the 'main' > 'restricted' move someone forgot to update the binary pocket description. It's actually stored in the restricted pocket22:05
notbobdolehaving a horrible time to get the discreet graphics to be performant22:05
BrickedInTheHead7? The one with the plastic hinge caps but otherwise solid22:06
johnnyfiveAh, so it's supposed to be in restricted, that would make more sense22:06
notbobdolegetting about half the performance as the ryzen 2500u integrated graphics with an rx 560x22:06
notbobdoleBeen googling but I've not found anyone post how to get the switchable graphics fps to work22:06
BrickedInTheHeadyours is probably a lot newer. The casei s called that22:07
BrickedInTheHeadyou have to be plugged in to use power hungry GPU22:07
lazr47TJ-: 'fsck /dev/mapper/vg1-root' reports that i should use btrfs check as it's a btrfs volume. 'btrfs check /dev/mapper/vg1-root' seems to report that things are fine, no errors found. fwiw i followed a guide at some point a couple weeks ago and was able to mount and browse the disks from an ubuntu live iso boot session22:08
BrickedInTheHeadotherwise intergrated graphics have better performance22:08
notbobdoleBrickedInTheHead, have. Yup.22:08
TJ-lazr47: right, so this sounds like it may be an issue with btrfs detection in the initramfs22:08
notbobdole2500u raven ridge: 1190  ; radeon 560x: 46822:10
notbobdoleon glmark222:10
OerHeksnotbobdole, integraded might be better,  DRI_PRIME=1 glmark2 - for dedicated https://askubuntu.com/questions/1091846/how-to-switch-between-the-graphics-on-acer-nitro-5-with-amd-ryzen-and-radeon-56022:11
notbobdoleintegrated should be about 1/3rd to 1/5th the score of the 560 :/22:12
BrickedInTheHeadI dont suggest using doing that on ubuntu. You end up with horrible battery life and constant fiddling with configs =/22:12
TJ-johnnyfive: weird; it's actually in both main and restricted! see http://archive.ubuntu.com/ubuntu/pool/main/i/iucode-tool/  vs  http://archive.ubuntu.com/ubuntu/pool/restricted/i/iucode-tool/22:12
notbobdolehttps://unix.stackexchange.com/questions/470351/rx-560x-slower-than-integrated-vega-gpu-on-fedora-2822:13
notbobdoleLed me to here22:14
OerHeksBrickedInTheHead, borking battery life is a known issue, as the Dgpu cannot be switched off AFAIK22:14
notbobdoleSeems that the discrete graphics are in development still but there is a git kernel patch you can use.22:14
notbobdoleI gotta figure out how to swap to it though.22:14
notbobdoleOerHeks, thanks22:14
OerHeksand look for the Amdgpu-PRO driver..22:15
johnnyfiveTJ-, hah. That's even weirder. I'm in #debian and am starting a conversation there. Maybe there's a use-case for this behavior.22:15
BrickedInTheHeadUsed some tool to switch between gfx hardware, but required constant restarts. I would only consider that if necessary for work22:16
TJ-johnnyfive: 'restricted' maybe due to it containing Intel microcode; 'main' because it needs to be included on the installation CDs22:23
johnnyfiveTJ-, Hrm, so maybe intentional. Thanks for all the investigation. I'm going to dig further until i'm 100% sure this isn't just a bug. It is causing all sorts of headaches in our build pipeline.22:25
TJ-johnnyfive: at a time when the devs are awake, I'd ask in #ubuntu-devel. You may need to wait until next week now22:29
johnnyfiveThat's fine, not urgent. Thanks again for your help TJ-22:31
=== coffeeguy is now known as zenguy
tomreyni think that at least since meltdown / spectre, the kernel packages depend on intel-microcode, and either directly or indirectly on iucode-tool. so at least since then one would want to make sure that any form of distribution which provides a kernel package also provides the others. not sure this explains it, though.22:38
TJ-tomreyn: I wondered that, but it seems like it has been like this since 201422:38
tomreynthis is a lot earlier indeed.22:39
TJ-tomreyn: weirdest is having it in 2 different distro sections simultaneously22:39
donofrioClient: HexChat 2.14.1 • OS: Ubuntu "bionic" 18.04 • Memory: Physical: 5.0 GiB Total (1.9 GiB Free) Swap: 2.4 GiB Total (1.4 GiB Free) • Storage: 66.7 GB / 174.3 GB (107.7 GB Free) • Uptime: 21h 22m 35s22:39
TJ-tomreyn: Just when I thought I finally understood archive organisation (only taken 14 years!)22:39
tomreynIIRC the intel microcode update mechanism somehow broke around that time and was repaired a while later.22:40
* tomreyn doesn't claim to understand it yet ;)22:40
tomreynat some (recent) point i thought main would only contain GPL'd software, so filed a bug and then learnt i had misunderstood.22:42
tomreyns/software/packages/22:43
=== capella is now known as capella|away
infogulchhi! I upgraded from 16.04 to 18.04 and I'm running into some issues with sshd. i went through and commented out the deprecated options and the service isn't logging those errors on startup anymore, but i'm still having trouble with agent forwarding. whenever i log in i get this error: `ln: failed to access '/home/infogulch/.ssh/ssh_auth_sock': Permission denied`22:48
infogulchwhich looks like:    lrwxrwxrwx 1 root root   33 Dec  6 20:19 ssh_auth_sock -> /tmp/ssh-[stuff]/agent.2230022:50
infogulchany ideas?22:51
pragmaticenigmainfogulch: Are you trying to login as root?22:53
infogulchnope22:53
infogulchlogging in as my normal user22:54
pragmaticenigmai see that now.. .missed the user name in the path22:54
infogulchi don't know, but is it weird that that link is owned by root?22:54
pragmaticenigmainfogulch: I would restore your back up of the config file and look at the difference... Just because something is deprecated, doesn't mean it's a security vulnerability. what you were seeing were warnings, merely there to inform you that a feature may be removed in the future.22:56
pragmaticenigmaSomething that you removed is relied upon by Ubuntu's default configuration of openssh22:57
geniikey based auth to ssh22:57
infogulchwell i had this issue first, and when i went digging around in the logs for an explanation i saw those warnings so i fixed them, but this key forwarding issue is still here22:57
infogulchso i don't think the warnings are related, not directly at least22:58
infogulchbecause it had issues before and after fixing them22:58
pragmaticenigmainfogulch: Again, something that you commented out may have resulted in something else breaking. It is entirely possible. You made a massive number of changes and it this point, it is best to go back to square one and start one-by-one making changes and noting what did and did not change.22:58
infogulchok22:59
Sven_vBhi! what's the best way in bionic to manage gnome-terminal settings from the command line/in a shell script?23:24
Sven_vBI found https://askubuntu.com/questions/967517/backup-gnome-terminal but my dconf setup seems to no longer work and I read in another post it's now gconf again23:25
Sven_vBoh! seems like dconf does work and I just had a misspelling.23:28
blackbird1hi23:31
Sven_vBdoes anyone know why, when I create a new profile with the gnome-terminal that shipped on the bionic live ISO, those new profile's settings are saved in "legacy/profiles:…"? shouldn't "legacy" be just for old stuff?23:31
blackbird1I can't install ubuntu on asus rog ? many errors.23:32
BrickedInTheHeadUEFI/Legacy mode? blackbird123:33
Sven_vBblackbird1, try to get help with each of the errors one at a time. start with the first one.23:33
blackbird1this is the 1st one:23:34
blackbird1Couldn't get size: 0x800000000000000e23:34
blackbird1MODSIGN: Couldn't get UEFI db list23:34
blackbird1Couldn't get size: 0x800000000000000e23:34
Sven_vBblackbird1, what kind of device did you boot from?23:35
Sven_vBor rather, try to boot from23:36
blackbird1Sven_vB, usb derive23:36
Sven_vBwhich version of Ubuntu did you put on that USB drive, and which method did you use to put it there?23:36
blackbird1Sven_vB, 18.04 LTS23:38
blackbird1Sven_vB, I used Rufus to extract the iso in the usb23:39
Sven_vBblackbird1, did you follow a tutorial on how to use Rufus? could you post the link?23:40
Sven_vBI just remembered I had a similar problem with an Acer AOD once. it's probably not the best solution but worked for me: to just rename the "EFI" directory on the USB drive to a bogus name so the BIOS would use the old boot mechanism.23:43
Sven_vBif it doesn't work you can just rename it back to EFI.23:44
Paddy_NII am having a really annoying issue, I am trying to burn some WAV files that I had previously ripped some months back. As soon as I click on "Burn" in either k3b or brasero (tried on two separate computers - one running Ubuntu 18.10 and the other Ubuntu MATE 18.04) it immediately fails and ejects the disc?23:46
Paddy_NII have tried playing the files and had previously successfully burned many discs with these particular files, they play perfectly in whatever media player you point them at23:47
Paddy_NIAnd I have used multiple different CDR media23:48
Sven_vBPaddy_NI, maybe the WAV has some strange header that brasero can't understand. you could try importing it into audacity and then export it again as WAV.23:52
Paddy_NISven_vB, That sounds interesting, worth a shot I suppose :-)23:53
Paddy_NICheers23:53

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