[00:00] The misses is threatening to pull the main fuse in the house now tho, it's 1AM here ^^ Big thanks to you tho! [00:01] Have a great night everyone! I'm gona sleep so good now that this is resolved haha. [00:01] DoXiD: g'night... midnight here, I'll escape now too! [00:02] *waves* /zz === daniel is now known as Guest19834 [00:03] I've been trying to change 18.04 Desktop to use systemd-networkd using netplan, rather than NetworkManager but it doesn't receive broadcasts (the most annoying consequence being no ARP requests, so I have to ping a client from the machine before the client can ping back). I've searched online for hours and confirm subnets are OK, same driver is in use, permissions OK on .network file, etc. What am I missing? :( [00:04] timmi92: that sounds extremely weird [00:06] any network guru's in the house [00:07] timmi92: is it ethernet wired, or wireless? [00:08] TJ-: yeah very weird, it's wireless. I've posted a bunch of configuration info on askubuntu here if that's helpful: https://askubuntu.com/questions/1095566/18-04-desktop-doesnt-receive-arp-requests-when-configured-with-netplan-and-netw [00:09] timmi92: why can't you use Network Manager? [00:11] TJ-: I guess I can haha, I just started following guides for DHCP & DNS which used networkd instead, then when it didn't work it just motivated more investigation [00:12] I dislike how on my Ubuntu 18.10 machine that pressing shift-ctl-ctab doesn't quickly jump me to the tab on the left. [00:12] timmi92: OK, In your AU you say "... | askubuntu here if that's helpful: https://askubuntu.com/questions/1095566/18-04-deskto [00:12] │ [00:12] blow! [00:12] timmi92: you say "... created /network/interfaces/config.yaml ..." [00:13] timmi92: is that path correct? should that be "/etc/netplan/config.yaml" ? [00:14] TJ-: you're good! that's a typo, it's at /etc/netplan/config.yaml [00:14] timmi92: also in the systemd-networkd /run/systen/network/10-netplan-wlp3s0.network you've got "Name=w1p3s0" <--- notice that says 'w1' (one) not 'wl' eL [00:15] i have a cloud base vpn server configured, i'd also like to configure it as a dns server? [00:15] timmi92: did you not copy-paste that? [00:16] timmi92: when it is having problems, run "ip link show; ip addr show; ip route show" [00:19] TJ-: damn, that's another typo I didn't copy-paste. https://paste.ubuntu.com/p/gB8wbqvGS6/ [00:21] timmi92: you notice there is no default route [00:23] timmi92: are the clients in the 192.168.135.0/24 sub-net ? [00:24] timmi92: I've seen this kind of thing recently, and it was caused by flakey Cisco APs [00:24] TJ-: oh there's another typo in my static netplan - 193 instead of 192. Yep all in that subnet. I'm going to switch back to dhcp, goodness knows what else I've mis-typed. I noticed after that post that networkctl shows 'configuring' status on that interface, but when I stop NetworkManager and restart systemd-networkd, that shows [00:25] TJ-: 'configured' instead. I wasn't able to disable NetworkManager completely though via systemctl disable [00:25] timmi92: "sudo systemctl mask network-manager.service [00:27] timmi92: also, one command I forgot you'll find useful: "ip neigh show" [00:30] TJ-: will try mask. Also it's a cheap TP-Link AP [00:31] timmi92: if the interface is getting a DHCP lease, but not seeing ARP requests, that suggests some issue with the wireless link [00:33] timmi92: have you confirmed that systemd is connecting using the same frequency, especially if the AP offers dual-band [00:34] timmi92: I'm wondering if you've got problems due to how NM and networkd handle wpa_supplicant [00:34] I have a Ubuntu server. A process is crashing. "Aborted (core dumped)". All I want to do is see the core dump. How do I do that. [00:34] I've read everything I can find on Apport and ulimit and w/e. [00:35] erisco: if there is a crash captured it'd be in /var/crash/ [00:35] well, there is nothing there [00:36] TJ-: Yes same frequency, and two win 10 machines on different frequencies can still reach each other. I did sudo systemctl mask network-manager.service and restarted but systemctl status NetworkManager still shows active (running) [00:38] TJ-: if I do systemctl stop NetworkManager and systemctl restart systemd-networkd, clear my windows ARP cache and ping the ubuntu machine it works. [00:38] timmi92: do you have a "ls -l /etc/systemd/system/network-manager.service -> /dev/null" [00:39] timmi92: right, so you've got systemd-networkd and NM fighting over controlling the wifi :) [00:39] timmi92: masking a unit simply creates a symlink to /dev/null for the unit in /etc/systemd/system/ [00:40] TJ-: yep just double checked and I have network-manager.service -> /dev/null [00:40] timmi92: in which case network-manager should not be able to start at all [00:40] TJ-: silly question... but is network-manager and NetworkManager the same thing? [00:41] timmi92: lrwxrwxrwx 1 root root 22 Nov 2 19:06 network-manager.service -> NetworkManager.service [00:42] TJ-: ok cool, so I just need to disable NM, which is already disabled haha [00:42] TJ-: yet runs... [00:42] timmi92: what does "systemctl status network-manager" show ? [00:43] so if there should be a log in /var/crash and there isn't, why would a crash not be captured? [00:44] oh damn there it is finally, in the same directory I ran the program in [00:44] timmi92: "sudo systemctl mask NetworkManager-dispatcher.service" [00:44] TJ-: Loaded: masked (/dev/null; bad), Active: inactive (dead) [00:44] enabling apport must have finally worked [00:44] now why I decided to cat it is beyond me [00:44] timmi92: and possibly "sudo systemctl mask NetworkManager-wait-online.service" [00:45] erisco: right, apport collects in /var/crash/ but regular crash-dumps are written (only if there is permission to write) into the directory the process ran from [00:46] TJ-, well it wasn't doing it initially, and then I did a lot of stuff trying to enable crash reporting [00:46] and I guess somewhere along the line it started working [00:48] erisco: firstly /etc/security/limits.conf for '$USER {soft,hard} core {0,1}' [00:49] that was ulimit which I said, I think [00:49] TJ-: it works! required all three to be masked [00:50] erisco: right, that's the other one, often set via /etc/profile.d/... [00:50] timmi92: so they were arguing [00:51] TJ-: do you know why they would've been fighting over the interface? I understood setting up networkd in netplan and removing the NM netplan would do the trick [00:52] timmi92: not sure, but I suspect you have a residual static config in /etc/NetworkManager/system-connections/ [00:52] TJ-: and when I did that, nm-gnome showed the interface as unmanaged from memory [00:52] TJ-: oh of course! that is still there [00:53] timmi92: there you go then :D [00:53] TJ-: so in theory, I could remove the config from /etc/NetworkManager/system-connections/ and unmask NM and my understanding would be correct. Although there's no need for this if I don't need NM of course. [00:54] TJ-: my understanding that nm will leave it alone [00:59] TJ-: thanks so much for your help, I spent an embarrassing number of hours trying to figure it out. How do I refer to the irc log when I answer the AU? [01:06] timmi92: no need to, just self-answer [01:09] TJ-: thanks again! I will certainly be back to hopefully return the favour to others [01:10] Hi, some time ago I messed up my dpkg and now I get a warning message like: 'files list file for package 'X' missing; assuming package has no files currently installed'. How can I recompile the information again? [01:10] Does anyone here ever used MacOs? [01:10] /used/use [01:11] I noticed that the default keyboard shortcuts in macos are more optimal than in ubuntu [01:12] on the mac you have 'cmd' 'alt' 'shift' 'ctrl' [01:12] but not one key is mapped to dumb app switcher, as in ubuntu [01:12] so on macos, you can 4x3x2x1 combinations [01:12] but on ubuntu only 3x2x1 combinations [01:13] (because one key is hijacked by that menu item, in ubuntu) [01:42] Can I expect a Ubuntu-oriented GTK theme to work on official flavors? (what CAN'T I expect this behavior of?) [01:43] does anyone here know how to find your HexChat logs on ubuntu? === [ghost] is now known as ghostboarder [01:49] QuirkyCarla, open settings > logging, standard would be .config/hexchat/logs iirc [01:51] yes, under the home directory (hidden) unless otherwise. === Tin__man is now known as Tin_man [01:58] thaks [01:58] thanks* [02:19] is there such thing as a multi architecture installation, or any crafty way to achieve it using a common home directory [02:22] Sterist: some links - https://wiki.ubuntu.com/MultiarchSpec , https://wiki.debian.org/Multiarch/HOWTO , maybe also https://askubuntu.com/questions/3446/how-to-create-and-administer-multi-architecture-ppas/3455 [02:23] isn't a PPA a repository / package host server? [02:23] been a while, I may be mistaken. [02:25] PPA is a personal package archive (not a respository; it's up to you to verify the author can be trusted, supports your distro etc..) - https://help.ubuntu.com/community/PPA [02:26] all the audits/steps/checks made before things make it to a repository are NOT done for PPA's - it's up to the user/owner of the PPA to do it.. (personal!) [02:28] my idea was to set up my new external hdd with an Ubuntu installation for each architecture but share the same /home mount point, so regardless of what it's connected to it would boot, and always utilize a same personal space [02:29] I'm going to set this aside though. perhaps another day [02:29] what has that to do with PPA? (ppa is a 3rd party place to get software, like you do a repository; not on your local machine) [02:31] the link you had provided was regarding a PPA server [02:31] yes you can share /home partition; I've done it before; however decided it was more hassle than it was worth (if you have different versions of software being used; they can make changes that make the other version claim it's invalid.. i had issues with evolution when one using shared $HOME was updated, the other wasn't running much much older software).. i share specific folders only now, not all of /home [02:31] but that's okay, no worries :) [02:32] and yeah I see what you mean [02:32] yeah sorry, I concentrated on the multi-architecture .. [02:32] I'm trying to get talk/talkd to work, but can't even between users on the same machine. Google > change /etc/inetd.conf, but still no joy. Does anyone know what to do? [02:42] I was reading the hexchat documentation and it suggested a particular gtk theme as an example that seemed to fit my needs pretty well. https://hexchat.readthedocs.io/en/latest/appearance.html#gtk-theme Now I can't for the life of me successfully do apt-get update except with the --allow-unauthenticated option and I can't figure out how to clear this key out to make it work again [02:43] I've already discovered apt-key del but [02:43] it says it isn't signed at all so [02:44] I don't care about this specific theme! I just want to get it out and move on [02:48] in /etc/apt/sources.list there's not even an antry for it! ugh! [02:52] Gigabitten, does this help? https://askubuntu.com/questions/604988/how-to-remove-a-apt-key-which-i-have-added [02:53] the nuclear rm bit in particular [02:55] fassl: YES! I couldn't get the sig of the relevant key to show up with just apt-key list [02:57] oh so the sudo did it then?= [02:57] this is an rsa2048 key, uh, do I put that big long string of hex into apt-key del? [02:58] no clue, this one guy just deleted the file it seems [02:59] lol [02:59] okay, pouring the expired rsa key into apt-key delete didn't work [03:02] try to just put in some first few characters which would already make it distinct in your particular case [03:03] no dice [03:04] but this relatively nuclear option does seem promising [03:05] ooh that's bad === zanshin_ is now known as zanshin [03:05] * fassl hides [03:05] lol it's ok [03:06] has anyone got Wickr Me to work on Ubuntu 18.10 ? [03:06] grepping for Horst (which should show up in anything relevant to this) doesn't provide any results... [03:06] Wait! Finally, something! It's here in /etc/apt/sources.list.d [03:08] and it's not in /etc/apt/sources.list [03:08] uh, that means I should be able to take it out of sources.list.d and things would work... .... right? [03:09] wait [03:09] this is a directory [03:09] wtf [03:09] no wonder I couldn't edit it in emacs [03:09] WHY CAN YOU OPEN A DIRECTORY IN EMACS [03:09] remove the file from this dir and do apt update [03:10] why wouldn't you can! :P [03:10] phew [03:10] that worked [03:10] emacs is an os nevertheless, i heard [03:11] *read [03:11] thanks for the tangentially helpful link [03:11] can you seriously use emacs as an os [03:11] that's uh [03:11] terrifying? [03:11] exhilerating? [03:11] idk [03:11] it was the first hit on google when searching for force remove apt key or something, cannot remember was already 10 minutes ago [03:11] damn it [03:12] "force remove apt key" is such good search terms [03:12] +1 [03:12] my google-fu is not very good [03:12] lol [03:12] like "force peace" or something, one would not think of that [03:13] someday I will learn the arts of the google fu masters, that it is not the crazy syntax constructs, but simply good keywords that get you the right result [03:14] is this on this server [03:14] +karma fassl [03:14] or whatever [03:15] fassl++ [03:15] whatever [03:16] you did good, thanks [03:16] thaha np, glad it helped though [03:17] for sure. keep up the awesome work! === deathonater is now known as Smeef [03:27] hi all. is there a way to get network-manager-l2tp in cosmic (18.10)? [03:28] Gigabitten, i dont work here, i just hang out ;) TJ- is like _the_ supporter here from what i can tell, if anything, thank him [03:28] nevermind, they were nice enough to roll it into the main repos! [03:29] Gigabitten, because if he (?) would have been here, he would have helped [03:30] so what'd i do wrong here? https://tinyurl.com/ycxtuosw hw info at http://paste.ubuntu.com/p/8ShhhdJsr5/ [03:38] fassl: actually, tj was the one who helped me diagnose an issue I had where my efi files had to be "trusted" in order to work! heh, that was just a few days ago === [1]MrMobius is now known as MrMobius [03:50] My mouse stopped working after a reboot (Logitech G502). It works fine in windows though. Doing lsusb I see it listed and xinput shows the mouse attached. If I attach a different mouse (wireless) the cursor moves [03:51] Gigabitten, nice, i wouldnt expect anything else, let thy executables be blessed by the lord [03:51] lord being a placeholder for whatever you might put in there [03:51] *good things [03:57] Hmm plugging the keyboard (both mice are plugged into the keyboard's hub) into a different usb port seemed to have fixed the issue which is quite odd [04:16] i can just think of udev rules maybe not applying because it is a different port === capella|away is now known as capella [04:29] I have a new asus motherboard and I need to install drivers for ethernet and audio, but I can't find the drivers online + the additional drivers tab shows me that there is nothing to install. I am checking for proprietary drivers. I'm using 16.04 [05:40] I'm trying to get talk/talkd to work, but can't even between users on the same machine. Google > change /etc/inetd.conf, but still no joy. Does anyone know what to do? [05:43] How can I change the shortcuts for copy, paste, select all etc in Ubuntu gnome? I am searching with dconf-editor but can't find these keybindings === capella is now known as capella|away [06:18] hello, I have a quick question. (accidentally asked this in the unreg channel before) There is a fix I need in jdk8 191. I see it is in debian experimental currently. Does that generally mean it will end up in the ubuntu repos soon? I wasn't really sure how that worked. [06:18] jorian, not necessarily. [06:19] ah, gotcha. I guess in that case, is there anyway to find out if that fix will make it into 18.04? [06:19] few if any debian experimental packages are available in ubuntu repos. if you truly need the latest/greatest/shiny packages, consider compiling from source [06:19] also, the pacakge may/may not be brought into backports [06:21] cfhowlett, is there a simple way to set your system up so no binary packages gets installed but everything is built from source ? [06:21] wha ... why ... errr, yes? [06:21] linux from scratch project would do that, I think [06:22] 100% of the packages for my system is built wrong with the exception of the kernel [06:22] there is a distro for that i think [06:22] "wrong" means ... ? [06:22] i wish [06:22] or use gentoo, probably about 1 tree worth of carbon emissions for every emerge world [06:22] no bootloader [06:22] re GenToo [06:23] that's not wrong, that means the user didn't select/configure the bootloader at install [06:23] cfhowlett, wrong as in ppc as opposed to ppc64 [06:23] ohhhhh taht [06:23] yaboot doesnt build on gentoo [06:23] my gosh, PPC machines are still running?! [06:23] Aye [06:24] * cfhowlett salutes! [06:24] atm running FreeBSD though [06:24] guys keep on ubuntu topic [06:24] we have a nice #ubuntu-discuss if you like [06:25] sounds good === kallesbar_ is now known as kallesbar [06:44] hi [06:53] !ping [06:53] pong! [06:54] it's a support channel. ask no questions, get no answers. [06:55] okay sorry [07:08] how do i upgrade my kernel version? [07:09] gambl0re: sudo apt update && sudo apt full-upgrade [07:17] lotuspsychje, that will upgrade to the latest kernel? [07:18] is it recommended to use the latest kernel? i want to improve my battery life. do you think upgrading the kernel will help? im currently running 4.15.0-39-generic [07:37] Hello, if I take a HDD where I have my ubuntu installation to another computer, its not supposed to work ? [07:39] Dro: if it's uefi it needs a little tweaking [07:42] EriC^^: well I just cloned my whole hard drive (All partitions) into an USB hard drive and tried to use it in another computer, but when I select the USB HD nothing happens (the default system boot) [07:42] Any idea how can I do to make this works? [07:42] Dro: are you booted into ubuntu right now? [07:44] EriC^^: yes [07:44] BTW I have Ubuntu in both computers [07:44] Dro: type "ls /sys/firmware/efi" [07:44] on the one you cloned [07:45] EriC^^: https://pastebin.ubuntu.com/p/yZyHJJndSh/ [07:45] is it recommended to use the latest kernel? i want to improve my battery life. [07:45] Dro: ok, so it's uefi [07:46] Dro: plug in the usb you cloned and type "lsblk" [07:46] EriC^^: https://pastebin.ubuntu.com/p/wGx94VZbnM/ [07:47] The original is sda , and the clone is sdc , (sdb is an other disk) [07:47] hmm can you type "sudo parted -ls" [07:49] EriC^^: https://pastebin.ubuntu.com/p/826Kbgmbwc/ [07:49] gambl0re: use the latest kernel that comes with your release of ubuntu, thtat is the recommended one [07:49] Dro: ok, type sudo mount /dev/sdc3 /mnt [07:50] gambl0re: (and the only supported one) [07:50] EriC^^: done [07:51] Dro: btw it's only using 128gb since the partition table is cloned, you can fix it to use the whole 1000gb [07:51] EriC^^: my source partition is only 128gb [07:51] thats why it used only 128gb i guess [07:51] Dro: type "for i in /dev /proc /sys; do sudo mount -R $i /mnt$i; done" [07:52] yeah [07:52] easy enough to fix though [07:52] EriC^^: in the cloned disk ? [07:52] yes [07:52] ah thats ok [07:52] why not [07:53] EriC^^: done [07:53] Dro: sudo chroot /mnt [07:53] 'E: The repository 'http://ppa.launchpad.net/enlightenment-git/ppa/ubuntu bionic Release' does not have a Release file. N: Updating from such a repository can't be done securely, and is therefore disabled by default' [07:54] what does this mean? [07:55] Dro: done? [07:55] DarwinElf, trying to upgrade a ppc install ? [07:55] EriC^^: yes [07:55] DarwinElf: it means that ppa is not updated and has no paxkages for your ubuntu version, find another ppa or contact the maintainer and ask for updates [07:55] Dro: type "mount -a" [07:55] EriC^^: this will change root directory? [07:55] Dro: yeah [07:56] okey, done [07:56] Dro: grub-install --removable [07:57] EriC^^: https://pastebin.ubuntu.com/p/cW5qjVKpG7/ [07:57] no command found [07:57] grub with a "b" [07:58] lol [07:58] sorry :P [07:58] :D [07:58] EriC^^: Installing for x86_64-efi platform. [07:58] Installation finished. No error reported. [07:59] this is working in the cloned disk only, right? [07:59] or for both [07:59] Dro: type "ls -R /boot/efi/efi" [07:59] Dro: yeah cloned disk only [08:00] is it a flash disk or a spinning disk? [08:00] EriC^^: https://pastebin.ubuntu.com/p/Nrr4nTJg22/ [08:00] WoC, no. Ok, found a better one [08:01] its a USB disk [08:01] i don't have a PPC. Ok, thanks, bye [08:01] Dro: wow didnt nknow they mae them 1000gb [08:01] EriC^^: yes its a usb hard disk lol :D [08:02] i mean a spinning one? [08:02] or an electronic? how big is it :D [08:02] EriC^^: well not sure about this :| [08:02] Dro: type "cp /boot/efi/efi/ubuntu/shimx64.efi /boot/efi/efi/microsoft/boot/bootmgfw.efi" [08:02] EriC^^: it look like this https://consumer.apacer.com/eng/content.php?sn=908 :p [08:03] Dro: lastly type "ls -lR /boot/efi" [08:04] Dro: the reason i ask is that if it's an actual flash disk it would die quickly qith an os running on it, so it's more reason to use the whole 1000gb as the main root fs so it uses less sectors each time [08:05] aha ok, but i guess that 128GB is quiet enough for a Ubuntu system , not ? [08:06] EriC^^: last command output : https://pastebin.ubuntu.com/p/DqbyXS83fW/ [08:07] nice [08:08] How do I create a conf file for apt-sortpkgs such that it lists fieds in user defined order? [08:09] Dro: yeah but why would you not use the full 1000gb [08:09] EriC^^: I was planning to use the rest of disk for some backup :D [08:10] Dro: well that's what i mean, you cant right now cause the partition table is cloned [08:10] i was talking about fixing that so you can use the rest of the space :P [08:10] EriC^^: there is "free space" there, it must be not allocated [08:10] I guess I can add a new partition using that space,not? [08:10] you can't allocate it my friend [08:11] no, you have to recreate the partition table (erase and recreate with same starting sectors for current partitions) [08:11] right now the partition table thinks the disk ends at 128gb, so you cant create anything after 128gb [08:11] hmm I though things are much easier then this :P lol [08:12] it won't appear in gparted then ? [08:12] gdisk might have a setting that can do this for you [08:12] first type "exit" in the chroot [08:12] done [08:12] type "sudo umount -R /mnt" [08:13] umount: /mnt/dev/pts: target is busy [08:13] (In some cases useful info about processes that [08:13] use the device is found by lsof(8) or fuser(1).) [08:13] nevermind [08:13] ok [08:13] Dro: try "sudo gdisk /dev/sdc" [08:13] see if it offers to fix the partition table for you [08:14] EriC^^: https://pastebin.ubuntu.com/p/hs5HGY2VPF/ [08:15] which command should I use [08:17] EriC^^: btw, I can see the unallocated space using the "Disks" UI, and there is a "create partition in unallocated space" button [08:17] should I try this? [08:18] Is there a way to disable touchpad acceleration in 18.10? [08:18] gnome tweaks was able to set the profile to 'flat' in 18.04, but it doesn't seem to do anything in 18.10 [08:19] fengshaun: see the 'xset' man page, the 'mouse' option [08:19] ducasse, tried, no go [08:19] hmm, it should work afaik [08:20] Dro: try sudo parted /dev/sdc [08:20] it's extremely irritating [08:20] EriC^^: and then ? [08:21] Dro: did it offer to fix anything? [08:21] Dro: press ctrl+c then try sudo parted -l /dev/sdc [08:21] EriC^^: no just a command-line [08:21] yeah it offer fixing now [08:22] EriC^^: https://pastebin.ubuntu.com/p/8SMyzjxrpk/ [08:22] Thats the one you mean ? [08:30] How do I create a conf file for apt-sortpkgs such that it lists fieds in user defined order? [08:32] EriC^^: its fixed now, thank you bro ! :) [08:38] EriC^^: we're done with the boot issue ? [08:46] Dro: yeah we are [08:46] Dro: be sure to set the other pc to uefi mod [08:46] *mode [08:47] EriC^^: ok i'll try and get back to you, thank you again!! ~ [08:47] Dro: ok, no problem [08:50] EriC^^: First try, asking me for passphare.. looks like it will work .. waiting.. :D [08:56] EriC^^: still waiting, about 8 minutes gone [08:56] black screen [08:56] well at first i saw something like "/boot/.. .not found" [08:56] and after few seconds ubuntu loader, and then it asks me for passphare [08:57] now black screan :| should I wait or reboot ? [09:00] Ok after +10 minutes of waiting, i'll force shutdown and try with my source computer === Class7_ is now known as Class7 [09:19] How do I check whether I'm on 18.04 or 18.10? === imsurit_ofc1 is now known as imsurit_ofc [09:24] Hi again [09:24] EriC^^: still there? [09:25] Look like the passphrase I entered was invalid [09:25] Anyway to reset passphrase or recover it ? [09:48] what text-to-speech systems are available from the Ubuntu repos? [09:49] by that I mean engines [09:49] which one are recommendable for English and for other European languages (German, French)? [09:49] leonardus: lsb_release -d [09:49] thanks [09:50] erle-: i know about orca [09:58] I forgot my passphare, how can I recover it please ? [09:58] Dro: https://help.ubuntu.com/community/LostPassword [09:59] luna_, which one is Firefox using? it has one built in [10:00] erle-: Mozilla TTS i did not know this until you told me [10:00] luna_, orca just seems to be a front-end btw, not an engine [10:00] ah sorry [10:00] luna_, you have to switch in "reader mode" [10:00] leonardus: I have the password [10:00] icon in address bar [10:01] I just forgot the passphare (for encrypted home) [10:01] erle-: cool then i learned something new about Firefox today :) [10:01] passphrase* [10:01] orca has the same voice as firefox [10:03] Hello all, I get ldlinux32 i get when i try to boot from usb [10:03] Dro: if you've lost the passphrase the data is probably lost too [10:03] Dro: that's sort of the point of encryption [10:04] Dro: Depending on how strong the passphrase is, you can try to brute force it. [10:04] But that's really your only hope. [10:05] ducasse: in fact i'm trying to use my disk in another computer, and its asking for passphrase [10:05] thats why I need it [10:05] but I can login to my session in my computer wihout problem :) [10:07] any idea guys ? :( [10:09] Dro: you just had your answers from volunteers [10:28] lotuspsychje: thats ok thanks :) [10:29] Does this line "/dev/mapper/cryptswap1 none swap sw 0 0" have to be commented or uncommented under /etc/fstab ? [10:52] How do I create a conf file for apt-sortpkgs such that it lists fields in user defined order? [10:53] Solved the message asking for passphare with the first comment here https://askubuntu.com/questions/946864/cryptswap1-messages-after-reseizing-root-partition [10:53] The message disappeared now, but still not able to get in my Ubuntu system.. black screen there [10:54] EriC^^: are you there? [11:12] How do I create a conf file for apt-sortpkgs such that it lists fields in user defined order? [12:12] I have Ubuntu installed in my internal hard drive, and Ubuntu installed in my external hard drive.. after doing update-grub in my external drive it looks like it configured the sda3/ as itself (while it belong to my internal drive) [12:12] So any time i try to connect to my USB external drive it redirect me to the internal instance :| [12:13] any idea how to fix this ? [12:19] Dro: so, you ahve two disks, both having Ubuntu installed, both having grub on them? [12:20] Hi folks [12:21] blackflow: I guess so, the first (internal) with 14.04 and the external 16.04 [12:21] I run update-grub in the external instance (16.04) , and after reboot when I choose external USB drive I get redirected to the internal one (14.04) [12:22] Dro: choose where? bios menu? [12:22] blackflow: yes boot menu [12:22] I can choose either my internal hdd or my external one [12:22] but now after grub-update it always go to the internal one (sda) [12:22] thing is, if you have multiple grubs you'll have problems. if both disks are mounted during any kind of grub-update run, os prober will find them and cause a mess. Ideally you should limit yourself only to a single grub instance. [12:23] blackflow: any idea can I remove this configuration using chroot ? [12:23] I must modifiy my external instance grub [12:25] Dro: depends on what you want exactly. not sure you even need chroot. I'd guess you wnt your internal disk to be the "normal" one? with bios_boot (I'm assuming GPT) and the grub menu? [12:27] blackflow: what I want to do is: when I choose external drive in the boot menu I get the ubuntu instance for that drive [12:27] currently the grub of my external drive is redirecting me to /dev/sda (which is my internal drive) [12:27] .1 [12:27] oops sorry [12:29] Dro: well, in order to fix the external drive grub menu, yeah you'll have to mount the external drive's root (and /boot if it's separate) in a chroot and run grub-update in there, so it sees only the mounted paths from the external drive [12:31] I am using ubuntu 18.04 onto an ARM embedded board. Now Y wish to install gambas3, (I already did of course apt update) I do the usual apt install gambas3 but apt does not find the package. I see in /etc/apt/source.list there is http://ports.ubuntu.com/ bionic main restricted universe multiverse. if I use a web browser and go to http://ports.ubuntu.com/pool/universe/g/gambas3/ I see all the .deb I need. but apt seems not found them. Am I doing something [12:31] wrong? [12:32] Dro: and if I understand your setup correctly I think you'll need to disable the grub OS prober so that the future grub-update runs don't see the internal drive and mess with the menu. For that, set GRUB_DISABLE_OS_PROBER=true in /etc/default/grub [12:33] Dro: on the external drive. You might wanna do that on the internal too, if you think you'll have them both mounted when grub-update is run in the internal disk boot session [12:33] blackflow: after using chroot, and doing update-grub in the external drive: the output shows "Found Ubuntu 16.04.3 on /dev/sda1" [12:33] !gambas3 bionic [12:33] !info gambas3 bionic [12:33] and thats wrong, /dev/sda1 contains ubuntu 14.04 which is my internal drive [12:34] Package gambas3 does not exist in bionic [12:34] !info gambas3 xenial [12:34] gambas3 (source: gambas3): Complete visual development environment for Gambas. In component universe, is optional. Version 3.8.4-2ubuntu3.1 (xenial), package size 9 kB, installed size 38 kB [12:34] should I edit the grub manually? [12:34] premoboss: looks like there's no gambas3 for bionic [12:34] Dro: no. how did you run the chroot? did you mount all the special filesystems like /dev, /sys and /proc ? [12:35] blackflow: yes I do [12:35] blackflow: I have done this: mount /dev/sb3 /mnt [12:35] and then : for i in /dev /proc /sys; do sudo mount -R $i /mnt$i; done [12:36] Dro: can you check inside the chroot if /proc/self/mounts shows root mounted correctly (from the external drive)? [12:37] blackflow: no 'root' inside that file [12:38] blackflow: but the partition (/dev/sdb3) is there [12:38] is normally its proper [12:38] so* [12:39] no there's no "root" keyword, but it'll show something like /dev/sdb3 / rw,relatime,...... so that second component, / , means root [12:39] Dro: and did you set the GRUB_DISABLE_OS_PROBER=true in /etc/default/grub ? [12:39] blackflow, look to that web path, there are all the .deb of gambas3. [12:40] !info gambas3 bionic [12:40] Package gambas3 does not exist in bionic [12:40] strange. [12:41] right. the deb file might be on the ports. repo but not for bionic [12:41] blackflow, there is a way to install those packages? maybe have i to pass some parameters to apt? [12:42] blackflow: no i have to add GRUB_DISABLE_OS_PROPER=true ? [12:43] premoboss: you could try backport it from the 19.04's src deb. [12:44] blackflow, i mean, there is a way to isntall from http://ports.ubuntu.com/pool/universe/g/gambas3/ ? this link is present in my /etc/apt/source.list. [12:44] Dro: I would guess the os prober is the one that finds your internal installation and adds it to the grub menu, so I'd suggest you disable it, yes. meanwhile, you can pastebin the outputs of: 1) blkid and 2) /boot/grub/grub.cfg from inside the chroot [12:45] seems there's like an ubuntu gambas pps too https://launchpad.net/~gambas-team/+archive/ubuntu/gambas3 [12:45] premoboss: you can't just take any .deb and install it. I mean, yeah you can try, but packages are built for specific environments, library versions, etc... so no, you can't just use any .deb [12:45] ah nice, if there's a PPA, use that [12:45] but i'd investigate first why it was dropped for Bionic and then reinstated for the dancing doggo [12:49] how to install gambas from PPA or backports? [12:49] blackflow: http://pastebin.ubuntu.com/p/tpqb5yDKP3 [12:49] ah, i see info in webpages. ok [12:50] blackflow: (sdb3 contains my external drive ubuntu) [12:51] btw I have done a update-grub after adding the disable os prober line [12:51] should I re-try now? [12:52] Dro: that looks like grub is confiugred too boot from /dev/sdb3 and use it as root. [12:53] Dro: yes you can retry, but anyway, according to that post? it's set up to boot from sdb3. So, if you're getting sda booted from, either you're choosing wrong disk in the menu, or there's another issue that results with sda being booted from and sdb grub never consulted. [12:54] blackflow: I guess it was fixed after disabling the os prober & running update-grub again [12:54] anyway i'll re-try and see :D [12:54] Dro: is that pastebin BEFORE or after you disabled the os prober? [12:55] blackflow: after disabling it [12:55] makes sense then. yeah try now, it should boot properly. [12:56] blackflow: it works as charm now ! :D thank you dear [12:56] you're welcome [13:14] How do I create a conf file for apt-sortpkgs such that it lists fields in user defined order? [13:40] How do I create a conf file for apt-sortpkgs such that it lists fields in user defined order? [13:51] ubuntu 18.04, gnome-shelll, curious why my wifi icon in the top bar typically shows as a ? even though I am connected to wifi and connected to the internet [13:51] howudodat: yes, that happens sometimes [13:52] howudodat: to deeper investigate, open a tail -f /var/log/syslog at the time you see the ? you could trace whats going on [13:55] ok, I'll give that a try and see what happens....sadly (or happily) at the moment I have the regular wifi icon [13:56] I'd suggest tail journal directly. journalctl -f [13:56] howudodat: what is your wifi chipset? [13:57] howudodat: in the end, it's the Networkmanager that decides what to show in that icon, if you enable extra debugging, it might help you find out why. [14:10] looks like it's a broadcom BCM43602 802.11ac Wireless LAN SoC [14:13] howudodat: see also the driver loaded with: sudo lshw -C network [14:14] driver=brcmfmac driverversion=7.35.177.61 firmware=01-ea662a8c [14:15] if he's connected to the network, none of that driver stuff matters [14:16] emilsp: we dont know yet what syslog spits out exactly [14:17] or journal [14:17] yeah, I'll have to wait until it happens again and gather the log [14:18] howudodat: how often do you see the ? [14:18] I thought I saw it more often than not, but ...let me check something, maybe my desktop has it [14:19] * BluesKaj shrugs, if he's connected to the internet, why worry about a misbehaving icon, it'll sort itself out with updates and upgrades eventually [14:20] BluesKaj: i also have this at some times, my guess is a network glitch and reconnect after [14:20] lotuspsychje: the person did say that it's connected to the internet, is just NM has faulty checks in this case. [14:21] emilsp: but we arent sure if he is for sure right? [14:22] sure, the user can always lie [14:22] NM is necessary for wifi IMO, but not for ethernet [14:22] my desktop is good at the moment too...guess I'll have to wait until it happens again. and BluesKaj: it goes to producing a polished product. step 1 for any software is solid functionality, step 2 is polish. software that isn't polished gives the impression that the whole project is sloppy. I can say this and point the finger at myself becuase I've written software for the past 30 years [14:22] emilsp: i dont mean it like that mate, could be like a glitch while irc keeps going online, and just lag, then network recconects fast [14:22] thats what happens on my bionic [14:23] lotuspsychje: what does happen? [14:23] lotuspsychje: it's not happening at the moment, but when the icon goes the ? it stays there. next time it happens I'll grab the syslog and look for NM messages [14:23] irc lag==>? icon ==>irc lag gone [14:24] so if NM dictates the icon state, what criteria does NM use? [14:25] perhaps I should be looking at GENERAL.STATE (nmcli dev show int) next time it's a ? [14:25] howudodat, this isn't a debate about writing software, it's about an icon that's misbehaving, if you're connected to the internet then it's not a a big problem, there are others here who have bigger issues than an icon that doesn't work [14:26] BluesKaj: I agree there are bigger problems. but the board was quiet. quiet time is a good time to look at smaller problems isn't it? [14:29] if you guys can remember early 18.04 iso's had these kinds of bugs too wifi icon==>network icon [14:30] howudodat: here found it: https://bugs.launchpad.net/ubuntu/+source/gnome-shell/+bug/1722256 [14:30] Launchpad bug 1722256 in gnome-shell (Ubuntu) "Wifi connection status icon shows a "?" question mark when connected" [Medium,Triaged] [14:31] howudodat: feel free to add yourself affected [14:32] fascinating, that bug seems to point to a possible dns config issue [14:34] brb, going to bounce my network [14:38] howudodat: https://jlk.fjfi.cvut.cz/arch/manpages/man/NetworkManager.conf.5 [14:49] How do I create a conf file for apt-sortpkgs such that it lists fields in user defined order? [14:52] roij: does the manpage show anything usefull? [14:56] Hello, I used a ppa to install bazel, and they version that I get is too new. Is there a way to get an older version from the ppa? [14:57] yo [14:57] melkor: we dont support external ppa's here, try to contact the maintainer of the ppa for that [14:58] Hello, I'm running Ubuntu 16.04 and copying about 200 GB of data from disk A to an external disk B, I noticied that the copy operation will take about 18 hours.. Do you think there is a faster way to do this? Clonezilla maybe? [14:59] lotuspsychje: would it be possible to install an older package using the normal repos? [14:59] not bazel, but any package. [14:59] Dro: sounds like the limitation is the fact that you're copying over usb [15:00] Dro: Also, I'd recommend using rsync to copy so you can continue where you left off the process halts for any reason === esotericnonsense is now known as [esotericn [15:00] melkor: we advice to use package versions, meant for your specific ubuntu version [15:00] leftyfb: Yes, I think so :/ do you think I can do this using clonezilla and can have a faster result ? === [esotericn is now known as esotericnonsense [15:01] melkor: older packages 'could' hold security flaws, hence why not ideal [15:01] So apt doesn't offer that ability, there would actually need to be some separate package, similar to gcc. [15:01] bazel is a security flaw. [15:01] Dro: clonezilla will copy the exact same data, except it will need to be done out of band(not having either drive mounted/OS running) [15:01] melkor: depends, whats your endgoal with installing an older package for example? [15:01] Dro: no, I don't [15:02] In this instance, I need to build some software, but the newer version of bazel broke then build process. [15:03] That seems to be like 3 MiB/s, which is fairly slow even for USB 2.0. [15:03] leftyfb: I thinked about clonezilla because the data I'm copying are in a same disk ,so maybe cloning the whole disk can be done faster [15:03] I just worriying about if clonezilla will destroy the already existing data in the target disk :) [15:04] melkor: whats the software you try to build? [15:04] Although said estimation may be wrong. [15:04] Dro: "Hello, I'm running Ubuntu 16.04 and copying about 200 GB of data from disk A to an external disk B" <~~~~ That doesn't sound like the same disk to me [15:04] tensorflow r1.8 [15:05] Eduard_Munteanu: yes, its about 2MB/s :/ really slow.. by the way, the copy operation window don't appear, not sure why :| can see the current rate [15:05] leftyfb: Yes, I mean the whole date (to copy) are in disk A, and the target is disk B :) [15:05] data* [15:05] Dro, possibly because it's not done counting the files / total size yet. [15:06] Dro: Clone the drive if that's what you want to do. But if you want to preserve any data already on disk B, then I do not recommend you use clonzilla and use rsync instead === Utilisateur__ is now known as akemacer [15:07] leftyfb: thats why I didn't do it already :P not sure what Clonezilla will do exactly [15:07] Dro: clonzilla has decent documentation [15:08] leftyfb: Yes I know that, I already copied my System partition using Clonezilla, with device-device option [15:08] melkor: there's a #tensorflow channel if you like [15:08] But the target disk was new , I didn't had any data in :) not sure if it can support a target with a data [15:08] I know about it. [15:09] I am just asking if apt gives a mechanism here to request an older package. [15:09] melkor: it does, but they're generally not kept in the repos [15:10] btw, guys do you know how can I show the copy dialog ? [15:11] it disappeared , and nothing happen when I click "Show copy dialog" [15:11] ducasse: If I knew how, I could have tried and seen whether they have the old version. [15:11] it does not appear when using ALT-TAB too :/ [15:11] it doesn't matter, they offer a dpkg. [15:57] Startup Disk Creator seems to get stuck halfway through. [15:58] rapidwave: wich iso are you burning? [15:58] ubuntu desktop [15:59] rapidwave: could you launch it from terminal, and also open a tail -f /var/log/syslog to see whats going wrong [16:00] In terminal it says it doesn't exist [16:00] hey guys. i'm trying to compile qemu with gvtg capabilities on 18.04 and the default guide doesn't make all my actual VM non bootables. so i'm wondering what options i'm missing, any way to find how an ubuntu package have been ./configured before compiling? [16:00] tldr: any way to know the ./configure used when an ubuntu package have been compiled? [16:01] rapidwave: usb-creator-gtk [16:05] lefreut: have you looked at the scripts/code that construct said package? [16:06] emilsp: i haven't been able to find how to find it using apt / launchpad ;( === Dreaman is now known as Blade [16:08] lefreut: you should be able to download the source package here https://packages.ubuntu.com/bionic/qemu [16:32] emilsp: thanks, seems pretty dependent on what libs are installed i'll have a deeper look [17:17] Any log location for what firefox has been doing all day? [17:24] coconut: a good start would be, launching firefox from terminal and tail -f /var/log/syslog [17:26] Hello everyone! I've got a bit of an issue and need to know how to go about troubleshooting it, was hoping someone here could help. How do I determine the cause of a Call Trace? [17:26] For example: What is causing this call trace to happen when my Ubuntu VM is under load/transferring data between samba shares (as client): https://i.imgur.com/sBNZ2My.png [17:28] This is on 18.04.1 server btw. [17:29] mattgphoto: checkout the #ubuntu-server channel for mindlike volunteers [17:29] Fair enough [17:37] lotuspsychje: sorry, i was not clear on this to you. I mean a log of all extra connections who are made by websites visited. [17:39] coconut: extra connections? [17:43] coconut, ~/.mozilla/firefox/*default/sessionstore-backups/ (have fun with the new mozilla-lz4 compression ) [17:46] lotuspsychje: i want to search for Linux equivalent things like this on windows -> https://i.imgur.com/W0Tf2Hz.jpg [17:47] which are probably not there, but anyway... [17:50] coconut: firefox has already a warning for insecure login [17:50] lotuspsychje: insecure login? [17:51] coconut: explain a bit what you want first [17:51] coconut: you want a defender for ubuntu, for what reason? [17:54] coconut: maybe this article will help if you're concerned about Firefox's own connections. https://support.mozilla.org/en-US/kb/how-stop-firefox-making-automatic-connections?redirectlocale=en-US&redirectslug=how-stop-firefox-automatically-making-connections [17:55] lotuspsychje: no i do not want a defender.... I would like to see all what firefox has been doing with the suspicion of things in the category of this screenshot. (which i know, would not work like this on linux like on windows) [17:58] lotuspsychje: so for finding fake security popup sources done by a firefox session. [17:58] lotuspsychje: for where they would come from [17:58] coconut: perhaps firefox debug or jconsole and addons like noscript or so [17:59] did ubuntu 18.10 remove the possibility to turn of pointer acceleration [17:59] neither xset m 0 0 and gnome tweaks do anything [17:59] and there is no native option anywhere [17:59] and thnx TJ- :) [18:00] and of course yt lotuspsychje! [18:00] oops, gone.... [18:02] But is there any syslog location for made conncections with these things part of it? [18:03] (although it would be hard to find them between others) [18:03] oh, there is an option in dconf [18:03] way down a rabbit hole [18:05] nope :( [18:06] coconut: the only way to find out what FF is doing is to audit its syscalls. for example put it under an apparmor profile that allows nothing and then look at the audit trail. for network connections, you'd have to run it in a network NS and then use IP accounting to find out the traffic specific to it [18:10] hmm there is literally no way to set accel to 0 while manipulating pointer speed [18:11] blackflow: i think this goes too deep for me, but thanks. :D [18:12] Really, i appreciate it. [18:20] Trying to install ubunti 18.04 , but it stick at keyboard language :( grr [18:33] woudlnt't this reboot my server if i out it in the crontab? [18:34] < /sbin/shutdown -r now> [18:35] minus the greater and lesser than signs of course === Dreaman is now known as Blade [19:03] watch out with windows users here people they are very senstive in ##windows, even more then they are an op! [19:08] Hi Everyone. [19:09] does "Ubuntu Software" see a different repository from regular apt? I see a newer version of Remmina in the software app, but apt-cache showpkg shows the older version that I have installed. [19:10] even after apt-get update [19:10] Hey Guys! In your opinion, whats the best way to install the Steam client on a fresh install of Ubuntu 18.10? [19:10] and the software app doesn't say upgrade, it says Install.. then again I don't know that it would say upgrade. [19:10] I see i have two options. One, i could do it through the Apt repositories. Two, I could do it through Flatpak Hub [19:10] I would use apt repo. [19:11] I don't know if there would be an advantage with Steam itself to use the other method. [19:13] norrin: the newer one in the software app is probably a snap [19:13] @norrin, gotcha. Any particular reason why? [19:13] norrin: if i had to guess the Software App also searches the snaps [19:13] ah i see [19:14] thank you, but what are snaps? [19:14] !snap | norrin [19:14] norrin: Snaps are containerised software packages similar to flatpaks or appimage. For more info, see https://snapcraft.io [19:15] gijoe3k: you already have apt in ubuntu.. that flatpak hub thing is something additional you have to install, no? [19:15] gijoe3k: and when you start depending on multiple package managers, you run the risk of conflicts [19:15] ducasse and teward, thanks! [19:16] but there you go, I didn't know what flatpak hub was [19:19] yeah, it will be interesting to see who "wins out". Snap or Flatpak [19:19] over the years [19:20] they'll both collapse as a broken model [19:21] what was wrong with apt? :) [19:22] or yum. [19:23] What's the difference between apt and snap and flatpak? Do they two latter ones download duplicate libraries for every app? [19:24] apt works with .deb packages. snaps are mini-OS roots squashfs that are loop mounted and run as containers using hosts's kernel [19:25] or in other words, when you package a snap, you package the whole filesystem root tree with all the files and dirs essential for teh app to run [19:25] which allows you to run, containerized, any software with little regard to what's already installed on the system -- as it's isolated from it. no package collisions, no library/dependency issues. a snap is a fully contained mini-OS tree sans the kernel. [19:27] (in practice it's a bit less than a full os tree because of core snaps and reusability of them, so you don't literally have to pack everything for every snap, if it's shared by ubuntu core snaps) [19:28] blackflow, so do snap apps run slower due to these abstractions? [19:28] And I've never encountered a dependency collision. How does that happen? [19:28] Hamilton: they _start_ slower, but once run, there's no virtualization or emulation that would slow it down [19:29] Hamilton: I just literally explained why. :) they're isolated root filesystems. [19:29] an OS inside an OS, but without the kernel (using the host's kernel) [19:29] yeah I wouldn't think performance would be an issue, just access to files and things [19:29] and file sizes [19:29] blackflow, no I mean dependency collision for regular apt package [19:29] hey, sometimes I open programs from the terminal but it forces me to keep the terminal window open. Is there a way to open the program and then be able to close terminal? [19:29] and I hate it when people make containers and don't include things you need. [19:29] Hamilton: again, they're isolated filesystems :) there's no collision because the files in teh snap don't exist on the host's filesystem [19:30] it will depend on the program [19:30] blackflow, I'm talking about apt packages not span [19:30] running nohup will usually work [19:30] ^ [19:30] Platonides: ok I'll look into that. Thanks [19:30] Hamilton: think of it as if it were a VM, a VirtualBox VM, except it's not hardware isolation and it uses the host's kernel and runs as a normal (but namespaced) process [19:30] Hamilton: why would there be a collision then? [19:31] a VM experiences a bit of performance loss, no? [19:31] the repo is tested and curated. you get collisions when you start using various PPAs [19:31] I would think of it as chroot [19:31] olabaz: better to hit Alt+F2 and run it from there instead of from the terminal [19:31] or bsd 'jail' [19:31] blackflow, forger snap and flatpack...I'm said I've never encountered collision in my apps installed via apt [19:31] How does that happen? [19:31] Hamilton: why would there be a collision? [19:31] when an app needs a newer version of a lib but another app needs the older version? [19:31] blackflow, I don't know...you said apt apps may have collisions [19:32] then such apps are not part of the same repository [19:32] when you use multiple repositories [19:32] they might have a python3.2-blah vs the python3.2-official, or something [19:32] Hamilton: apt apps? no I never said that. [19:32] geirha: ah ok, never seen that command, thanks [19:32] and your app can't use python3.2, it needs python3.3 [19:32] or something [19:33] norrin, so it happens when I add different PPAs [19:33] yeah [19:33] btw, package/library collisions are artifact of poor .deb/apt design. it is very much possible to install on the host with no containerization or isolation, and have NO collisions. [19:33] but sticking with ubuntu's ppa, there'd be no collision? [19:33] it would require the packaging systems to do that, something like slots in portage. [19:33] right [19:34] Hamilton: there might be [19:34] most good PPAs will try to use official deps as much as possible, I've noticed.. but some start trying to do their own thing, as if theirs is the only repo you're going to use [19:34] blackflow, which package manager does that? pacman? apk? [19:34] Hamilton: portage [19:35] only? [19:35] I know of portage and no other [19:35] (doesn't mean there aren't any) [19:36] portage is gentoo's manager? [19:36] yes [19:37] Doesn't gentoo need to compile everything? Then its package manager should be cmake or autotools, no? [19:37] i'd rather just get source from the source than use gentoo :) [19:37] ftp.gnu.org, etc [19:38] tar zxvf package, cd packagedir, ./configure --prefix=/usr, make, sudo make install [19:39] norrin, yeah this. What is the need for portage? [19:39] you miss the multiple "libfoobar not found" errors inbetween :) [19:39] Hamilton: the same reason you need apt and aren't installing from prebuilt tarballs [19:39] number one: dependecy resolution [19:40] number two: structured package management. if you "make install", there's no central DB of what's installed where. good luck maintainng that. [19:40] number three: this convo is more suited for #ubuntu-discuss or -offtopic than here :) [19:40] blackflow, why doen't ubuntu/debian design a better package manager? [19:40] Hamilton: because it wouldn't be ubuntu/debian any more [19:42] You mean backward compability? [19:42] can this discussion get moved to #ubuntu-discuss? It really isn't on topic for this channel [19:42] tgm4883, ok [19:47] shouldn't this on eliner in my crontab work to just reboot my server [19:47] < 52 13 * * * root shutdown -r now > [19:48] minu the <>symbols of course [19:48] Anyone have tips on ssh-agent? I am at a loss here. ssh-add -L shows the key, connecting to the remote and printing out the AUTH_SOCK shows a link to a file in /tmp and the file is there, yet when I use the key to connect to another remote I get a permission denied. From the host of the ssh-agent, the key works fine. sshd_config has `AllowForwardHost yes`. ssh -v to the remote shows it is not offering the key. [19:48] WBILL: only if "shutdown" is on the cron's PATH, and/or it exists [19:49] which shutdown [19:50] < /sbin/shutdown > [19:50] yes it does [19:50] IOW [19:51] why wont it [19:51] any clues [19:52] WBILL: if you mean the crontab you edit with 'crontab -e', then you should leave out the 'root' part [19:58] is anyone au-fait with hDpi and two monitors on wayland ? [19:58] I mean HiDPI [19:59] WBILL, how did you create the cronjob ? [20:00] i figured it out i used sudoedit and hd to use thr root crontab to do the job right [20:05] Hello! I'm a beginner at using linux and I'm trying to set up a driver for getting my huion tablet working in Ubuntu. I'm actually almost done but it's asking for some xrandr information and I'm afraid I can't make heads or tails of it. [20:05] ok about cron stuff shouldnt this technically work on every Sunday @ said given time?? [20:05] < 52 13 * * 0 root shutdown -r now > [20:06] minux the <> symbols of course again [20:07] https://github.com/joseluis/huion-linux-drivers/wiki/Multi-Monitor is what I'm working on. My edited version of the config.ini is here: https://pastebin.com/raw/i3NFfD9i with my (mostly finished) bit being [monitor_4] in the monitor setup section. [20:07] i think this will tell you the info for your monitor etc [20:08] < xrandr | grep " connected " | awk '{ print$1 }' > [20:08] minus the <> symbols [20:08] Er. Sorry for the curseword in the edited part of the pastbin link. ;; I was getting frustrated. Whoops. [20:08] Also, I'll give that a go. [20:09] This is actually a little spooky for me. I only started trying to use linux a week ago or so. [20:13] amaljaa: hmmm is "grandr" in the "software center" listed? you could use that, which is a frontend for "xrandr", namely a GUI for it [20:21] Hi, I've just bought a laptop, dell 9570, and i want to install ubuntu on it. I've been reading around and there seems to be a lot of issues with the discrete nvidia 1050 that comes with the laptop. One of the arch linux wiki says to set nomodeset to the kernal or completely disable various modules. How do i disable these modules during install instead of post install? [20:22] or rather, does anyone have experience install ubuntu on the 9570? Any advice would be much appreciated. thanks [20:22] just try installing it [20:22] Ubuntu 18.04.1 My numlock key pad numbers are not recording..the numlock light is on and the enter key is working.I have to use keys above letters to enter numbers to any program [20:22] moredrowsy: try installing it first without any workarounds. If it fails, then look for a workaround. [20:22] and report back with a real error [20:23] alrighty then. [20:25] oh [20:25] oh. [20:25] arandr worked. [20:25] i had it save it as a shell script and opening it i found this: [20:26] xrandr --output DisplayPort-0 --off --output DVI-D-0 --primary --mode 1920x1080 --pos 0x0 --rotate normal --output DVI-D-1 --off --output HDMI-A-0 --mode 1920x1080 --pos 0x1080 --rotate normal [20:26] which is what i needed [20:29] I have a 157.35 and 90.05 PPI monitors, 1 rotated - can they be run with separate scaling? [20:31] Ubuntu 18.04.1 My numlock key pad numbers are not recording..the numlock light is on and the enter key is working.I have to use keys above letters to enter numbers to any program [20:31] or which file is current screen res and orientation held in ? [20:31] gonna reboot [20:32] i have something like this: removing files in that are older than 0 days: rm: remove write-protected regular file '/swapfile'? what should I do? [20:33] Hi everyone. I was thinking of building me a new workstation, but I am afraid of building some hardware that does not play along with Ubuntu. Is there any brands, CPUs or components that I should watch out? [20:33] Dbugger: read hardware compatibility guides for linux [20:34] Dbugger: then check the versions of the components against the versions of software ubuntu runs [20:34] ikonia, could you point me to one of those? [20:35] Dbugger: have a quick good, there are many - also the main brands show linux compatibility on their products [20:36] ikonia, so I souldnt worry about stuff like "AMD vs Intel"? [20:36] Dbugger: no [20:38] ill try to find something [20:40] hello, even though I change permissions with "chmod -R 777" I still get "read-only" error...how can I make the folder readable? [20:41] Getattrovskaya: probably a read only file system [20:41] Getattrovskaya: what is the file system you have mounted [20:42] ikonia, ext4 [20:42] Getattrovskaya: unmount it, fsck it, re-mount it [20:42] but FAT didnt help either [20:42] Getattrovskaya: where is it mounted ? [20:43] under /media/live/ [20:43] media/live [20:43] will try fsck [20:43] is it a live media ? eg: like a cd [20:45] the OS runs on live cd, but the file system in question is an susb [20:45] usb* [20:45] Getattrovskaya: ..... that seems odd to be mounted at /media/live [20:45] what version of ubuntu is this ? [20:45] it is an old ubuntu [20:45] what version exactly [20:45] 14.x [20:45] .x is not exactly [20:46] one sec [20:46] 14.04 [20:46] Getattrovskaya: and what is the usb - is that a live image or just a flat file system [20:47] it is not iso [20:47] just fs [20:47] Getattrovskaya: and how does it get mounted ? [20:47] how do you mean? [20:48] Getattrovskaya: how does the usb get mounted, do you do it, is it automounted etc [20:48] it gets automounted [20:48] Getattrovskaya: so a usb will not get mounted on /media/live by default [20:48] well it does [20:48] Getattrovskaya: so why do you thin it's mounted there and why is it being mounted as a live media [20:49] I see the path media/live [20:49] Getattrovskaya: what is the device file for it, eg: /dev/sda1 [20:49] (for the usb) [20:49] yes, that's sda1 [20:50] Getattrovskaya: ok, so in a command line "sudo mount /dev/sda1 /mnt" [20:50] done [20:50] Getattrovskaya: "sudo touch /mnt/test" [20:50] (on the command line) [20:50] done [20:51] no error ? [20:51] no [20:51] oh [20:51] Getattrovskaya: then it mounted read/write sucessfully [20:51] a file named test was created in the formerly unwritable folder === akem__ is now known as akem [20:51] you can now access it on /mnt [20:52] ikonia, the folder is still not writable [20:52] Getattrovskaya: in /mnt [20:52] I was able to access all along, but I need to write to it [20:52] Getattrovskaya: you can't write to it from /mnt ? [20:52] it doesn't let write in /mnt, either [20:53] Getattrovskaya: please show me the output from the command ls -la /mnt [20:53] even after I tried changing perms [20:53] (in a terminal) [20:53] hey all, I have an issue with an atheros wifi card in my laptop, stability and range are fine but the card is a QCA9565/AR9565 which is supposed to be a wireless N+BT 4.0 card, I'm not seeing any 5ghz networks AND my wifi speed is limited to... well it's crap... 20mbps down, 3mbps up. [20:55] ikonia, https://paste.debian.net/plain/1053208 [20:55] Getattrovskaya: you're permissions are wrong [20:55] Getattrovskaya: what is your username [20:55] ikonia, "live" [20:56] Getattrovskaya: then why is the test file we created as root the user "live" [20:56] I dont know. I ran the commands as you gave me [20:56] Getattrovskaya: please run the command "touch /mnt/live-user" [20:57] no output (I ran it as you typed, without sudo) [20:57] Getattrovskaya: ls -la /mnt/ [20:57] is the file there ? [20:58] in the output I see both "live-user" and "test" [20:58] Getattrovskaya: so you can write to it just fine [20:58] Getattrovskaya: and you can write to it as the user "live" [20:58] I can not [20:59] I am trying to copy files to this usb, and still can not [20:59] read-only [20:59] Getattrovskaya: I've just proven you can write to the disk [20:59] I can't. i.e. it is not allowed to create new folder in there, too [21:00] Getattrovskaya: "mkdir /mnt/test-directory" in a terminal please [21:00] whereas there are two files named 'live-user' and 'test' [21:00] Running Ubuntu 18.04. Is there any way to get a touch keyboard to appear only when tapping a text field on the touchscreen on my laptop? [21:01] ikonia, that works, too..so apparently I should try copying the files from gui [21:01] not from gui* [21:01] Getattrovskaya: what tool are you using to copy the files [21:01] ikonia, copying just from within nautilus [21:01] I don't want it permanently on, such as when I'm just clicking a text field. Just when I use the touchscreen. [21:01] Universal access has an option to permanently enable it. [21:02] Getattrovskaya: are you %100 sure you're not moving them by mistake ? [21:02] Getattrovskaya: and you're copying them into /mnt [21:04] ikonia, I just tried the terminal way to copy, and it worked [21:04] I hope I can make use of the copied files-folders, too [21:05] If there's no way to trigger this, does anyone know the onscreen keyboard's name so I can file a bug? [21:06] Ubuntu 18.04 The numbers on my numlock keypad are not working..This system on other linux iso's are working properly..I have to use the number keys above the letter keys..This key pad works for login and the light is on..What system would control this keypad [21:06] ikonia, thank you very much, it seems to be fixed as of now [21:07] NVM. [21:07] Apparently a double tap registers it. === [1]MrMobius is now known as MrMobius [21:25] trying to install exfat packages so I can access a USB disk in the ubuntu 18.04 LTS live boot usb ... what packages are required for that? [21:36] hello again, can you please suggest me an error- free way to get and copy a drive image to another drive that is larger than the original one? [21:36] I tried to install clonezilla but either all my usbs are defective or there is some problem with the iso === patr0clus is now known as s3nd1v0g1us [22:26] Hi all [22:26] I need libfdk-aac on Ubuntu 18.04 but I isn't seem to be installed [22:26] and I cannot find it among installable options [22:27] Yeah I read it's sort of non-free, but I don't really care [22:27] I just need ffmpeg to convert some crappy videos [22:28] hello guys, i am have an issue with my ubuntu 18.04, it seems after an update the sound is not working now .. the only way i can get sound working only on VLC when i play and select ALSA from settings as the Audio server, any hep please? [22:28] and pardon that damaged english of mine [22:33] anyone can help with the sound issue guys? [22:42] Hmm. Is there any way to use Wayland in Ubuntu 18.10? [22:44] Oh crap my closed NVIDIA driver won't work in wayland. [23:39] I'm runnign XFCE, but no sure if that matters here... The computer is real sluggish. Mouse pointer is jittery, keyboard can't keep up with whta I'm typing, etc. I know it wil lgo awaywith a rebot ,but I'd like to narrow down what ails it without rebooting. I did restart thedsplay manager already -- nada. [23:40] And top isn't showing anything too redonkulous. [23:41] how much ram you have? [23:44] ahi2, 8gigs [23:44] xfce is light. it is what i use [23:45] you must be running something that is making it sluggish [23:45] Min 17 was fine, I've only noticed it since I threw ubuntustudio (18.04) on. And like I said, I'm prety sure a reboot will fix it, just trying to avoid that [23:46] Not suer what I'd be running -- it was like that at the login screen. I updated and rebooted the other day, this is the fisrt tmie I've sat down at it since. [23:46] i wonder what the startup apps are? [23:47] Is there a systemctl comand that will tell me that? I'm still used to init. [23:48] settings>session and startup is all i know [23:50] And if it WAS something in there, wonder why it's inconsistent. Maybe only after updates... [23:51] yeah a reboot wouldnt hurt