[00:01] in the case that i want to install all the depends written here --https://packages.ubuntu.com/search?keywords=latte-dock [00:01] ? [00:03] apt does this for you [00:31] hello [00:31] how come bash myscript.sh >> text_file leaves empty file? [00:31] I see INFO messages being printing to screen when i execute myscript.sh [00:34] maybe those INFO messages are not on stdout but on stderr? [00:34] yes I tried 2&1 >> [00:34] didn't work :( [00:34] wrong order + syntax [00:35] bash myscript.sh >> text_file 2>&1 [00:36] oh yea that worked [00:36] damn [00:36] ok so. whats the difference besides ordering why do I have to have 2>&1 at end? [00:45] MsSmith: it's explained here https://www.gnu.org/savannah-checkouts/gnu/bash/manual/bash.html#Redirections "Note that the order of redirections is significant" etc. [00:48] if you're doing bash and not another shell you can do "&>>" https://www.gnu.org/savannah-checkouts/gnu/bash/manual/bash.html#Appending-Standard-Output-and-Standard-Error [00:49] ok thanks [00:50] i guess im just confused why 2&1 the redirection part comes at the end of the statement [00:50] wouldnt that mean its executed last? [00:50] after the command >> file.txt is written to the file? [00:52] I assume code is executed left to right [00:54] bash command 2>>&1 result.txt  would make more sense to me than bash command >> result.txt 2>>&1 [01:00] MsSmith: did you read the first link? [01:01] maybe this explanation is easier to understand than the manual's https://unix.stackexchange.com/a/37662 [01:02] " The following redirection operators may precede or appear anywhere within a simple command or may follow a command" [01:02] oh yea got it now thanks [01:02] seems bizzare syntax tho hm === jitterwattz is now known as jiggawatt === MrConorAE is now known as Guest4237 === morganu is now known as morganu_ === M4he is now known as mahe [03:22] hi all how would i check if my vpn.service is working; or has dropped out. its a .service running at boot time and i have checked "sudo systemctrl status openvpn@ipvanish.service" which shows active (running) is there a way to view the transfer of data with a fitting bash command/script [03:23] in real time [03:23] betty: journalctl -fu vpn.service [03:24] ty [03:25] betty: hello again [03:26] geeze that was surprisingly simple thank you =) [03:30] when im using systemctrl and journalctrl on my one user pc as $user should i be using "sudo" as a prefix [03:31] or will systemctrl and journalctrl run fine as $ [03:31] depends on the version of ubuntu and/or security settings [03:32] if it doesn't give you a "Hint:" then you are probably fine running them as the user [03:32] obviously this is only for journalctl and "systemctl status" [03:33] thanks man am running 21.10 Desktop [03:39] . === Syntax-1 is now known as Syntax- [05:13] hello [05:14] hi [05:14] now === hollowman6 is now known as hollowman [05:43] is there an issue with ubuntu repos? [05:43] The repository 'http://security.ubuntu.com/ubuntu groovy-security Release' does not have a Release file. [05:43] this is new [05:44] Macer: may be down for maint [05:45] oh ok. [05:45] you can check other locations [05:45] i'm trying now. even apt-select won't work [05:45] !groovy [05:45] Ubuntu 20.10 (Groovy Gorilla) was the 33rd release of Ubuntu, support ended July 22nd, 2021. See !eol and https://lists.ubuntu.com/archives/ubuntu-announce/2021-June/000269.html [05:46] oerheks: oh [05:46] it is deleted, if you want some packages or upgrade to a supported veersion, use the eol trick? [05:46] !eolupgrade [05:46] End-Of-Life is when security updates and support for an Ubuntu release stop. Make sure to update Ubuntu before it goes EOL so you get updates promptly for newly-discovered security vulnerabilities. See https://help.ubuntu.com/community/EOL and https://wiki.ubuntu.com/Releases for more info. Looking to upgrade from an EOL release? See https://help.ubuntu.com/community/EOLUpgrades [05:47] can i just upgrade the distro in a proxmox lxc container? [05:47] not too sure if that might be something difficult to do [05:47] maybe you could, but i would build a fresh one [05:48] it's backed up.. i'll give it a go [05:49] Macer: I had to rebuild a new one but I amd sure it could be done but rebild was easier/cleaner for me [05:52] i'd like to avoid that [05:52] i'm testing it out on another container now to see what happens [05:54] i'm sort of scratching my head wonering why on earth i wouldn't have selected an LTS [05:58] ok. that worked fine. so i guess the solution is to just upgrade everything [06:41] how do i interact with the bots on this network commands general useage etc [06:47] https://wiki.kubuntu.org/IRC/Bots#ubottu dead link [06:49] betty: https://ubottu.com/ubottu.html [06:49] Note, that's really not up to date either. [06:52] cheers [06:53] Sure. Updated several of the other links, but seems that one was missed. [07:07] hi :) I'm new here [07:08] https://ubuntu.com/security/CVE-2021-44224 This CVE brought me here. Whom to get in touch with so that I can contribute to providing apache server updates to apt? [07:08] A crafted URI sent to httpd configured as a forward proxy (ProxyRequests on) can cause a crash (NULL pointer dereference) or, for configurations mixing forward and reverse proxy declarations, can allow for requests to be directed to a declared Unix Domain Socket endpoint (Server Side Request Forgery). This issue affects Apache HTTP Server 2.4.7 up to 2.4.51 (included). [07:11] that's right ubottu and thanks for pasting the summary of it. [07:11] I find a larger issue there. Ubuntu 18.04 has latest apache available through apt, and that's apache 2.4.29 (released Oct 2017). [07:11] Thought I'd contribute with providing newer versions of apache through apt in a timely manner. Would you know whom I should get in touch with to understand how I can contribute? [07:37] Why does build-deps often list such a large no of packages even if you have the binary already there? Are all those really the transitive dependencies of build systems used by that app? === hollowman6 is now known as hollowman [08:46] openvpn@ipvanish.service is that a default service (i think i made it by accident) i have another active ovpn.service active and running [08:46] Ubuntu 21.10 [08:46] sorry wrong paste [08:46] openvpn@openvpn.service [08:47] is that a default service [08:47] i would like to stop it because i think i made duplicate [09:33] hi there. just a quick question related to rsync & data duplication: is there any easy method to back up data from an existing large NAS volume to smaller portions so that the file mirror process would automatically skip to the next destination volume after reaching i.e. x terabytes of written data [09:34] I can do all of it manually in chunks too, but I was wondering if there'd be some type of ready-to-use solution for that [11:33] Hi [11:33] I have an issue looking for some advice [11:38] I have a device with 2 drives. sda and Sdb. Sdb has my os Ubuntu 20 that was installed using the encrypted LUKS option with a /boot on sdb2, sdb2 is the encrypted volume. I just installed a fresh Ubuntu 20 on sda which replaced my grub boot loader with the new one that doesn’t detect my LUKS volume. I am on the new SDA Ubuntu. How can I switch [11:38] back to my old grub? I can see the efi, grub and imgs on sdb2 so how can I select those? Thanks === pasiz1 is now known as pasiz [11:50] could someone maybe help me with CIFS/SMB mounting on Ubuntu? I was able to just mount my network drive from the file explorer (using latest Ubuntu 21.10 Desktop), but it doesn't create any mount point! 'mount.cifs' seems to fail in authentication and am scratching my head atm [11:51] if someone knows does Ubuntu create a mountpoint somewhere that is accessible via terminal when you mount a SMB/CIFS network drive in file explorer, I'd be happy to know [11:51] (if it doesn't, then that's just odd) [11:52] mount.cifs seems to be either outdated or something else is going haywire when I try to authenticate through it [11:59] what I get is a .local mount point in the xwindow file browser, but is that location accessible any other way than with the file explorer? [12:00] where does Ubuntu store the credentials by default, since I've tried this and that and the other to access via cifs-mount and mount, smb:// is not supported as an address yet, according to the errormsg, and with a direct IP something goes wrong too [12:12] My RAM (16GB and swap) got filled by Firefox and whole system freezed. I were thinking that is the thing of the past. Nope. still on 21.10 [12:13] Linux should be also a desktop platform.. but freezing all the system (graphics and keyboard.. ) because some process used too much RAM.. [12:21] which de do you use? [12:21] kde? [12:21] I might be more interested in how the FF is installed ubuntu changed something in newer versions [12:22] but in general I doubt FF is at fault, typical flaming IMHO, I have over 50 tabs open and do serious work on my machines and no proble thus far [12:25] i never open more than 20 tabs at once😂 [12:26] hi can someone help me , i posted a question about 30 minutes ago about LUKS and grub [12:26] yeah, things I wanna look at etc. I sometimes get carried away [12:26] but my screen refresshed [12:26] diud anybody answer my question i didntt see [12:27] webchat98 what was the question? been here for ~30min nothing came in [12:27] webchat98: Happy New Year. Please keep in mind that most of us are AFK or are busy preparing/celebrating. [12:28] i have a device with 2 drives sda and sdb. sdb has ubuntu 20 installed with LUKS encrytped option, today i installed fresh ubuntu 20 os on sda which was previously empty. the new installation grub took over and isnt detecting my old luks ubuntu volume [12:28] i just followed tutorial didnt work [12:28] i mounted, chroot, and re install grub on encrypted device [12:28] rebooted [12:29] and now it takes to grub rescure [12:29] what can  i do to get my grub back to normal [12:29] webchat98: Ubuntu 20.04 or 20.10? [12:29] all my important documents are here [12:29] 20.04 [12:30] i have a sdb2 which is /boot with efi and images etc [12:30] webchat98 usually you will have to configure grub to load luks when booting,the good news is that your data is not lost, just not accessible, you can mount the system in a live-cd or your other system and reinstall grub [12:30] and sdb3 which is my encyrpted data [12:30] Well, not a great way to end 2021, that's for sure. [12:31] ramblebamble i am looking at my data it is mounted and available anmd so is sdb2 /boot [12:31] i have mounted sdb3 and sdb2 [12:31] i need grub installed on sdb2 and to detect luks [12:32] i have spent hours and 100 google searches [12:35] I never had this type of problem with Ubuntu(always ran a different setup for my workmachines) webchat98 [12:36] but you will find what you are looking for here https://wiki.archlinux.org/title/Dm-crypt specifically this part https://wiki.archlinux.org/title/Dm-crypt/System_configuration#Boot_loader [12:36] maybe you'd better mount your system on a live-cd and copy the important data to a safe place first [12:36] It is arch, but the underlying system is still Linux [12:36] or you can do as ksy suggests [12:37] data first [12:37] i already backed up data [12:37] before install [12:37] thank you [12:39] thanks ramblebamble im looking now [12:40] it is not clear what are the steps to take, there are multiple options in bold do you see [12:40] Kernel parameters , Using encrypt hook , etc [12:41] yes, my best guess would be to start with building the appropriate initramfs [12:41] and then continue with the bootloader configuration [12:41] what about /dev/sdb2 [12:41] oh for fucks sake [12:41] it is over written [12:42] i had a dev/sdb2 with an efi and boot folder and all the image vmlinux stuff [12:42] now its gone [12:42] maybe that is the problem [12:42] it was ext4 and grub would pick it up google said it had to be fat [12:42] so i changed it to fat but it formatted [12:43] how do i get all of this [12:43] to grub [12:47] webchat98 you have a PM [12:56] that sounds like a nightmare. but I've had and solved problems like that in the past. [12:57] not on 20.04 with uefi though, that needs some efi system partition and fat fs (if you boot in uefi mode) [12:58] but generally every os should have grub with os-prober, which should detect the os on the other drive and make a boot option for it, but the other drive's luks must be opened and mounted, so that it can detect it [13:00] which is why I don't do separate drives or luks volumes any more, but use just one drive with one luks volume spanning the whole drive and then put lvm on it and all the os's and partitions into lvm [13:00] no matter into which os you boot it should have unlocked the luks+lvm that holds all the other os's [13:01] but generally I just stay away from multi booting in general and stick to one host os and use VMs, or just switch out the hard drive physically [13:26] jjakob hi thanks [13:26] have you heard of this [13:27] grub-install: error: failed to get canonical path of `/dev/sdb1'. [13:27] i have a luks volume it is root filesyst em ubuntu 20.04 how do i get a grub menu to boot it? [13:28] i can decrypt and chroot to it [13:28] i dont have /boot or /efi [13:28] how do i make this [13:41] hmm, he left [13:44] hi i have some good news [13:44] i can egnerate GRUB now bbut it is not picking up my OS when i do update-grub [13:44] how do i get update-grub to pick up my LUKS ubuntu [13:45] it p[icks up regular ubuntu on sda1 [13:45] but not LUKS uybuntu on sdb [13:47] webchat24: did you bind mount /dev into the chroot? [13:48] you need to luks open both the drives, then mount /boot manually [13:48] yes [13:48] you can regenerate /boot if you deleted it manually [13:48] yes i dleleted it [13:48] only one is LUKS [13:48] what does your /etc/fstab say? [13:49] and your /etc/crypttab? [13:50] ive sent you === beaver is now known as pong === jje_ is now known as jje [14:45] hi [14:45] how can i solve this error [14:46] sudo apt install linux-generic-hwe-20.04 [14:46] After this operation, 0 B of additional disk space will be used. [14:46] Get:1 http://ca.archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-generic-hwe-20.04 amd64 5.11.0.43.47~20.04.21 [1,932 B] [14:46] Fetched 1,932 B in 0s (10.5 kB/s) [14:46] E: Can not write log (Is /dev/pts mounted?) - posix_openpt (19: No such device) [14:47] i am in a chroot [14:47] how to solve? [14:48]  /dev/pts is EMPTY on chroot === jje_ is now known as jje [14:58] how can i munt /dev/pts to chroot [14:59] it is mounted [14:59] why is this error [15:01] You have to mount before the chroot [15:02] probably have to type exit to leave [15:11] Jeremy31hi [15:11] it is mounted [15:11] i still ge error [15:12] how can i install linux generic hwe to /boot in chroot [15:12] webchat24: why in a chroot? [15:12] i am trying to recover my luks ubuntu partition [15:13] i have to generte grub but before i can run update grub i must install linux to /boot within the chroot [15:13] right [15:13] but apt install --reinstall cause error /dev/pts is not mounted but it is [15:13] webchat24: what happened where you need to "recover" it? [15:14] i installed ubuntu regular on a different device and grub took over it [15:14] and wont pick up luks volume [15:14] so i must update grub to detect luks [15:14] but i accidently deleted the /boot for the luks [15:14] so i must fix /boot then update grub [15:14] then i can boot it === genii-core is now known as genii [15:28] ok, so now my impish doesn't respond to any USB human input devices on boot to GUI [15:29] from what I googled up it's a mismatch in the xserver-org-input-all or smth; I have a Nvidia GPU and was just updating my packages [15:30] however none of the proposed solutions to boot into terminal, grub, safe mode, anything, none of them work [15:30] the keyboard does come on during boot (as uefi/bios runs the check the light blinks) [15:31] nuxer: does your keyboard work in the BIOS? [15:31] leftyfb: yes [15:32] it seems to be a common problem judging from the forums [15:32] couldn't have happened at a worse time [15:32] I have no sshd running so I'm completely screwed as for i.e. reinstalling apt packages to fix it via remote access [15:33] nuxer: when this happens, can you hit CTRL+ALT+F1 or F2 to get a tty console open? [15:33] leftyfb: that's my go-to usually, doesn't work. [15:33] it's a fresh-ish impish install on a brand new computer that I've been working on for a couple of days now [15:33] nuxer: I'm pretty sure that's a kernel issue then, nothing to do with xorg or nvidia === Guest303 is now known as westor [15:34] I was deploying gsmlinux stuff on it and that might've caused things to go boom [15:35] leftyfb: hm, well, people have been having that issue for pretty long and the most common thing is that there's some looping going on with the xorg server and what was it again.. let me check [15:35] nuxer: was it working before you were messing with gsmlinux? [15:35] leftyfb: xserver-xorg-input-all seems to be the apt package [15:35] oh yes [15:36] it's not exactly the first time I'm installing a Linux. I remember getting that same kind of stuck thing on some previous distro build on another computer, I solved it somehow [15:36] nuxer: I would suggest reinstall ubuntu from scratch and not messing with gsmlinux. Or contact them for support the next time their software causes major issues like this [15:37] leftyfb: it may or may not have been their stuff tho, but that was one of the things I was doing [15:38] people have been saying that grub has some kind of an issue with especially the xserver-xorg-input-all package and I've been trying to chroot from a livecd to be able to install it (it indeed had not been installed) [15:39] nuxer: ok, lets eliminate it then. Reinstall and do all the regular updates and see if it happens again. You aid you have tried multiple solutions you found, there's no telling the state the system is in now even if you did get usb working again. Start fresh with a known good state [15:39] apt gives me weird "temporarily unavailable" errors on chroot from livecd although it otherwise finds the apt repos and d/l's etc. [15:39] yeah I guess I'll have to do that [15:41] it just blows when I've already sank a few days as usual into this ... there's always something. the distro shipped out broken as it was, I first tried installing the latest LTS, then I just caved in and went for impish [15:41] (also because the latest LTS doesn't have the latest Python [3.9] required for conda; deadsnakes PPA doesn't help with that ) [15:41] nuxer: reinstall. If you run into an issue on your fresh install, we are here to try to help [15:42] leftyfb: thanks a lot ... I know today's probably not the best day to be asking for help [15:42] I do have a working 20.10 impish desktop but it's a way different setup. I might as well just nuke and pave [15:43] nuxer: good luck [15:43] Hi folks [15:44] leftyfb: I kinda need the LinuxGSM though to deploy some of my dedicated local server stuff for testing purposes and not enter the madhouse over it... idk, maybe it'd be a good thing if it was possible to check out what apt-packages were installed before it all went to hell. [15:45] I do explicitly remember having the same kind of issue with another desktop on either a clean install or after updating [15:45] nuxer: again, reinstall. Get to a known good state. If everything is fine. Great. Then proceed with gsmlinux and hit them up for support if things go wrong [15:46] what I do not understand is why doesn't any of the grub menu options work [15:46] a.k.a. holding the shift key, whatever [15:46] holding shift or holding e... [15:46] nuxer: please get to a known good state. Good luck [15:48] hi i cant access my os [15:48] its LUKS ubuntu [15:48] how do i get my grub to pick it up [15:52] webchat36: is the /boot inside the luks? [15:52] no [15:52] i deleted it by accident [15:52] all i have is root filesystem [15:53] use a live usb to chroot into it, then make /boot again and install kernels/grub [15:53] and you'll need to use the uuid in fstab for /boot, mkfs.ext4 -U /dev/sdxY [15:59] Hi, I have an external hard drive that cannot be mounted nor iniciated, it does not appear on disks and gparted keep running stucked when connected. It's /dev/sdc, it has no sdc1 partition, don't know what to do, it's a Western Digital My Passport HD [15:59] I've tried to connect it on Windows 7 and it's not recoverable [16:00] JustCurious: buy a new one [16:00] NTFS formatted by the way [16:00] yes leftyfb this is the easiest solution [16:00] it's 100 € [16:00] EriC^^ ok i am ready to create new /dev/sdxY wiith UUID. how to ge t uuid [16:00] JustCurious: if the data is worth it, you'll have to find and pay a company that specializes in data recovery [16:01] webchat36: grep boot /etc/fstab [16:02] it's just for backup my data, I'd like to safe the HD [16:02] JustCurious: type 'sudo apt-get install smartmontools && sudo smartctl -a /dev/sdc | nc termbin.com 9999' [16:03] to see the hdd health [16:03] eric [16:03] mkfs.ect4 says [16:03] Discarding device blocks: done [16:03]  /dev/sdb2: could not parse UUID: 01AB-3119 [16:03] JustCurious: it's defective. Buy a new one. This is also not an ubuntu issue [16:03] webchat36: that's not for boot [16:04] your right [16:04] webchat36: type 'cat /etc/fstab | nc termbin.com 9999' [16:05] thanks EriC^^ [16:05] JustCurious: no problem, paste the link here when you have it [16:05] thats someone else [16:06] https://paste.debian.net/1225384/ [16:06] installing GSmartControl [16:06] EriC^^ see it [16:06] JustCurious: EriC^^ did not suggest installing GSmartControl [16:07] it's its GUI [16:08] it stucks while running smartclr [16:08] it's like the sdc interrupts the process [16:08] JustCurious: yes, we are aware. It does not help with troubleshooting. EriC^^ asked you to install smartmontools for a very specific reason [16:09] JustCurious: run this is a new terminal and let it run while you are messing with the drive: dmesg -Tw [16:09] EriC^^ can you help me mkfs boot and install linux/kernel [16:09] JustCurious: if you see tons of error messages about your drive, it is a hardware issue and you are unlikely to get any useful data from the drive [16:10] JustCurious: also, as stated, even if you do succeed in recovering anything from the drive, the drive is toast and there is no using it going forward [16:10] it's all : "Buffer I/O error on dev sdc, logical block 976746224, async page read" [16:10] don't think so [16:10] you don't think the drive is toast? [16:11] webchat36: yeah [16:11] thanks [16:11] please leftyfb let people here help me [16:12] webchat36: so til now you booted the live usb, and you decrypted and mounted root, mount binded /dev /sys ... and ran chroot right? [16:12] mounted unencrypted ubuntu installation 20.04 bran new on /dev/sda, trying tyo recover dev/sdb [16:12] yes i have mounted those [16:12] JustCurious: leftyfb is kind of right, the drive seems likely is toast but still it's worth a shot to see what can be done and what to retrieve [16:13] and not chroot yet [16:13] becuase i must first mount [16:13]  /boot after mkfs [16:13] then chroot [16:13] JustCurious: first be sure it's not some connection issue, as that can also cause i/o errors [16:13] everything mounted except /boot [16:14] need to mkfs /boot but i dont know uuid [16:14] i pasted it [16:14] the cat [16:14] ok [16:14] webchat36: where didyou mount the decrypted root fs? /mnt? [16:14] the the result: /dev/sdc: Unknown USB bridge [0x1058:0x25e2 (0x4004)] [16:14] yes [16:14] well, maybe it's broken yes [16:14] 100 $ again [16:14] :( [16:14] mount --bind /dev /mnt/dev [16:14] mount --bind /dev/pts /mnt/dev/pts [16:15] mount --bind /proc /mnt/proc [16:15] mount --bind /sys /mnt/sys [16:15] !paste | webchat36 [16:15] webchat36: 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. [16:15] webchat36: ok type 'cat /mnt /etc/fstab | nc termbin.com 9999' [16:15] sorry [16:15] webchat36: ok type 'cat /mnt/etc/fstab | nc termbin.com 9999' [16:16] JustCurious: how important is the data on it to you? if you have it already then i'd just get another hdd, if its not a connection issue its likely some failure and not reliable anyways [16:16] EriC^^ i paste it here https://paste.debian.net/1225385/ [16:16] EriC^^ not important the data, only the HD [16:17] ok thank you for your help [16:17] webchat36: this is the uuid, db3eb633-0441-441f-a924-c721648dd052 [16:17] JustCurious: no problem, sorry about the bad news [16:17] oh right the first time i didnt do it in mnt [16:18] Before leaving, let me advice you again purchasing Western Digital MyPassport HD [16:18] EriC^^ mkfs succeeded [16:18] ive been using seagate, they seem ok, my older one lasted like 10 years maybe [16:18] now how to install requiredments [16:19] im chroot [16:19] to /mnt [16:19] owait i must mount boot [16:19] then I'm to buy some seagate [16:19] thanks [16:20] EriC^^ what do i do with /boot [16:20] i mean not /boot [16:20] i mean the filesystem i just created for /boot [16:20] webchat36: reinstall the kernel and grub, apt-get install --reinstall linux-image-generic grub-efi-amd64-signed grub-efi-amd64-bin grub-common grub2-common [16:20] webchat36: ah [16:20] mount it, type "mount /boot" [16:20] in the chroot [16:21]  should i do mount /dev/sdb2 /mnt/boot [16:21] before i chroot [16:21] to mnt [16:21] doesn't matter, might as well chroot then run 'mount /boot' to test if its working with fstab [16:22] also 'mount /boot/efi' after [16:22] which sip softphone do you recommend? [16:23] EriC^^ mount boot worked [16:23] mount boot/efi didnt [16:23] mount point doesnt excist [16:23] i mounted it bewforte chroot though [16:23] ah right, type mkdir /boot/efi [16:23] ok so I managed to get into the terminal login via esc on boot, but even after editing grub and updating it with the default CMDLINE pointing to "text" it still goes to the damn xwindow manager and hence paralyses the keyboard and mouse (the kb and mouse DO work when I press esc and boot into safe/recovery mode) [16:24] in other words, what do I need to put where to stop ubuntu impish from booting into xwindow [16:24] now do i install with apt [16:24] yeah [16:24] I'm still going to check that avenue if I can get things to work via terminal since it works in safe mode thatway [16:26] GRUB_CMLDLINE_LINUX_DEFAULT="text"  ... sudo update-grub =>> didn't help, it still boots to GUI. [16:27] all I'd need right now is to prevent the Ubuntu from booting into GUI [16:27] EriC^^ ok installed now what] [16:27] W: Couldn't identify type of root file system for fsck hook [16:27] look like it worked but says this error [16:28] nuxer: text is deprecated kind of, try 'systemd.unit=multi-user.target' [16:29] webchat36: looks good i guess, ls -l /boot shows kernels and grub dir? [16:30] eric it shows efi and grub dirs, and initrd.img and vmlinuz [16:30] there should be /boot/grub/grub.cfg and /boot/grub/x86_64-efi full of modules [16:30] no only /boot/grub/grub.cfg.new [16:30] and [16:31] and the module [16:31] s [16:31] modules there? [16:31] yes [16:31] good [16:31] try 'update-grub' see if it makes a /boot/grub/grub.cfg [16:32] no [16:32] it only creates [16:32] grub.cfg.new [16:32] i renamed it it was created again [16:32] after update-grub [16:32] odd, so now you have grub.cfg though cause you renamed right? [16:33] nuxer: `systemctl set-default multi-user.target` [16:34] nuxer: also try appending `systemd.unit=multi-user.target` to the kernel command line. [16:35] nuxer: or just disable your DM with systemctl. Whichever way you prefer, really. [16:35] EriC^^should i rename it to grub.cfg [16:35] EriC^^ [16:36] webchat36: yeah try that [16:36] yep, I disabled gdm3 via recovery mode and when I manually start it up from the terminal it no longer hangs up! [16:36] whew [16:36] ;) [16:36] ah, okay [16:37] it was this apt package that needed to be (re)installed: xserver-xorg-input-all [16:37] apparently it's a common problem. [16:37] nuxer: touchpad problems? [16:37] webchat36: it seems that grub makes .new when there is an error in /etc/default/grub or the /etc/grub.d files [16:38] webchat36: can you pastebin 'cat /etc/default/grub' ? [16:39] webchat36: also pastebin with it 'ls -l /etc/grub.d' [16:45] https://paste.debian.net/1225391/ [16:46] https://paste.debian.net/1225392/ === diskin_ is now known as diskin [17:11] I have a wireless driver that works on kernel 4.13, I'm trying to get it to run on 5.11 - any tips? I assume there's no newer package for drivers... [17:14] icedwater: is that Ubuntu 18.04? What wireless adapter are we talking about? [17:36] KBar: ubuntu 20.04, it's a broadcom running intel wifi I think [17:37] scrap that, lspci says 'Intel Corporation Wireless 3160 (rev 93)' [17:38] lsmod shows the iwlwifi module is loaded on 4.13, but it doesn't show up on 5.11 [17:39] Ugh, gotta double-check before I ask questions. The current 5.x kernel I'm trying is 5.13 [17:40] Let me try that again... [17:40] I have an intel wifi card that works on the 4.13 kernel with ubuntu 20.04, but when I boot with a 5.13 kernel, wifi is not detected. [17:40] Soon, we'll find out that you're actually running W******, eh? :) [17:41] KBar: heh [17:41] Does it work with the default 5.11? [17:42] Is 5.11 a default? [17:42] I think no, but I've been trying a bunch of 5.x kernels and uninstalling them, so I'd have to check again [17:43] I'll try again with 5.11.0-22-generic [17:46] icedwater: for Focal currently 5.11.0.43.47~20.04.21 [17:50] icedwater: You might want to check to see if the linux-module-extra is installed for that 5.13 kernel === jje_ is now known as jje [18:28] icedwater: remove all the kernels you have manually installed and just install linux-image-generic-hwe-20.04 [18:51] hi can someone hel-p me fix my grub [18:51] grub will not detect my LUKS encrytped ubuntu [19:11] How do I install the audio driver for  Realtek I2S Audio [19:12] I installed 20.04 on my rca cambio tablet.   I used the linixium image because it had 32bit efi, and everything worked but I had no audio. [19:13] I looked up others who might have the problem with this device and it needs this Realtek I2S Audio driver, but this was not installed even though I have enabled non-free software. [19:15] webchat64: non-free is not a repository in ubuntu [19:16] webchat64: you are using a heavily modified version of ubuntu which cannot be supported here. You should seek support from linuxium [19:17] webchat64: several contact methods can be found at the bottom of https://www.linuxium.com.au/home [19:21] Pretty sure they just mean restricted and multiverse. The installer calls it "non-free" [19:21] geirha: it's a modified installer/ISO [19:22] https://drive.google.com/file/d/0B99O3A0dDe67S053UE8zN3NwM2c/edit?resourcekey=0-q_wmonyHhCPjIjJ7FgPToQ [20:14] Hi, I need some help working with Ubuntu 18. It's not about drivers as it was automatically taken care of. [20:15] How to install .deb (or any other linux compressed package) offline? [20:18] well... i'll be back. hold on. [20:18] Yo, I'm new but I could help [20:19] Guest49: Wanna know how to install .deb? [20:20] B0RG: they left [20:21] Only trying to help, first time on IRC, working it out [20:23] leftyfb: Know any decent servers/channels for music prod, hackers and general tech? [20:23] !alis | B0RG [20:23] B0RG: Alis is an IRC service to help you find channels. For help on using it, see «/msg Alis help list» or ask in #libera - Example usage: «/msg Alis list http» [20:24] leftyfb: Thx man, bigup === Festivus-Maximus is now known as Happy2022 [21:01] С новым 2022 Годом !!!! [21:05] !op | Kuleshov continues to spam this channel [21:05] Kuleshov continues to spam this channel: Help! Channel emergency! (ONLY use this trigger in emergencies) - Pici, Myrtti, jrib, Amaranth, tonyyarusso, Nalioth, lamont, CarlK, elky, mneptok, Tm_T, jpds, ikonia, Flannel, wgrant, stdin, h00k, IdleOne, Jordan_U, popey, Corey, ocean, cprofitt, djones, Madpilot, gnomefreak, lhavelund, phunyguy, chu [21:35] join python [21:35] ignore prior statement all [21:37] str42: do you have a ubuntu support question? [22:06] Тигрята я всех вас люблю!!!! [22:09] Kuleshov: please stop [22:21] Hello. When I try to sudo anything I get the following error at this link [22:21] https://ghostbin.com/9HOtA [22:22] can anyone point me in the right direction to get this resolved [22:22] MrCollinsGA: boot to a live cd/usb and fix the issue with the sudoers file you created [22:23] leftyfb, when I boot what should I do to it? [22:23] ill boot into it now.... [22:23] MrCollinsGA: what you should do actually is move the file out of the sudoers directory completely and fix it after [22:24] ok [22:31] MrCollinsGA: are you bayman or is there someone else who just borked their machine with an ansible file in sudoers? [22:31] no [22:31] 100% not me. [22:31] im booting into rescue mode on ubuntu right now on my VM [22:32] bayman in #ansible just had a similar issue [22:32] uncanny [22:32] pure coincidence :) [22:35] ok leftyfb Im in. so just move the three files out? [22:35] theres actually gotta be one in there Ill leave README in there [22:36] ok I have successfully moved those two files out. [22:36] leftyfb, what can I do now? [22:36] messing up sudoers file?? = reinstall [22:37] it is just a vm... [22:37] its a vm [22:37] I can re spin it but id like to know what to do [22:41] !info visudo [22:41] Package visudo does not exist in impish [22:41] ❤🍾🥂🎄☃❄🎅✨ [22:42] Kuleshov: STOP [22:42] ok [22:42] :( [22:43] Kuleshov: stop posting in here unless you have an ubuntu support question [22:43] I use Windows 11 [22:43] Kuleshov: then /part [22:43] MrCollinsGA: remove your custom files, reboot into your machine and figure out what syntax issues you have with your custom sudoers files [22:43] https://dchub.one/temp/ [22:44] !op can we please remove Kuleshov who clearly has no business being here? [22:44] leftyfb: I am only a bot, please don't think I'm intelligent :) [22:44] !op | can we please remove Kuleshov who clearly has no business being here? [22:44] can we please remove Kuleshov who clearly has no business being here?: Help! Channel emergency! (ONLY use this trigger in emergencies) - Pici, Myrtti, jrib, Amaranth, tonyyarusso, Nalioth, lamont, CarlK, elky, mneptok, Tm_T, jpds, ikonia, Flannel, wgrant, stdin, h00k, IdleOne, Jordan_U, popey, Corey, ocean, cprofitt, djones, Madpilot, gnomefreak, lhavelund, phunyguy, chu [22:44] This is also one of those issues where you can just step backwards through the changes you've made since it was last known to work. [22:45] leftyfb: I think the ops are all at New Year's Eve parties. [22:45] visudo -c # would have shown errors [22:45] jhutchins: yeah, probably. Maybe we need more ops [22:45] http://manpages.ubuntu.com/manpages/impish/man8/visudo.8.html [22:46] oerheks: Does visudo check includes? [22:47] i am not sure what you mean with includes [22:47] ? [22:48] jhutchins: it should check all the way down the chain [22:59] Hi. I am running ubuntu 20.04 lts and rn it has gnome 3.36 or so. I'd like to use gnome 40+. Can I achieve this just by installing `gnome-session` and then selecting that as an option at the log in screen? What is the shortest path to gnome 40 that doesn't involve fresh installing [23:01] mister_m: upgrading to Ubuntu 21.10 or 22.04 when it is released in April [23:02] mister_m: 20.04 doesn't officially support gnome 40. But if you want to take the chance: https://www.linuxcapable.com/how-to-install-gnome-40-desktop-on-ubuntu-20-04/ you would be on your own though [23:04] an upgrade sounds like the more sensible opton, thank yo u === ircnoob20080 is now known as ircnoob2008 === polymorp- is now known as polymorphic === waxfire9 is now known as waxfire === denningsrogue6 is now known as denningsrogue === dabbill_ is now known as dabbill === dvdmuckle_ is now known as dvdmuckle === LjL^ is now known as LjL === kantlive- is now known as kantlivelong === TonyL is now known as DarkG === tomreyn_ is now known as tomreyn === LarsErik1 is now known as LarsErikP === combengue is now known as cmbengue === ryan-c` is now known as ryan-c === klebers_ is now known as klebers === hiya_ is now known as hiya === genii-core is now known as genii === dob1_ is now known as dob1 === gry_ is now known as gry [23:53] trying to mount an nfs share. [23:53] I pass sudo mount serverip:/dir/dir/targetdir /file [23:54] I get mounting serverip:/dir/dir/targetdir failed reason given by server: no such file or directory [23:54] but it does exist. === Apachez- is now known as Apachez [23:58] false alarm typo