[00:21] oerheks how long does dd normally take? [00:21] source is 240GB, target is 120GB, partitions on source only add up to 81GB [00:21] both drives are SSD's [00:27] stan_man_can: without the option "bs=50M" it is transferring data 512 bytes at a time [00:28] stan_man_can: usually we add "bs=50M" (blocksize=50 Megabytes) because that is how much it'll read in one operation so is much faster than reading just 512 bytes at a time [00:28] ah [00:28] just finished anyays [00:28] but didn't work [00:28] i got an error that it ran out of disk space, in gparted the destination drive shows it all as unallocated [00:28] with a (!) [00:29] TJ- any clue how I can make this work? [00:30] stan_man_can: show us "pastebinit <( sudo gdisk -l ; lsblk )" [00:30] say I want to have multiple IP addresses for the same ethernet adapter (eth0), all configured with DHCP - what is the ip command do I need to use ? ip link add ...? [00:32] TJ- "Problem opening -l for reading" [00:33] hehehe oops lets try again [00:33] https://paste.ubuntu.com/p/chpHV78RKf/ [00:33] still output that but [00:34] stan_man_can: show us "pastebinit <( sudo gdisk -l /dev/sda; sudo gdisk -l /dev/sdb; lsblk )" [00:35] stan_man_can: is this the target (destination)? " sdb 8:16 0 111.8G 0 disk " [00:35] TJ- https://paste.ubuntu.com/p/jTNWxH2dXH/ [00:35] TJ- yeah, source is sda, target is sdb [00:36] stan_man_can: ok, lets create partitions on sdb to take the partitions from sda [00:38] stan_man_can: show me "pastebinit <( sudo sgdisk --info 1 --info 2 /dev/sda )" [00:39] TJ- https://paste.ubuntu.com/p/GhnpWpDNdq/ [00:43] stan_man_can: OK, we'll replicate the same partitions on sdb with "sudo sgdisk --new=1:0:+1048576 --new=2:0:+167772160 /dev/sdb" then tell the OS about the new partitions with "sudo partprobe /dev/sdb" -- check p1 and p2 have appeared with "grep sdb /proc/partitions" [00:45] TJ- http://paste.ubuntu.com/p/hPqTCvYK8Z/ [00:47] stan_man_can: good... now lets copy! "for n in 1 2; do sudo dd if=/dev/sda$n of=/dev/sdb$n bs=500M status=progress conv=fdatasync,fsync ; done" [00:47] bs=500M or 50M? [00:48] stan_man_can: 500M --- bigger is better and faster [00:48] stan_man_can: especially with SSDs [00:49] kk [00:49] it's chugging away at about 400MB/s :) [00:49] way faster than the 42 minutes the last one took [00:49] lol [00:50] TJ- once this is done, apparently i have to do somethign to fix grub? [00:51] stan_man_can: I came in late but I presume you'll have to create a chroot and install grub again to sdb [00:51] you lost me at chroot [00:51] lol [00:51] stan_man_can: Can I presume that partition 1 contains /boot/ ? [00:52] i think so? how do I check [00:52] stan_man_can: well its only 512M so that'd make sense, it won't be the 80GiB partition! [00:52] yeah when i check in disk utility it has boot,esp flags [00:53] ahh so NOT /boot/ but the EFI-SP good job you told me that! [00:53] stan_man_can: are you going to remove sda before trying to boot this with sdb ? [00:53] yes [00:53] how do correct removing preinstalled libreoffice from ubuntu 18.04 ? [00:54] i want to install new version [00:56] TJ- in gparted I right clicked on tthat first partition and said "manag eflags" and checked off boot and esp and it applied them, not sure if that's good or bad, i thought i could click "cancel" but it applied them right away [00:56] just go to 'ubuntu software', make search 'libreoffice' and uninstall all installed in any order ? [00:58] fd2: or in a shell do: " sudo apt remove $( apt list libreoffice* --installed 2>/dev/null | tail -n +2 | sed 's,/.*,,' ) " [00:58] stan_man_can: that is fine [00:58] stan_man_can: you'll need to tell the PC's firmware to boot from sdb now using efibootmgr [01:00] stan_man_can: check what the PC currently has with "pastebinit <( efibootmgr -v )" [01:01] TJ- https://paste.ubuntu.com/p/bmgZQ2mdpH/ [01:02] stan_man_can: so 87 and 89 are the current boot entries for Ubuntu it looks like [01:03] kk [01:03] stan_man_can: oh, and 0000 has the Secure Boot entry [01:04] TJ-, thx [01:04] stan_man_can: I'm presuming those are on sda based on the GUIDs from earlier [01:04] ok [01:04] stan_man_can: are you going to remove sda from the system, or wipe the existing file-systems from it? [01:04] i'll disconnect it first and if everything is working i'll be wiping it and moving it to a different computer [01:05] stan_man_can: we have to be careful here since you've got a clone it'll have the same GUIDs as the original which will confuse the system and OS [01:05] stan_man_can: disconnection is good - then only the 'new' drive will have the GUIDs [01:06] kk [01:06] stan_man_can: so you need to 'install' the new instance via grub-install [01:06] stan_man_can: has the cloning ending? [01:06] dd is done yeah [01:06] stan_man_can: in which case we need to create a chroot (change root) to do the install [01:10] stan_man_can: OK: "sudo mkdir /target && sudo mount /dev/sdb2 /target && sudo mount /dev/sdb1 /target/boot/efi && for n in proc sys dev; do sudo mount --rbind /$n /target/$n; done && sudo chroot /target mount -a && sudo chroot /target grub-install /dev/sdb && sudo chroot /target update-grub && sudo umount --lazy --recursive /target{proc,sys,dev,boot/efi,} " [01:10] TJ- haha [01:10] dang [01:11] that's one hell of a string [01:12] TJ- https://kopy.io/kDuxY [01:12] got an error [01:13] stan_man_can: ah! you've an entry in the /etc/fstab for a mount at /tv that the system cannot find [01:14] stan_man_can: I'll revise the command from where it stopped [01:14] TJ- that might make sense, i manually added i think two entries to fstab [01:14] /tv and /movies [01:15] stan_man_can: here we go: " sudo chroot /target grub-install /dev/sdb && sudo chroot /target update-grub && sudo umount --lazy --recursive /target{proc,sys,dev,boot/efi,} " [01:19] stan_man_can: you might also need to delete those boot entries we saw (0000, 0087, 0089) but we should check what is there first with "pastebinit <( efibootmgr -v )" [01:19] TJ- uh, everything broke now [01:19] stan_man_can: uhoh [01:19] and windows are all crashing so i couldn't even share the output of the command [01:19] i think something a bout proc syss dev boot not found or something [01:21] TJ- i can't open terminal or firefox [01:21] stan_man_can: actually that is weird, since I typo-ed and it would have failed [01:21] maybe the failure caused unintentional behaviour [01:22] not sure what to do since I can't even open up terminal, i guess I have to reboot and hope it comes back okay? [01:22] reboot to the live usb again* [01:22] stan_man_can: how are you using IRC? [01:22] different computer [01:22] stan_man_can: oh! are you connected to the other PC via ssh then? [01:22] i've been swiveling back and forward the whole time [01:23] stan_man_can: I thought you were copy/pasting my commands! [01:23] i was [01:23] stan_man_can: OK phew! [01:23] copied into a pastebin [01:23] saved [01:23] swivel, visit the url, copy it and paste into terminal [01:23] and then repeat the process to share the output with you :P [01:23] stan_man_can: right, on the 'broken' PC press Ctrl+Alt+F2 to get to tty2 and login [01:24] stan_man_can: If you're using the liveISO the username will be "ubuntu" with empty password [01:24] TJ- all i get now is a blinking underscore cursor top left [01:24] no login prompt or anything [01:24] stan_man_can: tap a key [01:24] i tried [01:24] stan_man_can: ok, try Alt+F1 [01:24] back to desktop [01:25] stan_man_can: hmmm, it's supposed to start spare ttys [01:25] yeah i have a feeling something is seriously borked right now [01:25] stan_man_can: try Alt+F2 to get the command-run dialog [01:26] y eah got that [01:26] stan_man_can: ok, lets see if we can restart the desktop! "systemctl restart display-manager" -- this may fail or you may get a password prompt [01:27] nothing happened [01:27] stan_man_can: are you using the regular "Ubuntu" liveISO ? we could also try relaunching "gnome-terminal" from that dialog [01:27] yeah just the regular download [01:27] ok, try "gnome-terminal" then [01:27] just gnome-terminal or systemctl restart? [01:28] just "gnome-terminal" [01:28] stan_man_can: if this works you might have the terminal again [01:28] no change [01:28] stan_man_can: ok... best to reboot the LiveISO then so we regain stability [01:29] stan_man_can: although... at this point I suspect /dev/sdb WOULD boot if you remove sda [01:29] stan_man_can: the error was in the unmount so won't affect the install [01:29] TJ- tried to shutdown and have a bunch of errors [01:30] last one is [ *** ] (2 of 3) A start job is running for Wait until snapd is fully seeeed (23s / nolimit) [01:30] the other ones are talking about ACPI BIOS Error [01:31] TJ- should i just hard restart it? [01:31] stan_man_can: press Ctrl+Alt+F2 again ... then press and hold down Alt+SysRq, release SysRq, then press and release in turn R E I S U B [01:32] SysRq? [01:32] usually its on the PrtScrn key [01:32] kk [01:32] or close to it... in the dark here can't see it :D [01:33] this "waiting for seed" thing was an issue in snapd ~nine days ago -- when did you download this image? [01:33] sarnold: PRNG ? [01:33] sarnold i downloaded it like 3 hours ago [01:34] TJ-: no, not /dev/random stuff; from the discussion a while ago, "the seed is what preinstalls snaps" [01:35] sarnold: and is breaking on live env? [01:35] stan_man_can: if you don't make much progress, you could try #snappy as well and ask if they have fixed images yet [01:35] TJ- alright [01:35] stan_man_can: at this stage a hard reboot is in order [01:35] it's back up again [01:35] the REISUB thing worked [01:35] stan_man_can: yay [01:36] stan_man_can: did you boot to the LiveISO or into sdb ? [01:36] LiveISO [01:36] sda and sdb are still both plugged in [01:36] stan_man_can: you should remove that 'sda' and see if you can boot it to the 'sdb' [01:36] TJ- so just shut down, remove sda, and boot back up? [01:36] stan_man_can: in theory it should be able to, but we can check just before you try if you want [01:36] do I need to do anything in bios? [01:36] stan_man_can: "pastebinit <( efibootmgr -v )" [01:37] stan_man_can: the 'new' sdb install should now be the default *if* the earlier grub-install /de/sdb worked [01:37] /dev/sdb even [01:38] TJ- https://paste.ubuntu.com/p/MqMTjF7kFN/ [01:39] stan_man_can: try removing sda and a reboot without the USB LiveISO connected [01:43] TJ- looks like it's working! [01:43] thank you SO much for the help! [01:43] stan_man_can: you're welcome [01:44] :) [01:44] +rep TJ- [01:44] dang, worth a try [01:54] !cookie | TJ- [01:54] TJ-: Wow! You're such a great helper, you deserve a cookie! [01:56] * genii tries not to eat TJ-'s cookie [01:58] !coffee | genii [01:59] plenty to go around for all :) [01:59] * TJ- needs to head off to bed - almost 02:00 here [01:59] yay, 03:00 [01:59] oerheks: :D [02:00] 22:00 === abq1 is now known as abq [02:44] !20.10 [02:44] I'm trying to build kernel 4.11.12 (from git) with: fakeroot debian/rules binary [02:44] Is that not correct? [02:45] It gives me a compile error :/ [02:45] usbip_common.c:220:21: error: '%d' directive writing between 1 and 3 bytes into a region of size between 0 and 31 [-Werror=format-overflow=] [02:45] sprintf(busid, "%s:%d.%d", udev->busid, udev->bConfigurationValue, i); [02:46] grab the old 2017 kernel here? https://kernel.ubuntu.com/~kernel-ppa/mainline/v4.11.12/ [02:47] really, i would not suggest to do that, you must have a reason [02:47] I rather compile it myself because I think I'll need to make changes. [02:48] 4.11 is not a supported kernel for Ubuntu; it does not get patched by Canonical , !hwe gives 4.15 === zbenjamin is now known as Guest35985 === zbenjamin_ is now known as zbenjamin [02:48] Great. [02:48] good luck! [02:48] I bought hardware that arrives tomorrow and THEY only support that hardware up till 4.11 [02:49] So, if I want to get support from the hardware vendor I have to run 4.11. [02:49] Once I get it to work with that kernel, I can look at if it works at newer kernels. [02:51] oerheks: anyway, if you look at the url you just pasted; it is what I am using. At the top it says which git to use and which tag, and then three patches that need to be applied. [02:52] So, I did all that - but I can't find anywhere how to build the kernel. [02:52] Pretend I'm asking this for 4.15. [02:53] https://kernel.ubuntu.com/~kernel-ppa/mainline/v4.15.18/ [02:53] Exactly the same. [02:53] Same git, different tag, a few patches. And then? [02:59] or grab old ubuntu 17.04 (Zesty Zapus) that have 4.10 kernel from archive to install? [03:02] My wireless doesnt function. I tried to replace drivers. Search reveals problems. Does anyone have a good way to replace the drivers. THanks. (18.04 HP Probook RTL8723BE PCIe Wireless Network Adapter) [03:03] Realtek [03:05] will look in later and reask. [03:08] Aleric: You could do as IcemanV9 suggests, then pin the kernel packages to 4.11, then upgrade to 17.10, then to 18.04. But since both 17.04 and 17.10 are long EOL already you have to mess with sources.list to point to old-releases repository [03:09] !pinning [03:09] pinning is an advanced feature that APT can use to prefer particular packages over others. See https://help.ubuntu.com/community/PinningHowto [03:14] For now I just installed the .deb's is there any reason to think that won't work? [03:14] The main reason I want to be able to compile it myself is so I can start hacking the driver. [03:15] ought to work just fine. [03:15] provided that your userspace doesn't rely on anything that has changed. i doubt it has [03:16] Aleric: The debs from the mainline repository should work fine to install an older kernel [03:16] If the hardware (PEXUSB3S44V) works under 4.11 (and if it doesn't I'll get support from Startech) and not under 5.5.9 - then I could do a binary search for the commit(s) that cause that... IF I can compile the kernel myself :/ [03:17] a git bisect thus [03:17] I presume my compiler is too new hence it gives this error... [03:18] I bet the kernel is normally build in some chroot - but that isn't documented anywhere grr :/ [03:32] Aleric: could always try a distro build around compiling whatever you need if you really have to customize the system to fit your hardware. don't mean to pry so feel free to ignore: what sorta hardware did you pick up that requires 4.11 in order for support? [03:32] s/build/built [03:34] nt0: They stated PEXUSB3S44V which seems to be a 4 port USB3 PCIe card [03:37] hory shet. that seems like commodity hw that ought to work well enough on anything with some tweaking. i figured it'd be something like a complete system tailor-made for a use case and only supported by the vendor. [03:39] i'm pretty ignorant. how often do kernel changes cause support regressions on hardware that isn't 20+ years old? [03:40] That card debuted in 2017 when 4.11 was latest kernel. Later ones probably have no issue, I'd suspect they just haven't updated the sales page for it. [03:41] Aleric: ^^^ [03:43] maybe it's a symptom of having played around with operating systems for over a decade but i never even look at what is "supported" unless i have trouble. if there's trouble i don't look to the manuf's website unless they are known for their *nix customer support [03:44] how secure is the default build of ubuntu 18? Is there anything a noob needs to know or do if he is going to expose his box to the internet? === Peppi^ is now known as Peppi [03:45] Peppi^, there are some really good guides that can be Googl'd. At a minimum, I read up on UFW and unattended updates [03:45] !virus | Peppi [03:45] Peppi: Antivirus is something you don't need on !Linux, except where files are then passed to Windows computers (perhaps using Samba). See https://help.ubuntu.com/community/Antivirus [03:46] Bashing-om, who said anything about a virus? [03:46] Peppi: don't use port 22 for ssh if you plan to use ssh. plenty more but that'll save you some disk space [03:47] nt0: I have my router exposed on port 22 so this box will not have 22 open [03:47] Peppi: why router exposed on 22? [03:48] nt0: I plan on having maybe a minecraft server and nextcloud installed on the box. So a few ports will be open but not 22 [03:48] nt0, uhmm good question, in my life I found moving it off 22 was more trouble then it was worth [03:49] if someone is going to attack you they will scan all your ports [03:49] for the general audience: i was young and naive and forwarded port 22 to a VM so that i could ssh via a dynamic DNS thing. turns out that bots aplenty target 22 without scanning [03:49] Peppi, consider things like public keys and fail2ban then at least... [03:49] Mordoc, yes it uses public keys [03:50] Mordoc, fail2ban... I'm not sure... I'll have to check that [03:50] Peppi, sounds like you got this in hand then. Happy Minecrafting! [03:50] Mordoc, no no not at all [03:50] simply forwarding 22 to a VM generated more than 5gb of logfiles for failed ssh login attempts [03:50] Mordoc, I have ssh covered on my router. I'm an noob on ubuntu [03:51] Peppi, the docs on fail2ban are somewhat cryptic but there are some good howtos. It's a service that block repeated failed attempts to connect to your SSH port. [03:52] re: 5gb logs.. it took only a day or two. there are scripts out there attempting ssh login on that port across the entire net. lots of them. i noticed the diskspace taken up by the logs and was shocked at how many bots were active. [03:52] Mordoc, I'm using an Odroid HC2 for my minecraft and nextcloud server. The HC2 is using some "custom" ubuntu 18.x version [03:52] Peppi, as long as it has apt for package management, you should be fine. [03:52] Mordoc, it does [03:53] Mordoc, but I've only gotten as far as installing ubuntu. Everything is default including the username and password [03:53] Mordoc, I'm just wondering out of the box how secure is ubuntu? [03:53] nt0: That card seems to be going for about $160, I think I'd send it back and get a Vantec UGT-PCE430-4C which has exact same features, works on all 4 and 5 series kernels so far with full UASP and 5Gbps for half that amount [03:53] Aleric: ^^ [03:55] does anyone know what vulnerabilities a minecraft server has? Should I be worried is it safe to expose to the net? [03:55] how about nextcloud? [03:56] Hello, would this be the appropriate forum to ask a question about a snap package? [03:56] Peppi, an update to date box is *fairly* secure. I'd always enable UFW, unattended updates, and use public keys for ssh you'd be better than a far number of servers on the net. [03:57] Peppi, sorry meant to say an up to date box... [03:59] Hi, I'm using 18.04 recently upgraded from 16.04. In 16.04 if I had two wifi adapters it was really easy to configure them separately but in 18.04 I'm finding it difficult. They both want to connect to the same AP and I want one of them to not connect to anything, but there's no option to disable one adapter, only to disable wifi in general [03:59] ok are there any know vulnerabilities for a nexctloud server? The box will not have port 22 open just whatever minecraft and nextcloud uses. [03:59] and there's also no "disconnect but stay enabled" option [04:00] Peppi: security? https://www.archive.ece.cmu.edu/~ganger/712.fall02/papers/p761-thompson.pdf [04:00] Peppi: a rebuttal: https://www.schneier.com/blog/archives/2006/01/countering_trus.html [04:01] interesting read for anybody who likes computing for its own sake. [04:01] Peppi: nt0 maybe you could move this discussion to #ubuntu-discuss lets keep the channel free for our ubuntu support users [04:02] lotuspsychje: aye, agreed. sorry. hopefully the security stuff helps some real-world cases that happen to hop in. unlikely but nonzero! [04:03] bkurt78: Sure, you can ask here about snap packages. [04:03] lotuspsychje, wait my question is ubuntu support no? [04:04] Peppi: ubuntu questions are fine, but please for yourself keep a line between support vs discussion [04:04] I'm currently using the Makemkv snap package and the program is hitting a fatal error when ripping a certain disc. Some research online indicates that it is probably due to the fact that its using an old version of java to handle some playlist obfuscation. However, I can't find a way to allow the Makemkv application use a different version of [04:04] java that is installed. I'm assuming its a confinement issue, but maybe I'm wrong. [04:04] lotuspsychje, understood [04:05] Bashing-om: Thanks! [04:08] I'm over on Xubuntu, but my issue seems focused on the layer Xubuntu is on. I'm having full-on freezes without an exact reason and checking journalctl after such a crash doesn't lead to a conclusion. For example, the last thing that has happened last boot was Anacron finishing, second to last was a login from myself. [04:09] bkurt78: report your bug at the maintainer: contact: https://github.com/diddlesnaps/makemkv/issues [04:09] bkurt78: Over my head also - but hang loose here - perhaps others here have the greater experience. [04:10] Will do. [04:10] Plus the crashes tend to be random. Last time it just happened when I looked away a moment to do something on my phone, other times when unattended so I'm stumped. [04:27] kern.log comes up with nothing. Just my logitec stuff being recognized. [04:38] hi all. I am trying to install ubuntu to an encrypted root partition (/boot is separate unencrypted, / is encrypted with cryptsetup luks). I managed to install ubuntu to the encrypted partition but I'm having trouble setting up a password prompt to decrypt on boot. I have tried adding an entry to /etc/crypttab and running update-initramfs but I get a couple of errors: [04:38] "cryptsetup: WARNING: Invalid source device UUID={uuid copy-pasted from /etc/fstab}" and "Warning: couldn't identify filesystem type for fsck hook, ignoring" [04:39] I couldn't find what could cause these errors so I'm a little lost on house to proceed [04:39] *how [04:40] I've done something similar to this before, and I know I've done this because I've reused a LUKS protected LVM. [04:40] But I'm having issues remembering the exact incantation. [04:42] I didn't use LVM... (maybe its not relevant). The UUID I used is the one associated with the actual partition (/dev/sda5 -> /dev/mapper/cryptroot), so I used the uuid from /dev/sda5 output by blkid. Does that sound right? [04:45] I haven't put a filesystem directly behind encryption but I'd imagine it be similar. I'm checking a wiki article at the moment. [04:46] This is how my laptop is configured if you are curious: https://paste.ubuntu.com/p/5v5v7WdcCY/ [04:48] Wait, are you able to boot into the install or is it always coming up with that error whenever you try? [04:48] Just for clarity. [04:49] I haven't completed the setup yet. I booted with a live usb, opened up terminal and setup the encrypted partition and mounted it using cryptsetup. Then I installed ubuntu and haven't restarted yet, I am trying to configure /etc/crypttab so i get a password prompt [04:49] otherwise ubuntu doesnt know about the encrypted partition so booting it wouldnt work [04:50] Peek at this while I check something on my laptop. https://help.ubuntu.com/community/Full_Disk_Encryption_Howto_2019#Post-Installation_Steps [04:51] will take a look [04:53] I'm having trouble with unexpectedly poor performance in 3d games on a dell xps 13 with intel integrated graphics. I can't find much in the way of wiki or forum information about this sort of situation newer than 4-5 years old. Are there specific resources I should be looking for/at about this? [04:59] Ah okay your configuration is different than mine. My /boot partition was left encrypted which explains why it's easier for me. [05:01] my boot partition is also unencrypted (im assuming from what you posted only root/swap/home/development are encrypted) [05:04] Yeah root/swap/home/development are only encrypted. You can pick your own partitioning scheme: it's your system. Mine happens to be allocating space as needed and spinning up partitions for one-offs or purpose-built reasons. [05:04] But I'm looking through the guide to spark something in my mind. [05:06] intel-gpu-overlay says 0% render load even when a 3d game like autonauts or skyrim is running and very slow [05:15] I keep getting logged out of my ssh session with the message: packet_write_wait: Connection to UNKNOWN port 0: broken pipe, Shared connection to closed. Any idea what is happening? I have to log back in and then all my TMUX sessions are killed so it is an annoyance. [05:28] canurabus, Still with us? Spooled up a VM so I can experiment since I'm puzzled. [05:32] how to make all .py files executable in the folder? 'sudo chmod -R -a+x folder/*.py' ? [05:41] hi all === z4kst4r1 is now known as z4kst4r [06:47] how to make all .py files executable in the folder? 'sudo chmod -R -a+x folder/*.py' ? [06:49] fd2, I don't think you'd need sudo if the files are own by you. And I assume you have good reason to, but yeah, generally that'll be the command. [06:51] Alternatively you can just use `python /path/to/script.py` [07:18] CarlenWhite, thanks! [07:22] lotuspsychje: i couldn't find man page for switcheroo but there is option to choose card on right click context menu.. thank you [07:26] CarlenWhite, i executed script, but for sub folder it didn't work. then i 'cd folder' and 'chmod -R -a+x *.py'. files in that folder became exec. but in subfolder - none. why? i used '-R' [07:29] 'chmod -R -a+x *.py' the '-' before 'a' - error. i executed command without it [07:33] Hi, I need some advice, so i bought a M.2 drive and plugged it in but didnt work on ubuntu, had to install windows to recognise that drive and get it to work now that drive is ntfs and i wanna install windows side by side ubuntu .. can i install this on a ntfs partition?? will it work fine or will i have trouble later?? [07:33] i am going to sleep. don't answer. good time [07:34] ? [07:36] cixx: ok great, but did you solve your crashes and such? [07:40] stupid question but when you run a command in the CLI do you use an & at the end to run applications in the background? Or how do you run applications in the background using the CLI? [07:41] for example would I type jave foobar.jar & or something to make it so I can continue to use the CLI? [07:42] lotuspsychje: solved some errors with https://github.com/ValveSoftware/Proton/wiki/For-AMD-users-having-issues-with-non-OpenGL-games [07:43] but there are acpi errors already [07:43] cixx: try to update your bios as latest possible too [07:44] cixx: was your cpu ryzen too? [07:47] lotuspsychje: nope. it is Intel(R) Core(TM) i7-7600U CPU @ 2.80GHz [07:48] kk [07:49] there are firmware updates on hp site but it seems like they are prepared to run on windows [07:49] https://support.hp.com/us-en/drivers/selfservice/hp-elitebook-850-g4-notebook-pc/11122333 [07:50] !biosupdate | cixx [07:50] cixx: To see how to update your bios on Ubuntu visit the community collected methods here: https://help.ubuntu.com/community/BIOSUpdate [08:01] lotuspsychje: thank you. it was so easy. :) notebook setup screen has online bios update menu. it is downloading new bios firmware right now [08:02] !yay | cixx [08:02] cixx: Glad you made it! :-) [08:02] :) === bipul is now known as reckless [08:06] guys, im unable to launch the Terminal [08:07] I tried many suggestions found both in Google and StackExchange [08:07] ibr2: ubuntu version? kernel version? journalctl -f and launch terminal to see errors plz [08:08] what happens if you try? click the icon, or ctrl alt t [08:10] lotuspsychje: some errors are gone but there are 5 acpi errors already [08:10] lotuspsychje, 18.04, Linux version 5.2.0-kali2-amd64 (devel@kali.org) (gcc version 8.3.0 (Debian 8.3.0-19)) #1 SMP Debian 5.2.9-2kali1 (2019-08-22) [08:11] ibr2: we can only support ubuntu here [08:11] oerheks, nothing comes up, i tried many different ways [08:11] oh no, kali is not ubuntu ibr2 [08:11] guys, this is ubuntu [08:11] lotuspsychje: https://pasteboard.co/IZMMt5h.png [08:11] I don't know why it's showing Kali even myself [08:11] ibr2, no, it is not. [08:11] good luck in the kali channels [08:12] ibr2: you waked up, and suddenly kali was installed on your computer? [08:12] oerheks, my friend I am working with Ubuntu [08:12] nah this my ubuntu guys [08:12] it's just when I ran "uname -a" [08:12] it shows kali [08:12] through the Xterm [08:12] :) [08:12] bye ibr2 [08:13] I am not joking?? [08:13] cat /etc/os-release [08:13] ok [08:13] cixx: pastebin your new dmesg after the bios updates plz? [08:13] FingerlessGloves, it is clear he/she is using a debian + kali kernel. [08:14] don't give support in here, thanks. [08:14] oerheks sounds that way [08:14] FingerlessGloves, (NAME="Ubuntu" [08:14] VERSION="18.04.2 LTS (Bionic Beaver)" [08:14] ID=ubuntu [08:14] ID_LIKE=debian [08:14] PRETTY_NAME="Ubuntu 18.04.2 LTS" [08:14] VERSION_ID="18.04" [08:14] fake [08:14] out of date too lol [08:15] lotuspsychje: https://justpaste.it/38xdi [08:16] cixx: 0.000000] DMI: HP HP EliteBook 850 G4/828C, BIOS P78 Ver. 01.32 01/05/2020 nice! [08:16] lotuspsychje, FingerlessGloves oerheks https://paste.ubuntu.com/p/ctKmJ6dCnJ/ [08:17] here's the content of my OS-Release file [08:17] I never installed Kali in My PC, it was Windows, then I installed Ubuntu over the disk [08:17] lotuspsychje: :) [08:18] mounter ro read only > [ 6.778080] EXT4-fs (sda2): re-mounted. Opts: errors=remount-ro [08:18] oerheks, what is this? [08:18] ibr2, please leave, you will not get support, thanks. [08:18] oerheks, why? [08:19] I told you, not lying !!!! [08:19] cixx: seems like you are not alone, bug #1805670 [08:19] bug 1805670 in linux (Ubuntu) "18.04 LTS - ACPI parsing errors in ZBook G5 Mobile Workstation: issues ex. suspend, touchpad" [Undecided,Confirmed] https://launchpad.net/bugs/1805670 [08:20] guys i need help [08:21] !acpi | cixx play around with these [08:21] cixx play around with these: to debug ACPI issues on ubuntu make sure your bios is up to date and follow the procedure here: https://wiki.ubuntu.com/DebuggingACPI [08:22] check sda2 for errors.. fsck.ext4 -p /dev/sda2 (https://help.ubuntu.com/community/FilesystemTroubleshooting) [08:24] FingerlessGloves, thanks for all your help, and appreciate your honesty and respect man! i'll do your recommendation [08:24] lotuspsychje, ubottu: https://h30434.www3.hp.com/t5/Notebook-Operating-System-and-Recovery/acpi-error-with-linux/td-p/6021489/page/2 [08:24] it seems like there are patches on kernel 5.4 [08:25] how can i update my kernel to latest stable kernel version 5.5 on ubuntu 18.04 [08:25] !mainline | cixx [08:25] cixx: The kernel team supply continuous mainline kernel builds which can be useful for tracking down issues or testing recent changes in the Linux kernel. More information is available at https://wiki.ubuntu.com/Kernel/MainlineBuilds [08:26] see also oerheks advice cixx [08:29] anyone recommend some ui-widget to show some system stats in real time? like Cpu-usage, memory usage? [08:29] !info conky | zap0 [08:29] zap0: conky (source: conky): highly configurable system monitor (transitional package). In component universe, is optional. Version 1.10.8-1build2 (eoan), package size 3 kB, installed size 27 kB [08:30] eoan 19.10 gives 5.3 too? [08:32] focal 20.04 beta gives 5.4.0-18.22 [08:33] yes [08:34] cixx: this might be your troublemaker too: [ 7.169624] hp_wmi: query 0x4 returned error 0x5 [08:40] lotuspsychje thanks, i installed it, how do i config it? [08:41] 2347 pages with conky examples https://ubuntuforums.org/showthread.php?t=281865&page=2347 [08:42] lotuspsychje: installed latest kernel 5.6-rc5 but nothing changed :) [08:42] longest threat on ubuntu forum [08:44] cixx: what i presume, is all those HP models/series might suffer a few acpi bugs, you might wanna fiddle around with that hp_wmi & the !acpi bootlines [08:45] cixx: try to work systematic, test all your laptops functions, like brightness, suspend,... and see what works and what not [08:55] lotuspsychje: lotuspsychje thank you.. i don't have much more time to research about these errors. but it seems like everything works for now [08:56] so i need to ignore those errors for a while [08:56] thats great cixx [08:56] thank you :) [08:56] every system has a few acpi warnings in dmesg, so no big deal === The_Milkman1 is now known as The_Milkman [09:04] can i get some help with this conky thing. how do i change its settings? [09:06] if you have installed conky-all, type 'conky' in terminal [09:07] it appears under the icons, i can even read 1/2 of it [09:07] there are, however, gnome-shell-extentions with a lot of tools, cpu use info and more [09:07] did you see the ubuntu-forum post? [09:08] 2347 pages of stuff that's far too advanced for where i'm at. not useful. [09:10] zap0: also check out gkrellm, a bit simpler than conky [09:12] how do i move it out from under the icons? [09:25] zap0: https://linuxconfig.org/system-monitoring-on-ubuntu-18-04-linux-with-conky [09:27] wow, that page looks very useful. thank you. [09:29] fixed. thanks. === mnemonic is now known as Guest42470 [09:54] !ping [09:54] !ping [09:54] pong! [10:33] What's the minimum amount of space my friend would need in a partition to install and run Ubuntu? [10:33] Let's assume he's installing 18.04 btw [10:34] minimal number without updates, any program, any driver? [10:34] think ubuntu now asks 8gb+ [10:34] i keep it @ 20 gb. less is not really usefull [10:34] tested bionic on a 8gb ssd once, and it didnt want to proceed [10:38] didnt test netinstall or minimal iso's for bionic myself [10:59] brendantcc, too little and you may have issues with upgrading if you don't do it regularly (ie. let them pile up), cannot release-upgrade... ie. mainenance costs can be higher as you have less disk space... [11:08] Hi folks [11:09] why does copy paste suck so much? Like when i copy it pastes old stuff? [11:14] Hello my CPU is stuck on it's min frequency and I can't figure out why, can anyone offer any guidance? [11:22] :/ [11:24] killall: there are two clipboards, the x11 selection buffer and the clipboard. install something like clipit to sync them [11:24] ok thanks [11:24] Sc0utonLinux, It should adapt automaticly, but you can try: sudo apt install cpufreqd cpufrequtils; then: sudo cpufreq-set -r -g performance [11:26] akem do you mean cpupower frequencey-set ? - cpufreq-set doesn't seem to be available. Also no matter the load the frequency stays at lowest frequency [11:28] Sc0utonLinux, Hm no it should be cpufreq-set AFAIK? Are you using Ubuntu 18.04? [11:28] I needed a theme and icon packs so I installed 2 PPAs...I tried to be neat and installed VLC, youtube-dl through snap..but clementine is not there so I have to yet again install a PPA...Is this the way things are? I have to find a current PPA ? [11:28] Maybe it has changed? But it's still cpufreq-set on my system which is Ubuntu 18.04. [11:30] Hamilton: we dont support external ppa's here [11:30] Hamilton: we strongly advice to use packages from the repos/snaps [11:31] lotuspsychje, But what if its not availabe. My way for GUI apps is snap > apt > PPA. For [11:31] akem I installed it via cpufrequtils -- I've been messing about trying to get this to work so I may have removed it .. eithercase setting it to performance has left the frequency unchanged [11:31] But I have trouble sticking to this since most of the time I see myself adding PPAs because the apps are not available or outdated [11:32] meaning lowest frequency [11:32] Scotty_Trees, What CPU is it? [11:32] Hamilton: when problems with one of your ppa's==>contact the maintainer [11:32] I mean Sc0utonLinux * [11:33] lotuspsychje, There is no problem. I'm saying my apt is getting messy adding external PPAs [11:33] I have one machine that don't want to adjust with cpufreq too. AMD A4 IIRC. [11:33] I'm wondering if its the way or I'm doing something wrong [11:33] Hamilton: remove your ppa's [11:33] !ppapurge | Hamilton [11:33] Hamilton: To disable a PPA from your sources and revert your packages back to default Ubuntu packages, install ppa-purge and use the command: « sudo ppa-purge ppa:/ » – For more information, see http://www.webupd8.org/2009/12/remove-ppa-repositories-via-command.html [11:34] lotuspsychje, Then what happens to the apps which need them to update? [11:34] akem i7 6700k [11:34] !latest | Hamilton [11:34] Hamilton: 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. [11:35] lotuspsychje, So it is the way ...If I wanted edge I should have gone with a rolling release like Arch... [11:35] But now I have to manage random external PPAs [11:35] akem frequency-info confirms limits from 800 to 3.90 mhz - all 4 cpus stuck at 800mhz .. temperature of 25c and often reaching 100% load [11:36] ghz* [11:36] Hamilton: why do you need always the latest apps exactly? [11:37] Sc0utonLinux, That's weird. [11:37] lotuspsychje, not latest. There are things which do not exist on any Ubuntu repo [11:37] Like themes, icon packs, 3rd party apps [11:38] Hamilton: its your system, you can add what you want, but we cant support it, hope you understand [11:38] Sc0utonLinux, Well i don't know you can try to have a look in /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor for example...See if it's on performance or something else. [11:38] Sc0utonLinux, Check /sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq too. Not sure how you monitor frequency. [11:39] For current frequency. [11:40] Hi everyone! How's everything going? Everything OK? [11:40] cousteau, yes :) closed in home due to covid-19 [11:41] Same, but still technically at work [11:41] cousteau, same here. Being a sysadmin is easy. [11:42] To work home i mean. [11:42] I am trying to add a widget to the Ubuntu 16.04 panel to monitor when the disk is about to get full, but I'm not even sure where to look for. Is it called an "indicator" or a "widget" or what? [11:43] cousteau: apt-cache search indicator [11:43] Also, is any of these installed by default? I was used to being able to right click on a panel and just add stuff [11:44] cousteau: the system indicators are default, if you need more, they are optional [11:49] OK but I mean, the only default ones are the ones I see (network, layout, Bluetooth, battery, volume, time, power/config), there isn't any menu to enable/disable more of them, right? [11:50] I've noticed there are quite few config options installed by default [11:50] cousteau: thats on ubuntu-desktop, unity you are right? [11:51] Yep [11:51] cousteau: no then, additional indicators are yet to install optional [11:52] (I've considered installing XFCE and be done with it, but since it's the company laptop I try to avoid installing unnecessary stuff) [11:52] OK will look for indicators, thanks! [11:53] cousteau: indicator-multiload for example monitors all kinds of things, you can add a HD value too [11:53] akem i'm still a bit of a noob .. i can't figure out how to look into those is it with a cat command or grep or something ? I am currently using conky and also the command : /var/log$ cat /proc/cpuinfo | grep MHz [11:53] !info indicator-multiload | cousteau [11:53] cousteau: indicator-multiload (source: indicator-multiload): Graphical system load indicator for CPU, ram, etc.. In component universe, is extra. Version 0.4-0ubuntu5 (eoan), package size 137 kB, installed size 901 kB [11:53] all CPUs constantly at 800 mhz [11:55] akem did you get my messages ? [11:55] Sc0utonLinux, No. [11:55] akem i'm still a bit of a noob .. i can't figure out how to look into those is it with a cat command or grep or something ? I am currently using conky and also the command : /var/log$ cat /proc/cpuinfo | grep MHz [11:56] all CPUs constantly at 800 mhz [11:56] Hi all, I have just installed ubuntu 18.04LTS and am experiencing an issue with the file manager. Copy-pasting using either the right-click menu or the keyboard shortcuts doesn't work (in right-click, 'paste' stays greyed-out). I am able to copy files using the command line. I have also installed another file manager 'nemo', but this has the exact [11:56] same behavior. Any hints about what be the issue? [11:56] Sc0utonLinux, Yes with "cat". [11:56] Sc0utonLinux: plz dont repeat too fast [11:56] Sc0utonLinux, Are you using 18.04? [11:57] akem Zorin 15.2 [11:57] Sc0utonLinux, Zorin 15.2 ? I would suggest you update your system to a fresh Ubuntu first. [11:58] Sc0utonLinux: we only support ubuntu & their flavours here [11:58] lotuspsychje: cheers! [11:59] akem Performance and 800033 [11:59] Scotty_Trees, Yeah that's 800 Mhz. [11:59] Sc0utonLinux, Install Ubuntu 18.04 or newer, or at least try the live USB and check with it. [11:59] Sc0utonLinux: /join #zorinos [12:00] Yeah or that too. :P [12:00] there is 7 people in that chat :( [12:00] Sc0utonLinux: we can only support ubuntu here, sorry [12:01] Linux kernel (Linux 5.3) courtesy of Ubuntu 18.04.4 LTS [12:01] Sc0utonLinux: only official ubuntu allowed [12:01] no derivatives [12:01] there is no difference really ..:'( [12:01] yes there is [12:02] If I boot up live Ubuntu and issue persists can you assist ? [12:02] yes [12:02] ok deal :D [12:02] thank you :) ! I'll be back .. well hopefully not .. i mean if it works that would be great [12:03] lotuspsychje: oh, but that only shows disk I/O, not amount of disk space used [12:03] Also CPU usage, which could come in handy [12:04] cousteau: been a while since i used it, did you check settings the items you can add? [12:05] Yes, "disk" only has "read" and "write" [12:05] kk [12:05] cousteau: not sure if the repos hold on for space then === kostkon_ is now known as kostkon [12:07] I'll keep searching, thanks! [12:13] cousteau: think there are some, but ppa's wich we dont support [12:13] I don't think any of the indicator-* packages in Ubuntu 16.04 official repos have what I want :( I need either a PPA, a different DE, or maybe a newer Ubuntu [12:13] Yep [12:14] newer ubuntu also doesnt have hd indicators [12:14] I don't feel like installing a PPA on the laptop at work unless it is justified [12:14] cousteau: conky could be a solution perhaps, but then its gonna be widget style [12:15] Well yeah but newer Ubuntu uses Gnome so maybe that was more compatible than unity [12:15] cousteau: there might be gnome extensions out there, indeed [12:15] Oh I remember Conky from ages ago! Good times [12:16] cousteau: https://extensions.gnome.org/extension/1447/disk-space-usage/ [12:17] Conky is still around, it's great. [12:18] Alternatively, can I modify the threshold at which Ubuntu warns me about low disk space? The message I usually get is "You're running low on disk space. Current space is 0 bytes." And I'm like "thanks for warning >:(" [12:21] cousteau: just found a dconf value for it, but im on a different ubuntu release [12:21] cousteau: try, sudo apt install dconf-editor [12:22] On it [12:22] Hm, what is indicator-display? [12:23] !info indicator-display xenial [12:23] indicator-display (source: indicator-display): Collection of small indicators. In component universe, is optional. Version 0.1+16.04.20160324.1-0ubuntu1 (xenial), package size 62 kB, installed size 313 kB [12:23] never tested that one [12:24] btw I'm keeping dconf-editor to see if I can solve an unrelated problem [12:24] cousteau: yeah, thats pretty handy, alot of tweaking in there [12:24] OK, what was the key I may need to modify? [12:25] cousteau: on my ubuntu version: /org/freedesktop/tracker/miner/files/low-disk-space-limit [12:27] Btw can I dump the whole dconf to a text format? [12:28] So that I can diff it with a working config to see if I find the source of this other problem [12:29] cousteau: didnt try that one, the dconf-editor for 18.04 and higher got a handy search function now [12:29] ah, that sounds better [12:29] Description of the other problem: something weird is going on with the window manager. I cannot Ctrl-Alt-arrows, I cannot drag a window to snap it to half the screen, and new windows open on the top left corner and are partially covered by the left panel [12:30] All this works fine on a different account. [12:35] hey ioria ; ) [12:35] lotuspsychje, hello lotus [12:36] re: disk space, I didn't find that key :( [12:36] org.freedesktop only has a color-helper subcategory [12:37] cousteau: yeah, im not sure its the same on unity, ive tested on 20.04 here [12:37] akem, get you shit together brother :P lol jk [12:38] cousteau: what about: org gnome settings-deamon plugins housekeeping [12:39] free-percent-notify = 0.05 [12:39] aha [12:39] is that 5% or 0.05%? [12:39] the latter probably [12:39] just switch off and set to 0? [12:39] Type: Double [0.0..1.0] [12:40] sounds like the former [12:40] or 0.01 :p [12:41] free-size-gb-no-notify is set to 1 (GB), so I guess this is inhibiting any useful messages [12:42] cousteau: or you can start cleaning your hd:p [12:42] bleachbit to the rescue [12:43] * cousteau sets it to 20 [12:43] yeah I know quite well what's in my HD [12:43] it's like a ton of GB of a Vivado install, and some programs and projects from some of my coworkers [12:44] baobab is cool for this [12:44] the main issue is that the disk is like 128 GB [12:45] ok thanks, you helped me a lot! [12:45] np === Wryhder is now known as Lucas_Gray [13:04] How to install redmine via snap? [13:12] Intelo: it's not available in the snap store, so you can't [13:13] k [13:54] hello, i have a Ryzen 3200G and i'm trying to install linux (Ubuntu 19.04 in this case) but i end up having a super pixelated quality, any suggestion? Radeon driver issue? thank you: https://imgur.com/a/8OIG45D [13:55] lorenx: have you verified that the full resolution of the monitor is being detected? [13:55] and that it is displaying at the full resolution [13:56] The resolution is not adapted to the screen, try to change it in the setting to the maximum resolution available. [13:56] the resolutuon is ok: 1920x1080 [13:56] it's just that the quality and colors are so poor [13:56] lorenx: That isn't what we are asking.. [13:57] it's like i'm seeing a 256color mode [13:57] lorenx: what is the make and model of your monitor? [13:57] it's a samsung P2470HD [13:58] but i never had issue with linux (with other hardware) [13:59] i actually tried more than one distro and all gave me the same problem [13:59] it seems it's ryzen-related though, or something like that [14:01] lorenx, Your resolution should be 1920 x 1280 or 1680 x 1050, try to change it to this. [14:02] Hm wait not sure it's the very same model i see there. [14:02] akem: I just realized what monitor this is [14:02] lorenx: Is this one of Samsungs models with the TV tuner built in? [14:02] my resolution is 1920x1080 and it's correctly recognized by the system [14:02] yes, pragma [14:03] lorenx: What port on the monitor are you using to connect with the computer? [14:03] the pic i shared shows that the system correctly recognize my 1920x1080 resolution [14:03] hdmi [14:03] lorenx: Change the input name of the port to "PC" [14:03] the pc source redirects me to vga [14:04] but i don't have any vga on my motherboard [14:04] lorenx: No... don't change the source... in the menu there is a way to name the inputs [14:04] So intead of seeing HDMI, you can apply a more friendly name so you know what is attached to the input [14:05] and just changing the name would make any difference? [14:05] lorenx: I have the exact same model [14:05] oh, wow lol [14:05] rather my folks have it, and it drove me nuts too. [14:07] i found the way to edit the output name but i don't think it will fix my issue [14:08] are you sure it's not a driver-related problem? [14:08] What is happening is the monitor is compensating for what it thinks is overscan... that's why the characters looked compressed... changing the sources label disables it [14:08] lorenx: It can't hurt to try it [14:08] my hdmi cable should be fine anyway, cause i can see my bios perfectly (not pixelated) [14:08] it's not a cable issue, and it's not a computer issue [14:09] what kind of issue is it then? lol [14:09] The BIOS is probably being sent at 640x480 or a similar mode [14:09] Hello I'm back my CPU is stuck at 800 mhz min frequency and won't change no matter what [14:09] JimBuntu: no... it's an undocumented "feature" of those monitors [14:10] i tried to set a lower resolution but it's still pixelated and less-colors range [14:10] pragmaticenigma: My comment is not about your comment, only why BIOS may look fine [14:10] ah [14:10] have you seen the pic i sent? [14:11] Sc0utonlinux, You're on Ubuntu live? [14:12] I am indeed [14:12] Sc0utonlinux, You tried cpufreqd? [14:12] lorenx: I have seen the picture and I agree with what pragmaticenigma said and am standing by to hear that changing the label resolves the issue. Seen something similar on many devices with tuners. [14:12] akem: yes [14:12] sorry, wrong reply [14:12] lorenx: Troubleshooting 101... always try the easiest option first... We're all standing by to see what happens when you change the source label in the monitor setup to "PC" [14:12] jimbuntu: ok, let's try then [14:13] i already have the vga port names to pc [14:13] will it conflict? [14:14] *named [14:14] I would make sure only the HDMI port is named PC... but otherwise you might need to do a power cycle of the monitor [14:15] so i should rename the vga port from pc to something like pc2 first? [14:15] akem, what's that ? I set to performance again like you asked before [14:15] lorenx: Buried deep on Samsungs website, applies to all their devices: Important : If you label an input "PC" , your TV will scale the image differently to improve the picture quality from a PC.: https://www.samsung.com/in/support/tv-audio-video/how-to-label-the-inputs-on-your-samsung-f-series-tv/ [14:16] sudo cpufreq-set -r -g performance [14:17] Sc0utonlinux, Ok no output? try: cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor [14:18] i tried this way: https://imgur.com/a/Fxcg1gl [14:18] i should power off on back on my monitor i guess... [14:20] that looks correct lorenx ... and what I see through the translucent ... it appears it already might have improved [14:20] Sc0utonlinux, And: cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq to check current frequency. [14:20] that's another pc lol [14:20] cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor [14:20] performance [14:21] cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq [14:21] 800009 [14:22] pragmaticenigma: it worked!!!!!!!!!!!!!!!!!!!!!!!!!! [14:22] Scotty_Trees, Still 800 Mhz, now check this: https://winaero.com/blog/how-to-create-100-cpu-load-in-linux/ to stress test the CPU, and check if the freqauency change at the same time. [14:22] fudge, i spent 2 days over that [14:22] lorenx: yay!!!!! [14:23] !cookie pragmaticenigma [14:23] akem, wrong guy [14:23] i still see a slow redraw when i move a window fast, you know... like a visible redraw... [14:23] Scotty_Trees, Yeah again :) [14:24] maybe it's because i'm on a live usb... or maybe that's the driver [14:24] Sc0utonlinux, Check my previous link. [14:24] lorenx: very likely... the live USB is very resource limited [14:25] ok, thanks, i will try with a normal installation first [14:25] thank you very much! [14:26] akem, sorry im confused which one ? [14:26] Sc0utonlinux, Still 800 Mhz, now check this: https://winaero.com/blog/how-to-create-100-cpu-load-in-linux/ to stress test the CPU, and check if the freqauency change at the same time. [14:26] thanks ok [14:27] Sc0utonlinux, If it's still stuck @ 800 Mhz then i don't know. I got 1 machine that i cannot control either with cpufreq, i don't know why :/ [14:27] BBL. [14:28] I have a password reset situation where holding down shift doesn't work. Holding down escape does work, but pops into the grub boot shell. [14:28] Is there a way to boot the root shell from the grub shell? [14:30] akem, all CPUS at 100% freq stays 800mhz [14:39] Does anyone else have any ideas or input on how I could resolve the issue ? [14:40] Sc0utonlinux, There is maybe something wrong with your CPU then, i don't know what else to test with Ubuntu. [14:40] akem, could it be bios settings? [14:41] Maybe trying a Windows could help to see if it's stuck too. [14:41] akem, anyway we can like see if we can manually step it up and see what is causing the issue ? [14:41] akem, if it's not stuck in Windows that would definitly mean a kernal fault in Linux right ? [14:42] Sc0utonlinux: I wouldn't call it a kernal fault... but it would help narrow down what might be causing the issue [14:43] Sc0utonlinux, Try: cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_available_frequencies Then you can try something like: sudo cpufreq-set -f 2000Mhz with one of the frequencies. [14:44] It's a common processor. [14:44] cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq [14:44] 4200000 [14:45] So it's probably not Ubuntu/Linux fault. [14:45] sudo cpufreq-set -f 2000Mhz [14:45] Error setting new values. Common errors: [14:45] akem, how do you mean ? do you think my CPU is defective ? [14:46] Sc0utonlinux, Try 4200Mhz instead. But you have only 1 frequency which is strange. [14:47] Ha nah, that's the max frequency you pasted. [14:47] akem, it's cause "available_frequencies" was not available so i tried "scaling_max_freq" [14:47] Sc0utonlinux, Ha ok. [14:47] sorry should have said [14:47] same error [14:48] can i somehow replace the governor ? [14:48] Sc0utonlinux, Check base_frequency if you have it? [14:48] and try a different one ? would that be an option ? [14:48] akem, i have min freq, is that what you mean ? [14:49] No, you should have "base_frequency" too. [14:49] I guess min freq is 800Mhz. [14:49] And you're running at minimal frequency all the time. [14:50] ah i do have it sorry wan't under scaling base frequency is 3500000 [14:50] What processor is this? [14:50] i7 6700k [14:52] Graphics Base Frequency 350 MHz makes that plausible [14:52] https://ark.intel.com/content/www/us/en/ark/products/88195/intel-core-i7-6700k-processor-8m-cache-up-to-4-20-ghz.html [14:54] No it's 3500Mhz CPU base frequency min is 800Mhz and max is 4200Mhz. [14:54] i just set the max frequency to 4.2 in the bios in an effort to see if it might help ..the default value is lower [14:54] 3.5 Ghz [14:55] hi! i'm trying to create soft raid0 for 4 hard drives. i did "mdadm -C /dev/md0 -l raid0 -n 4 /dev/sd[c-f]1" and when I try to run "mdadm --create /dev/md0 --level=stripe --raid-devices=4 /dev/sd[c-f]1" I get mdadm: cannot open /dev/sdc1: Device or resource busy. any ideas ? [14:56] It's probably mounted [14:56] mount doesn't show me that it's mounted [14:56] i just used cfdisk and create linux raid partition for the 4 hard drives, i didn't mount anything. [14:58] ufk, I've recently come off a raid install i can highly recommend using ubuntu 12 alternate the installer does everything for you [15:00] ufk: Might try: sudo partprobe /dev/sdc [15:00] ufk, https://help.ubuntu.com/community/Installation/SoftwareRAID [15:01] I guess I'll try the one who shall not be named ... "Windows" .....puke [15:02] Sc0utonlinux, I would try Windows and offical HW drivers and all just to be sure the HW is not faulty. [15:02] Yeah. [15:02] ufk, are you quite sure you want a raid0? [15:03] akem, ok :) I will be back ! to report .. i'm sure your intersted to know how it goes :P [15:06] lordcirth_, what do you have against raid0 ? [15:07] Sc0utonlinux, usually people use RAIDs to store data they care about. Raid0 is dangerous. [15:08] ahh :) personally I use it for the speed :D of the apps / games :D and important data on a other drive === tds0 is now known as tds === tehaugz is now known as augz [15:43] Hi! I'm running 18.04 and today my sound is completely gone on X1 Carbon 7th gen. Sound was working just fine before. All I have right now is dummy output and no sound on both speakers or headphones. Any ideas? [15:52] MapMan: at the moment, we are getting several bugs in about kernel 5.3 and alsa/sound issues, did you try booting other kernel versions yet? [15:53] MapMan: wich kernel are you currently running? [15:53] lotuspsychje: no, I did not try booting other kernel versions. Should I? [15:54] 5.3.0-42-generic [15:55] MapMan: ok, yes please see if you can boot an earlier version then -42 and see if you can reproduce this [15:55] ok, will try that [15:56] MapMan: here's one of the bugs that came in: bug #1867803 [15:56] bug 1867803 in linux (Ubuntu) "ALSA: No soundcards found after updating kernel to 5.3.0.42.36" [Undecided,Confirmed] https://launchpad.net/bugs/1867803 [15:56] dang.. i tried to create raid0 from 4 hard drives.. i'm lost! i did this "mdadm -C /dev/md0 -l raid0 -n 4 /dev/sd[c-f]1" and after i tried doing this: "mdmadm --create /dev/md0 --level=stripe --raid-devices=4 /dev/sd[c-f]1" I get "mdadm: cannot open /dev/sdc1: Device or resource busy". i tried rebooting but the results are the same.. [15:56] now i have /dev/md127 and /dev/md127 no ideas why and no idea how to continue [15:57] 126 and 127 [15:58] lotuspsychje: thanks a lot, on kernel -40 sound is working again, so that surely is the regression you're talking about [15:59] i thought I had kernel updates disabled btw... [15:59] MapMan: i havent found the main bug about it yet [16:00] MapMan: here's another one for 18.04 bug #1868085 [16:00] bug 1868085 in alsa-driver (Ubuntu) "Bug related to the new kernel version 5.3.0-42-generic" [Undecided,New] https://launchpad.net/bugs/1868085 [16:00] some people report it's fixed on -43 [16:01] MapMan: yeah the one on -proposed, but be carefull enabling that [16:05] ahh never mind.. it works :) [16:11] does ubuntu not trust addtrust external ca ? [16:12] I am getting an error saying that this is an invalid certificate https://bpaste.net/raw/4U2A [16:13] https://i.imgur.com/gJlELqQ.png [16:18] CoolerX: It won't be trusted very soon... do you have the wrong date set on your machine? [16:19] pragmaticenigma, no [16:19] CoolerX: What are you trying to do that requires that? [16:19] what do you mean won't be trusted very soon? [16:19] I am trying to use forticlient to connect to a ssl vpn [16:20] I checked out the url for the vpn on here https://www.sslshopper.com/ssl-checker.html [16:20] it passed all tests [16:20] pragmaticenigma, the certificate is valid right? [16:20] this one https://bpaste.net/raw/4U2A [16:22] CoolerX: The certificate is valid until May 30, 2020 (a little more than 2 months) [16:23] However that doesn't mean that the CA hasn't already marked the cert as invalid with a revoke [16:25] CoolerX: This is sounding like you need to take the support to the VPN provider [16:26] pragmaticenigma, has it been revoked? [16:27] CoolerX: Only the provider can tell you that [16:27] pragmaticenigma, isn't it public info? [16:27] we are talking about a root certificate [16:28] did addtrust revoke it? [16:28] CoolerX: The issue you are having is with the service provider, it is not an Ubuntu issue and is not something I or any volunteer here can support. If the client software was crashing, then we'd have something. But it appears everything on your system is working fine, therefore it is a service provider issue. [16:29] CoolerX: You will have to contact their support group to resolve the certificate issue. [16:33] ok thanks [16:40] Today's 18.04LTS as-usual pkg updates included grub*. post-inst for grub is failing -- as it overwrites /etc/default/grub, incorrectly [16:40] here's what I see: https://pastebin.com/raw/4eK1Q8EJ [16:41] iiuc, /etc/default/grub *is* for 'our' config params ... and shouldn't be installer-touched [16:41] ne1 else seeing same? new grub bug, installer bug, or config? [16:42] pgnd: just updated... no issues [16:43] pgnd: /etc/default/grub: line 53: unexpected EOF while looking for matching `"' [16:43] pragmaticenigma: hm. i'm seeing that^ on every box ... do you explicitly define/use GRUB_CMDLINE_LINUX= in your config? [16:44] hggdh: right. that's the point. [16:44] the config is incorrectly overwritten. [16:44] including that errant `"' [16:44] trying it now with a different box that I haven't updated since Sunday pgnd [16:45] pgnd: The box that I just updated with grub being one of the proposed updates, completed without incident [16:45] 18.04LTS? [16:45] yes [16:45] server, or desktop? [16:46] pgnd: ah, I see it now [16:46] that doesn't matter [16:48] pgnd: a bug is certainly warranted. Now where did all the parameters in line 53 come from? They were not in the original default grub [16:49] yes they were ... in _my_ original /etc/default/grub. again, that's the point -- they get duplicated and added by the post-install ... [16:49] already working on the bug rpt [16:50] pgnd: darn, I am slow today... yep [16:51] pgnd: make sure to add in the bug which packages were updated [16:52] pgnd: (I know grub-pc was updated, but there might be other packages updated [16:59] Hello Im back [16:59] akem, was it you i was talking to ? [16:59] Sc0utonLinux, Yeah. You tried on Windows? [17:01] im on Windows now .. still need to run a test ... Buuuuut .... I found out my motherboard has a switch called "slow mode" .... long story short .. *face palm* I feel very dumb [17:01] i dont have to elaborate what slow mode does .. i suppose .. [17:02] Sc0utonLinux, I see. Yeah it could be just that OFC :) [17:02] In an Ubuntu server setup as an l2tp/ipsec vpn server, where can I see user's credentials? [17:03] pgnd: easily reproducible. Just get a default install, and split the GRUB_COMMAND_LINE_DEFAULT="quiet splash" in two lines [17:03] akem, slow mode reads from the manual : "if slow mode is on, the processor runs at lowest frequency" [17:03] pgnd: please give me the bug number when you are done opening it [17:04] Sc0utonLinux, Probably why it was stuck @ 800Mhz. [17:04] akem, my thoughts exactly haha ... oh man .. [17:04] hggdh: https://bugs.launchpad.net/ubuntu/+source/grub2/+bug/1868138 [17:04] Launchpad bug 1868138 in grub2 (Ubuntu) "18.04LTS upgrade of grub-common:amd64 FAILs in post-install; incorrectly REWRITES user's /etc/default/grub" [Undecided,New] [17:06] marz_d`ghostman: what version of Ubuntu? [17:06] hi. [17:07] how can i make my dmesg output colorful on centos like ubuntu? [17:07] what is difference between centos and ubuntu consoles? [17:08] pragmaticenigma: Ah, I just figured it out, I need to have a user acount on the server itself. [17:08] pragmaticenigma: thanks though [17:08] cixx: Support here is only available for Ubuntu... Volunteers rely on the documentation from Canonical in order to help provide support. go to #centos for assistnace with CentOS [17:10] cixx must be the system theme, tango dark in ubuntu [17:12] hggdh: would you like me to cc/subscribe u to the bug? [17:14] ah ... 'bug supervisor'. figure that's not necessary! === pauljw__ is now known as pauljw [17:22] Hi guys, i installed thiswarofmine via epic in lutris but can't seem to be able to run, anyone succesfully ran it? [17:22] pgnd: already marked it as triaged and added repro steps [17:22] akem, do you know a good benchmark program im having trouble finding one [17:23] pgnd: at least it is not destructive... [17:23] hggdh: thx! [17:24] Sc0utonLinux, Not really, i only know 3Dmark on Windows. [17:24] hggdh: I'm not entirely sure ... yet ... if it's horked the existing/in-place initrd, or broken boot in some way. [17:24] exploring that ... gingerly [17:28] hay207: Support here is limited to Official Ubuntu flavors and the software provided through official Ubuntu repositories. For help with other programs you can try asking in #ubuntu-offtopic or seek out a support forum that is associated with your gaming platform. [17:28] Ok, thanks [17:29] hggdh: re: "it will only impact users with continuation lines." ... noted. but fwiw, here anyway, our internal prio's a bit higher. 100+ ubu servers with continuation lines in their grub cfg ... === beaver is now known as beaver_34543 === beaver_34543 is now known as Guest543534 [17:38] pgnd: I understand. Please add a comment your impact. Initial comments is the last change on install was for 2.02-2ubuntu8.13 [17:41] pgnd: your servers, have they been there for a while (specifically, were they configured this way *before* grub 2.02-2ubuntu8.13? [17:43] hggdh: yes, they've all been in place for years ... upgrading across multiple LTS releases etc. and, YES -- *all* my grub configs, not just these Ubu servers, use continuation lines. [17:44] pgnd: what was the installed GRUB version before the upgrade? [17:45] pgnd, what mirror?? [17:45] hggdh, could be 1 mirror with a bad disk, no? [17:46] oerheks: thought of that, but reproduced it in Azure, and on my local laptop (they use different mirrors) [17:46] would be unique, bad file and bad checksum match ... [17:47] ah yes [17:47] hggdh: hm . is history.log* the right place for what-was-in-there-right-b4-last-upgrade? [17:48] oerheks: http://us.archive.ubuntu.com/ubuntu [17:50] hggdh: looks like it's 2.02-2ubuntu8.13 .... ~ mid-Dec '19 [17:52] pgnd, well, your bug report tells -14 (Upgrade: grub-common:amd64 (2.02-2ubuntu8.14, 2.02-2ubuntu8.15)) and you already had a '1 not fully installed' before the upgarde .... [17:53] what would be his test, clean lists and cache, and change mirror to 'main'? [17:53] *upgrade [17:55] hi, im using 18.04 but need to use a specific vpn for work which requires very recent version of network-manager-openconnect , im guessing if i just grab the deb from somewhere it will failed due to dependencies, can any suggest a workaround? [17:56] ioria: right. it's after several tries, and it was noticed. NOT on a test/troubleshoot instance. in any case, hggdh has already reproduced ... [17:57] petemc, i think all current version have the same, with patches https://launchpad.net/network-manager-openconnect/+packages [17:57] except xenial 16.04 [18:00] oerheks: i see, thanks, ill check if im doing something wrong === Guest543534 is now known as beaver [18:05] Hello, Im using ubuntu mate 19.10. I mapped (via the GUI settings of ubuntu) the keybindings windows-e and windows-t to two commands, wich are executed fine when I hit those keys, but the issue is ubuntu think it's still appropriate to - also - launch a file explorer for the first keybinding and a terminal for the last one. :) [18:06] How/where should I change those keybindings ? [18:10] akem, just to conclude i rebooted into Ubuntu live and ran the same tests again - CPU frequency now at 3.7 :D [18:11] have ubuntu 18.04 on dell laptop ... the wireless adapter seem not to be enabled (the mechanical switch and bios settings are ok, because on windows it works fine) ... how can i explicitely enable the adapter ? on windows I can do that easily via control panel [18:11] akem, gave up on trying to find a decent benchmark program on windows lol [18:11] i can see the adapter via lshw -C network ... is there some other command to enable/disable it ? [18:12] Ho, I see there's a ubuntu-mate room, I will ask there. [18:16] anyone ? === semeion is now known as mnemonic [18:18] Sc0utonLinux, Good you got it working, congrats ;) [18:23] akem_, thanks for your patience :) [18:29] greetings, I'm getting an error when trying to install 19.10. "ubuntu ubi-partman failed with exit code 141". Any suggestions? [18:32] isomari, no luck with pci=noaer or pci=nomsi ?? === Roey is now known as CoffeeVillain [18:32] from https://ubuntuforums.org/showthread.php?t=2391201 === akem_ is now known as akem [18:46] how can i use firefox with openvpn ? [18:49] ph88: OpenVPN works at the system network level, all traffic on your computer will use the VPN (assuming that is how it is configured)... You cannot explicately setup Firefox to use OpenVPN, there is no "setting" or "configuration" to define that [18:50] oerheks: no luck yeet. [18:51] sudo dd if=/dev/zero of=/swapfile bs=1024 count=1048576 bs= size of swap file? [18:51] ph88: take a look at https://help.getfoxyproxy.org/index.php/knowledge-base/setup-for-ubuntu-openvpn/ [18:51] other options include , e.g., PIA extension -- which 'uses' openvpn for connections. [18:54] trying to install murmur on bionic, I seem to be missing APT support for ppa: URLs. how can I get that? "E: The method driver /usr/lib/apt/methods/ppa could not be found.¶ W: Failed to fetch ppa://mumble/release/dists/bionic/InRelease:" however on one of my xenial machines it works even though /usr/lib/apt/methods/ppa does not exist. [18:55] I found a bug with my newish Thinkpad and the -42 kernel delivered in the latest 19.10 update. Where's the right place to file that? [18:56] !bug | gamache [18:56] gamache: If you find a bug in Ubuntu or any of its official !flavors, please report it using the command « ubuntu-bug » - See https://help.ubuntu.com/community/ReportingBugs for other ways to report bugs. [18:57] pragmaticenigma: what is the package though? that's what is confusing me === beaver is now known as Unknown342432 [18:57] gamache: file against the "linux" source [18:57] TJ-: OK will do, thank you! [18:59] can i use ubuntu desktop as server to run 24/7? [18:59] firewire1394: definitely [18:59] IEEE1394: sure [18:59] gamache: i'm scared of gnome memory leaks [18:59] firewire1394: then don't use Gnome [18:59] :D [19:00] ok i gonna try but maybe i should set it to restart every day [19:00] firewire1394, I'd switch to openbox, then uninstall the gnome shell. [19:00] Sven_vB: i like gnome :) [19:00] firewire1394, oh ok in that case maybe RAM monitoring might be a good idea. [19:01] Sven_vB: i saw ubuntu server has that manager to install things, don't know if i can get it on desktop too [19:02] oerheks: /var/log/syslog reports: "no matching physical volumes found". Yet I can escape to the terminal and maually mount the destination drive partitions. [19:02] firewire1394, you could just try, or ask #ubuntu-server [19:02] Sven_vB: thanks :) i think for home usage it is totally okey [19:04] hggdh: afaict here, in no case does that^ grub upgrade fail act destructively -- other than to overwrite /etc/default/grub. /boot/* remains untouched ... which is ok, until you need it to be. === thebope is now known as thestupid [19:06] when i try to connect to the vpn my ip address does not change. Both with network manager as well as when i try to connect through the terminal. What to do ? === mkquist is now known as God === God is now known as GodofWar === GodofWar is now known as mkquist [19:21] How do I get the live Wayland gestures for switching workspaces? [19:21] I switched from Debian to Ubuntu === thestupid is now known as thelearned [19:21] On Debian, with Wayland, I could use a 4-finger swipe to switch workspaces and the windows would move with my fingers. [19:22] This doesn't happen in Ubuntu [19:30] where can I find a description of the package status prefixes at beggining of each line returned from "apt search" ? === CoffeeVillain is now known as Roey [19:32] peepsalot: it might help to know the exact command you are using so the volunteers know what you are seeing [19:45] hi.. im sharing my internet connection using cable.. and the network manager.. but it does not work with a mobile broad band? only if i share a wifi connected network? :( [19:46] software/configuration issue [19:48] hey guys [19:48] does Ubuntu have issues with x570 mobos? [19:49] I can't shutdown and I can't boot beyond a purple screen [19:49] jrubuntu: There are some known issues with the latest Ryzen Motherboards and CPUs... What version of Ubuntu are you currently running? [19:51] I tried 19.10 and subsequently tried 20.04 [19:51] I'm going to try downloading the image again and reinstalling 19.10 [19:54] jrubuntu: 20.04 is not supported yet, you might have better luck in the 18.04 LTS release. Also, it might be a good idea to use the mini.iso installer instead, which will capture the latest packages as they're installed [19:55] oh cool, didn't know about the mini iso [19:55] Thanks! [19:57] jrubuntu: Was also looking at something else... though the article didn't really give advisement how to get the system up and running in the first place [19:58] Its gotta just be my install, if it flat out didn't work on Ryzen 3000 there would be a riot [19:59] jrubuntu: It would appear you're better off starting with 18.04 LTS [19:59] My wireless doesnt function. I tried to replace drivers. Search reveals problems. Does anyone have a good way to replace the drivers. THanks. (18.04-LTS. HP Probook. Realtek-RTL8723BE PCIe Wireless Network Adapter) [19:59] trying to sort of the kernel recommendation, and how is it that Ubuntu will boot on 18.04 despite having an older kernal than 19.04 and 19.10 [20:01] tripelb: Linux and Ubuntu are not like windows... you don't just replace the drivers if you're having an issue. [20:01] (Guess, not totally backwards compatable. Not being a thoroughly vetted LTS version) pragmaticenigma [20:02] tripelb: I do not understand the context of your comment [20:02] tripelb, I have the same Wifi. [20:02] pragmaticenigma, many people have posted about the problem and posted ways to do it. Another example might be different drivers for Nvidia cards on Ubuntu. [20:03] You need a newer kernel in fact. [20:03] tripelb: Many people "think" they found a solution, but in fact tried a billion things they weren't tracking and suddenly it worked, so they try to half bake an article about it [20:04] I'm not sure the current kernel available on 18.04 fixes the problem with RTL8723BE, i built my own kernel. [20:04] kernels* [20:04] akem hi. I had the low range contrast between windows and ubuntu. After a failed (maybe my fault) reinstall I have no wifi. Now I have home-internet so I am ethernet-connected but the bluetooth capability is in the wifi. So I am very interested. [20:04] tripelb: Opinions aside... you don't just swap drivers... kernels are what support hardware, and often times a kernel update is missing that resolves the issue [20:06] akem_, I am not that advanced. Luckily, before I forgot my win10 password I carved the entire drive into partitions so I can install 19.10 in another partition to check if it solves the problem. (I am afraid to upgrade to 18,10 then 19.04 then 19.10 because of an OOPS) [20:07] akem_, my comment starting with akem hi. meant I reinstalled the drivers (not the OS) [20:07] tripelb, I don't use bluetooth, but the Wifi is now working perfectly from kernel 5.4, maybe even a bit before, i run 5.5.9 right now. With 18.04 you'd need a DKMS and even with that there was some bad memory leaking going on. [20:07] akem_, save me from looking up which Ubuntu has 5.4 ? [20:08] tripelb, 19.10 may solve the problem. [20:08] tripelb, No i mean kernel version 5.X. I would try Ubuntu 19.10. [20:09] I looked it up anyway and:: Ubuntu 19.10 uses the latest Linux kernel 5.3 [20:09] Good, it will work fine. [20:10] how can it be that when i sudo openvpn --config i don't get a new ip address, but when i load the same config in ubuntu network manager the vpn works ?? [20:10] akem_, can I just coput my /home into the 19.10 partition? [20:10] tripelb, Try the live USB and you'll be fixed. [20:10] well I dont want to be tied running from a flash drive. [20:10] tripelb, I think you can do that yes. [20:11] goed zo [20:11] Oh what if I am using a tiling window manager in my new partition akem_ / [20:13] tripelb, What? You need to reinstall the packages you want OFC. Then copy back your home folder it should keep all your config. [20:13] Well I have a bit of careful-work cut out for me then. (I am so happy that I carved my HD into 30G partiions. [20:13] ph88, It will work either ways. [20:14] akem_, thanks. [20:14] * tripelb tips her hat. [20:14] ph88, Double check your config and login/password. [20:14] tripelb, np. [20:28] observation 18.04: when I change my taskbar (lists open windows) panel to the left, all the open windows listings vanish. they reappear when changed back to top or bottom. [20:29] I dont want Unity but I would like the open windows to be listed on the left, or right. [20:37] Bug: Ubuntu won't boot with valve index plugged into Nvidia display port [20:43] that will certainly be annoying come monday :) [20:44] Haha yeap [20:44] I think Ubuntu thinks it's a primary display so the purple screen is just secondary output [20:45] they shipped bionic with a known bug: no display output on docked thinkpad [20:46] so i wouldn't hold my breath with re to a fix by 20.04 release :) [20:46] Lmao [20:48] hey all - when using password protected ssl certs with apache, is it possible to give that password to the unattened-upgrades service in the case it does need to reload/restart the apache service? === thelearned is now known as thebope [20:52] best ubuntu app for simple line drawing. I want to make diagrams. Bonus if I can make a circle automagically. Double bonus if it has layers. (I dont need no fancy stuff.) Thanks. [20:53] Triple if it has layers and graphs. Where else can I ask this question? Where on reddit maybe? [20:53] dia, libre-drw can do it too.. [20:54] any vector graphics app can do that, i guess [20:54] inkscape .. [20:54] what is the name of one that is less heavy please oerheks [20:54] cool. thanks. [21:14] Hi I have an internal WIFI card that connects to the AP fine, but there is no connectivity [21:14] It's a Broadcom card [21:14] how is there no connectivity if it connects just fine [21:14] Do you have an IP? [21:14] Is dhclient running [21:15] Type IP link in terminal [21:15] Sorry, it's associated and has an IP address, but I can't ping anywhere [21:15] ping is not a network test [21:15] do you have a known working resource on the same network, or is this a service which provides internet access [21:15] I have a ubuntu system with a portable drive that acts as a samba mount (and another drive backing up the other drive). I want to encrypt this so if it's plugged into another box it can't easily be accessed. I semi-thought this drive could also be plugged directly into OS X / mac laptop, but that seems more trouble than it's worth. So, I think ext4 + encryption is the answer. Can anyone speak to what's [21:16] involved here? [21:16] Yes I have another resource on the same network [21:16] JadedJ: how do you interact with that resoure normally [21:17] foo, There is the option of veracrypt containers which are crossplatforms. [21:17] akem_: hmm, /me googles [21:17] Try ip route [21:17] What does it say? [21:18] default via 192.168.1.1 dev wlp2s0b1 [21:19] Now try ping 192.168 [21:19] 192.168.1.1 [21:19] ping is not a network test [21:19] I can't ping the default gateway [21:19] akem_: have you used this? [21:19] foo, Yes i use that on my external hard drives. [21:20] Probably because your router doesn't respond to ICMP [21:20] akem_: looks like it's free? Can I use it on an external drive that's used for a samba mount on ubuntu 18.04? [21:21] What's your output for IP address [21:21] The PC I have the issue with is a netbook running ubuntu 18 [21:21] foo, Yes it's free and open source AFAIK, i mount my veracrypt volumes that i used as Samba shares too. [21:21] Love the ip command btw [21:22] I can ping the gateway fine from my Windows laptop [21:22] foo, Just try it, and see if you like it. It can use keyfiles which is pretty cool too. [21:22] Yeah but do you have an IP? [21:22] If you do it should just work.. [21:22] akem_: I mean, are there many other options? eg. zfs encryption probably an option. [21:22] There is Android support too, but the free app version has few limitations like no keyfiles. [21:23] Because it means DHCP is communicating properly === MrLemur4 is now known as MrLemur [21:23] DHCP is working fine [21:24] akem_: interesting. So, you have an encrypt mount on portable drive that you use between os x / linux it sounds like ? [21:24] foo, It's strong encryption you can choose different algorithms, parameters and FS...Try on small containers first, see if it fits your needs. [21:24] foo, Windows Linux and Android. [21:24] So you have an IP? [21:25] foo, But i think it also works on OSX. [21:25] 192.168.1.xxx [21:25] I think it's an issue with the wifi driver [21:25] JadedJ: it's impossible to help you if you don't answer the questions [21:26] you've been asked 3 times if you have an IP and you've not responde [21:26] responded [21:26] Try iwconfig what's the output? [21:26] Yes I have an IP [21:26] what is the IP [21:27] 192.168.1.10 [21:27] does this router provide access to the internet ? [21:27] yes [21:27] can you open the routers admin page in a browser [21:27] No [21:28] (reposting due to been almost an hour): when using password protected ssl certs with apache, is it possible to give that password to the unattened-upgrades service in the case it does need to reload/restart the apache service? [21:28] JadedJ: what are you putting in the browser to validate this [21:28] Can you ping 1.0.0.1 [21:28] ping is not a network test [21:28] can we stop using it please [21:29] actually, carry on, good luck [21:29] ok, what do you suggest instead then ikonia [21:29] :P === akem_ is now known as akem [21:29] Try pong. [21:30] > zsh: command not found: pong [21:30] Lol [21:30] akem, i tried it a few times .. [21:31] It's an old game now, you may need to go back in time to install it :) [21:31] Try tracepath 8.8.8.8 [21:32] Aside from that I'm not sure what the problem could be because you said you have an IP and have not done much to paste your console output so I've got nothing [21:33] Have you tried rebooting your computer? [21:35] https://paste.ubuntu.com/p/tvXxjJ5H9f/ [21:35] there's the output of tracepath [21:35] What's the output of resolvectl status [21:36] resolvectl command not found [21:36] akem: thank you [21:37] What version of Ubuntu are you using? [21:38] ubuntu 18 [21:38] foo, np. [21:38] JadedJ, Can you try to connect on your smartphone Wifi in AP mode to see if you have the same issue? [21:38] Oh okay try systemd-resolved status [21:40] Systemd-resolve --status [21:40] That's the right format afaik [21:41] Resolvectl isn't in 18.04 afaik [21:42] Also show us the output of that and iwconfig [21:47] I've worked out what the problem is [21:48] On the wifi card the connected bit rate occasionaly goes down to 1Mbit, when that happens, even though it's associated with the AP, there is no network connectivity [21:49] weird [21:49] At the moment it's 39Mb/s [21:49] and I have internet connectivity [21:50] I did upgrade from ubuntu 16 to 18 [21:50] I might do a fresh install [21:50] The weird thing is, after the upgrade, my tp-link wifi card worked fine [21:50] But this integrated wifi card, seems to be a real issue on linux [21:50] Odd, you could try a fresh install [21:51] Some of them do yeah [21:51] You could always replace it with an Intel wifi card [21:52] Should just be a little wifi card with a screw [21:52] Yeah I think I'll get a new wifi card [21:52] That's what I did to get bluetooth [21:53] It's an Acer Aspire One AOD270 netbook [21:53] I use it as a server, because the power usage is so good [21:55] It has 4GB of RAM, but the CPU only has support for 2.44GB [22:14] hello I am installing vbox and I have these types of problems, http://dpaste.com/3ZT15TD can someone help me? [22:20] 1 reinstalled, 0 to remove and 152 not upgraded. [22:20] How do I fix this error "The following packages have unmet dependencies: [22:20] linux-image-4.15.0-70-generic : Depends: linux-modules-4.15.0-70-generic but it is not going to be installed [22:20] E: Broken packages [22:20] " [22:21] klinda do a proper update run; apt update && apt dist-upgrade # and reboot [22:21] r416, something tells me there is a apt install -f to correct these problem in that error [22:22] "Errors were encountered while processing: [22:22] linux-image-4.15.0-70-generic [22:22] E: Sub-process /usr/bin/dpkg returned an error code (1) [22:22] " [22:22] http://dpaste.com/3NBBX2K there are serious problem with my distro.. [22:22] idk what happened [22:25] !disco [22:25] Ubuntu 19.04 (Disco Dingo) was the 30th release of Ubuntu, support ended January 2020. see !eol and https://lists.ubuntu.com/archives/ubuntu-security-announce/2020-January/005263.html [22:25] dead, eol [22:25] time to upgrade to 19.10 [22:25] !eolupgrade [22:25] End-Of-Life is when security updates and support for an Ubuntu release stop. Make sure to update Ubuntu before it goes EOL so you get updates promptly for newly-discovered security vulnerabilities. See https://help.ubuntu.com/community/EOL and https://wiki.ubuntu.com/Releases for more info. Looking to upgrade from an EOL release? See https://help.ubuntu.com/community/EOLUpgrades [22:25] cant wait until 20.04 [22:26] theyre never releasing 20.04 [22:26] theyre just messing with us [22:28] here is the full error https://pastebin.com/iCn5gPiV [22:28] Klinda, try: sudo apt update && sudo apt dist-upgrade [22:30] r416, same for you; do a proper update run; apt update && apt dist-upgrade # and reboot [22:30] always upgrade, before installing stuff [22:31] it's downloading the entrie world [22:31] ahah [22:31] same haha [22:32] hello folks. stupid question of the day: Ubuntu 18.04 has as latest OpenSSL version `1.1.1 11 Sep 2018`. is it possible to install the latest version via `apt`? if so, what are the commands I should run? thanks in advance [22:33] I mean to install `1.1.1e` via `apt`. cheers [22:34] PeGaSuS, 1.1.1-1ubuntu2.1~18.04.5 *is* the latest, backported for 18.04 [22:34] hence '1ubuntu2.1' added [22:35] https://launchpad.net/openssl/+packages [22:35] Focal has the d-2ubuntu6 added, same as 1.1.1e [22:37] I see. I thought I was too outdated. thanks [22:42] PeGaSuS, if we keep the debian notation, things get messy [22:46] Is there a good local screen rectangle capture program for ubuntu? Aka, allowing me to select a rectangle on the screen and then write that to disk? [22:47] gnome screenshot can do that, select an area [22:47] standard installed [22:48] also with a timer [22:48] I'm running KDE - how would I start it? [22:48] kde has a screenshot app with that function too? [22:48] I don't know how to start it :/ [22:49] Aleric: Press Logo + Shift + PrtScr [22:49] interesting, it should be in the app menu [22:49] pragmaticenigma: doesn't do anything [22:49] hmm [22:50] let me see if I had to enable something in the settings [22:52] Aleric: It appears that I manually set those shortcuts in Settings => Shortcuts => Global Shortcuts => KDE Daemon [22:53] Aleric: The "Take Active Window Screenshot", "Take Full Screen Shot", "Take Rectangular Region Screenshot" [22:54] http://dpaste.com/0BP4W73 it is the same :/ [22:54] It would appear they aren't enabled by default... I set mine to use the Logo or Meta key to prevent conflicts with other applications [22:55] Klinda, you are still on disco, dead, EOL. [22:55] read the manual. [22:56] !disco [22:56] Ubuntu 19.04 (Disco Dingo) was the 30th release of Ubuntu, support ended January 2020. see !eol and https://lists.ubuntu.com/archives/ubuntu-security-announce/2020-January/005263.html [22:56] Hmm, why doesn't Google have some COVID19 thing in their banner? [22:57] what version of ubuntu I am on? [22:58] Aleric: Please understand this channel is for Ubuntu Support, if you'd like to chat about non-Ubuntu related items, please feel free to join us in #ubuntu-offtopic [22:58] 19.04 [23:00] Klinda, i typed it out, gave the !eol manual.. now you are on your own [23:01] ye ye I am doing it [23:01] pragmaticenigma: I don't have a 'Take Rectangular Region Screenshot' there. [23:04] Aleric: Do you have "Spectacle" installed? [23:06] yes - I suppose I can add a short cut using that and passing --region. Do you also pass --dbus? Or what is running when you take a rect screenshot? [23:07] I am download 19.10 [23:07] Aleric: I'm trying to piece back together what I did to get the feature working [23:09] Oh [23:10] Aleric: Go to: Settings => Shortcuts => Custom Shortcuts ... Do you see an entry in there for "Screenshots" / [23:11] yes [23:11] bit only contains three entries, none is rect. [23:12] Aleric: You have "Start Screenshot Tool", "Take Full Screen Screenshot", and "Take Active Window Screenshot" ? [23:12] yes [23:12] I tried the first, but it doesn't pass --region - so it starts with making a fullscreen shot. [23:12] just hold a moment Aleric [23:14] Aleric: Right click on "Screenshots" and go to: New => Global Shortcut => Send Keyboard Input [23:14] Aleric: Then give it the name "Take Rectangular Region Screenshot" [23:15] Aleric: Then under the Trigger tab, give it the desired keyboard shortcut, preferably "Meta + Shift + Print"" [23:17] Aleric: Under the Action tab: Remote application: org.kde.Spectacle , Remote object: / , Function: RectangularRegion , Arguments: true ... You can then test that things are setup correctly by pressing the "Call" button [23:19] pragmaticenigma: I don't have that though... I can't get further than this: https://gyazo.com/9f1783f0c29fbba336b7b9f0e1245738 [23:20] Oh.. I need 'D-bus command' [23:20] Aleric: yeah... sorry about that... you're correct 'D-bus command' was what was needed [23:29] pragmaticenigma: Clicking 'Call' does nothing :/ [23:29] hi all. Reposting an issue I had yesterday I am trying to install ubuntu to an encrypted root partition (/boot is separate unencrypted, / is encrypted with cryptsetup luks). I managed to install ubuntu to the encrypted partition but I'm having trouble setting up a password prompt to decrypt on boot. I have tried adding an entry to /etc/crypttab and running update-initramfs but I get a couple of errors: [23:29] And I somehow ended up with two 'Take Rectangular Region Screenshot' entries in Global Shortcuts' now :/ [23:29] "cryptsetup: WARNING: Invalid source device UUID={uuid copy-pasted from /etc/fstab}" and "Warning: couldn't identify filesystem type for fsck hook, ignoring" [23:30] pragmaticenigma: https://gyazo.com/2a4f556dd70c5a1028e4c93b4512a27e [23:30] I suspect maybe I haven't put the right entries into /etc/crypttab and /etc/fstab but ive tried a few different things and all give me the same error [23:36] Aleric: Did you delete the one that wasn't correct from the other screen? [23:38] yes [23:38] Seems a bug that it wasn't deleted in Global* [23:39] possibly... I don't think there's any harm in it being there [23:39] it won't trigger [23:39] This is totally over my head [23:39] https://gyazo.com/4d96a9e54ab2c06c5e573a46a5e6ca5b [23:39] wtf adding shortcuts - who came UP with this??? [23:40] Using '--region' as arguments is not correct I suppose? [23:40] Aleric: the values are not correct [23:41] Which is not correct? [23:41] Function: RectangularRegion [23:41] Arguments: true [23:41] Ohhhh [23:43] Cool that seems to work :). However, after I selected a region... how can I save it? [23:43] It allows me now to select a recangular region - and then well.. nothing. [23:44] Press enter when you have the region you want... then, in the upper right hand corner (default position) you will see a dialog appear momentarily [23:44] if you don't take action on it... the picture automatically saves to Pictures [23:45] Awesome, it works. Thanks! [23:46] Aleric: You're welcome! glad I could help [23:51] hello [23:53] Hi. [23:54] I have ? can I use an old desktop environment on a new version of ubuntu [23:54] and if so how? [23:55] more info [23:56] ok like the the old gui on ubuntu 12.04 [23:56] but use it on ubuntu 18.04 [23:56] well unity is dead so you can run the gnome [23:57] current gnome [23:57] kk4ewt: Ubuntu 12.04 didn't run Unity, it was Gnome 2.x [23:57] so gnome 2 the closest thing will be MATE [23:58] There is gnome classic too i think. [23:58] akem gnome2 and gnome3 are worlds apart [23:59] just trying to see if I can use the old gui on the new system [23:59] sonicx: To get the older feel of Ubuntu, you can use "sudo apt ubuntu-mate-desktop" which will install the needed software to present you with a GUI that is familiar to the older Gnome interface [23:59] sonicx; so take a look at MATE spin and see what you think [23:59] !unity | sonicx [23:59] sonicx: Unity is a graphical shell for the GNOME desktop environment. Ubuntu used it by default from 11.04 to 17.04. For more information, see https://wiki.ubuntu.com/Unity