/srv/irclogs.ubuntu.com/2021/06/22/#ubuntu.txt

h2olyturned out, putting it in legacy only was the only way to force it to live boot that drive00:19
=== M4he is now known as mahe
=== Marco_Polo is now known as Guest7344
=== Guest7344 is now known as Marco_Polo
hwittenbornI'm attempting to run some things under fakeroot for some testing, but the permissions are staying under my user for some reason.04:37
hwittenbornFor example, I've tried running `fakeroot -- touch file`, but checking the permissions for the file with `ll` is showing the ownership to be my user still.04:38
hwittenbornAm a doing something wrong?04:38
rfmhwittenborn, fakeroot just makes files created in the environment appear to be owned by root to commands in the environment. once the environment is exitted the illusion disappates.04:44
rfmhwittenborn, try running just "fakeroon" (which starts a shell in the fake environment.  In that shell, rouch a file and ll it, see it's supposedly owned by root.  now exit that fakerood shell with ^d and ll the file again.04:46
hwittenbornYep, that's working.04:47
hwittenbornHow would I create a Debian package then? Would `dpkg -b` not work with fakeroot then?04:48
rfmhwittenborn, since the archivers that dpkg calls (I don't know offhand if it's ar, tar, or cpio) would run inside the fakeroot it would see the ownership of files created as root, and write that ownership into the archive.04:50
rfmhwittenborn, but the deb would need to be de-archived as real root for the files to be created as root...04:50
hwittenbornSo the files in an archive don't change (or just set correctly rather) while it's in an archive?04:52
rfmhwittenborn, the archive (it's ar, by the way) is a serialized form of the files included, it has header information that says what the file should b enamed, what ownership and permissions it should have, and the actual data.  when the archive is extracted, the archiver reads that, creates s file with the specified name and asttributes, and copies the data into it.04:55
hwittenbornThat makes enough sense.04:57
hwittenbornI think I got all the info I need for now, thanks!04:57
illuminatedis there a splinter channel for the ubuntu channel that is offtopic?04:58
toddc     #ubuntu-offtopic05:00
matsaman/msg alis list *ubuntu-o*05:00
rfmalso #ubuntu-discuss for stuff which is offtopic here (not being support) but still about ubuntu in general05:01
matsamanweird distinction05:03
illuminatedthanks everyone05:03
Guest65anyone know where i can post a Mysql question?05:31
=== Mikro is now known as Guest424
bodicceathere was a change in /etc/kernel/postinst.d/apt-auto-removal in 21.04. Before, I was able to keep more kernels by editing the line 'previous_version="$(echo "$debverlist" | sed -n 2p)"' with something like "sed -n 2,5p". Apparently the new script is totally different. How could I do the same ? As I use my own kernels (usually 2), I need to keep 3 Ubuntu kernels plus those 2, that is 5 total.06:19
=== Guest424 is now known as Mikro
CoolerXHi07:19
toddcCoolerX: welcome07:19
CoolerXI am trying to install rbenv using apt-get07:21
CoolerXsudo apt-get install rbenv07:21
CoolerXhttps://github.com/rbenv/rbenv#using-package-managers07:22
CoolerXafter installation they tell us to run a doctor script to check if rbenv was installed properly curl -fsSL https://github.com/rbenv/rbenv-installer/raw/main/bin/rbenv-doctor | bash07:22
CoolerXthis detects multiple rbenvs07:23
CoolerXhttps://bpa.st/CYMQ07:24
CoolerXI uninstalled it following the instructions given here https://github.com/rbenv/rbenv#uninstalling-rbenv07:24
CoolerXdoing a sudo apt-get purge rbenv07:24
CoolerXand then reinstalled07:25
CoolerXit's still saying there are multiple07:25
CoolerXwhy does apt-get install into both /bin/rbenv and /usr/bin/rbenv ?07:25
enycCoolerX: thats' not down to apt-get, thats' down to usrmerge07:27
enycCoolerX: https://wiki.debian.org/UsrMerge07:28
toddcrbenv 1.1.2 is the latest you can specify the version by apt install rbenv-1.1.2   someone else can enlighten us on the locations but that may be normal07:28
enycCoolerX: or better  https://www.freedesktop.org/wiki/Software/systemd/TheCaseForTheUsrMerge/07:28
enycpoint being  probably /bin is link to /usr etc.07:28
toddccorrect but to verify that is above my skill set07:29
geirhals -ld /usr/bin /bin07:29
geirhathe weird doctor script could've detected that by testing the found executables with [['s -ef operator. [[ /usr/bin/rbenv -ef /bin/rbenv ]] would be true, which means it's the same file07:34
CoolerXenyc, no07:38
CoolerXI checked with ls -l07:38
CoolerXlrwxrwxrwx 1 root root 26 Jul 23  2018 /bin/rbenv -> ../lib/rbenv/libexec/rbenv07:39
CoolerXlrwxrwxrwx 1 root root 26 Jul 23  2018 /usr/bin/rbenv -> ../lib/rbenv/libexec/rbenv07:40
CoolerXthey link to different executables07:40
geirhaCoolerX: ls -ld /usr/bin /bin07:40
CoolerXhttps://bpa.st/JXDA07:40
geirhaso /bin is symlinked to /usr/bin, that means /bin/rbenv is the same as /usr/bin/rbenv, which is /usr/lib/rbenv/libexec/rbenv07:41
CoolerXhmm07:41
geirhaalso see   readlink -e /bin/rbenv   and   readlink -e /usr/bin/rbenv07:42
CoolerXI don't think so07:42
CoolerXhttps://bpa.st/W7UA07:42
CoolerXthose are separate files07:43
geirhabut both of them point to the one under /usr/lib07:44
CoolerXgeirha, hmm https://bpa.st/LHBA07:44
CoolerXgeirha, /lib is symlinked too?07:44
geirhaah yes, that too07:45
CoolerXwhy does ls -l list it as separate files?07:46
CoolerXhttps://bpa.st/W7UA07:46
enycgeirha: all these years i did'nt know about readlink!07:46
geirhaadd -i to ls to see the inode number07:48
CoolerXgeirha, hmm https://bpa.st/6FHQ07:52
CoolerXthe inode number is the same07:53
CoolerXso if it is the same exact file why doesn't it show the l flag in the mode ?07:53
CoolerXlrwxrwxrwx07:53
geirhayes, which means they're the same file. If they were copies, they would've had different inode numbers07:53
CoolerXl for link right?07:53
CoolerXit should have also showed it in blue07:54
geirhaCoolerX: because the file itself is not a symlink, but a path component further up the chain is, Mainly /lib is the symlink to /usr/lib07:54
CoolerXwith the arrow pointing to the actual location07:54
CoolerXgeirha, hmm07:54
CoolerXthat's confusing07:54
SayonaHi, is a way to create a shortcut  to change keyword language in ubuntu 20.04?07:55
geirhathat's where readlink -e comes in. It goes through all path components and follows the symlinks07:55
CoolerXif you symlink a directory everything inside it should also be a symlink07:55
geirhathat's not how it works07:59
geirhaSayona: There should be checkmark under Settings -> Keyboard to include a keyboard layout changer on the top panel08:04
Sayonageirha, thanks08:11
CoolerXgeirha, how does it work?08:11
CoolerXif a folder is a symlink to a different folder08:11
CoolerXwhat about the stuff inside the folder?08:12
CoolerXwhat about the stuff inside the symlinked folder?08:12
EriC^^CoolerX: a symlink is just something that points to the actual dir, like it has /path/to/actualdir and you go there when you access it08:13
geirhato figure out the "real" path to the file, you have to check each directory compononent individually, which is what the readlink -e command does for you08:14
CoolerXhmm08:14
CoolerXI find it odd that ls doesn't say anything when accessing something inside a symlinked folder08:15
CoolerXbut it does say something if you ls the symlink itself08:15
CoolerXthat creates the situation where you have to ls all the parent folders of the file to know whether your path is real or just a symlink08:16
CoolerXor use readlink I guess08:16
CoolerXreadlink -e /lib/foo/bar08:16
geirhain most cases you're only interested in the file, not whether there are symlinks along the way08:19
mrvdvI can send email fine from my server to say eg. *@gmail.com but i can't get any email to my server from *@gmail.com.. i get a email back saying 550 Unrouteable address.. is there something i can change for this /08:47
illuminatedsounds like the username you're sending to from your gmail account doesn't exist on your server...08:50
mrvdvit does exist as its going through VESTA08:50
mrvdvi got my VPS provider to fix it but i would like help so i can fix it myself with some members on here08:51
=== Thin_icE is now known as pgp
doug16kI just ran tune2fs -l /dev/nvme0n1p2 and it says: "Last checked: Sat Dec 31 19:56:00 2016" and "Maximum mount count: -1" and "Check interval: 0 (<none>)"09:09
doug16kdo I really have to set that up?09:09
doug16kthat means I haven't fsck my / partition for years, right?09:10
doug16kLifetime writes:          60 TB09:13
doug16k740TB to go09:14
flingHello.10:42
flingHow to have zfs 2.0 on a longterm ubuntu?10:43
cbreak_you could use dkms or so10:44
flingwill apt auto upgrade the module on kernel upgrade?10:44
flingalso is not zfs 2 available from backports?10:45
Guest88I am learning to create a private apt repository server and then install the packages to ubuntu client machines from that server.. Can someone point me to documentation link on this10:48
flingwhich package provides zfs module? zfs-initramfs ?10:49
tango_uniform_xrwould it work to use apt pinning and install the zfs-dkms package from future release?10:51
flingtango_uniform_xr: idk? would it?10:52
flingtango_uniform_xr: will not apt upgrade break it?10:53
tango_uniform_xri'm just throwing some ideas, you would also need zfsutils 2.0 i believe10:53
tango_uniform_xrjust be aware that tracking packages from future releases won't be supported, and can cause some issues10:55
fling# apt-file find /lib/modules/5.8.0-55-generic/kernel/zfs/zfs.ko10:57
flinglinux-modules-5.8.0-55-generic: /lib/modules/5.8.0-55-generic/kernel/zfs/zfs.ko10:57
flingtango_uniform_xr: can't I get the module and userspace from backports somehow?10:59
tango_uniform_xri don't see zfsutils-linux in the backports11:00
MiguelAngelHi everyone, I just found a bug on Ubuntu Server installer, how should I report it? Or help with the code to Merge Request?11:02
tango_uniform_xrtrying to install zfs-dkms zfsutils-linux from hirsute wants to upgrade libc6 and other stuff, so now that i see that i don't recommend it11:03
guivercMiguelAngel, `ubuntu-bug subiquity`  (you didn't say release; but you file using package name which I've assumed is subiquity)11:03
MiguelAngelIt's on the newest version of the package from stable, 20.04.02 as I remember11:04
guivercMiguelAngel, https://help.ubuntu.com/community/ReportingBugs11:04
MiguelAngelThank you very much guiverc11:04
MiguelAngelSo here we can't do merge requets with solving code? It's all done by you?11:05
guivercMiguelAngel, an alternative is always upstream (https://github.com/canonical/subiquity) - it's a Canonical product so it'll be same people11:05
MiguelAngelPerfect, I'll check it and will try to do the MR. Thank you very much! Appreciate it!11:06
=== nizarus_ is now known as nizarus
flingwhich media to use for a vm install?11:39
rbasakfling: use a cloud image, not an "installer"11:40
flingI want one for headless with matching in-kernel to userspace versions11:40
flingzfs-0.8.3-1ubuntu12.611:40
flingzfs-kmod-0.8.4-1ubuntu11.111:40
flingthis is not good ^11:40
flingrbasak: where to get the cloud image from?11:40
rbasakfling: hopefully your vm platform has an integrated solution. multipass, lxd, vagrant all have something built in11:42
rbasakRaw images are avialable from http://cloud-images.ubuntu.com/releases/11:42
rbasakBut they need to be configured for non-cloud platforms like a simple VM.11:42
flingrbasak: I have to use an image with zfs on root11:43
kraiskilJust updated to 20.04. The program 'i' disappeared - would anyone remember the package name? Googling for "ubuntu i" doesn't really work.11:43
kraiskil(apt install i, or apt search i don't help either)11:43
tango_uniform_xrfling the only installers that do zfs on root are the desktop ones, if you're doing another setup you need to do manually11:43
flingtango_uniform_xr: ok, can you send me a link to such installer?11:45
flingThe one I'm running has non-matching versions -> zfs-0.8.3-1ubuntu12.6 <-> zfs-kmod-0.8.4-1ubuntu11.111:48
tango_uniform_xrhttps://ubuntu.com/download/desktop11:48
tango_uniform_xri think it only does desktop installs11:48
flingdesktop install is fine I can just drop the packages later11:50
flingwhere to get older 20.04 images?11:50
rbasakfling: just because the package version strings don't match doesn't mean they're incompatible. The .6 and .1 to me indicate that they've been extensively patched.11:51
flingrbasak: kernel module and userspace are 5 months apart and zfs has no stable abi11:51
flingrbasak: and this mismatches caused pools to get silent corruptions all the time11:52
rbasakfling: maybe they've been patched to be compatible. Have you checked?11:52
flingrbasak: which is especially bad for versions prior zfs 211:52
rbasakStable Ubuntu LTS releases support multiple kernel versions at once.11:52
rbasakSo there might have to be things going on that go beyond the package version string you see.11:52
rbasakYou can't draw any conclusion unless you actually look at the contents.11:53
flingrbasak: these are not package versions, this is what `zfs --version` returns11:53
rbasakLooks to me that what you've pasted are package versions. If you're getting that from --version, it's probably been arranged that way during a package build.11:54
tango_uniform_xrfling i'm on focal and for me, `zfs` is not a real package11:54
rbasakLike I say, check the contents.11:54
rbasakNo point arguing about labels.11:54
flingtango_uniform_xr: they are not package. kernel module comes from linux-modules package or something11:54
flingtango_uniform_xr: and userspace from zfsutils or something11:55
flingI don't remember the actual names11:55
flingrbasak: how to check the contents? What am I looking for there?11:55
flingstable abi was planned for zfs 1.0 which has never been released and this is 0.811:56
rbasakfling: grab the sources, apply quilt patches, and inspect the results. What you're looking for? That's up to you. You're complaining about an incompatibilty. Presumably you'll be able to demonstrate that one exists in the sources.11:57
flingrbasak: are you saying I should look for versions in the sources?11:57
rbasakfling: no, that'd still be hypothetical.11:58
flingrbasak: I'm sorry11:58
mrvdv|znchaha be sexy12:01
mrvdv|znc:D12:01
jailbreak!ot | mrvdv|znc12:01
ubottumrvdv|znc: #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!12:01
TJ-!info iprint | kraiskil12:02
ubottukraiskil: Package iprint does not exist in hirsute12:02
TJ-!info iprint | kraiskil 18.0412:02
ubottukraiskil 18.04: Package iprint does not exist in hirsute12:02
TJ-!info iprint | kraiskil xenial12:02
ubottukraiskil xenial: Package iprint does not exist in hirsute12:02
TJ-!info iprint xenial | kraiskil12:02
ubottu'xenial' is not a valid release12:02
TJ-oh!!12:03
TJ-!info iprint bionic | kraiskil12:03
ubottukraiskil: iprint (1.3-9build1, bionic): Trivial command-line integer print utility. In component universe, is optional. Built by iprint. Size 6 kB / 19 kB12:03
jailbreaknice spamming of the bot, TJ-.12:03
TJ-jailbreak: I got there eventually!12:03
jailbreakxD12:03
jailbreakfling, you want 20.04.2 images?12:03
TJ-kraiskil: I found it in a 18.04 chroot with " apt-file search -x '.*bin/i$' "12:03
flingjailbreak: I got 20.04.2 image, looking for older ones, hoping to find one with matching zfs versions12:04
flingrbasak: you get silent hypothetical pool corruptions this way :>12:04
kraiskilTJ-, thanks. Guess its gone then from 20.04 :(12:05
flingrbasak: non-matching versions are incompatible by the default uless stated otherwise12:05
flingrbasak: the stable abi is still have to be implemented for this to be the case12:05
tango_uniform_xrfling where are you seeing mismatched versions? i am on 20.04 and i see the same for my kernel module and zfsutils-linux12:05
TJ-kraiskil: see https://launchpad.net/ubuntu/+source/iprint/+changelog12:06
flingtango_uniform_xr: `zfs --version` on both livecd and on installed system12:06
TJ-kraiskil: note "Deleted in cosmic-release (Reason: (From Debian) ROM; dead, trivial, many alternatives; Debi...) "12:06
tango_uniform_xrzfs-0.8.3-1ubuntu12.912:06
tango_uniform_xrzfs-kmod-0.8.3-1ubuntu12.712:06
flingtango_uniform_xr: this is what I would like to have12:07
tango_uniform_xrdid you update the system?12:07
flingtango_uniform_xr: no, have livecd running now12:07
rbasakfling: I'm just saying that the code you're running doesn't necessarily match what you think you see in the version numbers. Stable distributions patch to fix things and the version number just represents the patch base, not the final result. I don't know what the situation is with zfs. I'm just saying that the version number is the incorrect label to use for comparison in any stable distribution.12:08
flingrbasak: ok12:09
rbasakA simpler example is when distros patch for security issues, and users come along and tell us that we're vulnerable because we haven't updated to the latest upstream release. It's the same point.12:09
flingrbasak: also the kernel version is 5.8 but 0.8.4 is only compatible with up to 5.612:09
tango_uniform_xrfling i've had no issues making zfs pools from the ubuntu installer, as well as my own system12:10
tango_uniform_xrone i made from installer using "zpool create" is still running several months later12:10
flingtango_uniform_xr: you can't detect the silent corruptions you get from the mismatching versions12:11
flingtango_uniform_xr: there is no tool for this12:11
flingtango_uniform_xr: they will not appear like checksum errors in zpool status12:11
flingtango_uniform_xr: silent corruptions usually cause file size to not match the actual data length you read from the files, zero padding, zeroed files, random crashed, unreadable objects in snapshots and unimportable pools12:12
flingtango_uniform_xr: the issues don't always hit you right away and you still need an external tool for comparing checksums if you can't notice it in general use12:13
tango_uniform_xri'm not sure, but for what it's worth the pool i said i made was a bootable one, it's still booting and everything checks out12:13
flingignorance is bliss12:14
kraiskilTJ-, lol. "many alternatives" - guess it is time to learn new tools then :D12:14
rbasakMaybe there's something going on here that you're missing, and everyone else is actually OK and there aren't widespread reports of unexplained corruption because users generally don't have a broken setup like you think they do?12:15
tango_uniform_xrthe zfs-dkms package isn't used by default12:18
tango_uniform_xrsorry, i got something confused12:19
flingrbasak: corruptions are expected but not reported a lot because noone is comparing checksums12:19
flingtango_uniform_xr: do you have the livecd image you used for the install?12:26
=== kirk781 is now known as Nero_rome
tango_uniform_xrfling i'm about to look at the desktop installer right now12:35
tango_uniform_xrfling upon further inspection, it seems that the desktop installer is using the HWE kernel, and that is why you see the different versions there12:40
flingtango_uniform_xr: ok, looks like I will have to perform the backup plan and to somehow install the older kernel version and then recreate pools from scratch12:41
flingAlso where should I bugreport this to?12:42
tango_uniform_xrfling something could go like, install to VM > install zfsutils on VM > install the desired system from your VM, but you will have to go through manual install like https://openzfs.github.io/openzfs-docs/Getting%20Started/Ubuntu/Ubuntu%2020.04%20Root%20on%20ZFS.html12:42
flingtango_uniform_xr: it will probably be simplier to just fix the system I have by matching versions and recreating the pools12:44
tango_uniform_xrfling looks like you can report bugs here https://github.com/canonical/ubuntu-desktop-installer/issues12:47
flingthanks12:47
tango_uniform_xrfling but really it would be against the HWE kernel if you think they shouldn't use a different zfs module version12:48
swebhow tel squid to use another proxy(Socks5) ?13:01
jailbreaksweb, I'd like to know that, too.13:05
TJ-tango_uniform_xr: I'd think it more likely that the zfs utils package should be part of HWE to match the HWE kernel13:12
tango_uniform_xrTJ- maybe that too13:13
TJ-tango_uniform_xr: that's what HWE is for, and why kernel and Xorg libraries are part of it13:13
tango_uniform_xryeah i know about HWE, that's how i recognized it was using HWE kernel with just a uname -r :p13:14
swebok, in maas how to restart squid process, seems it's not controlled by systemd.13:15
leftyfbsweb: you might be better off asking in #maas13:17
=== azidhaka_ is now known as azidhaka
=== coconut_ is now known as coconut
wedrHi, need help with fixing this weird artifact issue. https://i.imgur.com/QMsBn9i.png     I have to copy/paste text inside a text editor in order to read the messages.13:26
=== azidhaka_ is now known as azidhaka
=== lucas_ is now known as lucascastro
Francimanhi all14:03
Francimandoes anybody use microsoft teams on ubuntu?14:03
leftyfbFranciman: you'll need to contact Microsoft for support with their application14:04
FrancimanI don't need support14:04
FrancimanI just want to know other users experiences14:04
BluesKajHi all14:05
Francimanin gnome, can you do screen sharing?14:05
Francimangnome over wayland14:05
signofzetaYes, I use Teams on Linux.  the whole point of an Electron app is to ensure feature parity across platforms, but they somehow failed at that.  the windows and macOS versions are ahead of us in features, but what is there does work perfectly.  i haven't tried screen sharing, though.14:27
signofzetabut I've been shared at, and it's worked.14:28
Xavierdarkness 14:28
Francimansignofzeta: do you use gnome on wayland?14:28
signofzetayes14:28
Francimanthanks14:28
signofzetaI'm on Ubuntu 20.10, where Wayland is the default14:28
FrancimanI have no problem with anything, too14:29
Francimanbut I can't screen share14:29
signofzetaI haven't tried that, sadly, and I'm not at home today to test.14:30
raphaif "netplan apply" brings up a static interface, but does not give it the IP that's configured in the YAML, what's still missing?14:31
leftyfbrapha: you still have dhcp enabled in that same yaml or a different one?14:38
raphaleftyfb: eno4 has dhcp: true, and it must be so. eno3 has dhcp: false and a static ip, and is working properly. the if in question is eno1, which has dhcp: false and a static ip (and gw & ns set explicitly) but is not getting configured by netplan apply.14:44
raphafwiw i now found a thread on askubuntu.com that claims a reboot can sometimes be the only way ... so began a reboot, but it usually takes 10-15 minutes (datacenter hardware)14:44
locsmifDoes anybody know why mysqlrouter's AppArmor profile is so broken?14:47
locsmifIt just won't start under Hirsute14:53
locsmifUntil AppArmor is completely disabled, then it works just fine.14:53
locsmifHonestly, after seeing everything broken by AppArmor, I absolutely despise it by now14:54
locsmifThe amount of time bug reporting and tweaking AppArmor profiles.. I no longer think it's worth it, tbh14:56
catphishhow might i run a script on a terminal (instead of login) at boot?15:12
raphaleftyfb: rebooting definitely makes it work.15:13
leftyfbcatphish: https://www.howtogeek.com/687970/how-to-run-a-linux-program-at-startup-with-systemd/15:14
catphishleftyfb: interesting i'm on that page, i'm not sure if that's the right answer, at least i'm not sure how to give it a terminal, but i think i can make that do what i want15:15
leftyfbcatphish: "give is a terminal"?15:15
catphishi want to run a process in a tty instead of running login15:16
catphishso that it displays on the screen at boot15:16
leftyfbcatphish: what is this for?15:16
catphishleftyfb: specifically, i'm trying to build a computer that boots, runs a speed test, and displays the results15:17
leftyfbcatphish: then run this in a GUI window the pops up at boot after auto-logging in15:18
catphishi wasn't planning to tun a GUI, would prefer just to use a tty15:18
leftyfbcatphish: said tty would need to be auto-logged in. Which is a horrible idea15:19
catphishwhy?15:20
leftyfbcatphish: this might help you:   exec 1>> $LOG < /dev/tty2 > /dev/tty2 2>&115:29
leftyfbcatphish: $LOG being the output of whatever you want to be displayed on the terminal15:30
catphishleftyfb: thanks, i've just been looking at this approach: https://bbs.archlinux.org/viewtopic.php?id=12950915:31
catphish(running it through systemd,which has an option for tty apparently)15:31
catphishgot it working, i needed to do 2 things 1) create a systemd service with StandardInput=tty StandardOutput=tty TTYPath=/dev/tty1 2) reconfigure logind not to spawn on any ttys15:49
leftyfbcatphish: why that last part? Couldn't you just add a clear ; speedtest-cli to your command?15:51
catphishleftyfb: it doesn't appear to work at all when login is running, i'm not sure why not15:52
leftyfbah, because it's probably trying to bind to it as opposed to just displaying to it15:52
catphishi suspect that's the case15:52
flingIs there a packagelist for `apt-mark manual` for a minimal system?15:52
flingI want to remove all the desktop stuff and keep it really minimal15:53
catphishin any case, this seems to me to be the "correct" way to do it, without auto-login or console redirection, i'm happy anyway :)15:53
flingtango_uniform_xr: also how to replace this HWE kernel with the regular one properly?15:59
=== o is now known as niko
tango_uniform_xrfling are you trying to edit ubuntu installer?16:03
=== tuxifreund is now known as tuxifreund_
flingtango_uniform_xr: nah, shrinking the system, going to recreate the pool and put the system back16:05
tango_uniform_xryou can install the desired kernel, remove hwe one, update grub config with `update-grub`16:06
=== Arsen is now known as ArsenArsen
=== ArsenArsen is now known as Arsen
=== apw is now known as apw-
=== apw- is now known as cafetiere
=== cafetiere is now known as apw
=== Arsen is now known as ArsenArsen
flingtango_uniform_xr: what is the package name?16:09
=== _________ is now known as noodly
=== noodly is now known as __________
tango_uniform_xrfling `linux-image-generic-hwe` you can install the new kernel (do that first unless it's not booted) then you can install `linux-image-generic-hwe`16:10
=== __________ is now known as _________
flingtango_uniform_xr: I have linux-generic-hwe-20.0416:11
tango_uniform_xrsorry, `linux-image-generic` is what i meant to put at the end there16:11
flingok16:11
TuorHi, is it possible to install java 7 or even java 6 on Ubuntu 20.04 (even if it's only a tar.gz extracted in /opt )?16:13
flingtango_uniform_xr: how to also update initramfs?16:13
tango_uniform_xrfling `update-initramfs -u` to update latest one or `update-initramfs -ukall` to remake all of them16:14
flingtango_uniform_xr: update-initramfs: Generating /boot/initrd.img-5.8.0-55-generic16:15
flingtango_uniform_xr: but 5.8.0 is hwe which I uninstalled16:15
flingshould I remove them by hand first?16:15
flingrm worked :>16:16
flingwhat is open-vm-tools and open-vm-tools-desktop doing?16:18
=== ueberall is now known as uebera||
=== uebera|| is now known as ueberall
flingWhy are there libs in `apt-mark showmanual` list?16:26
=== tuxifreund_ is now known as tuxifreund
=== engine83 is now known as engine_83
=== m0nkey_ is now known as DavieDavieDave
fling>> Adding boot menu entry for UEFI Firmware Settings16:40
flingwhich command for this? ^16:41
jeremy31fling: I think it is part of update-grub16:42
rcrhow would i list the apt pacakges available for a single `/etc/apt/sources.list.d/foo.list` ?16:42
flingjeremy31: thanks :>16:43
flinghow to prevent linux-image-generic from updating?16:45
flingor linux-modules specifically?16:47
jeremy31fling: why block linux-modules?16:50
=== Guest6000 is now known as westor
mra90how to disble icons cascade17:00
mra90I want them do be next to each other even if they are differne instances of the same program like a terminal for example17:01
lotuspsychjemra90: you can tweak your system with dconf-editor mostly17:01
lotuspsychjelike the way icons behave when you click on them17:02
lotuspsychjemra90: but not sure, the option you are looking for works on gnomes dock17:03
mra90I don;t see such an option anywhere17:04
mra90very anoying17:04
lotuspsychjemra90: maybe docky can do it17:04
flingjeremy31: because there is this 'zsys' package which is taking auto snapshots17:05
flingjeremy31: and I want to prevent it from running zfs commands on userspace upgrades17:05
lotuspsychjemra90: check org/gnome/shell/extensions/dash-to-dock/click-action17:07
mra90ok thanks17:11
pi0does one need to specify cores in ubuntu17:17
pi0i mean i installed it17:17
leftyfbpi0: huh?17:19
pi0i have a 6 core cpu17:23
pi0on my laptop17:23
pi0using blender17:23
pi0not sure if i have to specifiy the cpu for blender to take advantage of my cores17:24
leftyfbpi0: https://blender.stackexchange.com/a/8703517:25
pi0hmm17:32
=== cbreak_ is now known as cbreak
nyuszika7hhow do I get Chrome to detect system dark mode, so websites using `prefers-color-scheme: dark` styles will display in dark mode? it works fine on Windows 10, but won't detect system dark mode on Ubuntu 21.0417:44
beweescan someone who doesn't run kde can try to install `apt install kde-plasma-desktop|grep gnome` and paste that for me17:52
francisbewees: on focal that gets a solitary "pulseaudio-module-bluetooth | bluez-alsa orion-gtk-theme tk | wish *gnome*"17:57
=== ArsenArsen is now known as Arsen
GQCGPKnmgGGJLuRIng Fr3EnoD3 usErS herE i5 impuDEnt tHEfT18:48
flingwhich dir to mount efi partition before updating grub?18:52
beweesfrancis: thanks18:52
flingis it /boot/efi?18:53
Ky0sh1r0hi, i wrecked my gnome-keyring, which isn't that a big thing. but, when starting over with an empty one, I cannot connect a google account via gnome online accounts, it stalls at loading "accounts.google.com". I also found a hint saying the same problem appears on epiphany, which is true on my system 21.04. Is this a new problem on 21.04? It worked since 16.04 until 20.10 so far I could remember. (as posted on freenode for a18:58
Ky0sh1r0moment)18:58
flinghmm I'm running update-grub but on reboot I still see the old kernel entry there18:59
Guest26I am making my own version of Ubuntu, called Moobuntu, and I will need work on it.19:02
Guest26My preview of Moobuntu: https://jpcode05.github.io/moobuntu/19:02
DODO11salut19:07
DODO11Lantizia19:07
DODO11 vous parlez le français19:08
Lantizianon19:10
Guest76how many people actually use irc?19:24
oerheksGuest76, how is that related to ubuntu support?19:24
Mekaneck!ot | Guest7619:24
ubottuGuest76: #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!19:24
sarnoldGuest76: it's hard to know for sure but hundreds of thousands of people is likely https://netsplit.de/19:26
oerheksi would expect 'how many use ubuntu' :-D19:26
oerheksalso those stats are not available.19:27
flinggot ubuntu booting yay!19:27
djquit20:05
ice9ubuntu 21.04 randomly crash when left without activity and i have to hard reset the laptop; any idea?20:37
illuminatedare you hitting an OOM situation, you think?20:40
ice9illuminated, not at all, i have only the browser opened with 5 tabs and the device is left like that20:40
illuminatednfi then, sorry20:41
Alabalisticice9: how old is the laptop and last deep cleaning?20:41
ice9Alabalistic, it's a brand new laptop with fresh installation of ubuntu20:42
Alabalisticdisplay goes off and don't weakup when you open it20:43
ice9no, the display is on but it freeze on the BIOS wallpaper20:44
Alabalisticuname -r20:45
Alabalisticwhat is the output20:45
ice95.11.0-22-generic20:45
Alabalisticand let's see if your kernel supports the great hardware you have20:45
Alabalisticwhat is your video card20:46
Alabalisticsudo lshw  # will list all the specs20:46
ice9intel and nvidia20:46
leftyfbice9: try disabling suspend/hibernate and any power saving features20:46
beweescan someone who doesn't use kde-plasma or gnome in ubuntu please paste all of `apt install kde-plasma-desktop` :-)20:47
AlabalisticI use Kubuntu with Plasma so can't realy enter in gnome20:47
Alabalisticbewees:  no idea what do you mean20:47
Alabalisticnvidia driver is the main suspect for ice920:48
beweesAlabalistic: can you check if you have this package installed: gnome-control-center or gnome-menus20:48
bewees`dpkg -l|grep gnome-control-center`20:49
Alabalisticgnome-control-center-data/hirsute,hirsute 1:3.38.5-1ubuntu1 all20:49
Alabalisticgnome-control-center-dev/hirsute,hirsute 1:3.38.5-1ubuntu1 all20:49
Alabalisticgnome-control-center-faces/hirsute,hirsute 1:3.38.5-1ubuntu1 all20:49
Alabalisticgnome-control-center/hirsute 1:3.38.5-1ubuntu1 amd6420:49
beweesok, so not installed20:49
Alabalisticbewees:  the output of your command gives null20:50
beweesfor some reason my ubuntu-server tries to install those gnome packages when i try to install kde :(20:50
AlabalisticI did apt list. | grep but was wrong20:50
Alabalistici can check my jump box there is kubuntu on it20:51
Alabalistichttps://termbin.com/daf820:53
Alabalisticthis is | grep gnome bewees20:53
beweesthanks Alabalistic, you've got those packages also installed, why?20:58
Alabalisticit's a kubuntu minimal install with ssh and teamviewer noting else20:59
beweesaccording to apt-rdepends it kde-plasma shouldn't be dependent on those packages https://dpaste.org/T80S20:59
beweesreally weird, i wonder what i'm missing20:59
=== DavieDavieDave is now known as m0nkey_
robertglick[m]Hello21:36
jamespOver in #ubuntu-offtopic, I am discussing plans for my first Linux Distro, Moobuntu.21:52
goddardwhere does gnome shell save the openvpn settings?21:53
Alabalistic_try  /etc21:54
Alabalistic_by default all settings are in /etc21:54
Alabalistic_otherwise do ls -la in your home directory and see the hidden folders, starting with dot21:55
goddardnot finding anything22:07
sarnoldgoddard: /etc/NetworkManager/system-connections/ perhaps?22:08
goddardi dont know if gnome devs know this but how the hell can you remove a file chooser text file22:10
goddardi literally have no way to make the field empty22:10
matsamanoh yeah they've really been making those fields worse22:11
sarnoldcan you rephrase the question?22:11
goddardwell enter a file in the file chooser filed for a key or cert in vpn22:12
goddardyou cant remove it22:12
goddardthen their password prompts are a modal that takes over the whole screen22:16
goddardwhat if my password is saved in a password manager?22:17
goddardi have to know its gonna ask me for a password so i  can copy it22:17
goddardcrazy dumb22:17
goddardi like gnome but these are a little too much22:18
Alabalistic_plasma baby22:20
Alabalistic_love it22:20
goddardyeah plasma is great22:20
goddardreally both are awesome22:22
goddardplasma needs to refine more and gnome needs to refine less22:22
goddardbut its cool in the power section of settings22:22
goddardlooks like it has new power options22:23
webchat44This is infuriating. Systemd keeps taking over more and more shit. I don't have the NTP commands to sync time anymore, clock is wrong, and systemd claims there;s an NTP service going22:44
webchat44what the fuck.. how do I just sync the fucking time22:44
webchat44the man page has all sorts of options about how to show that systemd has taken over, but I don't see a sync option.22:44
webchat44it enables and disables NTP, but it says its enabled, and it clearly aint synced22:44
webchat44$ timedatectl22:45
webchat44               Local time: Tue 2021-06-22 18:40:47 EDT22:45
webchat44           Universal time: Tue 2021-06-22 22:40:47 UTC22:45
webchat44                 RTC time: Tue 2021-06-22 22:40:4722:45
webchat44                Time zone: America/New_York (EDT, -0400)22:45
webchat44System clock synchronized: no22:45
jamespthis is just one of the reasons so many people hate systemd22:46
webchat45Let us try this again. How do I sync the time? See this manpage? https://manpages.ubuntu.com/manpages/bionic/man1/timedatectl.1.html It literally does not say how to force an NTP synchronization. You can turn it on or off, but it says absolutely zip about forcing a sync. You know, people with multiboot frequently have clocks that are hours off...22:50
oerheksmultiboot, windows probably does that, there are many pages howto force windows or ubuntu to keep the same clock setting22:51
oerhekswhat have you found?22:51
webchat45The fact that there is not a single manpage describing a command analogous to ntpd -gg. Just tell me what command to give so systemd does the proper thing.22:52
webchat45*ntpd -gq, excuse my typo. This is nuts. Why is this so hard? Why does systemd make all this 100x more obscure and convoluted?22:53
webchat45ServerFault answers say that systemd literally can't do that. https://serverfault.com/questions/948974/force-systemd-timesyncd-to-sync-time-with-ntp-server-immediately22:54
oerheks... ntp is not standard installed. and no need for it, AFAIK22:55
oerheksand does that survive reboto?22:55
oerheksc/reboot22:55
webchat45NTP has been standard issue on every nix box I've used for decades22:55
webchat45It works great, when it's there, because it'll fix itself, keep time discipline, etc22:55
oerheksUbuntu by default uses timedatectl / timesyncd to synchronize time, you are free to choose something else22:56
webchat45oerheks, also, if you think there's no need for NTP in the world, you're probably not qualified to even care why it exists or understand the various issues that arise in trying to keep a somewhat linear looking time scale in a universe with moving objects22:56
sarnoldtimedatectl stuff works fine for most folks, but feel free to install chrony or ntpd if you'd rather22:57
webchat45sarnold, I'm pissed they replaced something that worked great with something that lacks basic functionality and doesn;t actually work.22:57
webchat45I had enough trouble getting here, because I had to manually set my clock22:57
oerheksyour actual issue was an other OS that hijaacks your time control. but sure, rant away22:58
webchat45oerheks, no, windows isn't allowed to modify the system clock.22:58
webchat45I turned my damn computer off for a few hours.22:58
webchat45That shouldn't cause massive headaches.22:58
sarnoldreplace the cmos battery?22:58
leftyfbwebchat45: first off, settle down. second, did you try using timedatectl yet?23:00
webchat45Or maybe technology was invented decades ago to make that a moot point, and it's infuriating that we're regressing in functionality so badly23:00
webchat45leftyfb, yes, and I linked to the man page23:00
webchat45leftyfb, it literally cannot force a sync.23:00
webchat45Funny though, it claims "NTP service: active"23:01
leftyfbyes, an NTP service is active. It does not say "ntpd" is active23:02
webchat45Yes, and any reasonable NTP service comes with a force sync command.23:02
webchat45This is a completely trash implementation23:03
leftyfbwebchat45: is this for a server or workstation?23:03
webchat45a workstation, and basically every cryptographic network protocol shits itself as soon as it realizes the time is wronfg23:03
webchat45so I had to manually set it just to get *here*23:03
leftyfbwebchat45: please watch the language and attitude. We are trying to help and you are doing nothing but going off the rails on how much you hate the situation instead of working with us to resolve it23:04
webchat45That's the kind of thing that keeps anyone besides people with infinite patience or prior tech industry experience from wanting to use linux. Turn it on, and the first thing you get are SSL errors about the clock?23:04
leftyfbwebchat45: if timedatectl does not meet your requirements, then disable it and install and setup ntpd23:05
webchat45leftyfb, fine where do I file feedback then?23:05
webchat45If the answer is , "we don't support that", i'd like to leave feedback23:05
oerheksto windows, that hijaacks the clock?23:05
webchat45I can always install, compile, code up something else myself. But WHY is this so hard? it's one of the most basic functions of a computer.23:05
webchat45It leaves a nasty taste in my mouth every time systemd turns up somewhere new23:06
leftyfbwebchat45: https://github.com/systemd/systemd/issues23:06
webchat45no, to Canonical, for using such a crap implementation23:07
webchat45poettering is entirely about the EWONTFIX23:07
leftyfbwebchat45: stop. Go install ntpd and be done with it. Then report the bug to the project itself, not to a distribution which includes it.23:07
webchat45leftyfb, No. I want to file feedback that I believe the project should choose differently23:08
webchat45Is that somehow too offensive for you?23:08
leftyfbwebchat45: asking ubuntu remove systemd isn't going to happen23:08
cbreakwhy would you want to remove systemd?23:08
webchat45Did I say that?23:08
cbreakit's clearly superior to all alternatives23:08
webchat45You've suggested that there are other NTP services that work with systemd23:08
leftyfbcbreak: please stop, you're not helping23:08
webchat45Why can't we have one of those?23:08
sarnoldwebchat45: 'ubuntu-bug /usr/bin/timedatectl'23:08
webchat45sarnold, thank you.23:09
oerheksChange timedatectl / timesyncd to synchronize time back to ntpd ...23:09
cbreaksystemd can start what ever thing you want23:09
webchat45Finally, someone who can answer a direct question rather than saying, "you're holding it wrong."23:09
cbreakit's quite flexible23:09
oerheksone could try ..23:09
oerheksi would start with debian then :-D23:10
=== xse_ is now known as xse
webchat45there, filed.. now to go deal with my actual issue, instead of politics. JFC...23:28
webchat45By the way, attacking people who ask for help, by saying, "23:28
webchat45"No one needs it" is just being a complete ..well you know.23:28

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