[00:04] True [00:05] The issue I have with it really relates to when you are getting blocked due to perms on things like snap, docker, lxc the diagnosis is more difficult [00:06] so a new Ubuntu user may have no idea about snap perms, if it doesn't get set properly it is justbroken [00:06] 21.10 gives a permission tab in settings, i found out [00:06] The UX on linux still leaving much to be desired for a new user. But I don't personally care about it since I spend 8 hours a day on a supercomputer running Centos [00:07] neat [00:07] Yeah iirc 21.10 I can toggle things as needed [00:07] But snap permissions aren't the most obvious of things [00:07] Better than asking a new user to go ahead and use SELinux though [00:09] Yeah true, using ubuntu right now cause it seems like the most straight-forward solution for a new comer it is indeed a bit odd [00:09] Pop might be easier but I haven't used it? [00:10] oh my first install was actually pop. I just went for ubuntu after my win11 update broke it and it couldn't tell me why using 'lp' as username wouldn't install the thing xD [00:11] (it's a system reserved name in case you didn't know :p) [00:12] Printing related iirc [00:13] Try making a folder called CON in windows [00:13] lmao, will do that [00:13] No ya won't ;) [00:14] well it's not going to explode, is it? :p [00:14] bsod wouldn't be too weird heh [00:17] It won't let you do it [00:18] Nor a folder called NUL [00:21] well glad I didn't stumble on that [00:22] Lots of edge cases like that due to how things were made in the erly computing days [00:51] anybody here know perl [01:07] Hello is this command written correctly? fatattr -r /storage/A123-B345/MyFolder/ [01:51] join #fedora [01:51] oopsy doodles === M4he is now known as mahe [02:23] yo === sadara_ is now known as sadara [02:36] Is this command correct or not? fatattr -r /storage/A123-B345/MyFolder/ [02:59] Peter1: Does not look to be correct as per: http://manpages.ubuntu.com/manpages/bionic/man1/fatattr.1.html -- the command operates on files. [03:07] Thank you for the answer. [03:08] Peter1: What is yoyr goal - perhpas then we can the better guide. [03:36] I need to remove the fat32 read only atribute from a folder on an sd card. [03:43] Peter1: http://askubuntu.com/questions/113733/how-do-i-correctly-mount-a-ntfs-partition-in-etc-fstab <- If you mount the ntfs partition with the permissions option, then chmod / chown will work. [03:58] i think i'm getting hit by this bug, but i think i have a newer version [03:58] https://bugs.launchpad.net/ubuntu/+source/nfs-utils/+bug/1821261 [03:58] Launchpad bug 1821261 in nfs-utils (Ubuntu Disco) "nfsiostat broken and exits with traceback" [Medium, Fix Released] [03:58] actually i dont have nfs-utils, i have nfs-common 1.3.4-4ubuntu2.1 21.04 [03:59] i see https://bugs.launchpad.net/ubuntu/+source/nfs-utils/+bug/1938922 is there a way i can work around this [03:59] Launchpad bug 1938922 in nfs-utils (Ubuntu) "nfsiostat TypeError Checking - Linux NFS Utils Git Pull needed." [Undecided, New] [05:28] prost [06:48] prof wont let me use nano [06:48] vi only :( === ajfriesen9 is now known as ajfriesen [07:19] How is the prof going to detect whether you used vi or nano to edit a file? === Ricardus_ is now known as Ricardus [07:20] detect the use of vi or nano? can that be done? [07:21] nice trivia question [07:21] I guess, add a couple of i's at arbitrary locations, and maybe a ":wq" or "ZZ" at the end, that should convince the prof [07:29] hahaha [07:29] it's not a bad idea to learn how to use vi even if it's only just the basics. it's incredibly ubiquitous and if you can use it on one Linux system you'll be ready for pretty much any other *nix variant out there [07:33] Nah tell him that your religion doesn't allow you to use vi; only emacs: https://en.wikipedia.org/wiki/Editor_war [07:33] * alkisg managed to avoid both of them for 3 decades now... [07:34] * guiverc gives an off-topic :) [07:40] Hi! Is it safe to upgrade zfs systems to 21.10 by now? The release notes link bug/1906476, but I'm not sure what to make of the "fix released/confirmed"-statuses there. [07:40] If it isn't safe, yet: where will be a good place to get that information? [07:42] I was asking yesterday about xwayland apps like VS Code looking blurry [07:43] Someone provided help and showed me app looks ok. I remember now why, that person's scaling was 200% or something like that, the problem for me was fractional scaling or 125% [07:43] So what I really wanted to ask was. Does fractional scaling work now in Ubuntu, correctly? [08:29] How to find the SKU or the Manufacturer Part of License installed in Fortigate firewalls? [08:57] hey all [08:57] i have a quick question, i haven't used ubuntu in ages, i used to be able to create quick rc.d scripts to run oneliners at boot [08:58] can someone point me in the direction to do this with systemd? it seems like every time i try a guide i find online it fails.... [08:58] like is there a basic systemd script example somewhere in the ubuntu docs i can't find? [09:00] webchat21: https://www.shellhacks.com/systemd-service-file-example/ or Google [09:01] webchat21 hi. What you're looking for is systemd service units. === denningsrogue4 is now known as denningsrogue [09:01] Creating one will most likely satisfy your need. [09:01] SteelRose KBar thanks i'll have a peek [09:01] ya i just want to run a oneliner [09:02] is there a way to run it as a specific user at boot? [09:02] I believe there is. [09:03] ahh i think i found it [09:03] in the [service] section its just user= and group= [09:03] systemd.service(5); systemd.unit(5) [09:07] webchat you can create a oneshot service. Look for "Example 3. Oneshot service" in systemd.service(5). [09:07] Exactly what you need. [09:08] webchat21 [09:09] nice thanks man [09:10] KBar that is exactly what i've been looking for lol [09:10] Great! Good luck. [09:11] ty [09:13] faaack [09:13] same old shit [09:14] i think it's a problem with my script [09:14] well not my script, but the way i'm trying to run it [09:15] i +x'd it, it runs fine if i execute it as the user, by /usr/bin/myscript [09:15] it has a proper she-bang, but i need to cd to a dir first to run the one-liner, which i think is messing it up when run from systemd [09:16] the script is 3 lines........#!/bin/bash [09:16] cd /home/rustserver/rust [09:16] umod launch -v logfile output.log [09:17] which is fine if run as /usr/bin/rust-start......but trying to get the systemd service to run that script fails [09:17] systemctl status says /usr/bin/rust-start: line 4: umod: command not found === tofran7 is now known as tofran [09:39] it can't find the umod command in PATH. What does ''type umod'' say? [09:45] How do I regenerate my initramfs? Doesn't boot and I wonder if something went wrong during update [09:45] apt purge linux-generic followed by apt install linux-generic didn't work (?) [09:48] webchat21 why not use the '&&' control operator? Your service is starting up too early would be my guess. [09:50] webchat21 I think you can create a .timer unit for that service and assign a specific value, i.e. after all drives have been mounted. [09:51] bailsman: sudo update-initramfs -u [09:51] Also run `sudo apt full-upgrade` to make sure nothing was left half-installed... === Square is now known as Sqaure [10:08] geirha umod is a command specific to the rustserver user....it isn't a global env variable [10:08] that's why i need to run it in /home/rustserver/rust and as the rustserver user [10:09] type will tell where it's located, so that you can add it to the PATH variable systemd uses [10:10] I'd also suggest adding the `-a` option. [10:10] To list all information. [10:10] geirha umod is /home/rustserver/.dotnet/tools/umod [10:10] i guess i could pass the full path to the binary in my script too [10:10] +1 [10:11] KBar thanks for the reminder of && :P [10:11] right, so just prepend that dir to PATH [10:11] Yep. Since it's not in $HOME/bin or $HOME/.local/bin [10:11] It won't get picked up [10:13] just add the path manually PATH='/home/rustserver/.dotnet/tools:$PATH' [10:17] getting closer [10:17] it's half starting, but failing on some missing dotnot env vars [10:17] how can i confirm this is being run as the rustserver user? [10:18] under type=oneshot ihave User=rustserver [10:18] but nowhere in the systmctl status output does it say anything about running as that actual user [10:24] webchat21: ps -ef | grep youprocess | grep rustserver [10:26] it should run as the right user, but it won't read .bashrc or .profile, so if you set those env vars there, they won't be set when systemd runs it === MrA is now known as Ders [10:44] hi, I want to create a local repo which will point to ubuntu repos, so the idea is to point my laptop into this local repo url which will grab packages from remote. I would like to ask which url should I use for this? I was thinking in using this http://archive.ubuntu.com/ubuntu/dists/bionic/main/ could someone please confirm? [10:44] !sources | masber [10:44] masber: The packages in Ubuntu are divided into several sections. More information at https://help.ubuntu.com/community/Repositories - See https://wiki.ubuntu.com/RecommendedSources for the recommended way to set up your repositories. [12:55] Hello all, i want to buy a new Computer but it is hard to figure out if all parts runs natively from scratch without fancy stuff or proprietary drivers. Could anyone help me please? Any experience with the Gigabyte X570 Aorus Master Mainboard? [12:59] you might want to visit #hardware for that? [12:59] Thanks [13:00] basicly, all you need is to check out the videocard/gpu, for now AMD is supported fine, Nvidia we are still waiting for drivers that work with wayland. [13:00] motherboards are practically all supported, also cpu's [13:00] and what about every tiny chipset on the board? like ethernet from realtek, the sound? wifi onboard? fan and temperature i/o chipsets? [13:01] wifi could be your only concern, check out https://wireless.wiki.kernel.org/ [13:02] And i read that on some boards (most) linux is not able to read fan speed, temperature from sensors and so on? [13:02] no, you read that wrong. [13:03] A word of warning, you're not likely to get away from proprietary drivers in some cases, most notably GPUs. [13:03] Unless advancements have been made in the open-source replacements (e.g. nouveau) that I am unaware of, which is distinctly possible. [13:04] That is why i ask here, i don't want to use any proprietary driver. and for the gpu i want to use amd with the open source driver [13:05] I don't know how well AMD GPUs work with the open source drivers, I've never tested. [13:05] good choice, for now [13:05] !amd [13:05] Open drivers for AMD cards: amdgpu (cards >= GCN1.2 aka GCN 3rd gen), radeon (older cards). AMD has a closed driver named amdgpu-pro that supports the same cards as amdgpu, but it is generally unnecessary. FGLRX is not supported in any current Ubuntu version or in this channel. For info on GCN levels, see https://en.wikipedia.org/wiki/List_of_AMD_graphics_processing_units [13:05] if i want to buy a 3000 dollar pc, i want that all works from scratch.... [13:06] Oh, neat. I know what my next GPU will be, then. [13:06] * nvidia is working on drivers, no clue when they appear [13:08] + [13:08] - [13:08] = [13:43] im trying to get the jamendo plugin to work on rhythmbox on 20,04. it doesnt pull in any music from jamendo. any recommendations? plugin doesnt allow for configuration [13:44] webchat58: clementine has a lot of options, but didnt test jamendo myself there [13:45] i try to stay close to the programs that come default with ubuntu lotuspsychje [13:49] 'Morning folks [13:49] ceph [13:54] webchat58: You may have to be more open to installing additional packages, though the default package repositories have an astounding number of packages available. [13:56] hello again guys, i have to compile and install a patched kernel via .deb packages, dpkg-deb does not work anymore, how can i make it? [13:56] jamendo plugin, i don't see it, in rhythmbox [13:57] sorry, not dpkg-deb but another old command [13:57] !find banshee-extension-jamendo [13:57] Package/file banshee-extension-jamendo does not exist in impish [13:58] that one is gone too [13:58] webchat58: http://support.moonpoint.com/software/audio_video/VLC/Jamendo/ [13:58] webchat58, HOW did you install that plugin? [13:58] "make-kpkg" is the command that does not work anymore [13:59] !build [13:59] Compiling software from source? Read the tips at https://help.ubuntu.com/community/CompilingSoftware (But remember to search for pre-built !packages first) [14:00] make-kpkg or make-dpkg ? [14:00] "make-kpkg is (being) retired, the official Debian way is make deb-pkg " ,... [14:01] oerheks, https://www.mogaal.com/articulos/kernel-a-la-debian.html [14:01] i used "make-kpkg --initrd kernel_image kernel_headers" years ago [14:04] oerheks, it is part of grilo media browser [14:05] rhythmbox than shows jamendo and radio france under "Shared" [14:08] and the grilo media browser is listed as plugin in rhythmbox === denningsrogue0 is now known as denningsrogue [14:51] hi, need help. I don't get internet access even when I'm connected to WIFI or LAN. The default DNS server is 127.0.0.53. I changed it to 8.8.8.8 or 1.1.1.1, so it works, I can access internet. But after I reboot or connect to a VPN network, DNS server is automatically set back to 127.0.0.53. It's really annoying that I have to change it everytime. How do I fix this? [14:56] impspc_: check which DNS values you have to use with your VPN provider [14:56] I think its systemd-resolved [14:57] impspc_, it is related to system-resolved [14:57] it should be === five63 is now known as five6 [14:59] impspc_: lets start by finding out which dns servers you are being assigned. Connect to wifi/LAN but not VPN and run: systemd-resolve --status | "DNS Servers" [14:59] impspc_: lets start by finding out which dns servers you are being assigned. Connect to wifi/LAN but not VPN and run: systemd-resolve --status | "DNS Servers" [14:59] impspc: ^ [15:00] Output: Failed to get global data: Unit dbus-org.freedesktop.resolve1.service not found. [15:00] DNS Servers: command not found [15:00] ugh [15:00] impspc_: lets start by finding out which dns servers you are being assigned. Connect to wifi/LAN but not VPN and run: systemd-resolve --status | grep "DNS Servers" [15:00] orry [15:00] sorry [15:00] impspc: to be clear, your ubuntu client is more than likely configured just fine and doing exactly what it's told to do. My guess is your DHCP server/router is assigning a bad DNS server [15:01] impspc: systemd-resolve --status | grep "DNS Servers" [15:01] Failed to get global data: Unit dbus-org.freedesktop.resolve1.service not found. [15:01] nothing else? [15:01] that's all [15:02] impspc: looks to me like your dhcp server/router isn't assigning any nameservers [15:02] impspc: have you messed with network settings on this machine at all? [15:03] impspc: also, what version of ubuntu? [15:03] not really, only changed the file /etc/resolv.conf which is reset after the restart [15:03] don't mess with resolv.conf [15:04] impspc: is this a server or desktop? [15:04] Oh I'm using Zorin OS, hope it's not a problem [15:04] * leftyfb sigh [15:04] !zorin | impspc [15:04] impspc: we cannot support zorin. Go seek support from Zorin please [15:04] ok thaks [15:04] *thanks. === five60 is now known as five6 [16:22] if i am presented with the GUI version of software updater, telling me there's updates... does this imply that apt-get update does not need to be run? [16:24] Gallomimia, yes, one thing you could try is apt dist-upgrade.. [16:24] update > you have fresh lists === five65 is now known as five6 [16:41] yes i do dist upgrade every day [16:41] next question. is there any way i can convince my PC not to do this update in the background? [16:44] Gallomimia: upgrades don't happen automatically unless you configure it to do so [16:44] right. i turned that off. but the update and check for upgrades [16:44] used to be able to turn those off === lupi- is now known as lupi === Deudz is now known as DeudzXD === Ricardus_ is now known as Ricardus [17:51] Gallomimia, see the wiki? https://help.ubuntu.com/community/AutomaticSecurityUpdates > sudo dpkg-reconfigure unattended-upgrades > no === denningsrogue9 is now known as denningsrogue [17:58] interesting that it asked me immediately if i want to overwrite the newly modified config file with a newer version, or do a 3 way merge, or examine with a shell [17:59] Hi, I would like to friendly ask about problem with the Ubuntu 20.04 boot after disk replacement. [17:59] !ask | hello21 [17:59] hello21: 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 [17:59] hi hello21, ask wait and see [18:02] i think if you replaced your whole disk, you should describe the procedure you used to move your files to the new one. if in doubt, use the installer Live(Cd/USB) to repair it [18:03] alas, i've never ever had any luck cloning an install of ubuntu [18:03] OK :D Thanks a lot for very fast answer, after replacement the disk, I somehow installed GUB2, but it's running only in console mode (menu is missing). I'm able to boot to the ubuntu from GRUB command mode, but I don't know, how to take back the GRUB boot menu. I tried the boot-repair (not helped). I tried grub-customizer, here I can see the menu items, but after restart grub is running still in console mode. :-( [18:05] after replacement the disk ... did you copy your ubuntu to the new one? [18:06] oh dear. this won't help, but when ever i had this kind of problem, it was because of my strange RAID and crypto arrangement. i usually had to create a chroot from the installer disk, mount my system and do a grub-update. very frustrating [18:07] @oerheks I replaced the Windows nvme drive and Ubuntu is running on SSD which is still inside [18:07] hello21: what's the output of: dpkg -l | grep grub | nc termbin.com 9999 === genii-core is now known as genii [18:08] sudo blkid # gives your current UUID's, check if they match with grub [18:08] !grub [18:08] GRUB2 is the default Ubuntu boot manager. Lost GRUB after installing Windows? See https://help.ubuntu.com/community/RestoreGrub - For more information and troubleshooting for GRUB2 please refer to https://help.ubuntu.com/community/Grub2 [18:09] one could do this from a live-iso [18:10] @alkisg https://termbin.com/5n9h [18:12] does anyone know if there is an irc channel for the shotcut video editor can't find it something funky is happening with filter options and fonts [18:12] hello21: please also upload the output of this: (sudo parted -l; sudo lsblk --fs; sudo cat /boot/efi/EFI/ubuntu/grub.cfg) | nc termbin.com 9999 [18:13] * Gallomimia watches intently === svm_invictvs_ is now known as svm_invictvs [18:16] @alkisg the path doesnt exists :-( In I can see Boot/ Microsoft/ pop/ folders inside the /boot/efi/EFI [18:17] pop-os? [18:18] inside pop I can see following files [18:18] BOOTX64.CSV grub.cfg grubx64.efi mmx64.efi shimx64.efi [18:19] hello21: are you using vanilla ubuntu or a derivative like Pop!_OS? [18:21] I don't know, how is is possible, but Im running PRETTY_NAME="Pop!_OS 21.04" [18:21] hello21: Pop!_OS isn't supported here, you'll need to contact them or their community... [18:21] that is quite odd, since you came in and said you run ubuntu 20.04 [18:22] one time i ended up with trisquel boot screen going into pure os [18:23] dont know how i did it [18:23] my only suggestion at this point is to recover any important files from your ubuntu install and perform a clean install of either ubuntu 20.04 or 21.10 [18:24] if it's *THAT* borked and no one knows how or why... just start over [18:30] @Gallominia yes It's strange, for sure It's my mistake, but I don't know, how is is possible :-( I installed Ubuntu Desktop a long time ago from official install media. But for sure I was destroyed something. I'm going to fix it and install Ubuntu. Maybe the GRUB problem will be also fixed. THANKS A LOT @Gallominia, @alkisg, @oerkers, @ubottu for your help!!!! [18:31] 👍️ [18:31] for sure the fresh install will fix the grub [18:31] remember. backups are your best friend [18:31] ^^^^ [18:31] backups and you :-) [18:31] yeah. i need to start practicing what i preach [18:32] if you did not have a backup already, your data is unimportant === denningsrogue2 is now known as denningsrogue [18:32] but... my saved games! [18:33] ah oh ! [18:33] You can just keep /home while installing... [18:34] * alkisg also moves /* to a /backup folder before installing, just in case he forgot some setting in /etc or so [18:34] :D problem is starting, when I'm making backup of backup of backup... :D thanks a lot again... [18:34] lol backup of backup [18:34] stop it's too real! [18:35] "i'll just make a copy of this whole folder/drive and sort out what i need later" *5 years passes* repeat [18:37] how do i connect to router default gateway with wrong subnetting conf. gateway outside networks [18:38] uh, what? [18:39] put in the correct gateway? [18:41] i'm pretty sure you need to either rephrase that question, or visit #networking because you're doing something very strange and usually impossible. is your gateway outside your network?? [18:56] I have an Intel Celeron with 8GB RAM. Will Ubuntu work on it or should I check for other lightweight distros? [18:58] webchat11: spinner HD or ssd inside? [18:59] SSD [18:59] webchat11: gnome should work fine then, you can still tweak around things yourself too [19:00] (y) Thanx [19:01] webchat11: i usualy install preload,haveged,stacer,bleachbit and gnome tweaks myself [19:03] Bleachbit? I am not familiar with it [19:03] !info bleachbit | webchat11 [19:03] webchat11: bleachbit (3.9.0-1, impish): delete unnecessary files from the system. In component universe, is optional. Built by bleachbit. Size 415 kB / 2,382 kB [19:04] Will try thanx for recommending [19:04] good luck webchat11 [19:08] !info haveged [19:09] haveged (1.9.14-1ubuntu1, impish): Linux entropy source using the HAVEGE algorithm. In component universe, is extra. Built by haveged. Size 33 kB / 92 kB. (Only available for linux-any.) === tar_xvf is now known as Guest81 === tar_xvf is now known as Guest81 === Guest81 is now known as tar_xvf === tar_xvf is now known as tar === tar is now known as Guest81 === Guest81 is now known as tar_xvf [20:28] I've got two new ubuntu production virtual servers that we're moving to from Windows. What's the best way to automate configuration and also deployment in the ubuntu world? We're looking at docker, just updating VM's and deploying them, or using config and deployment scripts. [20:37] merpnderp: right, that roughly sums up the common options. === shokohsc868 is now known as shokohsc86 === bobo is now known as bobo1 [21:29] thanks tomreyn === Erisa2 is now known as Erisa === Ricardus_ is now known as Ricardus [23:48] illerk [23:52] Do I need raid if I use zfs? or does zfs take care of the redundancy for me? I'm wanting to setup a simple file server with a DELL desktop computer and a few hard disks [23:53] stiv2k: you have to tell zfs what kind of redundancy you'd like -- you've got choices, between none at all, mirrors, multi-way mirrors, raidz1, raidz2, raidz3 [23:54] stiv2k: there's also some more complicated options, if you've got a mixture of fast drives and slow drives, etc.. [23:54] stiv2k: this is a very nice introduction https://pthree.org/2012/12/04/zfs-administration-part-i-vdevs/ [23:56] sarnold: i'm trying to keep my setup clean and simple. just for personal use at home, not enterprise level stuff [23:56] sarnold: i was thinking raid 1 (mirroring)