[00:02] hi guys i am trying to build Kodi from the source but i get this error [00:02] checking whether the C compiler works... no [00:02] configure: error: in `/home/kodi/tools/depends': [00:02] configure: error: C compiler cannot create executables [00:03] check the configure logs, it should have more detailed error messages [00:04] which configrue log [00:04] pretty copy paste, howto build kodi [00:04] https://kodi.wiki/view/HOW-TO:Compile_Kodi_for_Ubuntu [00:05] its not for ubuntu its for raspberrypi [00:06] what pi version? and what guide do you follow? [00:07] Raspberrypi 4 [00:08] thsi guide [00:08] https://github.com/xbmc/xbmc/blob/master/docs/README.RaspberryPi.md [00:09] i'm trying to load ubuntu linux 18.04.3 via iso. Busybox won't recognize my nvme ssd to format ext4 any ideas why? [00:12] I used the command fdisk -l then got msg Not found [00:14] all i find is RPi4B has LibreELEC 9.1.002 as its initial Alpha software version with Kodi's latest version. [00:15] I have absolutely had it with MS and the fruit guys. i'm not computer illiterate. I am willing to compensate someone to help me get Linux on my computer. [00:15] there is a bug with pi4 and usb, https://bugs.launchpad.net/ubuntu/+source/linux-raspi2/+bug/1848703 [00:15] Launchpad bug 1848790 in linux-raspi2 (Ubuntu) "duplicate for #1848703 USB not working under arm64 on Pi4" [High,Confirmed] [01:11] I am trying to compile a GIMP plugin [01:12] configure: error: Package requirements (gimp-2.0 >= 2.2.0 gimpui-2.0 >= 2.2.0) were not met: [01:12] What paackages do I need to build gimp plugins? do you know this in ubuntu? [01:12] 18.04 is my version [01:13] https://github.com/inpaintgimpplugin/inpaintgimpplugin here is the plugin in question [01:17] install libgimp2.0-dev was the package [01:17] found it by much apt-file search [01:25] who is livepatching useful for? [01:26] anyone who can't reboot instantly when important kernel bugs are fixed [01:28] man I need my vision checked. I read that as "robot insanity" and .. what an interesting idea. hotpatching your robots. === zbenjamin is now known as Guest84535 === zbenjamin_ is now known as zbenjamin [01:35] iot right :) [01:45] Does debsums check *every* "registered" packages, including kernel images and whatnot? [01:46] I'm not sure all packages have md5s [01:47] sarnold, debsums tells me all packages have checksums. [01:47] As in, `debsums -l` doesn't show anything (-l lists the packages with missing checksum) [01:48] $ ls /var/lib/dpkg/info/*md5sums | wc -l ; ls /var/lib/dpkg/info/*list | wc -l [01:48] 1355 [01:48] 1375 [01:48] 2033 vs 2036 [01:48] So debsums is lying? [01:49] I think that just means three of your packages don't have sums available to check [01:49] 2 x 2793 here [01:49] But then why doesn't debsums -1 list them? [01:50] I guess I need some command line fu to compare the two lists. [01:51] use ls -1 or better find [01:51] that's a "one" [01:52] tomreyn, why? [01:52] because ls may print multiple results per line [01:52] oh, I still need to chop off the 'md5sums' and 'list' to make them diff'able anyway. [01:52] which mean piping into awk or something. [01:52] So the -1 is redundant. [01:53] okay, just sarnolds' oneliner then ;) [01:53] This is when I wish I knew awk and friends. [01:54] diff -u <(ls -1 *md5sums | sort | sed 's/.md5sums//') <(ls -1 *list | sort | sed 's/.list//') [01:54] it's not perfect [01:55] I think that's probably good enough, especially if I qualify the search pattern with an end-of-line ($). [01:59] looks like the sort should go *after* sed [02:00] heh did that change anything? [02:00] I figured it'd slightly speed things up to move the sort after the sed, but not enough to re-write the commands :) [02:00] odd, no checksum for linux-image-4.18.0-15-generic, linux-modules-4.18.0-15-generic, and linux-modules-extra-4.18.0-15-generic. [02:01] sarnold, the sorting is actually incorrect if you do it before the sed. [02:01] Which means you get false positives (like +python3 and -python3 with a few lines in between) [02:03] k_sze: and those go away if you move the |sort to the end? weird :) [02:03] ok, I guess the checksums are not there because that kernel version is actually no longer installed. [02:04] dpkg -l tells me those 3 packages are just 'rc' now (Remove, Conf-files) [02:04] I hadn't realized the .list files were left around for packages in 'rc' state, but they are [02:05] hehe [02:05] Ok, so at least my base system seems ok. [02:05] but they're zero-bytes.. unexpected. interesting [02:05] yeah [02:05] It's been the second time that I got an inconsistent ext4 in two weeks. [02:05] I was forced to do a e2fsck in initramfs at boot time. [02:06] I don't know if it's a hardware problem or what. [02:06] S.M.A.R.T. seems to say the HDD is ok. [02:08] Hello there, I am having a problem on ubuntu with grub. Following setup: Multi-device btrfs on top of luks containers which are on top of GPT formatted nvme drives. Everything is setup in crypttab and fstab for the containers to get opened correctly at boot. /boot resides in the btrfs on top of luks, only unencrypted thing is the ESP, so grub needs to decrypt the luks containers before continuing. But grub [02:08] will only unlock one of the containers and go on, which results in an error since one of 3 containers isnt enough. If I manually decypt the other 2, it can boot fine afterwards. Why is grub not generating a correct grub.cfg in this case? Any way to circumvent the problem? [02:10] If I'm fully booted (via UEFI) and my root / is a mounted LUKS volume, can I perform a check on /boot and /boot/efi? [02:10] which are /dev/sda1 and /dev/sda2 [02:11] GRUB_ENABLE_CRYPTODISK is enabled btw, otherwise decrypting manually couldnt even work, so that not the problem. The problem is missing cryptomount statements in grub.cfg, despite the crypttab file being setup correctly. Also fstab mentions that it needs all the 3 containers for root, so I dont really know what else to do except writing my own grub.cfg, which I really dont wanna do.... [02:12] k_sze: /boot/efi is the ESP, it is not needed once the system is running (except on upgrades where it could be modified) so you can unmount it, check it and remount it. Or create a new one if it breaks [02:13] k_sze: For /boot it obviously depends if it resides on the same FS as / and if yes, if that FS supports online checking (e.g. btrfs scrub) [02:14] l4m8d4, different FSs [02:14] It's just that gnome-disks is asking me for permission to unmount /boot when I ask it to check it. [02:14] So I'm hesitating. [02:14] you can unmount both /boot/efi and /boot [02:15] k_sze: If boot is on its on FS, you can unmount it [02:15] Can I trust gnome-disks to do the right thing (maybe automatically remount /boot and /boot/efi) after it's done checking them? [02:15] no idea [02:15] k_sze: I wouldnt, but probably it will [02:16] k_sze: Just check afterwards with "mount" if its mounted again. If not, do "mount /boot && mount /boot/efi" [02:16] it may even fail to umount /boot because /boot/efi is mounted [02:17] Yeah, these should be dismounted in order [02:18] bah, gnome-disks fails to even unmount /boot/efi [02:18] udisks-error-quark, 14 [02:18] I ran the upgrade from ubuntu 19.04 to 19.10 last night and at some point my pc turned off i thought that the installer rebooted but when i try to boto ubuntu now i get a kernel panic [02:18] use cli [02:18] vfs: unable to mount root fs on unknown-block(0,0) [02:18] k_sze: ^ [02:18] Well then, you can just go into the terminal and (as root) do "umount /boot && umount /boot/efi" [02:19] is there anything that i can try and do to fix this before i just say screw it and do a fresh installation [02:20] wtf? unmounting /boot/efi causes /boot to also automatically be unmounted!? [02:21] devslash: two things: you could boot to recovery and run a file system check against /root (but it shuld already have done so automatically really). or you could https://help.ubuntu.com/community/LiveCdRecovery#Update_Failure [02:21] when I choose 5.3.0 it kernel paniced [02:22] but 5.0 recovery seems to boot [02:22] i chose fix packages [02:22] So anyway, gnome-disks tells me neither /boot nor /boot/efi has a problem. [02:22] k_sze: Maybe an unmount was still pending and you unlocked it be unmounting /boot/efi [02:22] i think the upgrade was interrupted [02:22] l4m8d4, maybe [02:23] devslash: it probably sat at a prompt and the battery went dry [02:23] I forget where to control the S.M.A.R.T test to run (I mean short vs extended vs conveyance) [02:23] tomreyn, so the same thing just happend while it tried to build nvidia drivers [02:23] its adesktop [02:23] its a desktop [02:23] not a laptop [02:24] devslash: hmm maybe you have it setup to power off after a longer period of non-use? [02:24] damn [02:24] nbow it only boots to a grub prompt [02:24] now it only boots to a grub prompt [02:24] no [02:26] installing smartmontools requires me to configure postfix. I want to cry. [02:26] k_sze: only if you install recommended packages [02:26] also first option in postfix configuration is "leave untouched" [02:26] k_sze: You can just tell it you want local only mail then there isnt much to configure [02:27] I was able to get it to sorta boot ubuntu but now its on the purplish ubuntu screen with the dots and its stuck on that screen [02:27] oh nm now its at an initramfs prompt [02:28] k_sze: The mail system was used to inform an admin about failing drives. Nowadays, probably not many using it when there a things like zabbix and graylog to monitor that kind of stuff [02:29] devslash> just to see what happen before the initramfs try to remove quiet spalsh and see what was the last error/fail [02:30] ok i did that [02:31] i see that it says cannot open root device sda2 [02:31] sda2 probably is just an extended partition, what is else? [02:31] devslash: Are you using luks? [02:32] before thst it says powernow_k8 this cpu is not supported any more using acxpi-cpufreq instead [02:32] not sure if thats important [02:32] probably not [02:32] after the cant open root device it says [02:32] please append a correct root= boot option [02:32] then the kernel panic [02:33] if you have an initramfs shell, try running blkid and see which drive is the one you want in your root [02:33] devslash> I think that mean the it can't find the UUID or the /dev/sdxy [02:33] thats the root partition isnt it [02:33] which is why its kernel panicing [02:34] maybe your device numbering changed across kernel version and what used to be sda2 is maybe sdb now or something similar [02:34] at the grub prompt i was able to boot by using hd1,gpt2 as the boot [02:34] Try disconnecting excess drives you dont need for now and see if that helps with the numbering [02:35] anyone use docker? [02:37] Hmm, how do I show the progress of a long test started by smartctl? [02:38] looks like '-c' does it. [02:39] os there a way to get fro mthe grub boot menu to just a grub prompt [02:39] nm [02:41] devslash: It should be possible by pressing "c" [02:41] Otherwise, you can also just press f10 and modify the config of the highlighted entry to match your drive [02:41] (Or whatever the key may be, it displays it in the menu normally) [02:42] yes i figured it out thanks [02:45] or you can use 'e' to edit temporarly it and booting with ctrl-x or F10 when you are done [02:49] Does anybody know a site to check for known bad HDD firmwares? [02:50] My ext4 LUKS root volume has ended up in an inconsistent state twice in the past 2 weeks and I wonder if it's a firmware problem. [02:50] fsck didn't identify any bad block. [02:51] I also have no power management or write cache configured for that drive. [02:53] i think i have a hardware issue. my desktop is automatically shutting off at the grub prompt before i have a chance to enter the commands to boot up my borked install of ubuntu [02:55] k_sze: You can do a badblocks read-only test to sort out the worst ones [02:56] l4m8d4, I already did that in initramfs. no bad block reported by e2fsck. [02:56] k_sze: Regarding firmware I would start by looking up the model, if the manufacturer has issued firmware updates recently [02:56] It's a Toshiba MQ04ABF100. I have no idea if the firmware is even updatable. [02:58] This white suggests that there are multiple firmware versions for my HDD. But I can't find a firmware download on the official Toshiba HDD site. [02:58] s/white/site [02:59] https://smarthdd.com/database/TOSHIBA-MQ04ABF100/ [02:59] I think this is the official Toshiba HDD site: https://toshiba.semicon-storage.com/us/product/storage-products/client-hdd/mq04abfxxx.html [03:00] No mention of firmware there. [03:00] k_sze: I'd also check for bad sata cables. They can cause corrupt data blocks too [03:00] ok so i can get to a grub prompt and know how to enter the commands to get to the grub boot menu but i dont know what to do from there [03:00] i cant boot without getting a kernel panic [03:02] devslash: See if blkid outputs matches your /etc/fstab [03:03] k_sze: Also, if you have the possibility, try another sata port. These can be bad too === not_phunyguy is now known as phunyguy === Napsterbater is now known as Guest4328 === Napsterbater_ is now known as Napsterbater [03:56] Firefox 70 is out, update your systems to latest [04:07] hello? [04:07] yes? [04:10] hello is there a way to configure automatic shell login on bootup just by accessing a box on ssh? [04:10] in other words can I configure automatic login from the command line [04:11] alesan is a remote boxx? [04:12] how is it relevant [04:12] it's in the next room [04:13] besides using a terminal to ssh, there ssh apps you can use like secure crt that will save passwords. so that is how it is relevant [04:13] I was not clear [04:14] k [04:14] I need the GUI (lightdm) to login automatically an arbitrary user when the system starts [04:14] and open a desktop session [04:14] but I can only access that box over ssh [04:14] so no GUI tools [04:14] oh ok. got it [04:15] (technically, I could do X over ssh but I hope I don't have to resort to that) [04:15] https://wiki.ubuntu.com/LightDM#Setting_an_Automatic_Login [04:15] filename and settings to use are in there [04:16] cool [04:22] let's see if it works... [04:28] hi guys. i've been researching on setting up pptp client to connect to a windowz server... however, i couldn't find an answer on how to set up pptp especially in the PPTP Advanced Options... so many options. would appreciate if you could guide me to at least a website. i tried searching onj google and youtube but to no avail. my credentials are correct. thanks in advance for the help. [04:56] hey guys so I fixed my borked ubunbtu install and now its working fine but i still have an ongoing issue that was also the case in 19.04. i have 2 monitors and the ubuntu login screen also shows up on my 2nd monitor not my primary one. does anyone know how to fix this ? [05:02] devslash, swap the cables [05:02] what do you mean [05:03] i have one monitor connected via hdmi and the other is connected using dvi [05:03] Go into Settings > Devices > Displays and configure your monitors the way you want for your login screen (in your case, internal laptop display disabled). Click the "Save" button when done. [05:03] or screen etc. [05:04] i dont understand what you mean [05:04] i have desktop with 2 monitors [05:04] he'd need some adapters/dongles to address it physically by swapping the displays cables around [05:04] my primary is a samsung monitor [05:04] my secondary is a gateway monitor [05:04] Go into Settings > Devices > Displays and configure it [05:04] so he only has the option of addressing it in software now [05:05] i dont have the ability to fix it in display under settinbgs [05:05] if i switch my monitors there they are reverse [05:05] reversed [05:05] my 2nd monitor the gateway is to my left and the primary monitor is to the right [05:06] take your screens and swap them, so the left one is on the right and vice-versa ;-) [05:06] yea no... [05:07] why not [05:07] that ducking stupid... [05:07] thats [05:07] is it though? [05:08] yes i dont have room to do that anyway [05:08] you'll acclimate to logging in as is in time [05:08] thats a shitty solution [05:08] just allow yourself time to get used to it the way it is and obey [05:08] whatever [05:08] your question is shitty too [05:09] lol ok === CodeEarth is now known as CodeLyoko [05:22] my root drive is a fast NVMe, and my /home is a relatively slow RAID1 array of HDDs. Anyone have a thought where on the root drive to create some extra user-r/w space so I can leverage the NVMe's speed? [05:23] best I can come up with is /var/lib/home/$USER but that's probably abusing the purpose of /var/lib a bit too much [05:24] or maybe, following the lead of /var/www, just /var/home/$USER or /var/data/$USER ? [05:26] i saw a dialog about unattended-upgrades automatically restarting some services when libraries they depend on are upgraded [05:26] nicklist scroll +10 [05:26] where are the underlying configuration files that control this? [05:31] can I setup vnc so that I can login with lightdm and start the session that is also shown on the physical screen? ie not multiuser === Napsterbater is now known as Guest43219 === Napsterbater_ is now known as Napsterbater === Napsterbater_ is now known as Napsterbater [07:04] which android emulator is the best for apps and games and root things on ubuntu [07:09] err, anyone familiar with a feature I think I accidentally enabled with some weird shortcut, can't figure out anything fruitful to google: there is a line in the middle of screen and the right half is tinted dark [07:10] aha, clicking on it while holding alt made it disappear, gnome panel maybe? [07:16] NGC_6205: screenshot please? [07:19] lotuspsychje: unfortunately fixed it (apparently) before taking one [07:19] NGC_6205: was it like a corrupted half icon on the dock you mean? [08:04] I upgraded to Xubuntu 19.10 and everything is slow as hell. it is lowlatency kernel on T5600 cpu in laptop. [08:04] I can't even type, hexchat were opening for 12 minutes or more [08:05] in panel it shows large cpu usage one core at a time, but can't see anyting in top [08:06] on 19.04 it worked fine, system is on Btrfs on SSD [08:08] it's linux-image-lowlatency installed for kernel [08:17] nikolam, there is a low latency version of ubuntu 1910 installed on ubuntustudio, i think is better to test with that configuration. Is the kernel that you install 'certified' by ubuntu ? [08:22] I think that installed package is same named as one that were installed with 19.04, that is, linux-image-lowlatency . I could try installing linux-signed-image-lowlate [08:22] It should be safe to turn on write cache for a laptop that is plugged in most of the time, right? [08:22] (in fact, it should be safer to do so on a laptop than on a desktop without UPS?) [08:26] k_sze, another question is what happens when power comes back. There helps having copy-on-write FS like Zand Btrfs. But as I know, only XFS and ZFS would save you from long disk checks if unexpected shutdown on large disk pools. [08:27] My root fs is still ext4, in LUKS. [08:27] Sorry, ZFS and Btrfs === [1]MrMobius is now known as MrMobius [08:30] Actually, aside from checking the FS *within* the LUKS volume, is there any tool to check LVM2/LUKS itself? [08:37] Or can I assume that LVM2/LUKS is ok as long as I can mount the LUKS volume? [08:38] gigirock, actually linux-signed-image-lowlatency is already installed. I will see what kernel I can choose on reboot [08:51] Guys, my sound stopped working. Any ideas what I can check? [08:51] !sound | adac start here [08:51] adac start here: If you're having problems with sound, click the Volume applet, then Sound Preferences, and check your Volume, Hardware, Input, and Output settings. If that fails, see https://help.ubuntu.com/community/Sound - https://help.ubuntu.com/community/SoundTroubleshooting - https://alsa.opensrc.org/DmixPlugin - For playing audio files, see !players and !mp3. [08:53] how do i recover an efi boot partition? [08:55] lotuspsychje, ook I now went to this https://help.ubuntu.com/community/SoundTroubleshooting but all seems fine. I now simply ty a reboot [08:55] nvidia driver not working on an Optimus system [08:55] zamba: what happened to it? [08:56] arpad2: wich chipset, wich nivida driver on wich ubuntu version please? [08:57] lotuspsychje: is there any command to obtain this info? I don't know this exactly. [08:58] lotuspsychje: ubuntu is 18.04.03 [08:58] arpad2: pastebin please: sudo lshw -C video && nvidia-smi [09:00] jeremy31: i'm not able to boot off it at all [09:00] gigirock, seems there is some Xfce bug in Xubuntu now, newly introduced in 19.10 . After turning off displaying image on external monitor (945GM graphics in laptop), everything speed-wise is back to normal... [09:00] zamba: are you in a live usb currently? [09:00] jeremy31: i attempted to perform a physical to virtual migration of a running machine by doing dd over ssh [09:00] EriC^^: yes [09:01] zamba: type "(sudo parted -ls; sudo efibootmgr -v) | nc termbin.com 9999 [09:01] zamba: type "(sudo parted -ls; sudo efibootmgr -v) | nc termbin.com 9999" and paste the link [09:01] Turning on back external monitor again makes everything be dedaly slow, so it's som XFce/Xubuntu bug. [09:01] "Fatal: Couldn't open either sysfs or procfs directories for accessing EFI variables." [09:01] lotuspsychje: https://paste.ubuntu.com/p/4cPdJt8Z7z/ [09:01] zamba: any link? [09:02] EriC^^: the box is not online [09:02] zamba: can you get it online? [09:02] EriC^^: unfortunately no [09:02] zamba: ok what happened before it stopped booting? [09:03] parted -ls shows a vmware virtual disk.. 78.4GB.. partition table: gpt.. three partitions, first one is a fat16 filesystem of around 164MB.. has the boot flag enabled.. the second partition is also a primary partition.. 4GB.. it's the swap.. the third partition is the / and is ext4.. also a primary [09:03] EriC^^: the physical machine works just fine.. but i have migrated this to a virtual machine [09:03] EriC^^: so i have copied every block of the /dev/sda from the old one to the new one [09:04] EriC^^: to a virtual machine.. so the blkids should change and stuff like that [09:04] zamba: you need to add an entry to the uefi list [09:04] EriC^^: where is that? [09:05] EriC^^: in the bios? [09:05] zamba: for that you need to boot the live usb in uefi mode [09:05] which iso can be used for solving stuff like this? [09:05] zamba: no, you use efibootmgr to add it, or just chroot to the install, then run "grub-install" (after mount binding /proc /sys /dev /dev/pts) [09:06] zamba: any live iso that has the same arch as your install 32bit or 64bit [09:06] EriC^^: i'm using gparted live iso [09:06] zamba: ok, set the vm to boot in uefi mode, and boot the iso [09:07] https://www.serverwatch.com/server-tutorials/enabling-uefi-on-virtual-machines.html [09:08] is this true? [09:09] i can confirm the virtualbox one yeah [09:09] well, the resolution increased [09:09] so something changed [09:09] let's see [09:12] How would I see my current machine's specs from the CLI? E.g. RAM and CPU [09:13] EriC^^: ok, now i got the system to boot through the gparted live c [09:13] +d [09:13] the option "boot from local hard drive" [09:13] but it's not able to boot on its own [09:13] zamba: ok, type "ls /sys/firmware/efi" [09:13] any dirs found or no such dir [09:14] but it's having issues finding its disks [09:14] Waiting for device /dev/root to appear: ..... Could not find /dev/root [09:15] Want me to fall back to /dev/disk/by-id/scsi--part3? (Y/n) [09:15] zamba: get to a terminal [09:15] booting the live cd again [09:16] Seems like Xfce 19.10/Xubuntu have a problem with COmpositing, when using multiple monitors. If pictures on both monitors are diferent (notjust mirror displays), then it is all urbanely slow. When screen compositing is off, everything works back again normal speed-wise. It is 945GM graphics and didn't ha an issue on 19.04. [09:17] EriC^^: yup, up [09:18] Anyone else have 945GM (Dell D620) graphics or similar, to try using multiple monitors and check if , while Display compositor is enabled, speed plunges , if 2 displays are not in 'mirror display' mode. [09:18] zamba: type "sudo parted -ls" which one is the ext4 one [09:19] EriC^^: /dev/sda3 [09:19] zamba: confirm uefi mode is enabled with "ls /sys/firmware/efi" [09:19] EriC^^: i have several folders and files dere, yes [09:19] there* [09:20] zamba: ok, type "sudo mount /dev/sda3 /mnt" [09:20] EriC^^: already have :) [09:20] i'm chrooted into that already [09:20] and bind mounted /dev, /sys, /proc and /dev/pts [09:20] zamba: then "for i in /dev /proc /sys; do sudo mount -R $i /mnt$i; done" [09:20] yup :) [09:20] zamba: sudo chroot /mnt [09:20] yes [09:21] mount /boot/efi [09:21] already have :) [09:21] grub-install [09:22] /usr/sbin/grub-install: line 23: /etc/grub.conf: No such file or directory [09:23] odd it usually doesnt require that file [09:24] zamba: grub-install --target=x86_64-efi --efi-directory=/boot/efi [09:38] EriC^^: i'm able to get it booted if i manually navigate to the EFI file [09:39] EriC^^: so boot off file works, but not boot of device [09:39] zamba: i pasted you a command to run a while ago dunno if you noticed [09:55] I am having trouble with the new arduino: I keep getting the error message "arduino: line 35: /home/neil/arduino-1.8.10/java/bin/java: cannot execute binary file: Exec format error" .... does anyone know how to fix this? [10:01] The previous version still starts up. === fling_ is now known as fling [10:44] neildugan: exec format usually means an architecture mismatch, 64bit on 32bit machine for instance [11:06] Hi, I need to check my filesystem urgently, it's btrfs both for / and home [11:06] I'm using 19.10 [11:07] the problem is if I reboot in repair mode, and select a root shell, the filesystem gets mounted rw, and there's no way to remount it ro (it's busy). [11:11] vincenzoml: go to recovery in grub, then straight to "drop to root shell" it should be ro [11:11] or run "sudo touch /forcefsck" and reboot it should fsck [11:11] EriC^^, that is precisely what is not working here: I reboot to recovery and then root shell mounts it rw [11:12] but I will try the second one and reboot! [11:12] ok [11:12] rebooting in 3... [12:12] Hi folks [12:15] In recompiling my kernel (for a config change) from a tag from git://kernel.ubuntu.com/ubuntu/ubuntu-xenial.git (e.g. Ubuntu-hwe-4.15.0-66.75_16.04.1), why does the build (`fakeroot debian/rules binary-headers binary-generic`) fail unless I install the corresponding `linux-headers-4.15.0-66` debian package? [12:15] * In recompiling my kernel (for a config change) from a tag from git://kernel.ubuntu.com/ubuntu/ubuntu-xenial.git (e.g. Ubuntu-hwe-4.15.0-66.75_16.04.1), why does the build (`fakeroot debian/rules binary-headers binary-generic`) fail unless I install the corresponding `linux-headers-4.15.0-66` debian package? The error being "Error! Your kernel headers for kernel 4.15.0-66-generic cannot be found." [12:17] lucasrangit: we dont really reccomend compiling own kernels, use !mainline instead [12:18] Anyone using landscape here? [12:18] Fair enough, this is not mentioed on https://wiki.ubuntu.com/Kernel/BuildYourOwnKernel though. maybe it should be. [12:19] !landscape | cgi [12:19] cgi: Landscape makes the management and monitoring of Ubuntu systems simple and effective by combining world-class support with easy to use online management tools. https://landscape.canonical.com/ [12:19] cgi: for landscape support, its best to contact canonical [12:20] lucasrangit: whats your real purpose with the kernel please? [12:20] trying to make something work? [12:22] lotuspsychje: I want to enable a driver that unfortunately can only be built-in. so I want to minimize the issues I have by using the same kernel I am running. [12:23] lucasrangit: are you on ubuntu? [12:23] lotuspsychje: yes 16.04.5 [12:23] lotuspsychje, thanks [12:24] lotuspsychje, is there something like landscape that is open source and easy to use? [12:25] cgi: for software reccomends you could try #ubuntu-discuss or maybe #ubuntu-server (if server related) [12:26] lotuspsychje, thanks [12:26] lucasrangit: is your system up to date to latest? [12:27] lucasrangit: if something doesnt work by default on ubuntu, i would reccomend a new !bug so developers at least know the issue [12:29] lotuspsychje: ok thanks [12:30] !uptodate | lucasrangit to doublecheck [12:30] lucasrangit to doublecheck: To ensure you have all the latest known patches and security updates for your ubuntu installation, please update with the following command: `sudo apt update && sudo apt upgrade`. See also !upgrades and !security; you may also need to run `apt full-upgrade`. [12:32] i'm a bit confused about the kernel image versions.. linux-image-5.0.0-32-generic are they stuck at 5.0.0 and just adding custom patches or? [12:33] shelter: wich ubuntu version are you on? [12:33] lts [12:33] uhm.. bionic [12:34] shelter: then you can be on 2 kernels, or 4.15 or 5.0 HWE [12:34] !info linux-image-generic bionic [12:34] linux-image-generic (source: linux-meta): Generic Linux kernel image. In component main, is optional. Version 4.15.0.66.68 (bionic), package size 2 kB, installed size 15 kB [12:34] i changed kernel myself now but they seem to get increased by the last number [12:35] yeah.. whats the last numbers all about in 4.15.0.66.68 [12:36] the version naming for linux kernels are normally 4.15.xx [12:36] !info linux-image-generic-hwe-18.04 [12:36] Package linux-image-generic-hwe-18.04 does not exist in eoan [12:36] !info linux-image-generic-hwe-18.04 bionic [12:37] linux-image-generic-hwe-18.04 (source: linux-meta-hwe): Generic Linux kernel image. In component main, is optional. Version 5.0.0.32.89 (bionic), package size 2 kB, installed size 12 kB (Only available for i386; amd64; armhf; arm64; ppc64el; s390x) [12:37] mhm [12:38] shelter: you 'changed' the kernel yourself? what did you do exactly? [12:40] took the 5.3.6 one from the dev ppa [12:41] bvt that wasnt really my question... i was wondering about ubuntu's kernel versioning 5.0.0.32.89 ... is that the 5.0.0 kernel with ubuntu custom patches or? [12:42] easy answer to find; https://wiki.ubuntu.com/Kernel/FAQ#Kernel.2FFAQ.2FGeneralVersionMeaning.What_does_a_specific_Ubuntu_kernel_version_number_mean.3F [12:43] i see, thanks [12:52] hello, on a testing machine i have a working 18.04 bionic version. Now I tried do-release-upgrade. But somehow this command simply hangs, nothing happens... [12:52] any ideas? Network connection is ok, apt-get update, apt-get dist-upgrade etc... works [12:53] Aison, did you set updatemanager to any new version? [12:53] Aison: when it hangs, try to get the pid and run sudo strace -p [12:54] Aison: type "grep -i prompt /etc/update-manager/release-upgrades" [12:56] oerheks, yes, it is set to normal [12:56] do-release-upgrade -c says that I can upgrade [12:56] without -c it hangs [12:56] EriC^^, trying strace... [12:57] good, so you can upgrade. [12:57] oh, it hangs at connect(..... AF_INET6 [12:58] so it tries to connect with ipv6, which is not available now [12:58] looks like its trying to use ipv6? [12:58] yes [12:58] maybe force it to use ipv4 somehow [13:01] disabled ipv6 at all [13:01] now it works ;) [13:01] renable it later [13:01] great ;) [13:05] yes [13:10] ubuntu prefers ipv6 over ipv4 by default. if ipv6 is not available, it falls back to ipv4. but if ipv6 is available but not working, like in your case... [13:32] hello... after upgrading to 19.10 eon today i am getting a lot of 'ip not found' returned ? [13:32] for example on apt-get update [13:32] dreamcat4: can you paste the exact error? [13:32] paste the output of your apt update on paste.ubuntu.com please? [13:33] sure man, 1 sec [13:33] if this is for all lines, change mirror? [13:33] https://paste.ubuntu.com/p/q7bfSzrHg5/ [13:33] so it's weird because i check the dns and that resolves to those ip address ok [13:33] lol [13:34] then i try to ping those ip address directly (without any dns or anything else)... and no response [13:34] and before i did my release upgrade today my apt-get update was working fine [13:34] dreamcat4: we dont support external ppa's here, and you have a huge list of them [13:35] dreamcat4: we advice to revert back to the official sources of ubuntu [13:35] yes it's not an external software if it's to do with the networking [13:35] dreamcat4: it seems some links are forbidden, some have non existent eoan releases, as far as i saw [13:35] jetbrains, atareao, docker, microsoft, mega, riot om, keybase, bian murray, bintray, vertbot, dub,ime text, coffeetea, heroku, dawidd0811. mprdvpn, elementary os , eugenesan, opensuse, gezakovacs, gnumdk, jfi, js-reynaud [13:36] MAN YOU HAVE TOO MUCH PPA"S [13:36] max 40 lines, iirc [13:36] that isn't actually the problem though, is it [13:37] yes, it is [13:37] and check any ppa for eaon packages, i guess you can wipe 75% of them [13:37] dreamcat4: go over the errors one by one, as i said some links are forbidden, others dont have eoan in their "dist" folder, i guess the maintainers havent added an eoan release yet [13:37] thank you yes i shall do that [13:37] Hi there! [13:38] i do the last one: https://launchpad.net/~webupd8team/+archive/ubuntu/terminix ,, no eoan packages [13:38] what would be the best way to substitute the subiquity installer and run a script instead? [13:39] EriC^^: here is i think the issue https://paste.ubuntu.com/p/VwRrq7Ndqx/ [13:39] dreamcat4, do a fresh install, to avoid endless fixing [13:39] it's funny how i say i have problem A, then people try to fix problem B, which i didn't actually need help fixing myself [13:39] Hey guys! Can somebody tell me, if Cannoncial is series about adding snap as native package manager to Ubuntu(I already left for Manjaro), because I'm just uninstalled 19.10 after using it for a day. Snap is the worst thing happened to Linux since systemd. I'm pretty sure, it's good for devs, but for end-users, it suck ass. [13:40] *serious [13:40] enkeyz, yes, ubuntu has snap by default, and watch your language, keep this channel family friendly, thanks [13:41] dreamcat4: if you come here with unsupported methods, what do you expect volunteers can do for you? [13:41] dreamcat4: what do you mean? what problem B? [13:42] ok... so it seems to be only that 1 host dl.bintray.com [13:42] Can't Cannoncial realize, that snap isn't ready at anyway to put it a production environment [13:42] -.- [13:43] enkeyz: this is not the complaints channel [13:43] oerheks: terminix is in official repos now. [13:43] oerheks: it changed name though : tilix [13:44] legreffier, i read that, let dreamcat4 find out? [13:50] hi, what is the proper channel to report 0days in ubuntu packages? [13:50] zaggynl: security issues? [13:50] yes [13:50] zaggynl: whats the issue you found please? [13:50] see pm [13:51] zaggynl: #ubuntu-hardened [13:51] thanks [13:51] ubuntu-bug security [13:51] not in channels, if they are logged [13:52] well the fix and exploit have already been released [13:52] in upstream, just wondering if ubuntu team is aware [13:52] do you have a CVE ? [13:53] CVE-2019-11043 [13:53] Is (system or bios) software RAID0 on Ubuntu desktop a thing? I am only finding guides for Ubuntu server installs and did not have any luck getting the 18.04 installer to recognize an ASUS RAID0 setup. [13:53] https://people.canonical.com/~ubuntu-security/cve/2019/CVE-2019-11043.html [13:54] last item is a patch, i think you point to [13:54] ah thanks [13:54] angryant: if you check out your mother board documentation you'll see your motherboard has a "windows driver" for the raid [13:55] tatertots: how is that suppose to help on ubuntu? [13:55] angryant: fake raid may or may not work. you're likely better off with something else, either mdadm or lvm's raid 0 equivalent. [14:03] I have some 18.04 servers with recent tesla or RTX nvidia cards, but also the original old quadro cards they came with (basically just used for showing the display during installation). If I install a recent driver will it cause any issue with the old card? [14:04] Rboreal_Frippery: No idea. That largely depends on NVIDIA. [14:04] Rboreal_Frippery, if you download the correct driver then no, it'll be fine :) [14:05] Well I assume there is some old version which supports the old card, and some newer version package which supports the new card. And I don't think that you can install two. [14:05] ryuo: Thanks! I'll take a look at mdadm and lvm :) [14:06] Rboreal_Frippery: Well you're being vague. You'll have to check the supported list. [14:07] *then yes.... [14:20] Rboreal_Frippery: ubuntu 18.04 provides the nvidia 435.21 driver: https://download.nvidia.com/XFree86/Linux-x86_64/435.21/README/index.html [14:21] https://ryujinx.org/#/Build can anybody help me to install this to my ubuntu? https://ryujinx.org/#/Build [14:24] oerheks: what does the DNE stand for on the CVE page? [14:24] I assume green is good [14:26] does not exist [14:28] i.e. the given software in the given version is not available as part of this ubuntu release. [14:30] Hello, i heard the ubuntu 18.04 is using nome. But why it still looks like unity ? i mean the left panel.... is it possible to use ubuntu like the old gnome style ? [14:30] but i do not mean the flavour ubuntu mate.. [14:30] Noboru55: they dropped unity but keep a similar appearance with a gnome theme or something. [14:30] you hear, and tell us you see something? [14:31] no, 18.04 comes with gnome3, that also gives a panel [14:31] maybe you want to install ubuntu-unity-desktop [14:31] so, there is a easy way to make the ubuntu 18.04 looks like the ubuntu mate? [14:31] i do not want that unity desktop or left panel.. [14:31] install mate-desktop ? [14:31] yep. install mate. [14:31] X) [14:32] right [14:32] better do a fresh install, no clutter from gnome apps [14:32] xubuntu may also be of interest. [14:36] thanks you all === dax changed the topic of #ubuntu to: Official Ubuntu Support Channel | IRC Guidelines: https://ubottu.com/y/gl | #ubuntu supports Ubuntu and official flavors; versions 16.04, 18.04, 19.04, 19.10 | Unofficial derivatives: use your distro's support channel, not here. | IRC info: https://ubottu.com/y/irc | Pastes to https://paste.ubuntu.com/ | Download: https://ubottu.com/y/dl [14:44] hello, i'm here to talk about a problem i have quickly [14:45] one of my ubuntu systems isn't responding to input since i've locked it, and it's busy copying some files from one drive to the other using a terminal. the only other programs i have open on it are chromium and the file manager [14:46] i'm not willing to use REISUB because this file transfer is taking a very long time but i'm worried that even when the transfer has finished, the system will still not respond [14:48] skye0: that's unpleasant. now what can we do for you, do you have a question? [14:48] skye0, it's an Ubuntu Desktop machine, and you locked the screen, and it's not responding? [14:49] yes [14:49] What Ubuntu version? Could you be out of RAM and swapping? [14:49] 18.04 LTS, disabled swap space i think. i'm not sure about the RAM actually [14:49] 16 GB but i have had a lot of Chromium tabs open [14:50] i've been looking around and i found a workaround, but it isn't working, CTRL+ALT+Backspace. I love using Ubuntu but I'm worried that I may experience a repeat of this [14:50] I can always just wait it out i guess. [14:50] have oyou tried logging in on a tty to examine the situation? [14:51] the keyboard isn't responding to input. neither is mouse movement [14:51] i'm worried about using REISUB because i have mentioned that it will terminate a file transfer operation that's already taken me several hours to partly complete [14:52] if the keyboard does not work then how would you use magic sysrq anyways? [14:53] !tty [14:53] To get to the TTY terminals 3-6, use the keystroke Ctrl + Alt + F3-F6 respectively. Ctrl-Alt-F2 or Ctrl-Alt-F1 will get you back to your graphical login (Ctrl-Alt-F7 on 16.04). To change TTY resolution, see https://help.ubuntu.com/community/ChangeTTYResolution [14:53] keyboard backlight isn't working. i might have to unplug it and plug it in again or i might just trigger reisub [14:54] triggering reisub hasn't worked. [14:55] without a working keyboard and without other means to trigger sysrq, it cannot be triggered. [14:56] the file transfer's going to take me another 13 hours or so :( [14:56] this, or maybe it's just stuck in an infinite loop [14:57] fair [14:57] this time i'll try and not have chromium open [14:58] you can review the last records of the previous session after reboot using journalctl -b -1 [15:16] For the most part, 19.10 seems good. I have one weird problem with it, though, that I can't figure out. The package, grub-efi-amd64-signed, won't configure properly. Says there's no space left on the device. But no partition is short on space! /boot/efi has 155 MB free. [15:17] Does anyone know what's going on here? === Guest64681 is now known as catalase [15:23] Frogger-: It may require more space than what is available to perform the installation [15:24] that would be odd. i've successfully done efi installs on system partitions < 1MB. === retentiveboy_ is now known as retentiveboy [15:24] then again it wasn't using the signed grub stuff. [15:25] ryuo: The key there is on install... this is an update, which would require the old package, new package, plus workspace to perform the update [15:27] pragmaticenigma: same with updates for me? the efi blob was overwitten. [15:27] it's likely somewhere else. [15:27] pragmaticenigma: /boot/efi has 49 MB used, 155 MB free. [15:28] might be a bug : https://bugs.launchpad.net/ubuntu/+source/shim-signed/+bug/1776271 [15:28] Launchpad bug 1776271 in shim-signed (Ubuntu) "Could not prepare Boot variable: No space left on device (package shim-signed 1.34.9+13-0ubuntu2 [origin: Ubuntu] failed to install/upgrade: Unterprozess installed shim-signed package post-installation script gab den Fehler-Ausgangsstatus 1 zurück)" [Undecided,Confirmed] [15:28] Frogger-, update the bios, remove the dumps file, use kernel parameter , not fixed by now [15:29] Aha! I think I've found the reason. There are no inodes left in /boot/efi!! [15:29] Frogger-, df -i ( [15:29] Frogger-: What are the block sizes set to on that partition? [15:30] No idea. It's a FAT32 partition. [15:30] sounds like they overloaded the EFI's storage capabilities. [15:30] Frogger-, paste df -i [15:30] /dev/sda1 0 0 0 - /boot/efi [15:31] nope, inodes are ok [15:31] ?? [15:31] My SSHD has been getting bruteforced like a mofo. I finally had to lock it down via my router firewall. [15:34] ioria: Not sure how you came to that conclusion, Inodes reads zero, IUsed reads zero, and IFree is also zero. That doesn't sound right to me [15:34] do fat32 partitions even have inodes [15:35] WaV: Do you have a support question? It isn't clear from your statement. Also, if your seeing disk activity stop after locking down your firewall, you've got some big issues to resolve [15:36] Disk activity is the same. I look at it constantly. Was just making a statement. I do wonder if anyone else experiences this though. [15:37] And if you do experience it, what do you do to keep yourself safe? [15:37] Other than strong passwords [15:37] Hmm, trying to free up some space on /boot/efi with "efibootmgr -b 2 -B" fails with "Could not delete variable: No space left on device" [15:37] WaV: This isn't the right channel for discussion like that. #ubuntu-offtopic of #ubuntu-discuss are better channels [15:38] Frogger-: It looks like something has corrupted the /boot/efi partition. With all the Inodes returning zero, I'd start backing up your data and prefer for a fresh install [15:39] Understood [15:40] pragmaticenigma: Hmm, it seems inodes aren't used by FAT. [15:41] as dax suggested fat32 does not have inods [15:42] Frogger-: That's why I asked what the block size was on the drive. You can have a 200MB partition and use it up with a several 1MB files if the block size is set to seomthing like 50MB [15:42] How do I find the block size on a FAT32 system? [15:42] I shall ask Dr. Google. [15:43] Frogger-, not sure it's an inodes problem (despite the kind of error you got) [15:43] Default is 4k cluster size. I didn't change the default. [15:44] WaV: restricting logins to ssh keys only is the most effective way to make those automated attacks futile. [15:44] I'm trying boot-repair. [15:45] Thank you ryuo. I'll look into it. [15:47] Frogger-: hello [15:47] Good morning EriC^^ [15:48] boot-repair didn't help me, still get error. [15:48] Frogger-: running efibootmgr and getting that sounds odd, cause that deletes nvram entries, and not stuff on /boot/efi [15:48] it kind of sounds like the nvram is read-only or something [15:49] Any idea how I'd check that? [15:49] Or would that be a UEFI config issue? [15:49] Frogger-: is the package misconfigured currently? dpkg -l | grep -Ev "^ii|^rc" should show misconfigured ones [15:50] it should be [15:51] Yes, both grub-efi-amd64-signed & shim-signed are reported. [15:51] Frogger-, ls /sys/firmware/efi/efivars | grep -i dump [15:51] Frogger-: well, you could try creating an entry right now, for instance sudo efibootmgr -c -w -l \\EFI\\ubuntu\\grubx64.efi -L "ubuntu-test" -p 1 -d /dev/sda [15:52] ioria: Null output [15:52] Frogger-: aha, can you try the above command and see if it successfully adds an entry called ubuntu-test? [15:52] Frogger-, ok [15:52] EriC^^: No. still get no space left on device message. [15:53] Frogger-: ok, i wonder if it's read-only issue or actually out of space, what does "sudo efibootmgr -v | nc termbin.com 9999" give? paste the link here please [15:53] EriC^^: https://termbin.com/5d25 [15:54] Frogger-: doesn't have that many really [15:55] i'm tempted to try to change the boot order [15:55] No, I pretty much only use this machine for Linux. Very rarely do I boot into Windows - it's installed only in case I ever upgrade to a new machine. [15:56] what does sudo efibootmgr -o 0001,0002,0004,0005,0006,0007,0000 do? [15:56] Sudo isn't needed. I'm running a root terminal. [15:57] Invalid BootOrder order entry value0001,0002 [15:57] :-) [15:57] I shall remove that. [15:58] i think you meant 0007 and 0002, but yeah try without them [15:58] No, it reported both 2 & 7 as invalid. And after removing them, same "no space left on device". [15:59] Frogger-: aha [15:59] seems read-only, did you update the bios recently? [15:59] No. [15:59] it's kind of odd cause ubuntu is there, so previously it was able to add itself, did you change any bios settings at all? [15:59] I've not been into the UEFI for a long time. [16:01] Frogger-: i guess you could modify the post-inst stuff of those packages, if that's how they run "efibootmgr" or maybe just modify /var/lib/dpkg/status and set them to "ii" [16:01] This particular install was a fresh install quite a few versions ago. [16:01] does "mokutil --sb-state" give anything interesting? [16:02] EriC^^: But the system won't boot with the 19.10 kernel. [16:03] SecureBoot disabled. [16:03] I can boot into an older kernel though (5.06). [16:03] Frogger-: what happens when you try booting the 19.10 one? [16:04] Kernel panic, cannot find root device. [16:04] Frogger-: hmm, can you paste "cat /boot/grub/grub.cfg | nc termbin.com 9999" ? [16:05] Frogger-: i'd guess then that this is some issue with 19.10's efibootmgr, maybe it thinks the nvram is full for some reason [16:06] !info efibootmgr bionic [16:06] !info efibootmgr [16:06] efibootmgr (source: efibootmgr): Interact with the EFI Boot Manager. In component main, is optional. Version 15-1 (bionic), package size 27 kB, installed size 82 kB (Only available for amd64; i386; ia64; armhf; arm64; armel; x32) [16:06] efibootmgr (source: efibootmgr): Interact with the EFI Boot Manager. In component main, is optional. Version 15-1 (eoan), package size 27 kB, installed size 82 kB (Only available for amd64; i386; ia64; armhf; arm64; armel; x32) [16:06] seem to be same version though *shrug* [16:06] found this parameter : efi_no_storage_paranoia [16:07] ioria: in what context? [16:07] EriC^^, https://askubuntu.com/questions/1072618/could-not-prepare-boot-variable-no-space-left-on-device-grub-install-error-ef [16:08] ah interesting [16:09] not sure he can reboot with grub half broken [16:10] it's not really broken, he has an entry in the uefi, but grub-install is failing on the efibootmgr step [16:10] ioria: Yes, I already have booted with the issue. Just not the new kernel. [16:10] i see [16:11] EriC^^: https://termbin.com/8fiya [16:11] Frogger-, dmesg -t | grep ^DMI: [16:12] io [16:12] ioria: DMI: ASUS All Series/MAXIMUS VII HERO, BIOS 2012 10/01/2014 [16:12] uuid seems right in grub.cfg for the 5.3 kernel [16:13] Frogger-, there is an upgrade for your mb [16:13] Hmm, that AskUbuntu article says that it might be the CSM and that disabling it worked for one fellow. I can't recall whether I enabled CSM or not. [16:13] Frogger-: i wonder if a "sudo update-initramfs -u -k all" might help somehow [16:14] EriC^^: I'll try that. [16:15] if that doesn't work, adding a rootdelay= in grub might help give it a few seconds before giving up [16:15] OK, I guess I'll need to reboot after that update-initramfs? [16:16] yeah, test it out, might as well check the csm bit too [16:16] Like MacArther, I shall return! :-) [16:20] EriC^^: That worked to allow me to boot into the new kernel but still get the no space message. I didn't go into the UEFI though. [16:26] EriC^^: Success!!! Disabling CSM worked, no more error. :-) [16:26] Frogger-: great! [16:27] Frogger-, i suggest also a firmware upgrade for your motherboard [16:28] ioria: I'm reluctant to do that. I have no other issues and upgrading firmware is unnecessarily risky. [16:29] Frogger-, i hear you but it's a bit outdated (https://www.asus.com/Motherboards/MAXIMUS_VII_HERO/HelpDesk_BIOS/) [16:30] I may have to re-enable CSM, though, as VirtualBox won't load a VM and the necessary kernel modules won't build without it. [16:31] ioria: That's a beta version!!!! No way, thank you very much. I bleed too much on the cutting edge as it is already. [16:32] Frogger-, ok, but you don't use that Beta (there are other versions) [16:32] *need [16:33] Frogger-, (click on Show All) [16:33] So I see. [16:33] "VirtualBox won't load a VM" and "kernel modules won't build" most likely has nothing to do with CSM, the UEFI extension for BIOS backwards compatibility [16:34] It says the new firmware improves system stability. I have no stability problems, I'm very glad to say. Mind you, I don't overclock. [16:35] Frogger-: i always update BIOS, mostly because it tends to fix linux compatibility issues in the devices I use. [16:36] but he's right, what if something goes horribly wrong ? [16:37] tomreyn: Right. GCC throws an error. :-( [16:39] ryuo: When it comes to things like that, I prefer the conservative approach. If I were having stability problems, I would upgrade the firmware. But I'm not. And stability is much more important to me than sheer performance. [16:39] Frogger-: and "improves system stability" in bios changelogs is usually a synonym for "fixes critical bugs" [16:39] tomreyn: Agreed. But they don't seem to be affecting me. [16:40] Frogger-, Vbox doesn't work with linux kernel 5.3 until vbox version 6.0.14 [16:41] rfm: Thanks! I'll check that out. [16:41] Frogger-: discussing this is beyond the scope of this channel, so i won't drive this any further. [16:41] 'this' -> whether or not you should upgrade your firmware [16:42] tomreyn: Agreed. If you want to go to #kubuntu-offtopic, that's where I hang out. [16:47] rfm: Thanks. That worked. :-) [16:52] hello i've just upgraded to 19.10 and the media keys for "Audio Lower Volume" "Audio Raise Volume" are no longer customizable for me [16:53] when i try to assign them in the gnome settings app --> devices --> keyboard, then press the button it just passes though to whatever the system sound / pulse audio is set to [16:54] it's my understanding that there has been some changes with the handling of media keys in 19.10 / eoan now [16:55] read something about this and cannot go back / find the reference to that online [16:56] maybe it's something in the new version of gnome / gnome-shell ? [16:59] ah perhaps it's this service? $ systemctl --user status gsd-media-keys [16:59] maybe i should try to stop / disable it. and try again [16:59] hey guys...is apt and apt-get the same? do you only use apt nowadays? ... trying on my first ubuntu server and I had to install some updates and run into this question [17:00] !uptodate | takashi [17:00] takashi: To ensure you have all the latest known patches and security updates for your ubuntu installation, please update with the following command: `sudo apt update && sudo apt upgrade`. See also !upgrades and !security; you may also need to run `apt full-upgrade`. [17:00] takashi, apt is the newer interface, it has colors and progress bars and such. [17:01] takashi: apt is newer, only downfall is that it's not so good for scripting [17:05] hi. anyone else here having problems with rygel not being seen by the renderers? [17:05] I have fiddled with the firewall to no avail [17:06] it seems that it broadcasts to 239.255.255.250 which is not my network's broadcast address [17:11] sentiment: 239.255.255.250 is part of a reserved block of IP addresses designated for broadcast or appropriately multicast, which is what a DLNA service would use to advertise its presense and availability [17:13] well then what could be wrong? [17:13] improper configuration, you probably need to read through the documentation to see how to setup the service [17:15] /etc/resolv.conf was overwritten by systemd-resolve, thanks to systemd I now have to google a few hours to learn how to designate my own DNS IP address, still to no avail [17:15] anyone knows how I can just add a few IPs to use them as my dns? [17:15] ubuntu 18.04 that is [17:16] pragmaticenigma: is it working for you? I have tried fiddling with its config to no avail [17:17] sentiment: I don't use the service/application. You might have better luck asking in a dedicated forum for that software [17:17] right [17:17] rr123: I would try this command: apropos dns [17:19] sentiment: thanks, not as helpful as google actually, systemd managed to make dns really complicated nowadays [17:19] for(;;)abstraction; [17:20] rr123, have you tried in /etc/systemd/resolved.conf or creating a resolved.conf .d directory ? [17:22] LTS 18.04.3 on Acer Aspire. Please guide to use synaptic. I need to install help files for GIMP etc.. [17:22] ioria: you saved my day, I just put DNS there and it seems working [17:22] thanks [17:22] rr123, good job [17:23] !info gimp-help-en [17:23] gimp-help-en (source: gimp-help): Documentation for the GIMP (English). In component universe, is optional. Version 2.8.2-1 (eoan), package size 24946 kB, installed size 36440 kB [17:23] !info gimp-help-en bionic [17:23] gimp-help-en (source: gimp-help): Documentation for the GIMP (English). In component universe, is optional. Version 2.8.2-0.1 (bionic), package size 25013 kB, installed size 36452 kB === akem__ is now known as akem [17:26] ok , I used apt-get to install gimp-help-en. Can't I use synaptic? [17:27] ksbalaji: https://help.ubuntu.com/stable/ubuntu-help/addremove-install-synaptic.html https://help.ubuntu.com/community/SynapticHowto http://www.nongnu.org/synaptic/ https://www.lifewire.com/guide-to-synaptic-package-manager-2205707 https://wiki.debian.org/Synaptic [17:27] ksbalaji: some documentation for you. there's also a !man page. [17:28] ksbalaji, what's the problem with synaptic ? [17:28] personally, i prefer the command line utilities such as apt and apt-get for package management, but i'm not aware of reasons not to use synaptic at this time. [17:29] ioria, I am unable to launch synaptic in 18.04. some mit magic error. [17:29] ah, are you on waylnad ksbalaji ? [17:29] **wayland [17:30] ioria, Yes I suppose. Further, I am unable to use anything other than wayland. [17:30] ksbalaji, you don't use root gui app on wayland ... do you still want to use it on wyland ? [17:32] ioria, now, how do I use anything else than wayland please? [17:32] ksbalaji, on 18.04 wayland is NOT default, you have to select it [17:32] ksbalaji, why are you npot using Xorg ? [17:33] ioria, My installation loops for anything other than wayland. How to solve this? [17:33] ksbalaji, nvidia card ? [17:34] ioria, I can login only to wayland. I think, something missing in installation [17:34] ksbalaji, nvidia card ? [17:35] how to find this? nvidia card ? [17:35] ksbalaji, lspci -nnk | nc termbin.com 9999 [17:38] this command lists devices connected to your computers' PCI bus, then posts the output to termbin.com, a pastebin-like online service, with a unique URL you can then share with us. [17:39] hey guys, anyone know a webbased irc client that stays connected then lets you jump in / kind of like an rdp session? [17:40] i have a vps and would like to just connect to that to chat with the boys === Condor is now known as Condor_ === Condor_ is now known as Condor [17:47] eggsalad: This channel is focused on Ubuntu support. Recommendations for applications should be asked in #ubuntu-offtopic [17:48] I think I only have Graphics Intel® HD Graphics 5500 (Broadwell GT2) === Condor is now known as Condor_ [17:49] ioria, sorry, got disconnected. === Condor_ is now known as Condor [17:52] ioria, How do I choose xorg on 18.04? I am unable to do this at login time. [17:54] ksbalaji: after entering you username on the graphiical login screen, you should see a little cog which you can use to select the desired session [17:55] ksbalaji: https://askubuntu.com/a/961345 shows you how to select between the xorg and wayland options [17:55] If only x-type server is installed, there will not be an option to select [17:55] tomreyn, Yes that is the normal way. But I am unable to use that. On choosing, I am redirected again to login only. [17:56] ksbalaji: upon choosing what? [17:56] tomreyn, the login does not work other than for wayland. [17:56] ksbalaji: do you have other options listed, though? [17:57] ksbalaji, atm afk, but try to uncomment 'WaylandEnable=false' in /etc/gdm3/custom.conf [17:57] tomreyn, Yes I find some more options though, which do not work. [17:57] Does wayland accept X forwarding? [17:57] accept/support [17:57] ksbalaji: which other options are listed? [17:58] Hi === fmaurer_ is now known as fmaurer [17:58] I remember having seen xorg, gnome, etc [17:58] Does anyone know anything about how to open or support opening webp files in gimp, via some plugin package or something or another? [17:59] ksbalaji: okay, please try to login to "Ubuntu on xorg", then come back here and share your log with us. [17:59] ksbalaji: that's if you'd like to work on fixing this [18:00] tomreyn, I wish to fix the login problem for ubuntu on xorg. How to do this please? [18:00] ksbalaji: first of all we need to find out what the problem is. which is why i suggested the above. also, are you using machine translation for chatting? [18:01] Oh because I have 2.8 gimp [18:01] tomreyn, Well. I do not know whether I am making it clear. I repeat - I am not able to login into ubuntu on xorg. Only wayland works. [18:02] How to get 2.10 gimp in 18.04 please thank you :) [18:02] stoned: try #gimp, maybe? [18:03] stoned: for 2.10 you can look for a ppa, but that is unsupported [18:03] ksbalaji: i understand that you cannot login to Xorg sessions. to understand why this is, you need to reproduce this issue, so that the error occurs again and is logged to a log file which we can then review. [18:03] Oh ok [18:03] Thanks [18:03] I think they said I can use flatpak [18:03] https://www.gimp.org/downloads/ [18:04] stoned, gimp 2.10 is in Ubuntu Software. But if you have 2.8, better uninstall it first. I had problems not unstalling that. [18:04] I'll see. there are plugins in 2.8 which I also need which may not be in 2.10 [18:04] ksbalaji: You are incorrect, 2.8 is the highest version available for Ubuntu 18.04. Please note version numbers when helping others. [18:04] or maybe I can try a gimp snapd [18:05] stoned: Ubuntu has built in support for snaps... It is a better option to look for a snap installl of gimp than a flatpack [18:05] tomreyn, ok. I get it. Now, I shall logout, try to login using xorg, Then paste errors here. Right? [18:06] yes it's doing snap instlal now [18:06] I want to keep that separate and test to see if it has all the puglins in eed [18:06] resynthesize and heal etc. [18:06] ksbalaji: \o/ yes, that's what i'm suggesting. i will tell you how you can share the log when you return. [18:06] inpaint plugins [18:07] pragmaticenigma, I have gimp 2.10 installed from ubuntu software please. I do not want to misguide anyone though. [18:07] tomreyn, thanks and bye for now. [18:10] hey thanks [18:10] snap ins still installing. I got slow connection [18:11] stoned: dont use this channel to describe every step you trying please [18:11] focus on actualy ubuntu questions instead stoned [18:12] lotuspsychje: please do not try to police the behavior of adults. They know how to comport themselves. All that's going to happen is that you'll annoy me and I'll ignore you. [18:13] Now, before I was rudely interrupted, I was trying to say, snap versions takes a while to isntall, it's still downloading things, but the package ubutnu version is not so big in size, installs very fast [18:13] Is this something like docker where it has to get other system stuff, why it's big? I dunno [18:13] !chat | stoned [18:13] stoned: #ubuntu is the Ubuntu support channel, for all Ubuntu-related support questions. Please register with NickServ (see /msg ubottu !register) and use #ubuntu-offtopic for other topics (though our !guidelines apply there too). Thanks! [18:15] I'm sorry that you don't understand myqestion which directly has to do with ubuntu package size vs snap. :) [18:15] LOL. This guy knows exactly how to make friends in the world. [18:16] stoned: The question about sizes is off topic for this channel. The focus here is helping you get Ubuntu and officially supported applications up and running. Questions about file sizes, speed of download, etc aren't appropriate for here. [18:16] Thank you for clarifying that respectfully. Much appreciated. [18:16] lotuspsychje can learn from your example. [18:19] Though if someone h ad mentioned very low bandwidth snap might not have been the best solution, perhaps an uofficial PPA instead. It really is taking a swhile [18:20] And considerin that not everyone is on fast connections, I think speed becomes a relevant issue. [18:20] Not offopitic. [18:21] I tried unsuccessfully logging into ubuntu on xorg and reverted back to wayland. I am back to find tomreyn :( [18:22] !discuss | stoned [18:22] stoned: 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! [18:22] I ahve gimp 2.8 in 18.94, but I also install 2.10 form snap, how do I launch the snap version when it's done downloading? [18:22] Oh [18:23] I didn't you partitioned into ubutnu-discuss and off-topic. I wonder what exactly is considered support. I still don't have gimp 2.10 from snap run. It's installed now. How do run it? [18:23] tomreyn, after an unsuccessful attempt at xorg, I am back. [18:23] stoned: gimp snap support at: contact: https://github.com/snapcrafters/gimp/issues [18:24] I'd like to run the snap version and not the ubuntu package version. I did snap list and it shows: gimp 2.10.12 189 stable snapcrafters [18:24] stroned: probably /snap/bin/gimp* [18:24] oh [18:25] stoned: I gather you can always do a -> whereis gimp <- to check where each one is at and launch that [18:25] tomreyn, How to find and post that error log please? [18:25] ksbalaji: please run: journalctl -b | nc termbin.com 9999; journalctl -n 500 | nc termbin.com 9999 [18:26] Ok, now I ahve a problem after I launched the new gimp. The issue is that there are no more plugins like the ones found in 2.8 which I need, such as 'heal selection, resynthesizer' (in painting plugins to remove objects from pics) [18:26] ksbalaji: this should return two urls, please post those here [18:26] I wonder how to get plugins and scripts in the snap version of gimp [18:26] is that an ubuntu question? [18:26] stoned: contact: https://github.com/snapcrafters/gimp/issues [18:26] stoned> the same way you get gimp from snap [18:27] tomreyn, https://termbin.com/6ebb6 [18:27] https://termbin.com/s808 [18:27] I will try the other route. Maybe get webp plugin for 2.8 [18:27] see ya [18:30] stoned: the first url shows the beginning of your current kernel sessions' system log (when you last booted), the second shows what is currently being logged. if you look at the second you will notice a repeating message which is logged several times every second. thismessage points to drm - which is the graphics stack. there is probably something quitre wrong with this stack on your computer. [18:31] stoned: actually this wasn't for you, sorry [18:32] ksbalaji: the first url shows the beginning of your current kernel sessions' system log (when you last booted), the second shows what is currently being logged. if you look at the second you will notice a repeating message which is logged several times every second. thismessage points to drm - which is the graphics stack. there is probably something quitre wrong with this stack on your computer. [18:33] ksbalaji i see you'Re booting with these kernel command line parameters "drm.debug=0xe plymouth:debug" - this is likely the source of the many repeating messages on the second url. why do you use these parameters? [18:34] tomreyn, being repeated twice every second? My! May be my laptop gets running around for nothing.. How to stop this pleaase? [18:35] ksbalaji: see my question above [18:36] tomreyn, I vaguely remember that I tried using plymouth to bring back sound on booting to ubuntu, which never worked. [18:37] tomreyn, now, how to uninstall this plymouth thing? [18:38] I have a question [18:38] ksbalaji: you don't want to uninstall plymouth most likely. but you can remove those kernel command line parameters if you don't use them. they are probably configured in /etc/default/grub [18:38] !ask | LuckyMan [18:38] LuckyMan: 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 !patience [18:38] I installed 19.10 but now I have a strange entry on my autostart commands [18:39] im-lauch [18:39] sh -c 'if ! [ -e "/usr/bin/ibus-daemon" ] && [ "x$XDG_SESSION_TYPE" = "xwayland" ] ; then exec env IM_CONFIG_CHECK_ENV=1 im-launch true; fi' [18:39] tomreyn, I will try to find that in grub.. [18:40] ksbalaji: your system has outdated firmware version 1.15 installed. newer firmware versions contain video bios updates, which *may* solve the Xorg session issues. i would recommend you install those bios upgrades from https://www.acer.com/ac/en/US/content/support-product/5976?b=1 [18:40] is this a normal entry? [18:40] LuckyMan: which ubuntu flavor are you using? [18:40] 19.10 normal ubuntu [18:41] I upgraded from 19.04 [18:41] and I think I'm on Xorg [18:42] tomreyn, thanks. I shall update firmware also. [18:42] LuckyMan: i assume you mean "im-lauNch". the command dpkg -S im-launch can be used to determine which package provides this command. [18:42] im-config: /usr/share/man/man1/im-launch.1.gz [18:42] im-config: /etc/xdg/autostart/im-launch.desktop [18:42] im-config: /usr/bin/im-launch [18:42] LuckyMan: once you know the package name, you can run apt show PACKAGE (replacing "PACKAGE" by the name of the package) and read the package "Description:" [18:43] !paste | LuckyMan [18:43] LuckyMan: For posting multi-line texts into the channel, please use https://paste.ubuntu.com | To post !screenshots use https://imgur.com/ !pastebinit to paste directly from command line | Make sure you give us the URL for your paste - see also the channel topic. [18:43] did you saw what I pasted? [18:44] LuckyMan: yes. did you see what else i wrote? [18:44] in the link [18:44] yes [18:44] okay, do yu have any other questions then? [18:45] I still didn't understood [18:45] which part exactly? [18:45] I thought you were refering to the ubottu paste message [18:46] tomreyn, which link? [18:46] LuckyMan: i did not mention a link, what are you referring to? [18:46] this part 'pastebinit to paste directly from command line' [18:47] kadiro: are you talking to LuckyMan or me? if it's me, i'm not sure what you're meaning to say. [18:47] sorry, I read the kadiro sentence [18:48] tomreyn> to him just to point him to what i mean by the 'link' [18:48] what is im-lauch and why do I have it on autostart? [18:48] kadiro: ok, i see. [18:49] LuckyMan, to see if you run wayland session, or xorg, nothing special, that im-launch wass already there before you upgraded [18:49] LuckyMan: so you ran dpkg -S im-launch and posted the output here. i told you it "can be used to determine which package provides this command" [18:50] LuckyMan: basedon the output you pasted, whihc package provides the "im-launch" command? [18:50] I'm posing all this questions because when I start ubuntu, I see kind of a window that disapears very quickly [18:50] and I cant see what it does [18:51] and I guess it's not ssh agent [18:51] this command does not open a windows, so keep on investigating [18:51] maybe the nvidia driver screen? [18:51] I don't have a graphics board [18:52] I use telegram though [18:52] sure you have a graphics chip [18:52] and Gnome-pie [18:52] misleading info :-P [18:53] my graphics come from the processor [18:55] also I'm still having some trouble with VM's, I can't move the VM window when using Virtualbox [18:55] and it only resizes sporadically [18:56] sometimes it does sometimes it doesn't, and sometimes my mouse freezes if opera is opened at the same time as the VM [18:57] have you installed virtualbox guest additions? [18:58] that fixes most of those problems [18:58] yes, it was already installed [19:01] LuckyMan: how much physical RAM do you have there, which graphical desktop are you using and how much is assigned to the VM? [19:02] I have 8 Gb RAM, 4 is assigned to the VM, my graphical desktop is Gnome [19:02] i see, maybe assign just 3 to the guest, this may work better. [19:03] well on 19.04 it worked preety well with this config [19:03] make sure oyu don't run many other processes on your ubuntu system while you have the VM running [19:04] i agree it should then also work fine on 19.10 if you didn't make other changes [19:04] is gnome using more memory? [19:04] can this be related to snaps? Opera comes from a snap [19:05] is your question "is gnome-shell reserving more memory on 19.10 than it did on 19.04?" then i'd expect it not to, more to the opposite. [19:05] tomreyn, yes, gnome seems faster [19:05] a lot faster actually [19:06] i don't see it as related to snap, not immediately. browsers can allocate a lot of memory. [19:07] I'm using 128MB of graphic memory on the VM [19:07] at least that's what virtualbox tell me [19:07] oh, that is the culprit [19:08] 256 mb at least [19:08] will changing it wont change my windoze licence? [19:09] 128 MB VRAM is the maximum you can assign in virtualbox, at least on the GUI. [19:09] (it complain for a licence when I exported the VM and opened it on 18.04) [19:09] 128 mb max ??? noo, i do 256 all the time [19:09] we don't usually do windows support here. [19:11] I rephrase the question, will a virtualbox configuration change modify the VM? [19:11] it will modify the way it is running. [19:11] oerheks: https://i.imgur.com/K8QkgOw.png === dionysus70 is now known as dionysus69 [19:12] I'm currently working on a project and I need that VM to keep running without issues [19:12] oerheks: maybe it's hardware or vbox version specific, though [19:13] * tomreyn runs vbox 6.0.14 [19:14] LuckyMan: then you'll best not change its properties, i guess. [19:15] ok I will work on the vm in full screen mode when I need it, that way it works fine [19:16] back to the other problem, where can I find which things are started when entering gnome? [19:17] LuckyMan, /etc/xdg/autostart [19:20] ioria, can you check my list? https://paste.ubuntu.com/p/dt47CSk87V/ [19:20] LuckyMan, what version , 19.10 ? [19:21] ioria, yes [19:21] LuckyMan, yes, i think is ok (idk what vdagent is, btw) [19:23] LuckyMan, also ckeck ls ~/.config/autostart/ (if you set something manually) [19:24] ioria, I also don't know what is vdagent [19:25] !info spice-vdagent [19:25] spice-vdagent (source: spice-vdagent): Spice agent for Linux. In component main, is optional. Version 0.19.0-2 (eoan), package size 49 kB, installed size 189 kB [19:26] simple search tells it is about spice/livepatch kernel tool [19:26] oh, not livepatch ... [19:26] spice-vdagent is used only in virtualized guest systems to provide features like sharing the clipboard [19:26] could it be remina related? I got remmina-applet.desktop in - /config/autostart [19:26] virtualbox it is [19:27] I'm actually sharing the clipboard on my VM [19:28] could the window be remmina-applet ? [19:28] it doesn't actually show a applet [19:29] I think I've used remmina once to access raspbery pi on VNC [19:29] LuckyMan, run gnome-session-properties and delete it [19:31] gnome session properties opens apps autostart and I can't see remmina in there [19:32] ioria, ^^^ [19:34] LuckyMan, ls -al ~/.config/autostart | nc termbin.com 9999 [19:36] ioria, it shows https://termbin.com/yfqv [19:36] didn't click on the link though [19:38] LuckyMan, mm, i think you can safely backup remmina-applet .desktop [19:38] ioria, backup? [19:39] LuckyMan, rename to remmina-applet.desktop.back [19:39] LuckyMan, is it running ? ps -A | grep remm [19:40] I've just opened it [19:40] to see if it had preferences to remove from autostart [19:40] LuckyMan, ps -A | grep remm [19:40] it has, but I think it leaves the file in autostart [19:41] ioria, ps returns nothing [19:42] LuckyMan, that file shows automatically when remmina runs === zzlatev is now known as kre10 [19:42] LuckyMan, you can remove it [19:42] ok [19:44] just did [19:44] ioria, restarting session to see if there's a window [19:44] a window ? [19:45] ioria, This whole thing stated because a very quick window appeared when entering gnome [19:46] i see [19:46] and I don't know where it comes from [19:46] brb [19:48] ioria, there's no window this time [19:48] ok [19:48] It could also have been some update thing [19:48] yep [19:48] if the problem reappears I'll come here [19:48] sure [19:49] Thank you all, gotta work now [19:49] np [19:51] Hi. I have a situation in my ubuntuStudio. I have a secundary disk to save all my projects, but I cannot save any change in my files because I cannot change permissions in my disk. I need to work with the files in that disk, how can I do it? [19:52] I know UbuntuStudio is a distribution with Ubuntu, for that reason I ask you here looking for some help [19:52] DirtyEar, i'd check the mount options [19:53] what filesystem is that 2nd disk? [19:53] ioria: Hi. How can I check that? [19:53] sounds like ntfs .. [19:53] DirtyEar, idk if Studio has gnome-disks, but try to run it from terminal [19:54] oerheks: Thanks. I have installed W10 and Ubuntu in my primary disk and I am not shure the Filesystem of my secondary disk, but I think is ntfs [19:55] DirtyEar, also paste sudo parted -l and ls -al /mnt for the people in here to help [19:55] gl [19:55] DirtyEar: can you paste the output of "mount | nc termbin.com 9999" ? [19:56] (after you've mounted the 2nd disk from your file manager) [19:56] ioria: I am already installing gnome-disk-utility, is ti good? [19:56] DirtyEar: no need really [19:57] first let's see how the disk is mounted, what fs, options etc [19:57] sudo parted -l and ls -al /mnt would do [19:57] ioria: This is what I got: https://pastebin.com/GEwKSb4P [19:58] ntfs, ubuntu studio wants a posix filesystem, like ext4 [19:59] EriC^^: Thanks. I got this: https://paste.ubuntu.com/p/5yNMxZ9XdR/ [20:01] oerheks: What can I do? [20:04] DirtyEar: it's mounted read only [20:04] /dev/sdb2 on /mnt/windows type fuseblk (ro, [20:04] it's the one mounted on /mnt/windows right now, just to confirm, right? [20:05] EriC^^: Yes Is the only disk I have mounted in /mnt/ [20:06] Somebody help me two days back, but only works until I restart the PC [20:08] not sure why it is mounted RO, maybe it has errors on the filesystem? [20:09] gnome-disks gives an option: check-filesystem [20:09] Today when I turn on the PC shows me and error in some program but it doest show me what program. I suposed is something with the disk [20:10] oerheks: How can I do that?. Excuse me but I am new with all this things [20:10] like in windows? [20:11] gnome disks, select that sdb ntfs disk, then in the menu [20:11] DirtyEar: try 'sudo mount -o remount,rw /mnt/windows' [20:13] oerheks: Ok. I have open gnome-disks. When I choose my secundary disk (1TB) show me a bar with: Partition 1= 17 MB, partition 2=1TB ntfs and, free space 1.8MB [20:15] EriC^^: I got this: https://paste.ubuntu.com/p/jSjhVymDFK/ [20:17] DirtyEar: try "dmesg | grep sdb2" [20:17] oerheks: I do not find check fileSystem in gnome-disks [20:18] EriC^^: Got his: https://paste.ubuntu.com/p/6dYvw9BGb7/ [20:19] DirtyEar: ok, let's try to manually mount it [20:19] DirtyEar: type "sudo umount /mnt/windows" [20:19] then "sudo mount /dev/sdb2 /mnt/windows" [20:20] EriC^^: I got his: https://paste.ubuntu.com/p/2Dqggvc38Y/ [20:20] EriC^^: Thanks for your time. === kadiro_ is now known as kadiro [20:22] that what i thought, ntfs would mound RW normally, when clean [20:22] fix this from windows, or gnome disks, there is check filesystem, in the 3 icons under the window [20:24] oerheks: In gnome-disks cannot find chech filesystem. I found an option "test disk performance", is this? [20:25] in the 3 icons under the window .. [20:27] DirtyEar: ok, the problem is that you were in windows and you shut it down instead of restarting, and windows does a trick on the user where it pretends to shutdown but actually hibernates [20:28] DirtyEar: type 'sudo ntfsfix /dev/sdb2' [20:28] oerheks: Thanks for your patience. I have this https://ibb.co/cbpXNJT [20:28] DirtyEar: you can disable this sneaky behavior in windows power management somewhere pretty obscure, or just restart whenever you're in windows instead of shutting down [20:28] The "Intel 8265 / 8275" wireless device (8086:24fd) shows as "not working" in 19.10. The only option I can select is "Continue using a manually installed driver". [20:29] EriC^^: I got this: https://paste.ubuntu.com/p/hmzgCdSvhc/ [20:30] EriC^^: Ok. The trick is always I run windows, never shut down but always restart, right? [20:30] DirtyEar: ok, you should be able to mount it normally from the file manager now and write to it [20:30] DirtyEar: yeah, or just disable the 'fast start' feature [20:31] EriC^^: Ok. It works, Thanks. [20:32] DirtyEar: great, no problem [20:32] EriC^^ I just have some files for TuxGuitar (tablature software) what does not open any files on my secundary disk, but If I copy the file to my primary disk, it opens the file. Is the only thing I cannot fixed it yet. Is there any advice you may share with me? [20:33] DirtyEar: hmm, what happens when you try to open from the disk? [20:33] ubuntu studio wants a posix filesystem, like ext4 [20:34] EriC^^: Tux guitar open, but shows me that the it cannot open the file [20:34] DirtyEar: does it say why? [20:34] DirtyEar: how are you copying the file? as your user or using root? [20:35] EriC^^: No. This is what it shows me https://ibb.co/v16GZ17 [20:36] EriC^^: I just click on it and pull it to my desktop and open the file. But I work with a lot of this type of files [20:38] DirtyEar: *Drag to my desktop [20:40] sudo snap remove tuxguitar-vs && sudo snap install tuxguitar-vs --classic [20:40] Snap app runs in sandbox. To disable this disable security confinement, re-install it via --classic mode [20:40] Ez one for all you folks, I got ubuntu server booted onto a intel NUC, no eth found. I guess if I use standard ubuntu, same issue? [20:42] DirtyEar: see what oerheks said [20:42] might be the case i guess [20:42] SrRaven, you could test it with a livesession. [20:42] oerheks: OK. What you say is that I need to reinstall tuxguitar with the line you share with me? [20:42] EriC^^, still, ubuntu studio stuff wants posix.. carla and such [20:42] I will try thanks to all of you! I really apreciatte your help [20:43] DirtyEar: if you can type "ls -l /mnt/windows/Salvar2019/Descargas/*.gpx" it might show some clues too [20:44] oerheks: why though isn't ubuntu studio just an ubuntu remix? normal ubuntu with some preinstalled programs and a low-latency kernel? [20:44] oerheks: EriC^^ : Ok I alredy did it. This is what I got https://paste.ubuntu.com/p/cX3FvMyP8g/ [20:45] DirtyEar: seems it ignored it [20:45] maybe try installing normal tuxguitar using apt-get instead of snap? [20:45] i've used it on my pc without problems, reading from ntfs ext hdd [20:46] EriC^^ : I got his: https://paste.ubuntu.com/p/ZXrB98ghk6/ === wodencafe is now known as wodemoncafe [20:47] EriC^^: Like this: "sudo apt-get install tuxguitar-vs --classic" ? [20:48] oerheks: Thanks. I cannot open file yet. But really thanks. [20:48] SrRaven: Some of the very latest Intel NICs either require kernels later than 5.2, or the iwlwifi driver backported from Intel source to previous kernel [20:48] its an older one, D54250WYKH [20:48] DirtyEar: no just sudo apt-get install tuxguitar [20:49] ubuntu-server simply only shows loopback [20:49] EriC^^: I already did it: https://paste.ubuntu.com/p/M53gyPdCQJ/ [20:50] It does not work yet. [20:50] DirtyEar: ah seems already installed [20:50] DirtyEar: try "which tuxguitar" [20:51] SrRaven: can you switch to a tty and take a smartphone screenshot of lspci -nn (or "lspci -knn if it fits the screen) and post that?" [20:52] EriC^^: I got this: https://paste.ubuntu.com/p/5J6DBS7XBq/ [20:52] sure give me a few [20:54] https://ark.intel.com/content/www/us/en/ark/products/81164/intel-nuc-kit-d54250wykh.html states it's an I218-V [20:55] https://pasteboard.co/IDvr5d9.jpg tomreyn [20:56] SrRaven: check also dmesg | grep DMI: to see your firmware version. download: https://downloadcenter.intel.com/download/29075?product=81164 changelog: https://downloadmirror.intel.com/29075/eng/WY_0054_ReleaseNotes.pdf [20:57] SrRaven: can you this on imgur.com instead? i can't use pasteboard.co [20:58] sec [20:58] *post [20:59] https://imgur.com/a/zyKuecc [20:59] bios i updated an hour or two ago to the one from 09/02/2019 [20:59] dotn ask me wtf the dd/mm part is there, probably merican [21:01] H. excuse me, my internet falls sleep for a moment jeje. Thanks for your support. The last thing I did was this: https://paste.ubuntu.com/p/DQWYxWh3KC/ [21:01] SrRaven: and the I218-V is detected. are the right drivers detected and loaded, too? lspci -d 8086:1559 -knnv [21:02] it lists an ethernet controller [21:02] DirtyEar: wb what does 'which tuxguitar give' ? [21:02] SrRaven: the last two lines say? [21:02] any specific line you want to know? [21:02] i mean "which tuxguitar" [21:02] DirtyEar: [21:02] kernel driver in use: e1000e [21:02] kernel modules: e1000e [21:03] EriC^^: Thanks. It shows me this: https://paste.ubuntu.com/p/DQWYxWh3KC/ [21:03] Is this what you asking for? [21:03] SrRaven: does "ip link" list it, too? does it say "NO CARRIER"? [21:03] DirtyEar: yes thanks [21:03] iplink shows lo and eno1 [21:04] DirtyEar: no idea why tuxguitar isnt reading directly [21:04] SrRaven: in the first eno1 line, what does it say after "state"? [21:04] DOWN [21:04] EriC^^: Thanks a lot to you!! I am very grateful with all of you willing to help us! Thanks [21:04] so uhm, i have a not-entirely tech related question....could i use past experience giving help and advice in this channel on a resume? [21:04] hi. I just noticed that on 19.10 the night mode in gnome shell/wayland is doing nothing. no hue orange and still blue light... any one knows wyh and how to fix this ? using intel driver [21:04] DirtyEar: you are very welcome! no problem [21:05] SrRaven: so we could try and bring it up, or you can check whether if you reload the installer screen it is now listed [21:05] im upto anything [21:05] all a learning process [21:05] SrRaven: first check if it's listed at the installer now [21:05] EriC^^: I can work copying everytime for now. But I f have any other idea just go ahead. I am willing to do more in order to work more effiecently [21:06] EriC^^ *but if you have [21:06] Sure, how? [21:06] SrRaven: did you say which ubuntu version this is exactly? [21:06] latest ubuntu lts [21:06] server [21:07] DirtyEar: hmm, try to see what "cat /mnt/windows/Salvar2019/Descargas/Cyborg.gpx" gives, no need to paste here, just see if it gives any error or no [21:07] SrRaven: yes, i mean the release version. the iso you downloaded would say. [21:07] in its file name [21:07] DirtyEar: or rather, just try "head /mnt/windows/Salvar2019/Descargas/Cyborg.gpx" so it doesnt flood the terminal too much [21:07] 18.04.3 LTS [21:07] sorry, had to google how to do it first [21:08] ok, no problem ;) i could actually have told you how to check it from the system, but didnt think of it [21:08] DirtyEar: hmmm i wonder something, try "mount" again and paste its output [21:08] SrRaven: i just started a vm to see what yu see, will quickly advance to the network screen [21:08] yeah but you want me to restart installer I assume [21:09] whats the command for that? [21:09] DirtyEar: i think maybe it has some settings that doesn't allow to execute maybe [21:09] SrRaven: no, just go "back" (on the bottom) and then go forward again [21:09] eh? its already installed [21:09] im booted into it [21:09] SrRaven: oh, i was somehow thinking you were sitting at the installer, sorry. [21:10] SrRaven: okay so just ip link set dev eno1 up [21:11] SrRaven: then do ip link eno1 and see whether "state" has changed [21:11] doesnt work, at least when I do the ip link command again it still shows as down === fcastillo_ is now known as fcastillo [21:12] SrRaven: ip link set dev eno1 down; sleep 3; ip link set dev eno1 up [21:12] EriC^^: I try the line with "cat" and the line with "head" but I got a lot of things if you want ot see it this https://paste.ubuntu.com/p/86nS4f5fx3/ [21:12] buuuut if I try eno1 as "ip link eno1" it wont even work [21:12] says eno1 unknown [21:12] SrRaven: ah that's ip link show en01 to check the satte, sorry [21:12] *state [21:13] SrRaven: was the ethernet detected and brought up during installation though? [21:13] DirtyEar: ok, it looks like it can read it fine, i wonder if the mount options are the problem, try "mount" [21:13] I didnt had an ethernet nearby when installing it [21:13] had to find a 10m lan cable first [21:13] EriC^^: Ok with "mount" I got this https://paste.ubuntu.com/p/MSsTmGJXBR/ [21:14] SrRaven: ah so ethernet is just not configured, i guess [21:14] I can just plug in the ubuntu server usb stick again and reinstall if thats faster/less painless [21:14] DirtyEar: oh gosh, it is mounted read only again [21:14] SrRaven: it can, be, unless you want to learn netplan [21:14] !netplan | SrRaven [21:14] SrRaven: Netplan is a network configuration abstraction renderer which uses YAML descriptions of a network to work with either a NetworkManager or Systemd-networkd "renderer". More information at https://netplan.io/ [21:14] DirtyEar: i guess the ntfsfix didn't help much, you have to boot into windows and restart it, then into ubuntu [21:14] well....it doesnt sound like a terrible thing to learn something [21:15] but on the other hand, if I can accomplish something with less work, why bother [21:15] SrRaven: i'm happy with either choice you make there ;) [21:15] the installation should not take long, but you will know, since you did it [21:16] EriC^^ : If I understand you. I have to turn off my PC run windows, then restart and runs Ubuntu? [21:16] yeah im kinda amazed how fast it boots [21:16] DirtyEar: yup that's it === kadiro_ is now known as kadiro [21:16] im only a mediocre linux user, I cant switch yet...my PC wont let hibernate work and thats infuriating me [21:16] EriC^^: Ok. I will do and I let you know. Tanks a lot for your patience and help [21:16] DirtyEar: alright, no problem [21:16] Give 5 minutes [21:16] ok [21:17] reinstalling, will give an update in a few when im at that screen tomreyn [21:17] SrRaven: hibernation is not a very common operation mode on servers [21:17] no I meant for my personal PC [21:17] got ubuntu on there [21:17] oh i see [21:17] we can look into that next ;) [21:17] alright, so im at the network connection screen [21:18] sure, i'll be around a bit more [21:18] it says not connected though [21:18] which...makes no sense [21:18] is the NIC light lit? constantly? or flashing? which color? [21:19] I only see a power light [21:19] but could set the ipv4/ipv6 method to DHCP if I wanted to [21:19] should I try that? [21:19] you can try, but it attempts dhcp by default [21:19] yeah timed out [21:20] hmm, and you would expect this to work? [21:20] like, it should get a dhcp lease and address assigned? [21:20] considering im just hooking up another cable to my switch, im pretty sure [21:21] and this switch connectes to some other computer which will be happy to hand out ip addresses via dhcp to any computers asking for one? [21:21] yes [21:22] just a private router provided by ISP [21:22] SrRaven: so, i kind of would like to debug this more, but only a little bit, and it would potentially take a long time. so insteasd i guess we should just try to make it work (TM) [21:23] switch to tty again, snap refresh subiquity [21:23] Ok. I am back [21:23] ehh...you want me to do what now? [21:24] SrRaven: what i just said ;) but your other option is still to just reboot normally and do the manual configuration via netplan [21:24] I can open almost every file ecxept for the *.gpx. [21:25] let me just real quick check with a laptop if the cable is just fucky [21:25] gotta eliminate some variables [21:26] i'm sure you meant "funky" there [21:26] DirtyEar: wb [21:27] EriC^^: Excuse me. I do not understand [21:28] DirtyEar: it means "welcome back" [21:28] (because you said you were back) [21:28] of course my mouse wont work now [21:28] only a matter of seconds now [21:28] DirtyEar: wb = welcome back [21:28] DirtyEar> see what gives you: file your_file.gpx [21:28] apetresc: Jajajaj thanks. Every day you learn new things jajaja thanks [21:29] DirtyEar: what happens if you open tuxguitar then go to file > open and choose file on ext hdd? [21:31] kadiro: Thanks. I got this: https://paste.ubuntu.com/p/ywwwB5PVv9/ [21:31] ok...dont kill me tomreyn but it may just have been a funky cable... [21:32] DirtyEar> you missed file like this: file Cyborg.gpx [21:32] SrRaven: so it's solved? [21:32] EriC^^: And that way the file opens. [21:32] DirtyEar> that will just tell you what type of file you have [21:32] DirtyEar: ah nice [21:32] booting it up atm, but it seems like it [21:32] EriC^^: I think is the best way to open the files, right? [21:32] it asked me for mirrors etc [21:33] DirtyEar: yeah, it works, i wonder whats different, its very mysterious [21:33] its the third lan cable I tried though [21:33] ...very annoying [21:34] SrRaven: maybe trash the bad ones, then it's easier next time ;) [21:34] or mark them at least [21:34] kadiro: I have all the files in a secundaty disk. When I try to open from the folder, does not open. But when I open the program and look for the file, opens good [21:34] they were new and sealed [21:34] oh :-/ [21:34] still had the wrapping etc [21:35] DirtyEar: the real mystery is why from the desktop clicking on them works normally, weird [21:35] EriC^^: Misterious but thanks. [21:35] DirtyEar> yeah i understand, it miiss the mime type of that specific extension [21:35] EriC^^, as his desktop is on ext4 [21:35] SrRaven: and i assume they're less than 100 meters? [21:35] oerheks: he's able to open them even from ext, but he has to open the program first, then go to file > open > and browse to ext hdd [21:35] like 4 or 5 [21:35] *i mean even from the ntfs [21:35] probably more like 3 [21:36] hmm, that's rather unusual. [21:36] i understand he cannot open it from that disk at all. [21:36] im setting it all up at home, so I can homelab [21:36] oerheks: nope, i recently asked him to open the program, file > open > ext hdd , it works [21:37] i wonder if when he double clicks, it's actually using the snap one that has a problem with ntfs? and other times it uses the apt-get one? [21:37] sorry to have taken your time [21:37] but at least I checked at some point :/ [21:37] so, there is no issue. [21:37] but it seems some inherent problem with tuxguitar, i saw another user with the same issue while googling [21:37] SrRaven: that's fine, no problem [21:38] oerheks: nah there is, from the filemanager it doesnt work [21:38] EriC^^, oerheks, kadiro : I found the error. This program is able to open two types of files: *.gtp and *.gpx. The *.gtp are guitar pro files and *.gpx are native files from TuxGuitar, but TuxGuitar only opens *.gpt [21:38] ah that make sens [21:38] just in short, because doing it all will be iffy. as I have to constantly reboot [21:38] how would I go about troubleshooting hibernation on a desktop PC? [21:39] DirtyEar: ah it's also working now from the ext hdd directly? with .gpt? [21:39] I wonder why TuxGuitar cannot open files native from TuxGuitar. Do I miss something? [21:39] yeah that's not making sense [21:40] DirtyEar: the *.gpx files, do they open if you do the file > open or drag to desktop? [21:40] EriC^^: Yes. I can open files directly from the folder in my secunday disk with extension *.gpt, but not gpx [21:40] SrRaven: you would do it, then review logs: journalctl -b0 if it made it to return from hibernation fine, or journalctl -b -1 if it failed to (and you had to powercycle manually). [21:40] DirtyEar: ok, but gpx works from desktop, right? [21:41] thanks ill remember that [21:41] I dont game anymore since my GPU died, so might as well [21:41] SrRaven: there will be "PM:" lines on this log which will indicate start and stop of those actions [21:41] DirtyEar> may be under the directory: /usr/share/applications/TuxGuitar.desktop you will find a line say: MimeType= ... see if gpx is there [21:41] just a hint [21:41] EriC^^: No. Now I see that the files I have copied until now, was gpt [21:41] now time to setup SSH so I can remove all this mess [21:42] SrRaven: you may want to get more verbose output on screen, too, since at some point file systems are unmounted (and not mounted yet after reboot) so some messages wont get logged [21:42] kadiro: No. It has *.gp5 (the 5 version of gtp) [21:42] !bootlog | SrRaven [21:42] SrRaven: To get a more verbose log of the boot process, remove "quiet" and "splash" from the kernel boot parameters and add "debug systemd.log_level=info". For info on editing kernel boot parameters, see https://wiki.ubuntu.com/Kernel/KernelBootParameters [21:42] DirtyEar> that's it [21:43] I mean. Tuxguitar now opens all my files no matter the folder location. But no opens native files I wrote in TuxGuitar [21:44] DirtyEar> that's why it is not presented in the mime type [21:44] And Guitar Pro cannot open that type of files. I am new in ubuntuStudio 19.10. I used ubuntuStudio 16 until 2 weeks ago but I do not have that error in UbunutStudio 16 [21:45] kadiro: What you mean is: I have to try the line you share in order to "allow" open tht type of files? [21:46] DirtyEar, maybe you should run GuitarPro in a windows virtual Machine [21:46] kadiro: I got this https://paste.ubuntu.com/p/Vz4qX5FBRh/ [21:46] ot [21:46] DirtyEar> no, because the gpx is not in the mime type, the double click on that file doesn't open them with that program [21:47] wow, linux output sounds so fancy in spanish [21:47] DrManhattan: Guitar pro cannot open files from TuxGuitar. And my goal is to use only linux software. But thanks for your help. [21:48] DirtyEar, can TuxGuitar open files from Guitar Pro? [21:48] DirtyEar> it could be tuxguitar or something but anyway may be it is just a bug why it doesn't open them directly [21:48] thanks for everything tomreyn ! [21:48] kadiro: Yes. Now is the only type of files that it opens. [21:49] DrManhattan: Yes. Now is the only type of files that it opens. [21:49] oh, Guitar pro cannot open files from TuxGuitar [21:49] Sounds a lot like PS/Gimp [21:49] DirtyEar, well, if you're migrating to linux-only, what do you need Guitar Pro for? [21:49] Guitar Pro is Mac/Windows [21:50] gpx have many mime type as gpx (gps ) or guitar or something else [21:50] DrManhattan: I do not need GuitarPro. I just have a lot of files write in Guitar Pro and I can open that files in TuxGuitar. And I have a lot of files write in TuxGuitar, but It cannot open any of these files [21:51] color me confused. I'm missing something here. [21:51] DirtyEar> I found this https://elementaryos.stackexchange.com/questions/3995/how-can-i-change-the-icon-for-a-specific-file-type ( may be it is the same case as yours ) [21:51] kadiro: I do not understand about MIME [21:51] Why can't you open the files you're written in TuxGuitar IN TuxGuitar? [21:52] he can, but no guitar pro.. he changes the problem constantly [21:52] but he's not using Guitar Pro anymore [21:52] he said he wants to go linux-only [21:53] DrManhattan: I do not now. I have been using Ubuntu 16 until 2 weeks ago that my computer broke. I have a new one and I installed Ubuntu 19 and now I have this situation with my *. gpx files [21:53] I'm confused now [21:54] DirtyEar, If you're on ubuntu only, and you can read Guitar Pro files in TuxGuitar, then you don't have a problem. Guitar Pro is a windows/mac product. [21:54] kadiro: I can open every file written in guitar pro, but any of the TuxGuitar. [21:54] DirtyEar, so to clarify, you are unable to open the TuxGuitar files WITH TuxGuitar? [21:54] DirtyEar> the tuxguitar can recognize the guitar pro files? [21:54] DrManhattan: Yes. [21:55] kadiro: Yes. And it opens without problem all guitar pro files [21:55] ok - the windows based files don't even appear to be part of this issue then [21:55] But I cannot open TuxGuitar Files [21:56] their forum got hacked [21:56] DirtyEar> did you tryed the solution I gave to you in the link above [21:57] In the place of 'guitarpro.xml' use something like 'tuxguitar' ( the same name as the desktop file [21:58] i got a kernel and nvidia driver update, but the dkms step failed because i had set my cc alternatives to clang-9 and it was calling with an option that only gcc supports. [21:58] same thing with application/x-guitarpro [21:59] i switched cc back to gcc now, but I can't get the dkms to run again [21:59] i tried "sudo dpk-reconfigure nvidia-driver-430" but it doesnt appear to do anything [22:00] reinstall the dkms? [22:00] kadiro: I just tried but I cannot open .gpx yet [22:01] ah, didn't realize its a separate package [22:01] ok, rebooting now :) [22:03] graphics are back. thanks oerheks! [22:03] DirtyEar> can you paste the link from this: find /usr/share/applications -iname "Tux*" -exec grep MimeType {} \; | nc termbin.com 9999 [22:03] kadiro: tuxguitar.xml already exist [22:04] peepsalot, have fun! [22:04] DirtyEar> paste the command above and the content of that xml file [22:05] peepsalot, maybe you can figure out howto write a dkms for clang-9 https://help.ubuntu.com/community/DKMS [22:05] cat /usr/share/mime/packages/tuxguitar.xml | nc termbin.com 9999 [22:06] DirtyEar> please paste both, i will try to fix it [22:07] kadiro: I have the tuxguitar.xml opens. I have to add this line? : find /usr/share/applications -iname "Tux*" -exec grep MimeType {} \; | nc termbin.com 9999 [22:08] DirtyEar> no, do thoses command from your terminal [22:08] I will see them both [22:08] OK [22:08] It will give you an url [22:10] kadiro: This is the first:https://paste.ubuntu.com/p/yqxnJskZ6f/ [22:10] now the scond [22:10] DirtyEar: Now the second https://paste.ubuntu.com/p/S978vKMnVc/ [22:11] kadiro: The second https://paste.ubuntu.com/p/S978vKMnVc/ [22:12] GPX only opens with Guitar Pro 6. [22:12] DirtyEar> In your tuxguitar.xml add this before , save it and type in your terminal: sudo update-mime-database /usr/share/mime/ [22:16] kadiro: Before https://ibb.co/fnzBcwD [22:16] DirtyEar: After https://ibb.co/bgzGkXj [22:16] kadiro: After https://ibb.co/bgzGkXj [22:17] yes [22:17] sudo update-mime-database /usr/share/mime/ [22:17] may be you need to reboot, not sure [22:19] kadiro: ok. No works yet. I will restart adn I will be back! Thanks for your help. I now my englih is no good but thanks for your patience [22:22] DirtyEar> no worry my english is very bad too [22:22] HI. I am back. TuxGuitar does not open the files yet [22:22] weird [22:23] kadiro: Jajaja at least we can chat jaja [22:23] :) [22:25] I got disconnected === kadiro__ is now known as kadiro [22:26] kadiro__ : I open tuxGuitar and save a file and it saves files with *.tg [22:26] Maybe If I change the extension will work? [22:26] What do you recommended? [22:27] hmmtry to make a copy of any gpx file to tg and see if it open it [22:28] It could [22:29] I have annother idea but may be it will not work [22:30] It does not work. [22:30] I will instal TuxGuitar on my Windows and rewrite everything. Because I see the extension is different now [22:31] If you have wine may be you will not be forced to boot in windows [22:31] Thanks to everybody helping me. I am very grateful with all of you. I am new and some things are difficult to me [22:32] DirtyEar> you are welcome [22:32] I have installed wine. I will try [22:32] kadiro: Thanks a lot. You always help me in this forum. [22:32] DirtyEar> with my pleasure :) [22:34] Thanks to kadiro, EriC^^, oakridge, and all of you for your time and patience [22:34] Have a really good week! [22:34] thank you DirtyEar [22:37] What does DNE mean on https://people.canonical.com/~ubuntu-security/cve/2019/CVE-2019-11043.html ? === kadiro_ is now known as kadiro [22:38] does not exist... doesn't help me... [22:38] does not exist, or does not apply to this version [22:38] green is good [22:39] There is no php5 in the repo for those versions of ubuntu [22:39] hence it does not exist [22:40] oerheks: it only means "does not exist" -- doesn't apply is marked with "not-affected" [22:41] oke, but 'does not apply' covers the same, though? [22:43] oerheks: perhaps, from the perspective of a user, but from the perspective of the package existing or not, vulnerability existing in the package or not, etc, it's a different story :) [22:43] what does "<<<" do if i add it after a command ? like cat<<< [22:45] fourroot: hmmm sounds like an HEREdoc block, tis not a redirection for sure [22:47] cat<<<$'echo hello world" | can u explain what does it do ? [22:48] man cat < is for passing file (or directory) << for passing multiple lines, and <<< to pass a string (instead of file). [23:28] How can i fix so ubuntu 18.04 LTS shuts down (on a Hp Proobook G1 laptop) [23:29] I thught poweroff/shutdown now was gonna do the magic of turn the computer off. But neeeh. It just boots the computer again. === ben_r_ is now known as ben_r [23:48] raidghost: you can try fiddling with the reboot= kernel command line parameters https://github.com/torvalds/linux/blob/master/Documentation/admin-guide/kernel-parameters.txt#L4137 [23:51] Does ubuntu 18.04 have Hibernate option? If so, how do I enable it? I only get Suspend [23:55] stoned: I think hibernate is in the "your milage may vary" category -- I don't think we've got it exposed in friendly gui things. I think hibernate requires that you have enough swap space to store all ram. try systemctl hibernate and see what happens? [23:55] If I try it, will it instantly hibernate? [23:55] I believe so [23:56] GRUB_CMDLINE_LINUX_DEFAULT=”quiet splash resume=UUID=XXX-XXX = system swap UUID. Then do an update-grub. ## [23:56] “sudo systemctl hibernate” will now work perfectly and hibernate button can be added by following steps in these tutorial [23:56] I have 8gb ram, and 12gb swap spread across 3 drives [23:56] sarnold: My understanding is that it was disabled due to inconsistencies with UEFI secure boot. [23:56] http://ubuntuhandbook.org/index.php/2018/05/add-hibernate-option-ubuntu-18-04/ [23:56] Eickmeyer: oh my [23:56] Ok, thanks [23:56] Eickmeyer, secure boot and or encrypted disk [23:56] oerheks: Yep.