[00:00] should i just start fresh or is there an easy way to swap the Ubuntu OS HDD with a new one so I don't have to re-install everything? [00:01] conr: you want to take one HD out and replace with another? [00:01] TJ-: [00:01] yes [00:01] conr: can both devices be connected to the system at the same time ? [00:02] maybe, i have a eSTATA port but i don't think i have the cord to connect to a SSD. [00:02] conr: how about connecting both internally temporarily? [00:03] conr: or is this a laptop/nnotebook? [00:03] no desktop, i could try so if i did that what's the process? [00:04] conr: well, assuming you have a spare sata cable, pop the side/cover off, put the 2nd drive in, connect to a Mobo SATA port and to power [00:04] conr: the other question is how big is the new disk? larger capacity than the original? [00:05] so the current is a 50GB and the new is 250GB [00:06] what's the drive space cmd? `fdisk` [00:06] conr: that's a partitioning tool, but it will report device capacity [00:07] conr: so it's not just a clone, but an expand too [00:08] so the boot `/dev/sda1` has 48.2G [00:09] a fresh install 18.04 would use one partition, including swapfile [00:09] actually i think its a 60GB SSD. [00:09] yeah but the other is a 250GB SSD [00:09] conr: you could use them both if they fit internally [00:10] conr: it is possible to configure things so that the space on the new device is mounted into the directories where you need it (possibly for /home/) [00:10] well let me explain more [00:11] i have 4TB HDDs (2x) for storage [00:11] with a RAID profile [00:11] so i just use the SSD for the Bionic OS [00:11] but 60GBs is too small now [00:14] can anyone recommend a way to set up a dock for ubuntu 18.04? The most common suggestion is the 'dash to dock' extension, but that's not exactly what I want. I want to keep the dash as it is. There is also the 'simple dock' gnome3 extension, but it's broken on ubuntu 18.04. [00:15] conr: where is most of the OS storage being used? 60GB is a LOT for just the OS? [00:15] conr: I'd bet you have /home/ on the OS drive, not the RAID array? [00:15] right [00:15] i just mnt the raid profile to the OS [00:16] conr: so you could make the new drive just for /home/, move the existing /home/ content to it, and create a mount entry in fstab for it [00:16] conr: that'd avoid you need to do much beyond a file copy (move) [00:16] so i'm looking at dis usage analyzer [00:16] it only has 10GB total for / [00:17] is that default for the partition? [00:17] conr: how about "sudo du -x -sh /home" [00:17] 236M [00:18] conr: 236MB for home? [00:18] that's the output [00:19] conr: you need to identify where the space is being used then! "sudo du -x / | sort -n" will list the biggest users last [00:19] conr: hang on, change that [00:19] conr: you need to identify where the space is being used then! "sudo du -x -d 2 / | sort -n" will list the biggest users last [00:19] conr: the "-d 2" will limit the directory depth of the report [00:20] so like i said / is 10GB [00:21] then /usr is 4GB then /var is 4GB [00:21] conr: does "df -h" reveal anything? It sounds like you've got multiple mount points OR some space unused [00:21] conr: if the device is 60GB then its either not using a large part of that, or there's plenty of free space [00:21] what's tmpfs? [00:22] conr: RAM file-system [00:22] conr: used for in-memory mounts for things like /dev cgroups /tmp/ and more [00:22] oh i see it [00:24] "/dev/sda1" 48G Size 45G Used [00:25] or "udev" 3.6G Size 0 Used [00:28] @TJ- [00:28] anyone know how i can create a shortcut to a python application? E.g. catfish or deluge. I can launch them from the app menu just fine but if i create a shortcut on the desktop using ln -s, it just opens the python script file (which is a launcher for the actual application) [00:33] white_magic: create a desktop file [00:33] EriC^^: ill try that, thx [00:35] np [00:37] white_magic: a nice trick if you want it to run in a terminal and stay open after finishing is to do " gnome-terminal -e "bash -c '/path/tp/pythonscript.py;bash'" or whatever terminal you're using [00:43] conr: if /dev/sda1 is the / file-system, and 'df' reports 45G used, that doesn't match with what 'du' reported, which suggests some (large) deleted files are being held open by a process [00:47] my trash is empty [00:47] TJ-: [00:48] conr: I'm not on about trash, I mean running processes that still have file descriptors open to large files that you've unlinked, but are not yet closed and therefore not deleted. Has it rebooted recently? [00:48] rebooted today [00:49] Hi Ubuntu. I ran startx and now I can't login via lightdm, please advise. [00:50] conr: Usually when the reports from 'df' and 'du' vary so much it is due to unlinked files helpd open by running processes. I'd recommend a reboot and check those values again. If 'df' doesn't agree closely with 'du' then you've got something wrong there [00:56] TJ- what cmds am I comparing again? [00:57] wabbits: duck season. [00:57] conr: "df -h" vs "sudo du -sh /" [00:57] wabbits: ubu server? [00:57] desktop 14.04 [00:58] wabbits: new install? [00:58] nope ancient [00:58] wabbits: hardware change? [00:58] nope [00:58] yes sort of [00:58] wabbits: ? [00:59] I was having problems with my hdmi display coming out of power saver mode [00:59] It wouldn't "sync" [00:59] wabbits: hmm sounds like display authority lock [00:59] my nomenclature may be way off [00:59] how do I verify or remedy? [00:59] wabbits: gimmie a sec [01:00] take your time. [01:00] thanks for helping [01:00] TJ-: first is 232M second is 2.0T / [01:02] conr: oh! my fault, that included your RAID! need to tell 'du' not to cross into other mountpoints, add the "-x" option as in "sudo du -x -sh /" [01:03] now 9.5G [01:03] conr: also, to make it easier to read the 'df' output use "df /" to limit it to the root file-system [01:04] wabbits: you on tty1? [01:04] yeah so `df -h /' says Size 48G Used 9.6G Avail 36G [01:04] yeah so `df -h /' says Size 48G Used 9.6G Avail 36G` [01:05] ncdu is also handy for visualizing du [01:05] conr: so right, you have free space :) [01:06] I am currently logged in as another user on pts/2 and pts/11 [01:06] conr: so your new SSD could be used alongside the existing SSD but there's no major squeeze that requires it [01:06] TJ-: so why do i get 1GB < popup warnings [01:06] wabbits: multi user logged in? [01:07] conr: I have no idea, I have no context as to what you're referring to [01:07] I have root on vt1 and my alternate user on vt7 [01:07] not sure about multi user [01:07] I am old and losing the plot :) [01:08] wabbits: well that would be 2 users so. yes [01:08] oh you mean run level > 2 [01:09] wabbits: ctrl-alt-f7 no gui correct? [01:09] TJ-: when i open the disk usage analyzer it has the / size as 9.9G [01:09] yes my alternate user has a gui on vt7 [01:09] s/yes// [01:09] shouldn't it be 36G [01:09] wabbits: why logged on a root? ubu defaults to no root logins [01:10] root is logged on on vt1 [01:10] conr: 9.9G matches the used space you just reported doesn't it? [01:10] so that I could look at some logs while I poked around on vt7 [01:10] with my alternate user [01:11] vt1 meaning ctrl-alt-f1 [01:12] wabbits: ok so alternate reg user will not startx so i would delete the user's .Xauthority and .ICEauthority files and reboot. [01:13] https://termbin.com/kb99 [01:13] TJ-: 9.5G but yeah [01:13] does /var or /var/log have size quotas? [01:13] snowgoogles do I have to reboot or can I just go back to lightdm? [01:14] wabbits: pts are pseudo term logins [01:14] is that a yes or a no, I can't tell. [01:14] PLEASE explain wat this does ? [01:14] https://snapcraft.io/cqtdeployer [01:14] conr: no. I have /var/ as a separate file-system to avoid it causing issues with / and on some systems I have /var/cache/ as another separate [01:15] wabbits: i'm guessing it's a locked .Xauthority file so delete the user's file and reboot to recreate it. [01:15] ok so a no. will do [01:15] brb [01:15] Where are some FPS games as snaps on Ubuntu too ? I'm getting flusteredly boredommed. [01:16] AuroraAvenue, the owner explains it all in https://github.com/QuasarApp/Console-QtDeployer/wiki [01:16] cheers pal. [01:18] any clue on a decent FPS on ubuntu yet? [01:19] OerHeks, PMd ya. [01:20] tons of them, and more on Steam [01:20] I cant pay for Steam & it takes ages to update anyway - plus I don't have the associated eMail no more ... so steam .... err, No. [01:21] lost hundereds of games that way. [01:23] if only i could actually be heard. [01:24] okay u [01:24] bye [01:25] snowgoggles you have fixed my login issue. Thank you. [01:26] two small corollarys if I may? [01:27] The display looks "different" like anti-aliasing or some such. Its bugging my eyes. [01:28] I switched from hdmi to dvi to see if the "sync" problem returning from power saver mode would go away. [01:30] wabbits: so the display is bad only after resume from sleep? [01:31] nope its just bad all the time now that I have switched to the dvi cable.. [01:31] like indistinct or maybe soft or fuzzy [01:32] wabbits: sounds like a screen refresh rate issue with the config [01:32] might not be a big deal. I have also been looking at black text on white background all day and I am used to the opposite. [01:32] checking [01:33] wabbits: my xserver display settings fu is pretty rusty [01:33] I will try the hdmi again tomorrow and see if it looks different. [01:34] for now I am just greatful to have a working setup. Thanks again! [01:34] wabbits: np [01:58] Good evening, everyone. I did something dumb. I took apart my computer without remembering how I got sound to play out of the rear-audio jack. [02:01] oerheks thank you for your help on november 18 [02:01] it did remove the adware but I think I somehow got it back so I will be deleting my user cache again [02:01] but this time I think I will be trying to back up my bookmarks first before resetting firefox [02:02] on3pk I can help with that [02:02] wabbits, oh cool [02:02] please pastebin `ps aux | grep pulse` and `aplay -l` and `aplay -L` [02:04] NewToLubuntu: she is propably in bed now, seeing it is 03:03 at night on her location. [02:05] wabbits, https://pastebin.com/008XVFqw [02:06] on3pk good, please pastebin `amixer -c0` and `pactl list` [02:08] while I am looking at that try this test `pasuspender -- speaker-test --nloops=1 --channels=2 --test=wav --device=hw:0,0` [02:08] and pastebin the output. alsa tell me if you hear anything. [02:09] * on3pk double checks his cables [02:10] on3pk I have other things I could be doing. [02:11] wabbits, Okay, this was a human error on my part [02:11] Sorry [02:11] so what was the error? [02:11] Speakers weren't plugged in properly [02:12] glad its working [02:12] Yeah, thank you for your help [02:12] What were you looking for in that data? [02:12] oh... [02:14] Well, if anyone else knows what wabbits was looking for, I am genuinely interested in finding out what I should look for if/when this happens again [02:15] on3pk: if it happens again, check your cables first [02:15] leftyfb, yep, that was a big mistake on my part [02:34] on3pk: what's the problem? [02:39] matsaman, at one point in time I could only get audio to play out the front speaker port. It wasn't this time, but in the past... [02:40] This time it was a human error [02:40] oh === uptime is now known as downtime === downtime is now known as uplime [05:10] hello, can anyone tell me which way to properly setup a cron job? I'm trying to have a cron job shutdown my computer @ midnight every night, but I'm having no luck doing it via crontab -e, nor by editing the /etc/crontab file directly. [05:11] Do you guys know where the scaling factor is stored in Kubuntu? I need to reset it because I believe that it's causing my programs to crash... [05:11] fwiw, I'm using 0 0 * * * root shutdown -h now >/dev/null 2>&1 [05:11] in the crontab [05:12] I'm on KDE right now but I can't open System Settings nor Terminal nor Dolphin === pony is now known as u-ou [05:27] I'm guessing tonight's not a good night for questions in this channel [05:29] thatlizdude: try dconf-editor === capella|away is now known as capella [05:46] * c3r34l_milk hi [05:47] :) [05:50] lol [05:50] ubuntu support here, c3r34l_milk. ask your question. [05:58] merry xmas cfhowlett :p [06:00] and a happy new year to you, lotuspsychje! [06:00] tnx mate [06:01] how can I copy a folder from ubuntu to a win10 laptop [06:01] on the same LAN [06:01] it takes too long to copy it within windows 10 [06:01] this laptop == ubuntu and win10 ultimate, the other laptop I wanna copy to == windows 20 home [06:04] ... [06:13] !samba | esjay [06:13] esjay: Samba is the way to cooperate with Windows environments. Links with more info: https://wiki.ubuntu.com/MountWindowsSharesPermanently and https://help.ubuntu.com/lts/serverguide/samba.html [06:15] Hello [06:16] Are we happy today? [06:16] c3r34l_milk, this is not a chat channel. if you have ubuntu questions, please present them. [06:16] ok === [1]MrMobius is now known as MrMobius === capella is now known as capella|away === uplime is now known as uptime [08:43] hello [08:43] hi [08:43] I need help [08:43] with what? [08:46] i was trying to install windows 10 from an external hard drive, (i used mkusb) but in GRUB when i try to click on windows, it says "error: not a regular file.' "error: you need to load the kernel first." [08:46] austiko: do you want to install in uefi mode? [08:47] cause that'd be way easier to do [08:47] ok then sure [08:48] how would i do that? [08:49] austiko: make a fat32 partition and copy the contents of the windows iso (the actual files) to the partition [08:50] i have a problem though [08:50] austiko: use a gpt partition table on the usb, and set the fat32 partition to type "ef00" [08:50] what's the problem? [08:50] my external hard drive doesnt show up anywhere in ubuntu anymore [08:50] i tried to use gparted but it didnt show up [08:50] austiko: try "sudo parted -ls" and see if it's there [08:51] ok [08:51] Model: Seagate Portable (scsi) [08:51] Disk /dev/sda: 1000GB [08:51] Sector size (logical/physical): 512B/4096B [08:51] Partition Table: msdos [08:51] Disk Flags: [08:51] Number Start End Size Type File system Flags === u-ou is now known as pony [08:53] so what do i do now? [08:54] Model: Seagate Portable (scsi) Disk /dev/sda: 1000GB Sector size (logical/physical): 512B/4096B Partition Table: msdos Disk Flags: [08:56] @EriC^^ [08:56] ok that's the ext hdd i'd guess right? [08:57] yes [08:59] austiko: if there's nothing on it you need, type "sudo gdisk /dev/sda" [08:59] ok [08:59] then press "o" to make a new gpt partition table [08:59] then what [09:00] austiko: press "n" to make a new partition [09:00] partition number? [09:00] use the default starting sector and ending sector (just hit enter keeping it blank) [09:00] hit enter [09:00] if it asks for type put in ef00 [09:01] it changed the partition [09:01] now what? [09:02] austiko: press "w" to write the partition [09:03] OK; writing new GUID partition table (GPT) to /dev/sda.Warning: The kernel is still using the old partition table. The new table will be used at the next reboot or after you run partprobe(8) or kpartx(8) The operation has completed successfully. [09:04] so do i reboot my pc now? [09:07] :D [09:09] HEY ERIC [09:09] hey [09:09] YOU JUST WIPED MY PC [09:10] !!!!!!! [09:10] qwebirc94569: what? you said /dev/sda was the external hdd [09:10] IT WAS [09:10] ok that's the ext hdd i'd guess right? [09:10] yes [09:10] austiko: if there's nothing on it you need, type "sudo gdisk /dev/sda" [09:11] so how did i wipe your pc using that command? unless you typo'd something bro [09:11] >:((((( [09:11] anyways no need to fret you can get everything back, most likely [09:11] did you typo the command? [09:12] no [09:12] ok, so you're booting from a live usb right now? [09:12] Nopr [09:12] Everything is gone [09:12] I can't use it anymore [09:13] qwebirc94569: you need to make backups before you try things [09:13] qwebirc94569: you dont have a live usb? [09:13] Nothing is on my external either it wiped both [09:13] relax, at most you nuked the partition table [09:13] ducasse has a point, it's nothing major [09:14] It says "boot device not found" "please install an operating system on your hard disk" [09:14] oh, lol [09:14] that doesnt mean crap [09:14] So how can I fix it [09:14] at this point get a live usb to troubleshoot [09:14] https://www.ubuntu.com/download/desktop [09:15] how can I do that if this was the only computer in my entire household??? [09:15] I only have the external hard drive, too [09:16] qwebirc94569: make sure you're booting the right drive in the bios with the right mode selected [09:17] how big is your usual hdd? [09:17] not the ext one [09:17] It is 32 gigs [09:18] ok [09:19] So I guess im just screwed [09:19] did you try selecting the right disk in the bios? [09:19] self pity isnt really helpful [09:19] It only says "os boot manager" [09:19] I'm not self pittying myself [09:20] well there's a solution, it might involve driving to a friends/family to make a live usb [09:20] qwebirc94569: why did you have windows on an external hd exactly? [09:20] I was trying to switch from Ubuntu to windows [09:20] he didn't have it there lotus, he was trying to create a windows installation usb [09:21] qwebirc94569: install ubuntu and load a windows with virtualbox, make your life easy [09:22] Yeah I probably should have done that [09:22] qwebirc94569: from a liveusb ubuntu you can also recover data [09:23] Well I ordered a usb the other day so I'm not even gonna bother with Ubuntu I'm just going to install Windowsbackk [09:23] qwebirc94569: did you try booting in legacy mode, you might have some residual bootloader in the mbr you could (possibly) work with [09:24] qwebirc94569: did you use your external hd for both data backup and install usb? [09:24] Yes it just showed a blinking line [09:24] No [09:24] I haven't backed up anything [09:24] blinking line means wrong uefi settings [09:25] So what would I do to fix that [09:25] qwebirc94569: what is your end goal? singleboot ubuntu? dualboot? [09:25] Well for now just singleboot [09:26] Because I won't be able to do the windows thing for a whe [09:26] While* [09:26] qwebirc94569: disable fastboot & secureboot then boot your ubuntu usb F12 [09:27] Secureboot is disabled and there isn't a fastboot option [09:27] F12 just makes a beeping sound [09:28] !uefi | qwebirc94569 [09:28] qwebirc94569: UEFI is a specification that defines a software interface between an operating system and platform firmware. It is meant as a replacement for the BIOS. For information on how to set up and install Ubuntu and its derivatives on UEFI machines please read https://help.ubuntu.com/community/UEFI [09:28] qwebirc94569: if your system is uefi, you have to get a fastboot [09:30] qwebirc94569: do you remember running any efibootmgr commands? [09:30] No [09:31] qwebirc94569: did you install grub on external hd? [09:31] Everything that was Ubuntu was on my computer's hard drive [09:32] I made the external a bootable drive using mkusb [09:32] qwebirc94569: did you try to enter your system with grub? [09:32] Now it doesn't show up at all in boot manager [09:32] How do I do that [09:32] qwebirc94569: hold shift before boot [09:33] Holding shift doesn't do anything [09:33] qwebirc94569: did you run any commands or something in gparted prior to us talking here? it would be felt after the reboot [09:33] mkusb /dev/sdb for instance? [09:33] Yes [09:33] I think I did [09:33] was it /dev/sdb ? [09:33] I don't remember [09:33] cause that'd be your ubuntu OS as your system had them reversed [09:34] I think all of them were /sda [09:34] if you followed some online guide they probably had that there as an example as the usb is usually sdb sdc etc [09:34] they cant all be sda [09:34] Like sda1, sda2, etc [09:34] But one of them was sdb [09:34] I tried running that one [09:34] those are partitions on the same, not separate disks [09:35] aha, well that toasted the ubuntu install === system56 is now known as system16 [09:36] fuck [09:36] seems like I can't start jackd2 (1.9.12) as the jackdbus just freezes on 18.04 [09:36] qwebirc94569: try to get an usb stick somewhere, then rescue data from a live [09:36] I am getting a usb stick delivered here Monday, luckily I ordered that before this [09:38] qwebirc94569: your ubuntu is pretty toast i'd think at this point [09:38] googling mkusb says it basically uses "dd" to put an image on the disk [09:39] you'd be able to recover individual files possibly using photorec, or if your ubuntu partition was more than 4gb in size (i think that's the windows installer size) then the filesystem should still be in tact and you could find and mount it using testdisk [09:40] I'm on ubuntu right now! [09:40] i mean if the ubuntu partition is further in the disk than 4g in size * [09:40] So how would I run testdisk? [09:41] sudo apt-get install testdisk && sudo testdisk [09:41] you just need to do "sudo testdisk" later on [09:41] Oh I can't do that my computer is just a shell now lol [09:44] I'm going to go to bed [09:45] okay, found out it might have something to do with ALSA [09:46] https://github.com/jackaudio/jack2/issues/116 - changing mode from duplex to playback only enables jack to start === system56 is now known as system16 === system56 is now known as system16 [09:55] hello [09:57] hi [09:58] Isn't irc really old [09:59] austiko: stick to ubuntu support questions here please, #ubuntu-offtopic for chat [09:59] K === SimonNL is now known as SimonNL_Afk [11:47] Hi [11:48] welcome Siamaster [11:48] I have a 8 tb hard drive. It's new. It's a NAS hard drive and I think that's why it's showing only 1.4 gb [11:48] sorry 1.4 tb [11:49] how can I format it so I can use all available space? [11:49] there are no partitions on the drive, it's new [11:49] Siamaster: gparted is nice [11:49] Siamaster: see if using a gpt partition table makes a difference [11:49] ok. what should I look for ? What are the terminology for this setup? [11:50] I mean, what should I remove? === SimonNL_Afk is now known as SimonNL [11:51] What time is it where you guys are [11:52] austiko: you already got told this is not a chat [11:52] Jeez sorry [11:52] austiko: use #ubuntu-discuss or #ubuntu-offtopic please [11:54] Error: The location 5.00TB is outside of the device /dev/sdb. when I try to create a gpt partition with partet [11:55] I tried mkpart primary 0.00TB 5.00TB [11:57] Siamaster: try using gdisk [11:57] Siamaster: what does sudo parted -ls show for the size [11:58] Disk /dev/sdb: 1404GB [11:58] i guess you have to let it see the full disk first [11:58] how do I do that? [11:59] no idea, you mentioned some NAS stuff is related? [11:59] maybe remove that and do it barebones after restarting? [11:59] yes, it's a "Nas hard drive" I don't even know why [11:59] remove what? === SimonNL is now known as SimonNL_Afk [12:02] i thought you meant NAS like some networking layer stuff [12:02] Siamaster: does "dmesg | grep /dev/sdb" mention anything? [12:03] no, it says nothing [12:03] It's a new hard disk. I haven't even mounted it once [12:04] But I don't know how to do that either, also it says that it only has 1.4 TB [12:04] hmm try sudo grep /dev/sdb /var/log/kern.log [12:04] says nothing either [12:04] but this is what gdisk says: Partition table scan: MBR: protective BSD: not present APM: not present GPT: present [12:07] seems like others had the same issue https://forums.freenas.org/index.php?threads/8-tb-usb-drive-detected-as-1-4-tb.63217/ [12:09] Siamaster: how are you connecting the hard disk? many people seem to have issues with the connections making different brand hdd's show as less [12:09] Siamaster: in the bios is it set to raid or ahci? that's important it seems [12:10] I'm using a cabinet [12:10] must I do this on bios? [12:11] i dont know what that is [12:11] the raid ahci settings should be in the bios [12:11] I plug my hdd in that and connect it to my pc using a USB-port [12:12] Ok, I'll try. [12:12] oh, try connecting it using the cables the company sent with it or recommends [12:12] it's likely that [12:12] I didn't get any cables [12:13] Siamaster: the controller in the cabinet might be the problem, try connecting it to a sata port in your pc [12:13] and I've tried doing these stuff on my BIOS before. I can't find the raid options [12:13] can you connect it directly without the cabinet for a trial? [12:13] no, but I don't understand why it should be needed [12:14] it's a hard drive I should be able to control it [12:14] read what i just wrote [12:14] hi [12:15] hi [12:15] i have an extra NVMe drive I plugged in [12:15] I did, I just didn't understand [12:15] how do i remove all old partitions? [12:15] what controller? why does it cause problems? [12:16] neure: type "sudo parted -ls | nc termbin.com 9999" and share the link here [12:16] Siamaster: the controller in the cabinet [12:16] the hdd might not be designed to work with it, it needs the sata port [12:17] It's working [12:17] it fits, and it's found [12:17] I don't understand why the cabinet would cause me to see only 1.4 TB [12:18] that does not mean it's working *properly* [12:18] but why? [12:18] EriC^^, https://termbin.com/330n [12:18] why is this not properly? [12:18] are you trolling? [12:18] no. I don't get it honestly [12:19] why would a cabinet not work properly and instead show 1.4 tb [12:19] it's a setting on the hard drive [12:19] neure: sudo gdisk /dev/nvme0n1 [12:19] EriC^^, /dev/sda is my current drive with Windows and Ubuntu dual booting, nvme0n1 is the new (old) drive i would like to reuse [12:19] neure: then press "o" to create a fresh gpt partition table, and "w" to write to disk [12:19] not the cabinet, the controller inside the cabinet. it might not be designed to handle disks that big. [12:20] neure: if you want to delete everything stored on this drive, just write a new partition table. you can use 'parted' (runs in a terminal, text based) or gnome-disk (gnome/gtk3 based graphical user interface) for it [12:20] ducasse it has worked good with 4 TB disks [12:20] already did gdisk thing [12:20] so it should be able to show at least that [12:20] I think it's a setting on the hard drive [12:20] how should I format the drive now? [12:20] since it's a "NAS hard drive" [12:21] neure: depends on what you want to use it for, i guess. [12:21] it's sounds like a really weird limitation too [12:21] neure: create partitions first, an easy tool is sudo cgdisk /dev/nvme0n1 [12:21] if it can't work with disks this big, then it shouldn't work at all [12:21] being a nas hard drive just means it's designed to run 24/7 [12:22] there are no settings to mess with [12:22] look, can you or can you not connect it to a sata port to test? [12:23] no, I can't [12:23] neure: then run sudo partprobe to load the partition table again, and use sudo parted -ls to get the names and do "sudo mkfs. /dev/nvme0n1p1" for instance [12:23] you'll want to use mkfs.ntfs -Q for ntfs [12:23] you don't have a sata cable? [12:24] no [12:24] and I honestly don't believe this is the problem [12:25] that's just your laziness [12:25] it's not. It doesn't make sense [12:25] Siamaster: i do. either the cabinet is the issue or you got ripped off about the disk you bought. [12:26] ok, best of luck then. [12:26] stuff can half work, you know [12:27] we can explain it to you, but we can't understand it for you [12:27] i can pour bad gas in my car, it'll still run though it detonates like crazy, it's not something so nonexistent [12:27] Ok then. You all seem so sure. [12:28] I'll try that, in some way [12:28] using sata [12:28] I'll let you know [12:28] maybe there's a reason we are sure [12:28] that's what I'm thinking [12:28] but I still don't get it [12:28] it's weird [12:28] you can ask the people in ##hardware too [12:29] ah ok, cool ty === system16 is now known as limiter === limiter is now known as system16 [12:30] be sure to provide the disk, cabinet and computer model / product number if you 'll have more questions about it [12:31] Hiyas all [12:38] okay you were right [12:38] and not being able to connect to sata was my laziness :P [12:38] ty for help [12:42] Siamaster: looks like you learnt 2 things in one go today. ;-) [12:47] good morning from Brazil! [12:48] welcome lipe66 , how can we help you today? [12:48] i have a Dell inspiron 7472 and a few minutes ago i tryied to login and and i got only a black screen [12:49] after i googled i got a sugestion that i should remove nvidia drivers and reboot [12:50] this did the trick and i am n my note book again. My question is: should i stick with nuveau drivers or a can use nvidia again? [12:50] lipe66: whats your ubuntu version and your graphics card chipset & driver version? [12:50] lipe66: what happened prior to this? did you install nvidia drivers? [12:52] i am on ubuntu 18.04 i7 8550U [12:53] the graphics card is a hybrid with Intel UHD 620/Nvidia GeForce MX150 [12:54] This machine is a fresh install of 18.04 with all the updates and livepatch enabled [12:54] the nvidia drivers where installed [12:54] lipe66: from where [12:55] from the updates&install package [12:55] lipe66: ok, try and see if you can still enter your system with !nomodeset [12:55] !nomodeset | lipe66 [12:55] lipe66: A common kernel (boot)parameter is nomodeset, which is needed for some graphic cards that otherwise boot into a black screen or show corrupted splash screen. See http://ubuntuforums.org/showthread.php?t=1613132 on how to use this parameter [12:56] ok thanks I will take a look [12:56] lipe66: if you can, come back we will take a look for you [12:56] thanks [13:07] So I just reinstalled the nvidia drivers and rebooted to see if it happened again [13:07] and is working normly. [13:07] maybe something i did broke the login process somehow [13:09] since i can set the profile of the main GPU, I will keep the intel GPU as the main one and activate nvidia when I need it [13:09] lipe66, glxinfo | grep "OpenGL renderer string" what returns ? [13:10] OpenGL renderer string: GeForce MX150/PCIe/SSE2 [13:10] lipe66, ok [13:11] lotuspsychje, ioria, thanks for the support [13:11] lipe66: welcome [13:12] lipe66, i'd say or a gdm3 glitch or you logged in Xayland [13:12] *Waylan [13:12] ioria: we having a lot of loginloops lately [13:13] lotuspsychje, ha, didn't know that [13:13] ioria: but not sure how they relate [13:14] maybe some obscure line in a program generating instability [13:14] lipe66: was this clean install or lts upgrade? [13:15] clean install, I had to many problems in upgrading [13:15] still can't get why the cabinate behaves this way [13:15] in the past and in other oses [13:15] So I need to buy new cabinate for this if I want to use a cabinet [13:15] lipe66: you recall wich driver version your system chosen? [13:15] cabinet* [13:15] 390 [13:16] could it be related to suspession of the sistem? [13:16] lipe66: earlier you mentioned to stick with nouveau, did you try nouveau too? [13:17] lipe66: not sure yet what causes the login loops [13:18] well yes and no. yes because after i puged nvidia the system booted in nuveau [13:18] lipe66: thats normal procedure, but why did you purge nvidia? [13:18] but no because i did not used for a long time [13:19] I read in a forum that was how it solved the problem [13:19] lipe66: so your clean install chosen 390 and you reinstalled the 390 after right? [13:19] thinking bout is kind of a hard reset [13:19] yes [13:19] Siamaster: looks for a firmware update for it. but this is really a ##hardware issue, has nothing to do with ubuntu [13:19] lipe66: ok tnx for the feedback [13:19] you are welcome [13:23] I actually do not believe is the nvidia driver issue I believe is probably a mixed condition of softwares I installed and configurations that i made, that created a condition that made this happenend. removing the video driver is a work around. [13:24] lipe66: the problem we had before is with an older version of 390, now its 390.77 and should be fixxed [13:24] I see [13:24] lipe66: alot of bugs like this: https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers-390/+bug/1773113 [13:24] Launchpad bug 1773113 in nvidia-graphics-drivers-390 (Ubuntu) " nvidia-390 does not show GUI" [Undecided,Confirmed] [13:25] lipe66: hence why i was interested in wich driver version your system chosen [13:25] that is why i will change the prime GPU to intel. [13:26] Optimus? [13:26] lipe66: thats the users choice [13:26] nvidia is allways problematic. that was my biggest doubt before buying this laptop. (I bought it with Ubuntu preinstalled from dell) [13:27] lets continue in #ubuntu-discuss lipe66 [13:34] tomreyn I see, thanks [13:46] is there any way here for me to free up some space on /boot? https://paste.ubuntu.com/p/MmjqzXVpTv/ [13:47] Why do I have 4.4.x-kernel when it's using 4.15.0-38? [13:48] 4.15 is the hwe one [13:48] ericus: type sudo apt-get autoremove --purge it should remove a bunch of kernels and free some space [13:48] hwe? [13:48] !hwe | ericus [13:48] ericus: The Ubuntu LTS enablement stacks provide newer kernel and X support for existing LTS releases, see https://wiki.ubuntu.com/Kernel/LTSEnablementStack [13:48] EriC^ it doesnt :/ [13:49] 0 upgraded, 0 newly installed, 0 to remove and 68 not upgraded [13:51] /boot doesn't seem to be the main issue, with 56 packages pending installation it's more likely that / or /usr have run full [13:51] *68 packages [13:52] boot is the main issue, tells me to clean up 52MB [13:52] okay, it's rather small indeed [13:53] ericus: try sudo apt-get purge linux-image-4.4.0-{38,104}-generic linux-image-4.15.0-36-generic [13:53] yeah [13:53] 105mb is free though, more than enough for any kernel installation [13:54] !info linux-image-generic-hwe-16.04 xenial [13:54] "The upgrade needs a total of 157 M free space on disk '/boot'. Please free at least an additional 52,4 M of disk space on '/boot'. " [13:54] linux-image-generic-hwe-16.04 (source: linux-meta-hwe): Generic Linux kernel image. In component main, is optional. Version 4.15.0.43.64 (xenial), package size 2 kB, installed size 11 kB (Only available for i386; amd64; armhf; arm64; ppc64el; s390x) [13:54] ericus: ok [13:55] https://paste.ubuntu.com/p/5s4Bdmky92/ [13:55] there are updates poending for both the 4.4 and 4.15 kernel images, that's why so much space is needed. [13:56] ericus: try "dpkg -l | grep linux-image" [13:56] do I need the 4.4? [13:56] no [13:57] https://paste.ubuntu.com/p/spvFFRYxJb/ [13:58] hmm the package seems to be missing yet the files are still there [13:58] ericus: which ubuntu is this? 18.04? [13:58] it was uninstalled, not purged [13:58] tomreyn: but the initrd and stuff is still there [13:58] even without purging it should remove those stuff [13:59] i think he had xenial before and updated to bionic, cause his linux-image-generic meta is 4.15 so no hwe being used [13:59] it's 18.04 [13:59] ericus: ok, manually remove the old kernel stuff [13:59] the 4.4? [14:00] yeah, all the stuff with 4.4 in them in /boot do sudo rm [14:00] EriC^: you requested info on installed kernels, not liunux-modules\* - but i agree that autoremove --purge should have removed it [14:00] also remove the 4.15-36 stuff since the package isnt installed either [14:01] tomreyn: initrd is part of linux-modules now? [14:01] EriC^: oops, i may be mistaken there [14:02] it's a good idea to get the linux-modules though [14:02] ericus: could you also run "dpkg -l | grep linux-modules" and paste the results please? [14:03] my guess is that some packages are marked as manually installed when they should be marked as automatically installed. [14:04] https://paste.ubuntu.com/p/CdzFRFgFmv/ [14:04] "The upgrade needs a total of 157 M free space on disk '/boot'. Please free at least an additional 14,8 M of disk space on '/boot'." [14:04] a little closer [14:05] ericus: ok, run sudo apt-get purge linux-modules-4.15.0-36-generic [14:05] i feel like it's not going to reach that space [14:06] maybe if it didnt download the 4.4? [14:06] boot is 250mb and the rest are 80 and 70 so that's 150 you're left with 100 free [14:07] what is it trying to download right now? [14:07] oh wait my bad the kernel is only 8mb not 80 [14:07] https://paste.ubuntu.com/p/RjGgRn46Jt/ [14:08] that [14:08] it looks right [14:08] ericus: what does "ls -lh /boot" give after rm'ing the 4.4 packages and linux-modules package given above [14:09] *4.4 files [14:09] I think it's working now, from the terminal. Tried the software updater earlier [14:09] yay [14:10] https://paste.ubuntu.com/p/7ydN4QXSB6/ [14:10] guess it worked? [14:10] yeah it looks good [14:10] thank you so much for the help EriC^! [14:11] ericus: you may want to resize /boot sooner or later to get rid of this issue which may otherwise re-occur [14:12] not sure if I'm able to, LVM with luks encryption [14:12] full disk [14:12] ericus: np, you're welcome [14:15] ericus: then maybe you'd beter want to move /boot intot he LVM [14:17] ericus: it's easy to move it into the encryption, you just need to add a grub variable in /etc/default/grub and update-grub afterwards [14:17] Any chance for amdgpu drivers to get supported for coming version of ubuntu? [14:17] GRUB_ENABLE_CRYPTODISK=y [14:18] and obviously remove /boot from fstab after copying the stuff to the rootfs's /boot [14:19] tomreyn: have you tried this with uefi? i kinda only tried this with legacy install once for kicks [14:19] coconut: what do you mean "get support" ? [14:20] ikonia: like to get support here the same way we have now with nvidia [14:20] EriC^: i did it just yesterday. key is to not use the (secureboot) *signed* grub package [14:20] coconut: what do you mean by get support ? [14:20] coconut: what support is missing ? === system16 is now known as LuvTheNeatSpamBo [14:20] tomreyn: aha interesting, ericus ^ [14:20] thanks! === LuvTheNeatSpamBo is now known as system16 [14:20] tomreyn: that sounds like something that would be hugely important to document somewhere [14:20] ikonia: there are bug reports :) [14:21] tomreyn: close enough I guess [14:21] https://bugs.launchpad.net/ubuntu/+source/grub2/+bug/1565950 [14:21] Launchpad bug 1565950 in grub2 (Ubuntu) "Grub 2 fails to boot a kernel on a luks encrypted volume with Secure Boot enabled" [Medium,Confirmed] [14:21] ikonia: by support i mean installing the driver and get it to run well [14:22] coconut: that doesn't make sense [14:22] coconut, for what AMD card? [14:23] ikonia: why? we all need our graphics to work well, right? [14:24] coconut: we do [14:24] I'll have a look at it EriC^ tomreyn :) [14:24] coconut: but you're saying it's not supported and doesn't work well, which it does for cards that it's designed for [14:24] coconut: and you understand ubuntu doesn't actually "make" the amdgpu modules ? [14:24] OerHeks: radeon pro WX 4150 or 7100 [14:25] that's probably not an amdgpu supported chipset [14:25] don't see it in the list [14:26] oh actually it's a new one [14:26] maybe why it's not on the list yet [14:27] (although I thought it was old looking at the name) [14:27] ikonia: nope, i am just trying to figure out whether it is right to buy amd graphics already. And seeing i do not see support request for amd cards to come by here on irc, i choose to ask about it. [14:27] well it's from 2017, but i assuemd it would be older just by its name [14:27] coconut: amdgpu is supported [14:27] :) [14:27] Polaris 11 [14:27] tomreyn: I also made that assumption, which I couldn't see on the list too [14:29] tomreyn:probably new yes ( https://www.dell.com/nl-nl/work/shop/cty/pdp/spd/precision-17-7730-laptop/xctop7730emea ) [14:30] oops, that was the dutch one [14:30] ( https://www.dell.com/en-us/work/shop/cty/precision-17-7730-laptop/spd/precision-17-7730-laptop?redirect=1 ) === EriC^ is now known as EriC^^ [14:37] coconut: so, generally amd graphics do, of course, work fine. not all chipsets may be supported by the amdgpu driver which is in ubuntu 18.04 with its 4.15 kernel out of the box. [14:37] ikonia: yes i know it's amd creating the amdgpu and amdgpupro drivers, with some non-categorized work after that [14:38] hi [14:38] coconut: what ? [14:39] coconut: whether this specific (budget) chipset works well out of the box is hard to tell, it does not seem to be sold a lot and there are not a lot of reports that i can find. [14:39] 18.04: [laptop|display|display], nv prime on nvidia profile, all was fine until yesterday, now laptop screen is gone (black with a console cursor at the top left, nothing else) [14:40] xrandr only lists the 2 external displays, so does display settings and nvidia-settings. Logo shows on laptop during boot, so in general the laptop screen works. [14:43] deadrom: see if you can still anter your system with !nomodeset please [14:43] !nomodeset | deadrom [14:43] deadrom: A common kernel (boot)parameter is nomodeset, which is needed for some graphic cards that otherwise boot into a black screen or show corrupted splash screen. See http://ubuntuforums.org/showthread.php?t=1613132 on how to use this parameter [14:43] *enter [14:43] * deadrom reads [14:44] tomreyn:thx for researching! [14:45] on a sidenote, how do I disable the splash screen? I like to see the kernel messages fly by [14:46] deadrom: edit your grub with "quiet splash" to "" [14:46] deadrom: or press F1 at boot splash [14:46] coconut: you're welcome. if you buy this hardware, be sure to buy it so that you'll be able to return it in case you need it working out of the boix (and are not into building your own kernels, X, mesa stack, and not into experimenting with other peoples' builds) [14:47] coconut: it may work from day one, i just can't tell for sure [14:47] lotuspsychje: thanks.. reboot [14:49] great tomreyn :D [14:50] Does anyone have any experience with fixing a GRUB configuration file so you can dual boot with Windows and Ubuntu, where the Ubuntu disk is encrypted, and you don't have to enter the password for the Ubuntu disk if you just want to boot into Windows? [14:50] I've got a configuration file with `cryptomount` early in it, and I'm wondering if I can replace that with something that prompts for the password only after the Ubuntu menu item is selected. [14:52] lotuspsychje, well, it's *different* now: both my external displays are gone now... [14:53] xrandr does not list them anymore at all [14:54] how prone are laptops to dead bios batteries? T530 Thinkpad, I think some 6 years old [14:55] deadrom: ca you enter your system now? [14:56] lotuspsychje, I am in the booted system but only have the laptop screen [14:57] IRC on x2go so I can stick around of sorts and reboot [14:57] deadrom: lets have a look wich drivers available on your system: ubuntu-drivers list [14:58] lotuspsychje, nvidia-driver-390 and nvidia-340 [14:58] deadrom: allrighty, install the 390 please [14:58] 390 is installed and has been workign ok for about 2 weeks since fresh install of 18.04 [14:59] deadrom: yes, lets try if a reinstall fixes [15:00] ok... hang on [15:00] deadrom: also make sure nomodeset is disabled after the install & reboot [15:01] how do I force reinstall with apt? [15:02] i'll use apt-get [15:02] deadrom: wich driver is currently in use? sudo lshw -C video ? at bottom driver= [15:02] sudo apt install --reinstall package [15:02] ah [15:04] lotuspsychje, http://paste.ubuntu.com/p/fpsK2ZbjZN/ [15:04] if I reasd this right, NV is in charge [15:04] *read [15:05] deadrom: correct, try what BluesKaj adviced [15:05] that went through in about 5 seconds. I would have expected dkms to build a new module and all of that [15:06] "nvidia... is being configured" and that's it. that sound right to you? [15:06] deadrom: lets try & reboot :p [15:06] yeh [15:14] lotuspsychje, nah, same. I'll shutdown and hose the dockigng stationdown with contact cleaner. I suspect it might be upset. [15:16] deadrom: system up to date also? [15:16] So I am on Ubuntu and using virtualbox, and this is what I am seeing https://imgur.com/KuBLSL0 [15:16] after the disk boots up in the virtual machine [15:16] anyone have any ideas? [15:21] lotuspsychje, yes. virtualbox repos shenanigans wih i386 arch but apt seems to simply ignore it. COULD be tho a broken package there prevents proper dkms execution. ill check that. [15:22] deadrom: another idea could be installing a more later driver from the ubuntu graphics ppa(as a test) [15:23] lotuspsychje, 5400m / gf 108, fairly old. ill see what driver supports it [15:25] deadrom: if your system suggests 390.77 you could try the 390.87 from the ppa [15:36] za1b1tsu: did you try other iso's on virtualbox? [15:38] lotuspsychje, all the isos behave the same [15:39] check the VM settings, GPU memory and such [16:03] a customer is reporting to me that he cant access my website from one of his servers. is there a way for me to tell from my server if his IP is able to access it? [16:03] like some kind of reverse ping or something [16:04] you'll see it in the access log if he can access it [16:07] yea im just wondering if i can run something on my server that tests his connectivity to mine [16:08] fail2ban installed? [16:09] c3r34l_milk: no [16:09] oops [16:09] coderman1: no, [16:09] coderman1: you can't debug his ISP [16:09] coderman1: it could be any reason at his end [16:09] coderman1: if your site is on "the internet" there is nothing more you can do [16:11] coderman: umm, is the customer's remote IP address pingable? [16:12] coderman: or at least something on his/her public network segment? Maybe not the firewall but perhaps his/her router? [16:12] that means nothing [16:12] pinging something across the internet offers little value [16:12] icmp echo is very different than http on a specific port outgoing [16:12] coderman1: you need to focus on the error he gets [16:12] rather than connectivity [16:15] What the heck is the "Software" application in *ubuntu?! [16:16] a front end to the software repos [16:18] ikonia: it proposes plenty of proprietary stuff .... that I cannot see using the apt CLI .... [16:18] ikonia: why? [16:18] it shows you the same as the apt interface [16:18] install synaptic, much more detailed softwarecenter [16:19] ikonia: no. It is showing me stuff like "Polarr Photo Editor", which is proprietary, and which I cannot see in apt. [16:19] OerHeks: I use command line. [16:20] eeos: it's there [16:20] ikonia: what do you mean? I cannot see it using apt .... [16:20] coderman1: you could do a traceroute to the customer, but this doesn't really proove much, since (a) their (inbound) route may differ and (b) issues may only occur in one direction and (c) it could just as well be any other non routing related issue, such as their caching resolver, or a an issue with your website. [16:20] polar.. it is a snap [16:21] e [16:21] ikonia: and I do not want to see it at all! I want to exclude proprietary stuff .... [16:21] softwarecenter shows snaps too, these days https://snapcraft.io/polarr [16:21] OerHeks: oh, I see! [16:21] coderman1: so indeed, first of all you want to get a better description of the issue than "doesn't work" [16:22] OerHeks: you are right! That is why it does not show in apt .... it shows in snap. [16:22] OerHeks: how do I remove it? this Software center? [16:22] eeos, remove the gnome-software-plugin-snap plugin, and restart softwarecenter.. but carefull, you might have snaps installed already, like calculator [16:23] https://askubuntu.com/questions/982112/how-can-i-disable-snaps-in-gnome-software-centre/984250#984250 [16:23] OerHeks: I do not want to disable snap, I am using snap form the command line. I need to disable the graphical user interface that pulls everything together and annoys me. [16:24] OerHeks: Sorry, not disable, but uninstall. [16:24] how about 'just don't open the app" [16:25] and if you are used to using apt on the command line, if it bothers you that much, use apt to remove it [16:25] but really - just don't open the app [16:27] ikonia: not really .... I have a zero tolerance policy on pacage tat are not used and can install stuff on the system by mistake. it is a huge security issue. [16:27] !info ubuntu-software [16:27] ubuntu-software (source: gnome-software): Utility for browsing, installing, and removing software. In component main, is optional. Version 3.28.1-0ubuntu4.18.04.8 (bionic), package size 24 kB, installed size 351 kB [16:27] oh, wrong one [16:27] gnome-software ? [16:28] OerHeks: : thank you! [16:29] OerHeks: it just proposed two bios updates that I cannot track in history but look rather official from the manufacturer website. [16:30] I know how to find and configure the cli scripting method, is there a GUI method for setting a system to automatically switch the primary sound output to a USB audio device when it's inserted? [16:31] why so many cryptic mount points shown by mount command? what do they mean, it confuses the hell out of me [16:31] ls /etc/modprobe.d/ [16:31] ooops :D [16:32] eeos, maybe fwupdate manager? https://itsfoss.com/update-firmware-ubuntu/ [16:33] tmroland: most of them will be Control Groups managed by systemd I suspect [16:33] OerHeks: oh thanks a lot!!!! I have just rmeoved the gnome-software and all the accolites .... [16:34] hell of a headache while trying to learn linux [16:34] its a big letdown to see that amount of unnecessary complexity [16:34] OerHeks: thanks for everything! I did a thorough cleaning .... :-) [16:34] any distro that doesnt use that? [16:34] and only has 2 3 mountpoints? [16:34] tmroland: the loop mounts are snaps, you can just ignore / filter them [16:35] tmroland: cgroups are integral to providing isolation for security [16:35] and those tmpfs provide useful features which also some software relies on [16:59] Installed 18.04 on old Macbook Pro 2,1. All fine except screen blanking. [17:00] Any command including xset does blank the screen, backlight turns off, but backlight never turns back on. Reboot required. [17:01] get different hardware. [17:03] 32 bit uefi Macbook Pro 2,1 ? [17:03] lagagnon: did you try acpi stuff? [17:03] No 64, install was fine, all other systems work [17:04] EriC^^: what "acpi stuff"? [17:04] I have installed krita from flatpak and I cannot run it .... is this normal? It does not start and does not give me any signal .... [17:04] acpi_osi parameters in the grub line lagagnon [17:04] why flatpack as snaps are standard [17:04] EriC^^: ok, will check that out. Thanks. [17:05] lagagnon: http://iam.tj/prototype/enhancements/Windows-acpi_osi.html [17:05] i dont know whether this works with macs, though [17:08] OerHeks: yes .... that is why i find it strange .... [17:08] ...strange that "systemctl suspend" works just fine with backlight turning off/on but any DPMS blank kills the backlight... [17:08] OerHeks: flatpak run org.kde.krita [17:08] OerHeks: gives me error: runtime/org.kde.Platform/x86_64/5.11 not installed [17:09] i have no clue about flatpack === capella|away is now known as capella [17:12] oh i probably never will, it is flatpak [17:12] !info gnome-software-plugin-flatpak [17:12] gnome-software-plugin-flatpak (source: gnome-software): Flatpak support for GNOME Software. In component universe, is optional. Version 3.28.1-0ubuntu4.18.04.8 (bionic), package size 55 kB, installed size 189 kB [17:14] afaik , that plugin is quite broken ; it doesn't install required extensions [17:17] Hi all, I'm running Ubuntu 18.04 and I need an older version of a package that doesn't seem to be available now but was available on xenial (https://packages.ubuntu.com/xenial/libsdl2-dev). How can I add this repo to my linux? [17:20] If i look at the dependencies, i think it is a bad idea https://packages.ubuntu.com/bionic-updates/libsdl2-dev , compile it from source? [17:22] I'll check if that's an option. What would be the issue with the dependencies? [17:22] If it's only another few repo to add to satisfy the dependencies I don't mind. [17:23] why do you need an older version? [17:26] Because I'm trying to use MAME but since a couple day ago it's constantly crashing with random error messages and I can't figure out why. The installation guide advise to use SDL 2.0.4 or 2.0.3 and I have 2.0.8 This is probably not the root cause but I want to rule out every possibility [17:40] Pronoe: what error messages [17:40] don't use MAME [17:40] is it possible to learn linux and unix enough in 1-2 years by daily learning and experiment on my own computer and maybe do a few qulifications and courses and have good chances at finding a linux job? [17:40] even if you get it working, is it gonna matter? [17:41] i mean learning wise, is that time frame sufficient [17:41] if i wanna succeed in being paid for a job [17:41] tmroland, of course that's possible. [17:41] EriC^^: I got a bunch of different ones, give me a sec. [17:41] tmroland: I've been using linux for about 20 years. Still havn't seen any linux jobs :-D [17:42] sigurdux, wtf?! [17:42] tmroland, if you want to learn linux, don't use ubuntu [17:42] ... [17:42] theres plenty IT jobs all over and since im ht eUK finding one wil be easy, but what i wonder is if i already have the basic foundations of unix/linux and just focus on learning more advanced skills 1-2 years will be enough to get a good enough experience to succeeed profesionally [17:43] kumul: ... [17:43] jobs and work have nothing to do with ubuntu support [17:43] for example i used to set up networks and linux servers [17:43] Some things are just a hobby. Wouldn't leave my job at the mill and firedepartment for any money. [17:43] I have been using Linux for about 11 years now and in several companies this has been my job [17:43] join #ubuntu-discuss or -offtopic for that, thanks [17:44] hggdh, My point is, if you want to learn linux, go use slackware or something that doesn't hold your hand. [17:44] arch [17:44] or debian [17:44] or rhel/centos [17:44] kumul, tmroland stop trolling, not welcome here [17:44] ok, this is good enough. Please move to another channel. #ubuntu is for Ubuntu support *only* [17:45] EriC^^: "mame64: malloc.c:4023: _int_malloc: Assertion '(unsigned long) (size) >= (unsigned long) (nb)' failed.", "Corrupted double-linked list (not small); Aborted (core dumped)", "free(): invalid pointer; Aborted (core dumped)" [17:45] And a bunch of other ones like those. [17:45] It's pretty random ... [17:45] Pronoe, maybe build mame from source ? i would not downgrade sdl2 [17:46] And I'm not changing anything to the way I'm starting the program. [17:46] OerHeks: This is what I've done already. [17:46] i just moved from xenial to bionic, i'm having resume from sleep issues randomly. i installed tlp tlp-rdw from the official bionic repo not the linrunner ppa. Does anyone know if there is known issues with the bionic repo version? [17:46] I'm trying to find a way to clean what has been compiled already and start over. But I'm afraid some nasty lib will stay somewhere and keep messing things up. [17:46] Pronoe, the way I think mame works is, that if the current version of MAME fails on whatever you're trying to do, its because you don't have the latest version of the ROM [17:48] kumul, the compiled from source is version 0.205 and the one installable from apt-get is 0.202 which use to work perfectly fine. Now none of them work. [17:54] Pronoe, did you ask in #MAME ? [17:58] kumul: Yes I believe I speak with one of the dev/contributor who also suggested I build from source. So now I'm trying to do that properly and not leave any crap behind. [17:59] hi there, I'm trying to troubleshoot some hibernation issues. pm-hibernate shuts down the computer but it doesn`t hibernate. systemctl hibernate the same thing. I'm using Mate 18.04 on an HP Pavilion dm4 notebook [17:59] . things I tried: https://ubuntu-mate.community/t/hibernate-resume-from-hibernation-ubuntu-mate-18-04/16924 [18:02] Luix: you have a swap partition larger than your RAM? [18:03] no, snowgoggles. it's 2GB on a 4GB ram pc [18:03] Luix: there ya go [18:04] Luix: hibernate saves full RAM size to swap partition [18:05] Luix: that link you posted barely mentions the swap partition [18:05] that was I initially thought but I don't know where I read that that wasn't the case anymore. Most probably wrong, I suppose. [18:05] "the case" = swap equalling RAM. [18:06] Luix: the new case is ubu 18 doesn't create a swap partition from my understanding [18:07] snowgoggles, will resizing the swap now work? [18:07] Luix: i would increase the size of the swap partition to be larger than 4GB for hibernate to be successful. [18:08] Luix: depends on your drive partition layout. you'll have to resize partitions if only one phys drive installed [18:10] snowgoggles, I'll have to check. Luckily I usually leave some unallocated space between partitions. === SimonNL_Afk is now known as SimonNL [18:11] Luix: if you only have ext4 parts gparted is pretty good at resizing as long as your parts have free disk space [18:13] snowgoggles, wait, I got confused with other laptop I was working with. I checked with Gparted and linux-swap is 4.19 GB [18:15] snowgoggles, following the instructions on the link above, I ran a grub update after editing /etc/default/grub [18:17] Luix: yeah you updated grub. is that a concern? [18:19] snowgoggles, no, just adding more info. On both hibernate commands, computer shuts down but when logging back in it is a fresh startup [18:20] Luix: he has notes at bottom saying the instructions did not work on his laptops only desktops [18:20] snowgoggles, I see. Any other ideas on how to solve this issue? [18:21] Luix: you update grub to point to the swap partition to boot the resume state. [18:23] Luix: honestly hibernate is a hit or miss. i would keep googling for a solution, most ppl just live with suspend to ram unfortunately, thus hibernation support is not great [18:25] snowgoggles, sadly, for some reason suspend doesn't work for this laptop (even booting on the win7 partition). It suspends but power button doesn't wake it up. [18:26] Luix: doesn't sleep in win? the laptop was designed for win? that's odd. i would check bios setting for power management [18:28] snowgoggles, yes it originally came with win7 installed. tried updating bios firmware but no luck. [18:28] Luix: tried flashing bios with no luck is a troubling statement [18:29] snowgoggles, sorry. I meant that it didn't solve the sleep one issue. [18:30] Luix: if win power management doesn't work, your digging yourself into a deeper hole to get out of trying to get it wporking in linux. just my perspective. [18:30] *working [18:32] snowgoggles, yeah, you confirmed my fears [18:36] anyway to get a hostname to resolve elsewhere instead of the DNS lookup result ? i put it in my /etc/hosts file but it only resolves for ping correctly not host lookup [18:37] is there a way to view the files in ~/.cache/chromium/Profile1/Cache/ ? (as rendered html, not the blob of bytes cat/less/etc show me) [18:37] Keo-w: it isn't just ping ;) (but I kinda know what you mean) [18:38] =\ [18:38] Keo-w: /etc/hosts is the right place to set it. what you want is a tool like host that will respect /etc/hosts [18:39] I bump into this too. and haven't figured out what to do about it. haven't tired too hard either, so maybe it exists. [18:40] Luix: i would say it's still possible. You'll have root cause the issue. I would test power management with the original win install, but every OEM has a specific method when it comes to it's hardware [18:43] damn 3rd party app doesn't awnt to listen to me:) [18:46] CarlFK: As far as I know, there isn't any means to render that. A lot of what is in there is probably images/pictures [18:51] Keo-w: Do you restart the application when you make changes to /etc/hosts? [18:52] pragmaticenigma: the app is host. it does the lookup and exits. [18:54] CarlFK, Keo-w : It might be that the local cache is still live with the original entry. Though you make changes in /etc/hosts, ubuntu uses dns caching to speed up domain resolves on the local machine. If you wait a few minutes, it may start to resolve as desired [18:56] how do I make an fstab entry mountable by user? [18:56] it's an nfs tab [18:57] ultimately I'm trying to have kde automount the nfs directories [18:57] but it's complaining that it needs root [18:57] thanks snowgoggles [18:57] pragmaticenigma: "host is a simple utility for performing DNS lookups." [18:59] pragmaticenigma: dns-masq can be told to read /etc/hosts, but what ubuntu installs does not. [18:59] is there a way to tell chrome not to refresh pages it loads from history? [19:00] CarlFK: There is not, the remote server controls that [19:01] CarlFK: Sorry that was over simplified. Any webbrowser requests a HEAD from the remote server. If the server replies with a time stamp matching the original visit to the site, the local cache is used. Else, new content is fetched from the server [19:02] firefox has a "offline mode" that doesn't do any network traffic. I was hoping for soething like that [19:02] I can just kill my network connection, but then I lose all my other stuff. (not too tragic, just annoying) [19:03] CarlFK: Try this: https://www.maketecheasier.com/offline-mode-google-chrome/ [19:04] Keo-w, CarlFK : far as network testing, specifically host lookups... Why not use the "dig" program instead. With nothing more than the domain provided, it will tell you where it pulled the information from. [19:04] that would help determine more informationm [19:05] dig doesn't use /etc/hosts either [19:05] that chrome thing looks perfect [19:07] CarlFK: I just tested the theory with Dig, it pulled my /etc/hosts just fine [19:07] not directly, but it found it [19:21] Is there a way to remove the Show All applications icon in the dock ? [19:25] theblindghoulie, gsettings set org.gnome.shell.extensions.dash-to-dock show-apps-at-top true [19:26] Ok! Thanks! I saw that shell-ext earlier, but it said it was unstable so I was unsure [19:26] theblindghoulie, yeah, probably resetted at reboot [19:27] theblindghoulie, log out /in and test [19:27] OK thanks! I installed the classic-indicator for my Apps menu. I dont care for the modern app menu. Which is why I wanted to remove the icon from the dock [19:28] ok [19:33] hello, can anyone tell me which way to properly setup a cron job? I'm trying to have a cron job shutdown my computer @ midnight every night, but I'm having no luck doing it via crontab -e, nor by editing the /etc/crontab file directly. [19:33] I'm using 0 0 * * * root shutdown -h now >/dev/null 2>&1 in crontab right now [19:34] I'm close to making incoherent monkey noises out of frustration :( [19:34] fleabeard: shutdown needs /path/to/shutdown [19:35] which shutdown says /sbin/shutdown [19:35] fleabeard: cron doesn't do bashrc/profile things, so there is no PATH setup. [19:35] CarlFK, ahhhh, so 0 0 *** root /sbin/shutdown -h now >/dev/null 2>&1 should do the trick? [19:36] fleabeard: assuming the rest is ok [19:36] CarlFK, should I be editing the file directly, or using crontab -e? [19:37] fleabeard: um.. not sure - I always use -e. never gave it much thought. [19:37] CarlFK, thank you very much! I'll give this a shot now. [19:49] fleabeard: I would also recommend crontab -e ... it handles triggering cron to re-read the settings files so updates are incorperated properly [19:53] pragmaticenigma, thanks, I've tried both ways just now and it doesn't seem to be working :/ [19:53] I'm so confused lol [19:54] doing a sudo cat /var/log/syslog | grep cron shows no errors [19:55] fleabeard: are you running crontab -e under your account or as "sudo" [19:55] fleabeard, are you usnging 'sudo crontab -e' ? not just crontab -b [19:57] that may be it, I'm not running it as sudo, probably the issue. Let me give that a try. [19:57] fleabeard, 'sudo crontab -e' [20:03] welp, I put it under sudo crontab -e, but it doesn't seem to work still. I'm using 02 15 * * * root /sbin/shutdown -h now [20:03] and the time has passed for me and it's still on :( [20:03] what blows my mind is how there are so many different ways of doing this from what I can find on google & youtube, yet none of them at all work, lol [20:06] fleabeard: remove the root from there, in sudo crontab no need for any username unlike /etc/crontab.d/* stuff [20:06] EriC^^, k, I put this in now 07 15 * * * /sbin/shutdown -h now [20:07] we'll see in a min if it works :) [20:07] * fleabeard crosses fingers [20:07] it's already 07 here.. [20:07] same, let me try a couple minutes ahead [20:09] no dice, it just refuses to work for me lol [20:10] fleabeard: grep CRON /var/log/syslog did it run? [20:11] EriC^^, I don't see any errors [20:11] it's there though? [20:11] just a bunch of reload/begin edit/replace/end edit/list stuff [20:11] yeah [20:11] is there one at the min you put it to run? [20:11] root CMD( /sbin....) [20:12] nope [20:12] then it's not running the command [20:12] fleabeard: try "sudo crontab -l" is it there? [20:12] yep [20:14] try systemctl status cron [20:15] EriC^^, here's the output I got from that https://pastebin.ubuntu.com/p/xjsTQchDfz/ [20:18] odd, seems to be running [20:19] well, it's not the output i got from systemctl status cron [20:19] did you type grep CRON with capital letters? [20:19] If I have a process with multiple threads ... does the OS (in this case Ubuntu) decide which cores to use for the threads or does the software dictate that? [20:21] Unit CRON.service could not be found. [20:21] with capitals [20:23] IhrFussel: The OS primarily the kernel) would be in charge of distributing the workload amoung the available cores of the CPU [20:26] fleabeard, can you please paste again sudo systemctl status cron [20:27] ioria, here yah go https://pastebin.ubuntu.com/p/xsCCKXn5mv/ [20:28] fleabeard: The unit file will be lower case, the status will return upper case. [20:29] ah that's cool to know [20:29] fleabeard, seems stuck in reload [20:30] fleabeard: why not use a systemd timer to do it? [20:30] fleabeard: as in http://iam.tj/projects/ubuntu/systemd/ [20:30] fleabeard, i think you edited /etc/crontab directly ? [20:30] TJ-, I'm not very linux savvy and was hoping the built-in crontab would do the trick without too much fuss :/ [20:30] ioria, I did at one point, then found out about crontab -e [20:31] have been using crontab -e ever since [20:31] fleabeard: systemd has it's own scheduler: https://coreos.com/os/docs/latest/scheduling-tasks-with-systemd-timers.html [20:31] fleabeard, comment the additional command in there [20:32] ioria, here's the contents of my /etc/crontab https://pastebin.ubuntu.com/p/6t2mWsQ6dj/ [20:32] ioria, since I'm using crontab -e, should I just remove that bit that I added awhile back? [20:32] fleabeard, comment (remove) 47 14 * * * root sbin/shutdown -h now >/dev/null 2>&1 [20:33] will od [20:33] okay, I removed it entirely [20:34] fleabeard, sudo crontab -e and add 13 15 * * * /sbin/shutdown -h "now" (change min and hour) [20:35] why the do i need a ppa to install some software? [20:35] you don't ...unless [20:35] and how do i know which software is in what PPA? [20:35] ioria, done [20:36] like for e.g. i was trying to install mpv and ffmpeg. apt search returns nothing [20:36] hejux, I believe ppa's are used for more 'up to date' software that isn't available in the default package manager in ubuntu [20:36] then i have to google like how to install mpv on ubuntu ... [20:36] fleabeard, let's wait [20:36] just don't get it. [20:36] Hi, I am trying to install pulseaudio package from scratch with apt but unfortunately default configuration files are not added to `/etc/pulse/` (like `default.pa`). [20:37] fleabeard, what version of ubuntu ? [20:37] ioria, I did this for the time 36 15 and it's now 37 15 and it didn't trigger [20:37] ioria, latest 18.04 LTS [20:37] the problem is, how do i know what PPA has which software? [20:37] Is that normal behavior? [20:37] fleabeard: that's a little too generalized for the definition of a ppa [20:37] pragmaticenigma, yeah, I'm basic :P [20:37] fleabeard, i can confirm that the cmd above works (testedon 18.04) [20:38] hejux: To simplify, this channel doesn't support the usage of PPAs. If you were to seek help here, amoung the first things you will be asked is to remove any PPAs to ensure we're working with a known system state [20:38] ioria, are you EST? [20:38] hejux: In the most specific of circumstances should you enable a PPA, and only with the understanding that doing so may cause you machine to have unexpected behavior [20:38] pragmaticenigma: ok, but how can i install my favorite "mpv" player? [20:38] jule: was pulseaudio previously installed and removed? [20:39] fleabeard, set like that, yes ... i think you have a problem with the cron service [20:39] hejux: Usually you'll find a PPA associated with the specific project it's for. PPAs are not managed at all by Ubuntu. They may have newer packages, or packages compiled with different options. [20:39] !info mpv | hejux [20:39] TJ: yes... [20:39] hejux: mpv (source: mpv): video player based on MPlayer/mplayer2. In component universe, is optional. Version 0.27.2-1ubuntu1 (bionic), package size 952 kB, installed size 2328 kB [20:39] ioria, let me restart the box and see if that clears things up, I'll put a new time in and see if it corrects itself [20:39] TJ-: yes... [20:39] hejux: You ask here, giving out the name of the application and ask for help in getting it installed. If its only option is through a PPA, then you will need to seek out the developer community for that software or choose one that is close enough in features for what you are looking for [20:40] hejux: Some have packages with incompatible licenses that can't be distributed by Ubuntu. [20:40] fleabeard, sounds good [20:40] hejux: You also don't know how well they've been tested or packaged, or whether you can trust them not to have malware. [20:40] jule: if you previously changed/removed the /etc/pulse/* files that is remembered (unless you use "apt purge") and those files are not replaced [20:40] hejux: You pretty much have to go by how well known the packager is and what kind of reputation they have. [20:41] TJ-: Hum! Ok I try this [20:41] hejux: It would appear that you do not need to enable any PPAs to obtain mpv, you only have to go into the software settings and enable the Universe repository [20:41] so default ubuntu is pretty secure (aka conservative ) [20:42] hejux: secure is something you have to determine and define on your own. [20:42] pragmaticenigma: thanks, Universe Repository [20:42] ioria, restarted and put this in 'sudo crontab -e' 44 15 * * * /sbin/shutdown -h "now" [20:42] i'll take a try, [20:42] hopefully in 2 mins we'll get it working :) [20:42] fleabeard, ok [20:43] that version ubottu give seems a little bit old [20:43] hejux: http://ubuntuhandbook.org/index.php/2016/07/install-mpv-media-player-ubuntu-16-04/ [20:43] TJ-: Well done! purge do the trick! [20:44] ioria, it worked \o/ [20:44] fleabeard, good job mate [20:44] hejux: There is apparently a test ppa that has newer versions, hosted by ubuntu but not fully supported. [20:44] ioria, I was going to hit "submit" on this application to MIT for a semester to learn how to use crontab correctly! Thank you so much for your help with this! You saved me hundreds of thousands of dollars! [20:45] fleabeard, no problem [20:45] jhutchins: we just got done showing them that it is availble in the default Ubuntu repository [20:45] jhutchins: love that, guess i do need a ppa to get latest mpv and ffmpeg. [20:45] ioria, I should have known to "turn it off and on again" lol [20:45] hejux: NO! [20:45] fleabeard, yeah [20:46] hejux: Do not follow that, as was already pointed out. You do not need to install a PPA, it's already available within Ubuntu's official channels [20:46] hejux: This one's specific to 18:04 but is the same procedure: http://tipsonubuntu.com/2018/07/27/install-mpv-0-29-ubuntu-18-04-lts/ [20:46] jhutchins: PLEASE STOP DOING THAT [20:47] pragmaticenigma: The one in the official repos is a bit out-of-date. [20:47] !latest | jhutchins [20:47] jhutchins: Packages in Ubuntu may not be the latest. Ubuntu aims for stability, so "latest" may not be a good idea. Post-release updates are only considered if they are fixes for security vulnerabilities, high impact bug fixes, or unintrusive bug fixes with substantial benefit. See also !backports, !sru, and !ppa. [20:47] pragmaticenigma: You will notice that this ppa is hosted on ubuntu's servers. [20:47] jhutchins: the location of the host does not make the PPA more or less official. It just found a home that accepted it [20:48] :) [20:48] it is like snaps, trust the owner [20:48] i'll stay with offical. by the way, are you able to hw decode HEVC 10bit video using intel or AMD gpu? [20:48] ioria, 00 00 should be good for midnight, right? lol don't want to put the wrong time in there. [20:48] OerHeks: Exactly, and a little bit of paranoia is not a bad thing. [20:48] fleabeard, it's ok [20:49] The recommendation I would have for hejux is to use the version found in Universe. See if that fullfills their needs. Then, if and only if they deem it inadequate, they should then consider using a PPA provided version [20:49] ioria, thanks! [20:49] fleabeard, np [20:49] pragmaticenigma: noted, thanks man [20:50] fleabeard, 0 0 is good too === pony is now known as u-ou [20:54] pragmaticenigma: That is much clear advice, I do agree with it. BTW that repo is the one mpv.io (the project) recommends. [21:01] hi jule [21:01] Hi again, I have one more issue with re-installing pulseaudio. It seems that the user running pulseaudio is now gdm instead of desktop [21:02] the user should be "jule" [21:02] huh yeah! [21:05] steps to reproduce jules problem. [21:05] anybody use Clonezilla Live on USB to copy your OS to a new SSD? [21:06] 1. `apt-get purge pulseaudio` [21:06] why reinstall pulseaudio? [21:06] 2. `apt-get install pulseaudio` [21:06] OerHeks: that is a great question [21:07] jule you can explain that one [21:07] 3. `ps aux | grep pulse` [21:08] expected results: puseaudio should be running as user jule [21:08] OerHeks, because it is not the last version and I have issues with my volume control [21:08] observed results: pulseaudio is running as gdm [21:08] wrong, gdm runs pulse, the user only enables syslog [21:08] can anyone verify that pulseaudio is running as their normal user [21:08] ? [21:09] https://paste.ubuntu.com/p/dCJsnS6tCn/ [21:09] I will leave that one with you [21:09] conr: you will have to reach out to the clonezilla community for assistance. this channel focuses on Ubuntu only [21:09] not the last version .. volume control .. [21:09] wabbits, I am on fedora29 at the moment, however, yes it is running under user name [21:10] coz_ thanks but was really looking to see what normal behaviour is on ubuntu [21:10] hello. which program/package do window managers like pekwm, fluxbox & co use on ubuntu? [21:11] what do you mean which program/packags ? [21:11] OerHeks, the last apt version is not the 12 [21:11] wabbits: pulseaudio prceoss is owned by the GUI user, yes [21:11] conr: use bit for bit to get the boot loader [21:11] TJ- what platform? [21:11] wabbits: huh? [21:11] what distro are you running? [21:11] and what version? [21:11] ikonia: :D for generating the applications menu. multitasking fooled me [21:11] pragmaticenigma: oh maybe i should ask what tool do you recommend for taking a snapshot of your Ubuntu image and install on a new SSD?? [21:11] wabbits: 18.04 [21:12] OerHeks and TJ- seem to be reporting different things [21:12] OerHeks, https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/1810039 [21:12] Launchpad bug 1810039 in pulseaudio (Ubuntu) "Volume noisy and loud with no level control [HDA Intel PCH / Realtek ALC295]" [Undecided,New] [21:12] 2018-06-20: PulseAudio 12.0 .. logically not in the stable 18.04 LTS [21:13] zutat: the application menus are part of the desktop [21:13] cryptodan_mobile: what's bit for bit? [21:14] OerHeks, yes indeed but I have wanted to try this new version in order to see if it is fixing my issues. [21:14] conr: my recommendation is if you are going from a traditional harddrive to SSD is to do a fresh install [21:14] wabbits: no; same thing. User session has a pulseaudio server, but with Gnome, the Gnome Display Manager also has a PA instance (for the greeter ) [21:14] jule you should have said that before I sent you here [21:14] Conr Google it since it's related to ubuntu support [21:14] conr: There are optimization that won't get enabled automatically with a clone of your current system. [21:15] pragmaticenigma: actually it's a 60GB SSD to 250SSD [21:15] Said what sorry? [21:15] TJ- thanks [21:15] that you want to run the latest version to see if it fixes an issue [21:15] cosmic gives https://launchpad.net/ubuntu/+source/pulseaudio/1:12.2-0ubuntu4 .. [21:15] ikonia: i mean a software like this one http://menumaker.sourceforge.net/ . [21:15] conr: Then I leave it with the same comment I made earlier, Clonezilla is not something supported here. You need to go to Clonezilla's official support for assistnace plase. [21:16] zutat: they don't use software like that [21:16] Will do [21:17] thanks guys, happy new year! [21:17] wabbits, I do not understand the link between the two things. I have mentionned that I want to try to build new version for that purpose but since it broke everything I was trying to revert this. [21:17] conr: I use Acronis true image and Norton Ghost, also have Clonezilla, the images for "OS migration", as far as I know, should work, so long the destination partition is larger or equals to the source's image, but also bear in mind as aforementioned, the clonezilla channel [21:18] jule, what hardware is this, UX390UAK zenbook ? [21:19] jule: there are a LOT of reports of problems with the ALC295 so I think it is a systemic issue [21:19] ikonia: what do they use instead? [21:19] OerHeks, it is a Asus Zenbook 3 yes! [21:20] TJ-, indeed I have found issues but not especially ALC295, do you have references? [21:21] zutat: it's part of the desktop [21:21] jule: I've found a report on the HP forums about this that strongly suggests this may be caused by a firmware ACPI issue (it's fine after rebooting from Windows, but not on a cold boot into Linux) [21:21] Side question, any of you have an iMac and a Ubuntu (MediaServer/NAS) box on your home network? What's your monitor setup? [21:22] or do you just VNC in? [21:22] jule: there's an easy workaround that *may* help if it is caused by a bug in the PC's firmware ACPI. See http://iam.tj/prototype/enhancements/Windows-acpi_osi.html [21:22] not detecting all your speakers correctly ... https://askubuntu.com/questions/906303/volume-control-on-asus-zenbook-3 and same answer https://era86.github.io/2017/10/03/asus-zenbook-3-volume-controls.html [21:23] that is the cause of the slider, it seems [21:23] .. and check for bios updates [21:24] jule: OerHeks' 2nd link looks promising [21:24] Ok I process these links and I come back [21:25] meanwhile, dog is going to walk me [21:25] The second link in fact I have already tried this with no chance... I give it a new try, I do not know.. [21:26] OerHeks: scoop dat poop :D [21:49] is there ac hannel for the unity DE? [21:49] *channel [21:50] za1b1tsu: perhaps if you state your question, we can direct you better? [21:51] I was reading what was so good about unity and that HUD menu really got me interested [21:51] and from what I am reading, only mate has anything comparable [21:52] za1b1tsu: The HUD you refer to, I believe was inspired by the choices made in Gnome, which is Ubuntu's current default desktop environment [21:53] ubuntu does not have this functionality, there is this https://github.com/hardpixel/gnome-hud [21:53] but I was curios about a 1st party implementation [21:54] za1b1tsu: For unity, it appears they use telegram for the preferred chat network. Their homepage is https://unity8.io/ ... My knowledge of the inner workings of Unity are limited, only that I had used it with my previous installation of Ubuntu 16.04 [21:55] ah ok, thank you pragmaticenigma [22:03] What's the best N64 emulator for Linux these days? [22:05] likemindead: mupen64 is ok [22:05] Looks like it's about it these days. [22:06] yeah [22:11] Not going to find a lot of variety in stuff with questionable legality in a mainline distro. [22:26] Hey guys whats up . Have a issue with okg instakkhttps://paste.ee/p/FoNWv#K3CcXL6rRa4vyr7KRBLWuny6BnsMhqy3 [22:27] Hey guys whats up . Have a issue with okg install https://paste.ee/p/FoNWv#K3CcXL6rRa4vyr7KRBLWuny6BnsMhqy3 [22:28] apt-show-verion has issues but it says its installed [22:28] Setting up apt-show-versions (0.22.7) ... [22:28] ** initializing cache. This may take a while ** [22:28] Error: No information about packages! (Maybe no deb entries?) [22:29] looks like the pkg is broken [22:29] rneese: You will have to contact the developer or package maintainer. This channel only supports software provided through Ubuntu's official channels and repositories [22:31] Maintainer: [22:31] Ubuntu Developers (Mail Archive) [22:31] rneese: what and how are you installing? [22:32] installing ajenti but apt-show-version is in the normal ubuntu pkgs [22:32] https://packages.ubuntu.com/bionic/admin/apt-show-versions [22:34] rneese: ajenti is the problem, not apt-show-version ... that much is clear from the pastebin you provided [22:35] no apt-show-version is a issue as I install it alone and get the error [22:35] rneese: have you done a recent "sudo apt update && sudo apt upgrade" ? [22:35] yes [22:35] pragmaticenigma: no, it is apt-show-versions that causes that, because it cannot complete its postinst run due to not finding the dpkg status file, as it says [22:35] rneese: what Ubuntu release is that? the apt-show-versions version is pure Debian, not Ubuntu [22:36] 18.04 [22:36] https://paste.ee/p/Hrd7C#6TMo5tLm4AqlNKMhoyVs1ioI0UNLzyh0 [22:36] its in the ubuntu pkgs [22:36] !info apt-show-versions bionic | rneese [22:36] rneese: apt-show-versions (source: apt-show-versions): lists available package versions with distribution. In component universe, is optional. Version 0.22.7ubuntu1 (bionic), package size 27 kB, installed size 91 kB [22:37] rneese: ^^^ 18.04 has 0.22.7ubuntu1 [22:38] its failing to install thats the issue [22:38] Setting up apt-show-versions (0.22.7) ... [22:38] ** initializing cache. This may take a while ** [22:38] Error: No information about packages! (Maybe no deb entries?) [22:38] rneese: have you added a PPA meant for debian? [22:38] no [22:39] rneese: purge it and ajenti, get apt to a clean state where you can install packages. Test by installing something like cowsay [22:39] only added 1 repo for ajenti [22:40] rneese: you're not using an Ubuntu release, in that last pastebin it reports "Processing triggers for man-db (2.7.6.1-2) " - we do not have that version of man-db [22:40] rneese: if you were running ubuntu 18.04, you would have seen this output: https://paste.ubuntu.com/p/yFmw2Qfpfk/ [22:42] ok sorry I see a issue brb it looks like someone reloaded this mini box with debian while I was otu of office . and did not inform me [22:42] ok I have to go reload [22:42] sorry [22:42] thanks [22:43] it's alright, hopefully everything goes smoothly when you have the targetted OS on their :-) [22:43] ok thanks ust saw when I did apt get update it showed deb repos [22:43] thanks alot [22:44] well, that was an easy one :) [22:46] hi all [22:46] i can't login in the #ubuntu-it chan [22:46] i can't login in the #ubuntu-it-chat too [22:47] !register | gigirock ?? [22:48] gigirock ??: For information on registering your IRC nick, see https://help.ubuntu.com/community/InternetRelayChat/Registration - For any further help, ask in #freenode. [23:51] Does it make sense for uname -r to output "2.6.32-042stab134.8" when running Ubuntu 16.04? I thought 2.6 was super old. [23:53] ffs: it is super old, and it does make sense if that's a custom kernel. actual 16.04 would not have this one. [23:55] !info linux-image-generic xenial [23:55] linux-image-generic (source: linux-meta): Generic Linux kernel image. In component main, is optional. Version 4.4.0.141.147 (xenial), package size 2 kB, installed size 14 kB [23:55] ffs: what you have there is apparently a virtuozzo container running under rhel / centos [23:55] sounds like openvz 2.6.32-042stab134.8 [23:55] vagrant? [23:55] https://virtuozzosupport.force.com/s/article/vaa [23:56] rather https://virtuozzosupport.force.com/s/article/VZA-2018-087