/srv/irclogs.ubuntu.com/2023/11/20/#ubuntu.txt

gordonjcpoh00:00
gordonjcpgcc13 doesn't really work yet00:00
gordonjcptanja_: I don't even use gcc12 because it's not proven to be stable or even especially functional yet00:01
tanja_but since software ( including my own ) wont run on other systems even same OS after that PPA, so that is why the reverting. Well its a stable release from them. Also for me even gcc11 is way to old and un usable00:03
gordonjcpyup00:03
gordonjcpit's a bit of a mess00:03
tanja_No its un useable because its way to old00:04
gordonjcptanja_: why, what's changed that means you can't use gcc 11?00:06
tanja_But still when ever I compile specially my own things then I always compile with several versions to catch mistakes so alone on clang I'm testing with 11,12,13,14 and 15 and planned to test with gcc 10,11,12 and 1300:07
gordonjcpwell00:07
gordonjcpthere's no accounting for taste, I guess00:07
tanja_gordonjcp, there is to much from Cpp 23 that arent in it00:07
gordonjcp<shrug>00:08
gordonjcpeverything I write ought to compile on anything right back to GCC400:08
gordonjcptanja_: what's missing, that's so important?00:08
tanja_guess you are a C98 programmer then00:09
gordonjcpno, C8900:09
gordonjcpas far as possible00:09
gordonjcpI dislike a lot of the pointless complexity and heiroglyphics-for-heiroglyphics-sake in newer C standards00:10
tanja_"C++ Identifier Syntax using Unicode Standard Annex 31" that first came in GCC12, "Add support for preprocessing directives elifdef and elifndef" that was also first in GCC1200:10
tanja_well tbh I dislike C in general since it is so messy by nature wich is why I always stay at C++00:11
tanja_since their non namespace, non prober classes force messy call back functions etc00:12
gordonjcpokay00:13
gordonjcpdon't use unicode in identifiers, and elifdef and elifndef sound like the sort of thing that are going to bite you on the backside in six months time00:13
gordonjcpwhen you forgot why you were trying to be so cleverclever with preprocessor macros00:13
tanja_But I do also have to say for me I try to stay at C++14/17 but I do have 2 projects there unfortunately rely on newer things00:14
gordonjcp"rely"00:14
gordonjcpright00:14
tanja_gordonjcp, well I dont personally but I cant control what libraries does00:15
gordonjcpbecause programming was impossible without variable names containing Laughing-Pile-Of-Poo-Holding-Liberia-Flag emojis00:15
gordonjcpthis is why computer software is in the mess it's in00:16
tanja_yeah like why re invent the wheel like lets say I need base32 in a project then why recreate it myself then when there is a opensource library ( just as a general example )00:17
gordonjcpthis is why you need 4GB of RAM (just checked right now) for Firefox to show a blank screen00:17
tanja_Well Mozilla has been bad for years and garbage about ram. I do also have to say sadly Chomium has also caught up there00:18
tanja_like I stopped using Mozilla when they completely killed their esr branch ( used that version since it werent so bloated )00:19
KadiganUnpopular opinion: The reason things are crap are not because our tools and libraries are better and easier to use, but because people with lower standards now use those QOL improvements as baseline instead of learning to do better.00:19
Kadigans/are/is00:20
KadiganYou can learn to be better (less resource use, simpler/more efficient algos etc.), or you can use all of the QOL stuff to lower the bar and produce code that "works".00:21
tanja_Kadigan: totally agree like the standard have really lowered, like now a days its not uncommon just to hear lets just ask AI without actually learning00:21
gordonjcpKadigan: we should only allow demosceners to write core libraries00:21
gordonjcpoh you can't do Kefrens Bars in 512 bytes?00:21
gordonjcpcool cool00:21
gordonjcpno commit rights for you00:21
KadiganThing is, I really don't want to deny people. Sometimes you can find unorthodox, and sometimes even good, ideas in people who can't code for crap.00:22
gordonjcpyes00:22
gordonjcpbut then these people do things like write Tesla Autopilot in nodejs00:22
KadiganMaking it easier enables those without ability to make things we're inspired by. Flip side: it also enables those without ability to make utter crap.00:22
KadiganAnd I don't think you can have one without the other.00:23
KadiganAt least not with very stringent oversight.00:23
Kadiganwithout*00:23
gordonjcpwell you need that00:23
gordonjcpotherwise you get Lennart Poettering00:23
KadiganBut then, for mission-critical stuff, we usually DO have stringent oversight.00:24
gordonjcpwho needs rolled down a steep hill in a barrel full of cat wee and contaminated sharps00:24
KadiganAlso, you need time to become better. The first things you make will be crap, by the virtue of them being the first things you made.00:24
gordonjcppulseaudio set back Linux on the Desktop by about ten years00:24
KadiganSimple truth is: people don't give a crap. That's the long and short of it. You want things to be better - make people CARE.00:25
gordonjcpKadigan: yes but the problem is that people are taking their "toddler scribbles" code, and expecting everyone else to treat it like a core library00:25
Kadigans/a00:25
KadiganSomeone is using those "scribbles", meaning someone's finding use in them. Maybe there's nothing better, or nothing that does it quite the right way?00:25
Kadigan(and yes, I'm aware that some people just reinvent the wheel, gods know I'm guilty of that sometimes - but then, that doesn't end up being a "core" library because SOMEONE will notice sooner or later)00:26
KadiganAnd let's not forget!00:27
KadiganThere's also the other side of the coin: veterans who have lofty ideas about integration, simplification, and so on, who believe that THEIR way is the ONLY way, and end up all but forcing you to use their multiple-use base library (just because it's DA WAE), even if using a custom-coded one-off library would make it 500% faster... because STANDARDS.00:28
KadiganWe're not guilt-free in this.00:28
KadiganIt's just convenient to forget.00:29
KadiganI mean, I doubt PulseAudio ended up becoming the de facto standard because some rookie decided it would.00:35
KadiganAnd small oversights are common, even - maybe especially - amongst veterans. Here's a thought example: function calculateWordCount(string $body, string $lang = "English") {}00:36
KadiganSpecifying a default value for the second variable is nice for the author, but 5 years from now someone will not read the docs, apply this function to French, and end up with subtly wrong results. So it might actually be a better idea to NOT specify the default.00:37
KadiganBut is that something you think about in your day-to-day?00:37
KadiganAnd yes, the fault lies with the person who failed to RTFM. But it could've been a little more robust, if at a cost of a tiny irritation, to begin with.00:38
KadiganAnd gods know, I'm the most guiltiest of doing this to my own codebase. Because I KNOW IT, amirite? Why would I need to read the docs from a year ago? *sigh*00:40
KadiganI *should* know better. And yet...00:42
KadiganThe higher up the skill ladder you are - the less you fail, but the more spectacular (and subtle) your failures. And more often than not, I find myself - surprisingly, for some reason! - living in a glass house, you know?00:44
Kadigantanja_: The most critical ability a programmer must develop, in my opinion, is the ability to determine what tool is appropriate for what task, and when. This of course goes deep, because you need to learn to use various tools well before you can truly do that. Just because something exists doesn't mean you should use it here and now - you need to learn patience and retraint, the "zen" of programming. And I think that's not as much a failure of the newbies,00:50
Kadigan as it is ours.00:50
Kadiganrestraint*00:50
KadiganSchooling works by introducing more and more complexity to existing concepts (you don't introduce NEW concepts all that often). So why do we expect that handing everything out immediately will work here? I mean, it will - for those that are smart and pace themselves. But for everyone else...00:52
tanja_Kadigan, well true but I'm sorry tbh gonna keep my mouth shut there since I know to many of the old people gets to defensive. And tbh I do apologize that I mentioned it00:56
KadiganI too have a ton of respect to veterans. It is only thanks to what they've made that I can be here today.01:05
KadiganBut I think we should be able to look critically at everything, including our champions.01:05
Kadiganfor* veterans01:05
rboxservice guarnatees citizneship01:05
Kadiganheheh01:05
KadiganBut therein lies the rub, right?01:05
KadiganService only guarantees that you CARE, not that you're COMPETENT.01:06
KadiganOr that you always will be, for that matter.01:09
rboxi should watch starship troopers again01:09
KadiganYeah, the movies are interesting enough that even KnowingBetter did a series on it.01:10
Kadigan(... I think it was a series, though his videos are quite long, so maybe I'm wrong)01:10
devslashthere arent any more issues with the upgrade tool for ubuntu 22.10 to 23.04 right ?03:59
ravagei dont think anyone would ever say that there are no possible issues04:00
ravagebut the system should offer you the upgrade now04:00
Eickmeyer22.10 is EOL so it might be difficult without following the EOL Upgrade instructions.04:01
Eickmeyer!eolupgrade04:01
lotuspsychjethink ubottu has issues04:01
Eickmeyeryeahhhhh....04:01
Eickmeyerope04:01
Eickmeyer!eolupgrade04:01
devslashthanks04:01
ravageoh i misread that version number04:02
ravagejust reinstall really.04:03
lotuspsychjeyeah^04:03
lotuspsychjeupgrading from eol releases 'can' be risky04:04
ubottuEnd-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/EOLUpgrades04:04
ravagewow04:04
lotuspsychjeheh04:04
ravagethat is what i call lag04:04
lotuspsychjeubottu is drunk from the weekend :p04:04
=== haggertk_ is now known as haggertk
devslashI updated Ubuntu and now it will not boot. It takes me to an initramfs prompt04:44
ravagebackup your files and install a supported release would be my suggestion04:48
ravageyou can backup files from the live usb you install your new Ubuntu from04:48
ravagealso maybe stick with LTS until next year04:48
devslashthats not an option04:48
devslashim not gonna reinstall04:48
Menzadordevslash: Try typing `exit` and pressing ENTER/Return. Did it scream "Bailing out, you are on your own. Good luck!"?04:49
ravageok. good luck then :)04:49
devslashno entering exit cause a kernel panic04:49
devslashim trying to boot off a usb diisk04:50
MenzadorOK. Force-restart your system and read the output. Most likely it can't find the partition on which Ubuntu's installed04:50
MenzadorAlso, what Ubuntu version? Are you using RAID?04:51
devslash23.04 no raid04:52
MenzadorWhat does it ask you before showing you the BusyBox version line?04:53
devslashi dont know04:53
devslashwhere do you mean04:53
devslashi dont know what that is04:53
devslashwhen I boot I get the grub menu but ubuntu is not on there04:54
devslashso I did set root=(hd0,gpt5) and then the linux and initrd command to boot ubuntu04:54
MenzadorIs that where the filesystem is?04:55
devslashthe grub menu has 2 ubuntu memtest entries and windows04:56
devslashthis is a laptop with only 1 drive on it that has both windows & ubuntu04:56
NemosWhisperHi I have an ubuntu headless setup at home and I just did "sudo apt update" followed by "sudo apt upgrade" and after it successfully upgraded, I did "sudo shutdown -r now". Ever since then I can ping the box, but I can no longer SSH into it. It keeps saying connection refused. Any idea what I could have screwed up? Thank you.04:57
rboxNemosWhisper: what updated04:57
rboxNemosWhisper: but you'll have to get a serial console or a mointor to see whats actuallyg oing on04:58
devslashis there anything i can do to fix this04:58
Menzadortevslash: There are a few possible causes for this, but usually there will be a bunch of output before it drops to BusyBox, such as requiring a manual fsck, or not being able to mount because it can't find the mountpoint04:58
Menzadordevslash: ^04:58
devslashi dont see any messages like that04:58
ravageNemosWhisper: did you try to turn it off and on again?04:58
NemosWhisperrbox: https://dpaste.org/4EO7U04:59
Menzadordevslash: OK, then boot into a Live image and check what GParted says about your internal storage04:59
devslashI did04:59
devslashi can see it when i do fdisk -l04:59
rboxNemosWhisper: well openssh updated, that might have broken, systemd updated, that might have broken, ufw updated, that might have broken05:00
Menzadordevslash: What does SMART say?05:00
devslashthe drive smart is fine05:00
NemosWhisperah rbox I think I wasn't patient enough, I was trying for about 10 mins and it kept saying SSH connection refused but now it started working agian05:00
devslashmy windows and ubuntu partitions are still there05:00
rboxlol05:01
MenzadorOK, hang on05:01
Menzadorbrb05:01
NemosWhisperrbox: I appreciate you being so quick to help me :)05:01
devslashok05:01
Menzadordevslash: What does your /etc/fstab look like?05:04
devslashi cant paste it here05:04
devslashbut i can see my root partition05:05
MenzadorDo the UUIDs match?05:06
devslashi dont know05:06
devslashmatch with what05:06
MenzadorGNOME Disks and `parted` should tell you what each disk UUID is05:07
devslashok i can see the uuid05:07
devslashi booted the live usb, mounted my root partition, mount proc, sys and dev in my root folder then did chroot05:08
MenzadorOK, I want to rule out the possibility of fstab using partition references and that the UUIDs are not mistyped05:09
devslashi dont know how to answer that05:09
devslashi dotn have anything to compare the uuids with05:09
MenzadorDo `sudo blkid`05:10
devslashok05:10
MenzadorAnd then in a different terminal window `cat /etc/fstab`05:11
devslashok the uuid is /dev/nvme0m1p505:12
MenzadorAlso pay attention to the mount points05:12
devslashwhich is my ext4 partition05:12
MenzadorThat’s not a UUID05:12
devslashwhat isnt05:13
Menzador/dev/nvmen1p5 is not a UUID05:13
devslashmy fstab shows the uuid of my paritition mounted on /05:13
devslashi know but i cannot paste it here05:13
devslashthe uuid in /etc/fstab is the same as that device partition shown with blkid command05:14
MenzadorAll right05:15
MenzadorNow reboot and press E to edit the Ubuntu boot entry05:16
devslashi dont have an ubuntu entry05:17
devslashit shows 2 memtest entries and Windows05:17
devslashubuntu is no longer in the boot menu05:17
MenzadorOh it’s gone05:19
MenzadorThat’s a different problem then05:19
devslashyea. The ubuntu 23.10 install screwed things up for me05:20
devslashi tried booting from grub command but it then takes me to an initramfs prompt05:20
MenzadorSo you’ll have to go back into your Live image, chroot back in, a — huh?05:20
devslashi did all that05:21
devslashim in it now05:21
devslashbut i dont know what to do05:21
MenzadorDid you use `do-release-upgrade` to upgrade?05:21
devslashyes05:21
MenzadorDid it encounter errors?05:23
devslashno05:23
MenzadorOK, then reboot into your Live image, chroot back in, and do `sudo update-grub`05:25
devslashok so that completed with no errors05:26
devslashis there  a way to check grub before i reboot05:26
devslashor do i just have to try it05:26
MenzadorReboot normally05:28
devslashso now theres no grub bootloader05:29
devslashits just hangs on a black screen05:29
devslashoh weird i had to press a key to make the grub menu appear05:29
MenzadorTimeout is hidden by default now05:29
devslashubuntu still isnt on there any more05:29
MenzadorNot menu05:29
MenzadorOk, still no Ubuntu05:30
MenzadorWord05:30
MenzadorWeird05:30
MenzadorHit C for the grub cmd line05:31
devslashwhen i boot it still takes me to niitramfs prompt05:31
MenzadorWhen you type `set root=(hd0,` and hit TAB, what completions do you get?05:31
devslashit says no root device specfiiced. boot arguments must include a root= parameter05:31
devslashgpt1-505:31
devslashmy partition for linux is hd0,gpt505:32
MenzadorOK05:32
devslashso i do set root=(hd1,gpt5)05:32
MenzadorYes05:32
devslashthen linux /boot/vmlinux and initrd /boot/initrd05:32
devslashthen boot05:32
devslashthen i see the message i typed above05:32
MenzadorIt’s /boot/vmlinuz-{kernelversion}.efi05:33
MenzadorRight?05:33
devslashi didnt reference an efi file05:33
devslashno05:33
MenzadorThis may not be an efi file05:34
MenzadorDepends05:34
MenzadorBut you need a root= parameter that either specifies the /dev/ device file or its UUID05:34
devslashyea i did that05:34
devslashit doesnt work though05:34
MenzadorAt the end of your linux line05:34
devslashset root=(hd0,gpt5)05:35
MenzadorNo, not that05:35
MenzadorYou have to specify it twice05:35
devslashspecify what twice05:35
devslashyou mean i have to do the set root command  twice ?05:35
MenzadorYou specify root=(hd0,gpt5) with the set command, and then in your linux line, you specify root=/dev/nvme{whatever}05:36
MenzadorWhatever the NVMe drive partition is named, that specific way, how you saw it in /etc/fstab05:36
devslashok i did that05:39
devslashdo i also need to do the linux and initrd lines05:39
devslashoh hey that did the trick05:40
devslashI wasnt specifying root in the linux command05:40
devslashthat lets me boot up my existing ubuntu install05:41
MenzadorNow when you log in, make sure you update GRUB 205:41
MenzadorYou may need to reinstall GRUB05:41
devslashupda-tegrub ?05:41
devslashupdate-grub ?05:41
MenzadorYes, with sudo05:41
MenzadorIf that doesn’t work, reinstall GRUB with the grub-install command05:41
MenzadorYou’ll need the directory containing your EFI system partition for that if you reinstall05:42
devslashafter doing that i ran grub-customizer and ubuntu is still not in the menu05:42
Menzadorupdate-grub is a verbose script05:43
devslashnot sure hwat you mean by that but ok05:43
MenzadorTry reinstalling GRUB with grub-install; don’t forget the `--efi-directory=` switch05:44
MenzadorIt’s verbose in that it tells you what it’s doing while it runs05:44
devslashsame result05:45
devslashit refuses to add ubuntu to the grub menu05:45
MenzadorThat is weird. A fresh 23.10 installation would fix this the quickest way. You can tell it to not touch your personal files in the installer…05:46
MenzadorAnyway I do have to go to bed…05:48
devslashfixed it05:48
devslashbut thanks05:48
ew_hellooooooo06:05
ew_need to sett up pineaple06:06
ew_can som help mee06:06
ew_?06:06
=== TomTom_ is now known as TomTom
bizzywell ive got an thinkpad yoga 11e installed windows 10 and i happens to have few issues after downloaded ubuntu desktop.iso file and tried to install a fat32 partition but for some reason my laptop hasnt recognized the boot partition and everytime i restart or go into bios boot menu i cant find the partition in the list so the question is what am i doing wrong08:27
bizzyfyi im using universal usb installer 2.0.0.1 since i dont have a usb drive tried to improvise (tried to be pro while im still a newb) i guess it didnt go to well :)08:27
toddcbizzy: while there may be a way I have not seen it done with out a usb or dvd or a separate hdd/usb hdd08:34
toddcbooting a os --bios looks at the drive not the partion as far as I know   normally a usb will install the bootloader to start of the drive ubuntu handle booting to both win and ubuntu08:40
Guest92How do I turn off GSYNC in Ubuntu? I did nvidia-settings in terminal -> X Screen 0 -> OpenGL settings -> unclicked allow G-sync. It didnt disable it. I also wrote in terminal; "nvidia-settings -a AllowGSYNC=0", but this didnt work either12:08
Guest92it still says GSYNC is on12:08
Guest92im using ubuntu 23.1012:09
Guest92went from xorg to wayland just now, but wayland didnt even show any settings12:13
Guest92so i went back to xorg12:13
Guest92ok turns out i need to manually write: nvidia-settings -a currentmetamode="blabla {ForceCompositionPipeline=On, AllowGSYNC=Off}" ... Eventhough nvidia-settings -q AllowGSYNC  gave 012:26
=== remy_ is now known as Remy
BluesKajHi all13:32
dumbledoori want to use jet brains mono on gnome terminal13:46
dumbledoordo i just need to put the regular font in /usr/local/share/fonts13:46
dumbledooror bold italic thin medium as well?13:46
centHOGGtry it13:47
dumbledoorcan you suggest a command that would print bold or italic output13:47
CosmicDJyou can put new fonts in ~/.local/share/fonts too13:48
centHOGG^13:48
centHOGGbettah13:48
dumbledoor>  ~/.local/share/fonts13:49
dumbledoorwill this work as long as I'm logged in as my user13:49
dumbledooreven if i use sudo?13:49
CosmicDJwhy would you run jetbrains as root?13:49
centHOGGyeah, no need sudo13:49
dumbledoorwell ok i'll put it in ~/.local/share/fonts. but do i have to put bold and italic along with regular or will regular be enought13:50
dumbledoorenough*13:50
CosmicDJregular is mostly not a monotype font...13:51
centHOGGjust try regular, and then if you need more install afterwards13:51
CosmicDJor maybe it is, depends on the font13:51
dumbledooryeah in this case it's also mono13:51
centHOGGyeah i use nanumgothiccoding or something13:52
centHOGGand nk57 something13:52
centHOGGboth mono13:52
dumbledoori just wish had something to test if the terminal is showing bold or not13:52
dumbledoori'll just put regular ttf file in ~/.local/share/fonts for now13:52
centHOGGgood13:52
centHOGGjust right-click on the window pane to see if any settings are there13:53
centHOGGterminal window pane13:53
CosmicDJdumbledoor: there's a GNOME Fonts app... (see Utilities -> Fonts)13:53
CosmicDJdumbledoor: otherwise google "bash print bold" will surely find smth13:54
dumbledooryea, i just saw that grep is bolding the text :)13:54
dumbledoori'll check with that13:55
k4k0Good morning everyone, has anyone here used the mIRC BitchX script, do you know if it is possible to show the AWAY message on the channels?14:00
CosmicDJk4k0: you don't show any away message on any channel14:02
k4k0but it seems there was some way to show it with the /cset command14:02
k4k0or am I mistaken hmm :S14:03
CosmicDJk4k0: why do you think the whole channel cares if you're away or not?14:04
k4k0avoid calling me.14:04
k4k0;x14:04
=== BedMan_ is now known as BedMan
webchat88what s default version of postgresql in ubuntu server 22.04 LTS14:44
CosmicDJwebchat88: you can search for packages at https://packages.ubuntu.com14:46
webchat88Thks !14:47
BedManpretty sure it's 14 tho.15:04
SlartHey everyone! I'm running Deluge from flatpak and I'm getting what looks like out-of-memory errors after ~6 hours or so... when I google for the error messages it seems like I'm the only one in the world with this issue. Is there anything I can look into? can I increase memory allocation for the deluge flatpak?16:01
Slartoh.. and I'm running Ubuntu 22.04.03 LTS with KDE16:01
arraybolt3Slart: Is there a reason you can't use Deluge from Ubuntu's repos? Flatpak applications aren't supported by Ubuntu.16:04
Slartarraybolt3: I could be remembering things wrong but for some reason I switched to using the flatpak.. perhaps to get a newer version... but I guess I could go back to the regular packaged version...16:05
arraybolt3Might help. I don't *think* Flatpak places memory usage limitations on apps... but I could be wrong, I don't know much about how those work.16:07
Slartfor a while I figured it might be an issue with swap space.. or tmp space in the flatpak. But neither of those ideas really helped me16:08
JanCSlart: don't you get any more info in the log files?16:29
Slartnope.. not in any log file I can find at least16:31
Slartthis is actually terminal output.. so not technically a log file16:32
Slarthttps://pastebin.com/h0tA4s0F <-- this is the output16:33
SlartI *think* it's an out of memory error... but my thinking hasn't helped me so far16:34
JanCwhy do you think that is a out-of-memory issue?16:34
JanCthat is a warning, not even an error, does it actually show up when the crash happens, or some time before?16:35
Slartdamn... tough question... if I google the error without mentioning deluge it seems that it eventually ends up as an proper out-of-memory error...but I'm just wildly guessing here16:35
Slartyes, it happens when the deluge gui gets non-responsive16:36
JanCone possibility is that there is a bug in the version in the flatpak...   :)16:36
Slartyea... I just feel like there should be other bug reports out there16:37
Slartand the flatpak was actually updated yesterday... error still remains16:37
JanCmaybe the flatpak-packagers or upstream Deluge developers have an idea what could cause that warning?16:38
Slartyea, perhaps16:39
SlartI think, deep down, I just wanted someone to say "oh, that's easily fixed.. just set dont_crash = true in deluge.ini"... but alas16:40
JanCthat is certainly something that Deluge developers/users are more likely to know16:42
JanCif the version in the Ubuntu repositories work & you don't need features in a newer version, you could use that; or there are also other torrent applications of course...16:43
Slartyea, I might just go back to the standard repository version...16:43
ph88what's the best way to transfer files from one ubuntu computer to another on the same network ?16:44
ramindehghanph88: Have you tried SCP?16:45
ph88no16:45
JanCph88: that also depends on whether you do that often or not16:45
ph88i don't know yet how often16:45
JanCe.g. you could set up Samba, but that might be a bit much if it's just a one-time thing16:46
ph88isn't samba for windows ?16:46
JanCit's like & compatible with Windows shared folders, yes, but it works on linux16:47
JanCif you have ssh on all computers, you can use sftp16:47
ph88would like to mount the folder from the other computer in nautilus16:48
JanCyou can do that with both Samba & ssh/sftp16:48
ph88do i need to setup security for samba for when i take my laptop somewhere else ?16:52
Slartnfs is also an option... but perhaps not for a one time thing16:52
JanCph88: supposedly there is a "Local Network Share" option when you right click a folder you want to share files from in Nautilus16:56
ph88JanC, oh that's nice right from the GUI and it asks me to install samba16:57
JanCI have never really done it that way myself  :)17:00
toddcph88: samba gui is nice as you can toggle it off and on as needed----off when on a untrusted network17:02
JanCor just enable it when you need it (that way you can't forget)17:03
webchat45Hi everyone. I'm running Ubuntu Server 22.04.3 LTS (Jammy Jellyfish) with Linux kernel 5.15.0-37-generic.17:17
webchat45Seems like there's a security issue with this version. However, even though I'm using default repositories, I can't see any updates regarding this kernel. What would you suggest?17:17
NemosWhisperHi all, I'm running an app on my ubuntu headless setup which opens a web server on a port which I configure. I set it to run on port 9090 and I made sure to allow port 9090 from any IP in my local network, but when I try to connect to it, I get connection refused message in my browser. Without plugging in a monitor to my headless server, is there a way to confirm the web server is actually running?17:17
webchat45 NemosWhisper try running "netstat -tulpn" as root and see whether 9090 is listening by a process17:18
NemosWhisperwebchat45: thanks, yep the app running the webserver is listening on port 909017:20
JanCwebchat45: what do you mean by "seems like there's a security issue"?17:21
webchat45than that means web server is actually running. try to connect it through your own web browser like localhost:909017:21
webchat45JanC a nessus scan on the machine showed up a few cve's. for e.g. https://ubuntu.com/security/CVE-2023-309017:22
-ubottu:#ubuntu- A heap out-of-bounds write vulnerability in the Linux Kernel ipvlan network driver can be exploited to achieve local privilege escalation. The out-of-bounds write is caused by missing skb->cb initialization in the ipvlan network driver. The vulnerability is reachable if CONFIG_IPVLAN is enabled. We recommend upgrading past commit 90cbed5247439a966b645b34eb0a2e037836ea8e. <https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-3090>17:22
JanCyou can use w3m or links to connect locally17:22
JanC(without a GUI)17:22
NemosWhisperwebchat45: I don't have a monitor and keyboard attached to the machine, I was trying to connect to its local IP from my other computer by going into my browser and doing 192.168.1.238:9090/stats but it says refused to connect17:22
webchat45NemosWhisper I see. but how did you manage the get the output of netstat then?17:23
NemosWhisperI'm ssh'd into the ubuntu server17:23
NemosWhisperfrom my laptop17:23
webchat45that's allright. just try wget localhost:9090 then to see if it can connect to itself17:23
NemosWhisperwebchat45: ooh that worked....so does that mean its some sort of firewall issue?17:24
webchat45seems like it. also, there can be something related to your router. for eg. some routers doesn't allow local connected clients to communicate by default (for security reasons)17:25
JanCNemosWhisper: w3m & links are TUI (text mode) browser17:25
NemosWhisperwebchat45: I can connect via my browser to another web server I have on another LAN device (192.168.1.186) no problem17:26
webchat45so maybe, just maybe, your local modem & router might be blocking you aswell. or, just like you said, it can be related to a firewall issue. can you send the output of ufw status17:26
NemosWhisperJanC: thanks, I didn't know about that17:26
NemosWhisperwebchat45: https://dpaste.org/d3UAs/raw17:26
JanCthey won't work properly with JavaScript etc., but at least to test they should be okay17:26
NemosWhisperwebchat45: also if I try accessing the site after disable ufw with "sudo ufw disable", it still doesn't work :/17:27
webchat45that's a tricky one. are we sure that both devices are running under same network? are there any virtual network adapters we're talking about? can both machines (server & client) ping their gateway?17:28
webchat45BTW, any help related to kernel upgrade?17:29
NemosWhisperwebchat45: yeah i'm confused as well...both are on the same lan (192.168.1.175 trying to reach 192.168.1.238). Both are able to ping their gateway without issue (192.168.1.1). No virtual network adapters, my laptop is on wifi and trying to reach my ubuntu server which is connected via ethernet....but the same laptop is able to reach another device on the LAN that has a web server running...I'm lost.17:30
webchat45possible protocol issue? are we sure that it's working through http?17:32
NemosWhisperwebchat45: this is the output when I tried wget'ting the page: https://dpaste.org/ruYgH/raw17:33
NemosWhisperand when I checked what it saved, it was the expected output17:34
webchat45can you ping the server?17:36
NemosWhisperyes17:36
NemosWhispershould I try doing wget from my laptop to the server?17:36
webchat45what's the output of wget17:39
NemosWhisperwebchat45: hmm tried wget from my mac laptop to the headless ubuntu server and got an error: Connecting to 192.168.1.238:9090... failed: Connection refused.17:39
webchat45oh yes, that's what I was gonna ask17:40
webchat45are we sure about the IP addresses?17:40
NemosWhisper100%17:40
NemosWhisperi'm ssh'ing to the same IP address17:40
JanCsounds like a firewall issue17:40
webchat45seems like your client can access that IP. that means a firewall issue17:40
NemosWhisperfirewall on my ubuntu setup?17:40
webchat45yeah17:40
NemosWhisperif i try after disabling ufw, i get the same error17:41
webchat45or of course it's possible that client's firewall rules might be blocking going outside aswell17:41
webchat45are you guys using any desktop irc client for these kind of channels? any suggestions?17:41
NemosWhisperon my mac laptop I have firewall turned off17:42
NemosWhisperwebchat45: i'm on mac and using the textual IRC client, its pretty nice17:42
webchat45thanks17:43
JanCwebchat45: jammy is at 5.15.0-88 now (if you don't use a HWE kernel) and this was fixed in 5.1517:48
JanC was fixed in 5.15.0-78 apparently17:48
webchat45you see, that's the problem. I'm running 5.15.0-37-generic but there's no available update for the machine17:50
JanCyou do reboot from time to time, right?  :)17:51
JanCalso, make sure 'linux-generic' is installed17:51
JanCbecause it's 'linux-generic' that pulls in the latest version whenever a new release comes out17:52
webchat45of course. I ran the apt update && apt upgrade. there was no available updates for linux-generic package17:53
webchat45after upgrade, I rebooted also17:53
webchat45but still, kernel version is the same. that linux-generic package doesn't get any updates17:54
JanCare you using a mirror of the repositories? maybe it stopped being updated?17:54
webchat45don't think so, because I can get updates for many different packages.17:56
webchat45a few typical repo conf of mine:17:56
webchat45deb http://uk.archive.ubuntu.com/ubuntu jammy-security main restricted17:56
webchat45deb http://uk.archive.ubuntu.com/ubuntu jammy main restricted17:56
webchat45deb http://uk.archive.ubuntu.com/ubuntu jammy-updates multiverse17:56
webchat45oh wait. there was linux-headers package. no linux-generic. how's that even possible? it was a fresh ubuntu installation. why is this "generic" package missing17:57
NemosWhisperwebchat and JanC, any other ideas about what could be causing my ubuntu server to reject incoming connections even when ufw is disabled? :/17:57
NemosWhisperI tried from my phone also (while on the same LAN via wifi) and it also refused the connection17:58
CosmicDJNemosWhisper: ping works? port is open in ss -4/-6?17:58
NemosWhisperso same behavior from two separate clients17:58
NemosWhisperCosmicDJ: ping works17:58
NemosWhisperCosmicDJ: what is ss? I had the port open in ufw but not sure what ss is....sorry I'm a noob17:59
zoomm10NemosWhisper: change your ip...from 192.168.1.175 to 192.168.1.17618:00
CosmicDJNemosWhisper: the ss command shows all ports with a listener (i.e. open ports)18:00
JanCwebchat45: if you didn't choose to use HWE kernels it should have been installed indeed18:00
NemosWhisperzoomm10: I tried from two different clients from different IPs, same results18:01
zoomm10NemosWhisper: check the logs in 192.168.1.238 machine18:02
NemosWhisperCosmicDJ: I tried ss | grep 192.168.1.238:9090 and got zero results, but netstat -tulpn shows 127.0.0.1 open on 9090 and listening18:02
CosmicDJNemosWhisper: so? 127.0.0.1 is localhost, meaning that port is not reachable from your network18:03
NemosWhisperCosmicDJ: boom! That was what made it work! In my conf for the app's webserver I was having it bind to port 9090 (assuming 127.0.0.1 as the IP). I changed it to bind to 192.168.1.238:9090 and it worked! Thank you!18:06
CosmicDJNemosWhisper: yw :)18:07
JanCyou _probably_ want it to bind on all IPs, not a specific one18:08
NemosWhisperJanC: yeah this is the config file for the app -- https://dpaste.com/5VZMPTQDS.txt18:09
NemosWhisperoriginally i had uncommented the line that just had the port but now I commented it back and uncommented the last line and changed it from 127.0.0.1 to 192.168.1.23818:09
NemosWhisperis there a different way to do it to get it to bind on all IPs?18:10
NemosWhisperdo i just add another line in there with stats = 127.0.0.1:9090 also18:10
JanCthat should be in the application documentation18:10
NemosWhisperall the documentation is in the paragraph preceding it haha18:11
JanCI guess another option is to run it on localhost and then run another web server (with more features) in front of it as a reverse proxy, but that might be overkill for what you want to do18:12
=== Roey is now known as DaddiesMoneys
JanCanyway, just remember that if the IP address changes, you will have to change this configuration now18:12
NemosWhisperyeah...I set my ubuntu box to have a static but I appreciate the reminder JanC18:13
JanCokay then :)18:13
NemosWhisperthank you to you, and CosmicDJ and zoomm10 and webchat4518:13
=== DaddiesMoneys is now known as DaddiesBunnies
=== lubuntu is now known as demon
=== Offsprin is now known as Offspring
KadiganNemosWhisper: many services will also accept * for the IP bind, or 0.0.0.0 - either may work, and that should make it listen on *all* interfaces the machine has. May be useful to know.19:06
lowdeni have a hdd soon to fail but if i run a live usb and not mount the hdd will it stop the hdd from being used at all ?19:06
NemosWhisperKadigan: ooh good to know, thank you!19:06
KadiganThe format may also have an impact. If you use 0.0.0.0, it PROBABLY will force it to IPv4-only.19:06
NemosWhisperKadigan: i only have an IPv4 from my ISP (comcast)19:07
KadiganI mean inside your LAN.19:07
KadiganIPv6 is usually enabled by default, and a ton of services (most notably game servers) tend to assume IPv6-first.19:07
NemosWhisperoh i see19:07
KadiganWhich, if it's broken, can cause issues. :D19:08
KadiganSometimes the only way to force them to IPv4-only is to tell them to bind to an IPv4 address explicitly, and 0.0.0.0 works for that if you need them to listen on all interfaces still.19:08
KadiganSatisfactory dedicated server has this issue, for example.19:08
Kadiganlowden: I would advise against it; it may power down after some idle time, it may not. If it's already failing, I'd copy data off of it as soon as I had the space to make an image.19:09
KadiganKeep in mind that most physical hardware failures happen at power-down and power-up, so it might be a huge contributing factor.19:10
KadiganMy advice would be: if you have any data you care about *at all* on it - back it up ASAP, and then retire it.19:10
lowdenKadigan: but the live usb is loaded in memory right ?19:11
KadiganAh, sorry. I understood "live usb" as "USB device that is constantly powered on" :D :D :D19:11
KadiganBut no, I'd still unhook it if I'm not going to use it. Power-cycles of the machine will still affect it unless you do.19:12
lowdeni was also thinking of unhooking but sometimes i need to access some data from it19:12
KadiganI would strongly advise to copy any and all data you care about at all, still.19:13
lowdenalso instead of live usb i was thinking of installing ubuntu on a usb19:13
KadiganI've had "weak" disks live for months, and I've had a few that died without warning. So it's a coin toss IMO.19:13
KadiganEarly warning is supposed to give you a sensible window of opportunity to evac your data, in the end.19:14
KadiganNo guarantees. :)19:14
lowdenyea i have ordered a hdd but it'll take some time19:14
KadiganI'd unplug it entirely and let it sit there.19:14
KadiganReschedule stuff if you must, pull copies from the Internet, or just refrain from activity requiring the disk.19:15
lowdenhmm will follow that, thanks for your help19:16
KadiganKeep in mind that copying/imaging is NOT a zero-time operation, and reading a disk wholesale (if imaging) will put considerable strain on it - it may still die during the rescue copy. So I'd give yourself as much as possible.19:16
Kadiganlowden: Linux has mdraid (soft-raid) available; I'd advise maybe moving critical stuff to a RAID-1 configuration? It's not a backup, and it may still fail, but if nothing else - it'll allow you to safely unplug the disk (as a potential "wonky spare" should the other one just tank out of nowhere) and keep using the data on the so-far-good device.19:19
KadiganI use this setup, because I also usually need a week or two before I'm able to swap in a spare.19:19
Kadiganlowden: also, keep the old one around even after you copy data off of it (assuming it still works afterwards). Hardware failures follow the so-called "bathtub curve", and infant mortality IS a thing. Give it 2 months to be reasonably sure the new disk is OK before you destroy the old one.19:23
johnfghi folks19:34
johnfgNew installation of 22.04 LTS, and for some reason the wifi doesn't appear to be starting.  No problem with the windows 10 partition.19:34
johnfgAfter booting into windows, then back to ubuntu, now it's working.  Will think about filing a bug.19:47
=== DaddiesBunnies is now known as DaddiesFunnies
nickzxcvi'm looking for the PXE files like netboot.tar.gz for the 22.04 installer, and https://ubuntu.com/download/alternative-downloads says "For 22.04 LTS, users can use the new Ubuntu Live installer to setup and configure a network install." but there's no link except to these instructions https://discourse.ubuntu.com/t/netbooting-the-live-server-installer which seem to be for 20.04 (focal) ?20:00
nickzxcvi understand 22.04 has a totally new installer not based on debian anymore, so maybe the PXE files aren't called netboot.tar.gz anymore, but what's the real new thing for PXE?20:01
nickzxcvis extracting the PXE files from the iso really the only way to get the PXE files?20:05
toddcnickzxcv: as i recall pxe was installed to the pxe server then PXE mounted the iso so it could be installed as a remote device--- it has been a long while since I did it so you may need ro read up on it20:10
CosmicDJnickzxcv: https://releases.ubuntu.com/23.10/netboot/amd64/ ?!20:11
CosmicDJoh you're right, it's not there for 22.0420:12
toddcCosmicDJ: I do not recall using those on our loco server when using client bios netboot option am I correct?20:16
nickzxcvCosmicDJ: thanks though, at least they are still building it separately for some releases, i hope they will for 24.0420:16
toddcI think this is the guide I used   https://help.ubuntu.com/community/PXEInstallServer20:17
nickzxcvi think i will install 23.10 for this system, it's not for production...20:17
ElliriaHey there. Is there a single team in charge of updates for all Ubuntu flavors or does each desktop have its own team?20:18
EickmeyerElliria: The Ubuntu SRU team is the ultimate gatekeeper for any updates going into Ubuntu releases.20:29
EickmeyerWith the exception of security updates, that would be the security team.20:29
Eickmeyer!sru20:29
ubottuStable Release Update information is at https://wiki.ubuntu.com/StableReleaseUpdates20:29
ElliriaThank you, Eickmeyer. I'll get in touch with them.20:30
EickmeyerElliria: If you don't mind, with regards to...?20:30
ElliriaA few months back, I grabbed the updates that were offered to me and couldn't boot afterwards. The updates included a new kerenel and a new NVIDIA driver. It later turned out that when the kernel and the NVIDIA driver get updated together, if the NVIDIA driver gets processed first, then initrd doesn't get updated for the latest kernel and that can cause an issue like not being able to boot. I'd love to be able to suggest to the update20:32
Elliriateam that it would help if the script (or whatever) that they use were written so that if there's a kernel update, it should be processed before anything else.20:32
EickmeyerElliria: That would be a support issue, not an SRU issue. That gets handled here.20:33
ElliriaThe suggestion for them to possibly update their script or whatever so that it processes the kernel first if there is one in the updates?20:33
EickmeyerSome things slip through the cracks, and not everyone is affected by what you're affected by.20:33
EickmeyerThat's an apt thing, and it doesn't work that way.20:33
ElliriaI figured it wouldn't harm anyone who doesn't use an NVIDIA driver if the kernel is processed first when getting updates.20:34
EickmeyerSadly, there's no way to do that.20:34
ElliriaAh, that's a shame. It's not all bad, though. Those of us who have been bitten by that dog now check the update list very carefully and, in future, will manually grab the kernel update first. It would just be nice if it did that for us.20:35
EickmeyerI use NVIDIA and that doesn't happen to me. Keeping on top of the updates is the key. If that does happen, `update-initramfs -u -k all` fixes it.20:35
ElliriaApparently it can happen, but doesn't always. You may have received the NVIDIA driver before the kernel and I may not have. A roll of the dice, maybe.20:36
EickmeyerIt is definitely a roll of the dice, and there's no real way to prevent it from happening if it goes bad, but it's an easy fix if it does. It's a bit of a race condition your system can be in, but since it can't be predicted that it will happen, it's not something that any fix can cover.20:37
ElliriaYeah. Some nice person here on IRC gave me the fix and it worked like a charm, thank goodness.20:38
EickmeyerThat's what this is for. Support issues aren't bugs, and sadly, that's not a bug per se.20:38
ElliriaRight. It's just something to be aware of rather than an outright error or fault somewhere.20:39
EickmeyerExactly. It's one reason to watch your updates and be aware of what *might* happen. Drivers can be finicky and only rebuild for the currently running kernel. I've told the kernel team about the issue before and they said that my solution (the command I typed above being run automatically) was too dangerous to be considered.20:41
ElliriaInteresting. I didn't use that solution. What worked for me was this: sudo ubuntu-drivers install20:42
EickmeyerThat's a more safe and sane solution, to be honest.20:42
ElliriaIt brings in the NVIDIA drivers and updates initramrd automatically.20:43
EickmeyerYep, as it should.20:43
ElliriaI had initially tried the sudo apt install --fix-broken command, but that didn't fix it.20:44
ElliriaProbably because it installed just fine. Heh.20:44
EickmeyerIt wouldn't, because that would simply resolve packages, not the driver compilation to the kernel.20:44
ElliriaI'm keeping that other command very close just in case it ever happens again, but since I'm now paying careful attention to the updates when they're listed, it shouldnt'.20:45
Elliria*shouldn't20:45
EickmeyerRight. That kind of thing shouldn't happen very often if you keep your system updated and are running a stable release.20:45
ElliriaI've got Kubuntu 22.04 LTS and I grab the updates whenever they're offered.20:46
EickmeyerYou should be good then. :)20:47
ElliriaYep. And if you're one of the team members who makes all of this whole Ubuntu-and-its-flavors happen, lots of love from me to the entire team. It's all wonderful.20:48
EickmeyerI'm the lead for Ubuntu Studio and technical lead for Edubuntu, so you're welcome. :)20:49
ElliriaHeh. Well, I've been using Kubuntu and Ubuntu MATE ever since Feisty Fawn and would never go back to the paid OS. What you guys have put together is simply amazing.20:50
EickmeyerWell, you're welcome. We make it just for you. :)20:51
ElliriaHeh.20:52
seifeslimeneIs there any way to save all my workspaces opened programs even after restart the system.I will restore them20:57
Eickmeyerseifeslimene: That's entirely dependent on your desktop environment. What flavor are you running?20:58
seifeslimeneUbuntu 22.0420:58
EickmeyerDoesn't quite narrow it down, but now I'm assuming Ubuntu Desktop 22.04 (GNOME), correct?20:58
UniXhi staff i am soory i use script auto for color blue20:59
UniXi need help please20:59
Eickmeyer!ask | UniX21:00
ubottuUniX: 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 !patience21:00
UniXsorry21:01
UniXI have to explain21:01
seifeslimeneEickmeyer: yes true21:02
UniXI am a beginner I use ubuntu i need to install kiwiirc i use the link https://github.com/ItsOnlyBinary/kiwiirc/wiki/Getting-Started#packages and https://github.com/kiwiirc/kiwiirc/releases/tag/v1.7.121:02
Eickmeyerseifeslimene: I'm not entirely sure how to help you there, but there might be a gnome extension that can help. Try searching extensions.gnome.org.21:02
UniXI need the steps to install server kiwiirc please21:03
EickmeyerUniX: If it's not in the Ubuntu repositories we don't support it. Sorry.21:04
UniXexplain to me this command sudo dpkg -i kiwiirc-server_v1.7.0-2_linux_amd64.deb please21:05
EickmeyerUniX: You need to seek help from the software developers. We do not support what you're trying to do as it is not in the Ubuntu software repositories.21:06
centHOGG!dpkg21:06
ubottudpkg is the Debian package maintenance system, which together with apt forms the basic Ubuntu package management toolkit.21:06
TychoFeldpkg -i is use to install something21:06
TychoFelhttps://man7.org/linux/man-pages/man1/dpkg.1.html21:06
UniXwhen i do this in ubauntu is not working21:10
=== krupa1 is now known as krupa
UniXdpkg: error: cannot access archive 'kiwiirc-server_v1.7.0-2_linux_amd64.deb': No such file or directory21:12
elias_aUniX: Have you downloaded the .deb file and are you in the same directory you downloaded it into?22:05
elias_aUniX: If you are not in the same directory, either use command cd to go to that directory or give the full path of the .deb package to the command.22:07
UniXelias_a when i do ls22:08
UniXhe show me node_modules v1.7.122:08
elias_aUniX: I am not sure I understand what you are saying but let's try.22:09
elias_aUniX: What does command pwd tell you?22:10
elias_apwd = Print Working Directory22:10
UniX./home/ubuntu22:11
elias_aUniX: Ok. Do you know where you downloaded the .deb file?22:11
UniXno22:11
elias_aUniX: Did you download it with a browser or wget?22:12
UniXwget22:12
elias_aUniX: Did you run the wget command in the same directory you are now?22:13
UniXyes22:13
ravageif "ls" shows kiwiirc-server_v1.7.0-2_linux_amd64.deb22:13
ravagethen do22:13
ravagesudo apt install ./kiwiirc-server_v1.7.0-2_linux_amd64.deb22:14
UniXi did thid but he not workink22:14
UniXhttps://www.blogmania.fr/ircmania/article17/installer-kiwi-irc22:14
elias_aUniX: What do you get with: ls kiwi*22:14
UniXravage E: Unsupported file ./kiwiirc-server_v1.7.0-2_linux_amd64.de given on commandline22:15
ravagethen your downloaded file may be damaged22:16
UniXelias_a lock this please https://github.com/ItsOnlyBinary/kiwiirc/wiki/Getting-Started#packages22:17
ravagealso yoi should try the latest version22:17
ravagehttps://kiwiirc.com/downloads/kiwiirc_20.05.24.1-1_amd64.deb22:17
TychoFelfind / -name myFile22:18
TychoFelUnix then you have the path , then you may dpkg22:19
elias_aUniX: Comme vous parlez probablement français, je vous suggère de demander de l'aide à #ubuntu-fr :)22:19
elias_aNot reasonable to try to cope with the lingual barrier at the same time... ;-)22:20
UniXelias_a23:26
UniXplease23:26
UniXi do this wget https://kiwiirc.com/downloads/kiwiirc_20.05.24.1-1_i386.deb23:26
UniX2023-11-20 23:21:53 (161 KB/s) - ‘kiwiirc_20.05.24.1-1_i386.deb’ saved [9706174/9706174]23:27
UniXand i did this sudo apt install ./kiwiirc_20.05.24.1-1_i386.deb23:28
UniXubuntu@vps-c96516ec:~$ sudo apt install ./kiwiirc_20.05.24.1-1_i386.deb23:29
UniXReading package lists... Done23:30
UniXBuilding dependency tree... Done23:30
UniXReading state information... Done23:30
UniXNote, selecting 'kiwiirc:i386' instead of './kiwiirc_20.05.24.1-1_i386.deb'23:30
UniXi can do sudo apt install ./kiwiirc:i386 ?23:30
UniXN: Download is performed unsandboxed as root as file '/home/ubuntu/kiwiirc_20.05.24.1-1_i386.deb' couldn't be accessed by user '_apt'. - pkgAcquire::Run (13: Permission denied)23:31
UniXE: Sub-process /usr/bin/dpkg returned an error code (1)23:31
arraybolt3UniX: Please copy the full log output of your command, paste it into dpaste.com, and share the link to it here.23:32
UniXsorry23:32
UniXfor that23:32
arraybolt3The actual error message isn't visible in the above output, so it's hard to know what went wrong :P23:33
arraybolt3The command you typed looks right, just something about the package isn't working.23:33
Eickmeyerarraybolt3: They're trying to install something from outside of the repos, unsupported. They've been told this.23:34
arraybolt3Eickmeyer: hmm, good point. I might at least be able to see if there's an Ubuntu version mismatch or something, but yiu're right.23:34
Eickmeyerarraybolt3: Worse than that, they're not relenting, so they're very close to an ops call.23:35
UniXi can do this sudo dpkg -i kiwiirc-server_v1.7.0-2_linux_amd64.deb23:36
UniX?23:36
EickmeyerUniX: For the last time, we do not support what you're doing. Seek support elsewhere.23:36
arraybolt3Eickmeyer: I just walked in and saw an incomplete error long and jumped into debugger mode :P I'm happy to stay out of it though.23:37
arraybolt3log, not long, sheesh chromeOS23:37
Eickmeyerarraybolt3: I suspect they've downloaded a bad .deb package, either way, not our problem. They've been told to seek support from the developer.23:38
arraybolt3+123:38

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