/srv/irclogs.ubuntu.com/2019/08/03/#ubuntu.txt

TJ-sarnold: _Sym_  it's done from ./Kbuild00:00
_Sym_I can't see to figure out what changed to cause this00:02
TJ-sarnold: _Sym_  it's probably failing on 'clean' due to not having run mrproper or prepare, may also be due to doing an out-of-tree build00:02
TJ-_Sym_: are you missing ./Kbuild's "no-clean-files := $(bounds-file) $(offsets-file) $(timeconst-file)"00:02
_Sym_TJ, yes00:03
TJ-_Sym_: I'd suspect your git repo isn't virgin, or you're using some non-standard build tooling00:03
_Sym_oh wait, no00:03
_Sym_sorry00:03
_Sym_its there00:03
_Sym_this happens on a clean repo with no changes00:04
_Sym_I have a legacy kernel project that I know has not changed and its also happening on that one too00:04
TJ-_Sym_: then you've got some implicit/explicit make over-rides going on somewhere00:05
sarnold(fun fact, downloading this .zip was the thing that filled /home :) go figure.)00:06
_Sym_TJ, This is happening on my 4.19.63 kernel for my laptop and also my 3.10.108 kernel for my android device00:07
_Sym_I have not changed anything in the kernel00:08
_Sym_in either kernel00:08
TJ-_Sym_: my best guess is you've got a 'no-clean-files' assignment as "-"00:08
_Sym_it must be some update from the last day or so00:08
_Sym_TJ, its also happens with "make mrproper" command00:09
_Sym_but just "make" does not produce the error00:09
TJ-_Sym_: create a new user account, use it to make, see if it still happens. That'll tell you if it is a per-user or system-wide issue00:10
_Sym_TJ, I figured it out.. :-) it was because of a kernel submodule00:15
_Sym_thanks for helping me00:15
_Sym_thank you too, sarnold00:16
sarnold_Sym_: woo :)00:19
Kevin199Hello, I was wondering if anyone knew who to make a shortcut for terminal. I've seen other people do it where they right-click terminal and a bunch of boxes pop up where they can click on a shortcut00:19
Kevin199google isn't helping very much00:19
coz_Kevin199, where do you want this shortcut to show up?00:20
Kevin199I want a desktop shortcut for irssi(for example)00:20
coz_Kevin199, are you using gnome?00:21
Kevin199Yes00:21
coz_Kevin199, ok, I dont use gnome, but, have you tried dragging the exectable to the deskto? Not sure that works with gnome00:21
Kevin199I'll try00:22
coz_Kevin199, or right click desktop, crate shortcut, type in gnome-terminal00:22
Kevin199What are you using instead of Gnome, I can switch real quick00:23
coz_Kevin199,  I use Mate00:23
Kevin199coz_, let me install that real quick brb00:23
tomreynthe shortcut you create on mate may not work the same way on gnome.00:24
Kevin199I didn't realize Ubuntu Mate was its own Distro00:25
coz_Kevin199,  I believe you can install mate-desktop then log into that, however, I generally don't suggest that. I prefer a cleaner system, if you can define it that way00:27
Kevin199coz_, I'm looking into it right now. I think i might stick to Gnome tho00:29
Kevin199my laptop is only 4GB of ram and apparently Ubtunu Mate runs a minimum of 1GB of ram00:30
scythefwd2if I have automount working for my usb sticks.. and i pull one out (does it dismount automagically as well??) and put in a new one.. will they all use the same /dev/ "name"00:33
scythefwd2like usb stick 1 gets identified as sdb, and sdb1 gets mounted into /media/movies.. if I pull the usb stick, it should umount /media/movies.. and if I plug in usb stick 2.. will it be a the new sdb, or will it take sdc?00:34
scythefwd2I can make em all mount correctly I think using fstab.. but it'd be easier if I could use /dev/sdb1 vs. device ID and a bunch of lines00:35
TJ-scythefwd2: you should not PULL it out without unmounting/ejecting it first via software00:35
scythefwd2If you can suggest a way to do that via a kodi interface using a joystick.. I'll be very glad to hear it00:35
TJ-scythefwd2: removable media devices are handled by udisks, and it mounts them under /media/$USER/ with either the file-system label or the UUID00:35
scythefwd2well thats not gonna work..00:36
TJ-scythefwd2: that's something to ask the Kodi project about but if you do pull the device expect file-system damage00:36
TJ-scythefwd2: it sounds like something else might be responsible if they're being mounted directly under /media/00:37
scythefwd2they're read only as it is.. so I'm not particularly worried about that (nor the data on them.. they'll be copies of movies)00:37
scythefwd2they're not, atm.. I was thinking I could make that happen though.. I'll gladly accept I'm wrong though00:37
TJ-scythefwd2: despite read-only the Fs metadata is updated00:37
scythefwd2but I need them  to all mount to same dir for my idea to work.. I'll see if there is a way to do it having it check /media/$user/ as a parent and scan sub dirs00:38
TJ-scythefwd2: possibly you can add a service unit that creates/removes a symlink when udisks mounts a device00:41
scythefwd2possible.. that shouldnt enough extra load to it to be problematic00:42
TJ-scythefwd2: you might be able to use the udisks HintName and/or the udev UDISKS_NAME00:42
scythefwd2Yeah, you just went right past my head there lol00:43
scythefwd2I'm new, very new to linux00:43
TJ-scythefwd2: or you could just ensure all your USB devices have the same file-system label00:43
scythefwd2that should be easy enough00:43
sarnoldheh, I like that one :)00:43
scythefwd2wonder if its possible to alias a button press to a umount command (remember.. only a game pad hooked up here)00:44
TJ-scythefwd2: I don't use kodi so no idea but the principle sounds good00:45
scythefwd2I'm kinda hoping it lets be do it at the os level lol. kodi is more of a wm00:45
DOSfanreboot ...00:46
scythefwd2but I'm running on a pi zero.. so gotta keep it TRIM00:46
TJ-scythefwd2: maybe this will get you started: https://kodi.wiki/view/Built-in_scripting00:47
TJ-scythefwd2: section 4 shows a gamepad example00:47
scythefwd2thanks.. I was planning on bugging them next lol.. figured these questions were more os level00:47
TJ-scythefwd2: from there I find RunScript(script[,args]*) on  https://kodi.wiki/view/List_of_built-in_functions00:48
TJ-scythefwd2: and further down that page is "System.Exec(exec)"00:49
scythefwd2thanks.. looks like I get a bit of digging in there still todo before I start building00:49
scythefwd2I came in here half expecting .. yeah, it doesnt work like that, and what you want to do isnt possible00:50
scythefwd2so this was a much better result00:50
scythefwd2thanks00:50
stewie925hello guys, I have created a VM using ubuntu 18.04  server01:24
stewie925I set up my proxies and all,   but when i do sudo apt-get update,  I am getting "temporary failure resolving <proxy URL>"01:25
TJ-stewie925: DNS issue01:25
stewie925oh01:25
stewie925qq, TJ, when i was in the ubuntu 18.04 installation process,  there was a part where it gave an option to install  OpenSSHServer (which I did click), but  there is also a DNS Server option, should I have clicked it?01:26
TJ-stewie925: no, 'server' means it answer requests. The issue you've there is the local resolver client cannot find the proxy name when it queries your network's DNS server (which is usually given out by DHCP)01:27
kemistenhi where is my custom binds located. i mean if i run bind '"k":"apa"'01:29
kemistenwhere do linux ssave that custom bind01:29
sarnoldkemisten: what tool did you use?01:30
kemistensarnold, "bind '"key":"string"'01:31
kemistensarnold, bind '"key":"string"' is the cxommand01:31
malinalong working windows kvm/qemu guest suddenly won't work as it used to. any ubuntu devs which know the qemu thing well which are helping here I could IM?01:33
malinawith more technical details and so on.01:33
sarnoldkemisten: I can't find a bind executable in ubuntu; what package provides it?01:34
kemistensarnold,  just type bind '"k":"test"'01:35
kemistenit will work01:35
TJ-sounds like an option of a specific program01:35
kemistentested my self01:35
TJ-kemisten: what does "cat /etc/issue" report?01:36
sarnoldkemisten: AHHHH! :D01:36
sarnoldkemisten: moment01:36
malinatestill -9 lolz01:36
malinaok so no official help with upgrades of qemu/libvirt packages or sudden borks of people's libvirt machiens. yikes.. back to the old fashioned 9 hrs of dismantlig ubutnu automagic01:37
sarnoldkemisten: thanks for persevering :D  it never crossed my mind that this would be a shell builtin. sorry.01:38
kemistenUbuntu 19.04 \n \l01:38
TJ-kemisten: so you're on about the BASH "bind" built-in ?01:38
sarnoldkemisten: so -- if you just this, all on its own, it's not going to be saved anywhere; it's only going to affect the process that you ran it in, and it's not going to be saved automatically01:38
kemistenive not installed anyuy package for running bind kommaNDF IT CAMES WITH DEBIAN,RASPBIAN AND UBUNTU IT SEEMS01:39
TJ-kemisten: see "man bash" and the " Readline Initialization" section, they are read from the readline config file ~/.inputrc01:40
metresHello, just installed Disco Dingo and tryng to run docker... I install the docker.io package, started a docker using "docker run ..." and I am unable to stop it with ctrl+c or with docker stop with the container id... any clue..?01:54
sarnold^\ may do it01:54
sarnoldif not, ps auxw to find the pid, kill -901:54
stewie925I was just googling regarding the "temporary failure resolving " issue - it pointed me to updating /etc/resolv.conf ,   but for 18.04 it always revert to original after I reboot01:56
metresthanks sarnold it worked, but it's kind of heavy...01:57
TJ-stewie925: that is bad advice, don't mess with /etc/resolv.conf, fix the underlying issue which is the name not being found01:58
sarnoldmetres: yeah, there *really* should be a better way to kill things. I'm not sure where to suggest to find out though.. it might be worth a bug report if you can't find something01:58
stewie925TJ-: thank you , let me find that01:59
TJ-stewie925: try "systemd-resolve <proxy-name>" see what it reports, and if it fails, check the log file for clues with "journalctl -n 25 -u systemd-resolved"02:01
=== [b0b] is now known as b0b
stewie925TJ-:  thanks again - just got back, checking right noe02:13
stewie925*now02:14
stewie925the "system-resolve <proxy URL> " seems to be lagging02:14
stewie925oops systems-resolve i mean02:14
stewie925systemd-resolve (typo)02:15
stewie925just failed now with "query timed out " - checking the log02:15
TJ-stewie925: check the NSSwitch config "grep 'hosts:' /etc/nsswitch.conf"02:16
stewie925hosts:           files dns02:17
stewie925is what I see in the nsswitch.conf file02:18
TJ-stewie925: so it first looks in /etc/hosts then it uses the local dns resolver stub, which will be systemd-resolved which is referenced in /etc/resolv.conf (which is a symbolic-link) and should contain "nameserver 127.0.0.53"02:19
TJ-stewie925: if the PC is getting its IP address via DHCP then the nameserver provided by DHCP will be given to systemd-resolved to use, you can check what the upstream DNS server addresses are with "systemd-resolve --status"02:21
humanBirdso i did a sudo apt install libopencv3.2-java and now i don't have a .so file in lib02:28
humanBirdwhat did this actually do?02:28
humanBirddpkg -L libopencv3.2-java showed a bunch of jar fles ut no .so file02:28
OerHeksiirc A libopencv_javaXXX.so will be in /usr/lib/jni, to where you have to symbolical link libopencv_java.so.02:31
OerHekssudo ln -s /usr/lib/jni/libopencv_java320.so /usr/lib/libopencv_java.so as example from https://sikulix-2014.readthedocs.io/en/latest/newslinux.html02:32
humanBirdhrm. i wonder why it doesn't just put it in /usr/lib/02:35
OerHeksmaybe it just gives back control02:41
=== guiverc2 is now known as guiverc
QRhi. im curious if 'ufw allow ssh' enables firewall only port 22 tcp or any another port we replaced for 22 too?03:19
tomreynQR: how do you mean "any other port we replaced for 22"?03:50
QRtomreyn: i changed ssh port from 22 to another number.03:55
QR'ufw allow ssh' will cover new ssh port number? or its designed for default port 22 only ?03:57
tomreynQR: UFW has a concept of something like service / application descriptions / profiles (i forgot the proper name it uses). one of those is for the ssh service, defining that it listens on 22/TCP. you should be able to find those in /etc/ufw, i think04:00
tomreyn(and be able to edit them as needed)04:00
tomreynthat's all from memory, haven't used ufw in a while04:01
DOSfanquestion: Does anyone know if a recient change/update is now making a Grub popup menu prior to Ubuntu booting? ... I'm having trouble with a computer running Ubuntu ver 16.04 booting anymore :\04:02
DOSfanI'll check back for any replys ... thanks.04:04
QRtomreyn: yes but this command covers for default 22 port only? otherwise i'll specify the port without type ssh04:06
deltabyeah, /etc/ufw/applications.d/openssh-server04:09
tomreynQR: yes, 22 by default. and deltab just pointed you to the file which defines it.04:10
QRdeltab: ok then 'ufw allow ssh' command only covers port 22/tcp. i thought it should cover other port after i changed 22 to something else too.04:22
deltabI'd expect so too04:22
deltabI don't know much about ufw04:23
QRtomreyn: i tested now but firewall didn't stop me04:23
QRi didn't add new port for lfw as rule after changed ssh port. and i could login without problem04:23
tomreynQR: do you mean s/lfw/ufw/?04:25
QRufw yes.  sorry  :)04:26
tomreynQR: /etc/ufw/applications.d/openssh-server won't magically change after you make openssh-server listen on a different (or additional) port. personally i'd not edit /etc/ufw/applications.d/* and just put the specific port that's being used in the ufw rules.04:26
deltabdid you use  ufw app update ?04:27
tomreynyou may also need to    systemctl reload ufw    if it's implemented as a systemd unit04:27
QRfirst time using ufw and Ubuntu. trying to secure system. 2018 lts has systemctl ?04:28
QRdeltab: didn't do it04:29
tomreynubuntu 18.04 uses systemd and thus systemctl, yes.04:29
QRi didn't edit /etc/ufw/applications.d/openssh-server file. it shows ssh 22/tcp still. but i use another ssh port to login and ufw didn't stop me.04:30
QRdeltab: 'ufw app update' command returned as invalid syntax.04:32
deltabit needs a name (or 'all') and is used when you've edited the file04:33
deltabsorry I misunderstood what you meant about changing 22 to something else04:34
QRchanged ssh port 22 to something else at /etc/ssh/sshd_config04:35
QRi'm curious if 'ufw allow ssh' command will cover new port too? or only old port as ssh has predefined 22 port in ufw config.04:37
deltab"Users  can  specify rules using either a simple syntax or a full syntax. The simple syntax only specifies the port and optionally the protocol"04:48
deltabI think it looks up ssh in /etc/services04:48
deltaboh, there is also  ufw allow <name>  to use an app04:50
deltabbut I think the app's name is openssh-server, not ssh04:50
gvvg_Hi - It looks like by changing something in my main.cf file for postfix it won't start - not sure how to debug the issue - any suggestions - sorry for a basic question04:57
QRdeltab: in web i read it as ssh. not openssh-server05:00
deltabtry  ufw app info ssh05:01
QRdeltab: couldn't find profile ssh05:14
QRsudo ufw allow ssh (Checks the /etc/services file on your system for the port that SSH requires and allows it. Many common services are listed in this file.)05:14
QRi checked services file says 22. so i deleted ssh rule for ufw and added port manually05:15
QRi see that predefined rules static and not changing when i changed defaults. so its better to specify everything by self instead of typing service names to be sure.05:16
mvkdevi reinstalled ubuntu-desktop, because upgrading 18.04 to 19.04 broke my startx (didnt get a display, no error in Xorg.log either)05:39
mvkdevnow my desktop looks blerg!? https://pasteboard.co/IqW61b3.png     what happened?05:39
OerHeksthat looks like vanilla gnome3, gnome session, logout, click your username, and change to ubuntu05:43
SaEeDIRHAhello guys , i am trying to run VNC server on my desktop, but when i follow this "https://www.digitalocean.com/community/tutorials/how-to-install-and-configure-vnc-on-ubuntu-18-04" the VNC Server works fine but when i loggin it does not show the User's main desktop05:55
SaEeDIRHAinstead it loads a default gnome desktop session and all the icons i added to desktop is missing05:56
SaEeDIRHAdo you know how is it possible to load the User's main desktop when vnc connected ? instead of empty desktop05:56
genewitchi have a folder that i use for a cifs mount /mnt/steam and it's showing up size 0 on ls -al. it's not mounted, i can't rm -rf it, is there a better way to nuke the folder/directory?05:58
genewitch"cannot remove 'steam' : Device or resource busy"05:58
mvkdevOerHeks dankjewel!!!!05:59
genewitchoh when i upgraded from 16.04 to 18.04 cifs-utils got deleted/purged somehow, but the fstab entry still automounted it06:15
genewitchsomehow? that's a bug, right?06:15
genewitchso the directory was just "resource busy"06:15
leeijawIs there anyone experiencing problem with right click context menu in 18.04?07:56
leeijawAcross many software, when I right click to open a context menu, it sometimes auto-click the menu item. This was really frustrating.07:57
leeijawI often ended up opening a new window or open inspector when right-clicking under firefox.07:58
leeijawI also experience this when using other apps.07:58
leeijawI suppose this is due to wrong positioning of the context menu.08:10
friendlyguyhi there! i am wondering if there is a option for cifs that allows ... "reconnect". for example: i mount smb-shares on my laptop when i am on wifi with vpn. when i come back to my office, i plug in a wire and would like to continue using the share, but via wire.09:00
friendlyguyi just tried, it doesn`t work at the moment09:01
friendlyguyplugged in the cable, made sure i received a dhcp-lease, then disconnected vpn and wifi.09:01
friendlyguywhen i now try to ls the mounted share... the console hangs09:02
friendlyguymy current options are: noauto,users,nobrl,soft,vers=2.109:02
friendlyguyis this just known broken?09:04
darkmesonIf it doesn't respond to a signal like HUP, you'd need to either have your network manager, ifup script, or similar fire a mount -o remount (WITH password in a file somewhere safe and accessible, if required!) or unmount and remount the share, or use an automounter daemon09:41
friendlyguydarkmeson: i just tried a mount -o remount ... that also hangs itself up09:43
darkmesonyou'll probably have to umount -l <mnt>; mount <mnt> then09:44
darkmesonand if that doesn't work, there's also fusesmb. FUSE-based filesystems tend to lose a decent bit of performance, but it doesn't matter nearly as much for slow network filesystems09:45
friendlyguyyeah, the umount also hangs09:45
friendlyguywhat a pain09:45
darkmesonand, of course, you always have veto power since you can always kick the daemon out from under the mount with kill -9 and THEN unmount09:45
friendlyguywhat i dont understand: under windows the same procedure is working absolutely transparent out of the box. i doesnt even take a second. i plug in a network cable and it automatically switches to the wired network, even open files dont cause an issue. what kind of snake oil is that?09:49
darkmesonpersonally, I only use sshfs anymore. Windows has mingw/cygwin+openssh, and Android has the same stacks as GNU/Linux without too much more effort (than stock GNU/Linux)09:49
friendlyguysshfs is to slow for me09:49
darkmesondavfs2 then. windows has native support for that, and apache, nginx, etc, have native builds for Windows and about everything else09:50
friendlyguy(can you saturate a gig with sshfs?)09:50
darkmesonlately, yes. they fixed that several years ago09:51
friendlyguynot even thinking about 10g :)09:51
darkmesonyour question is a bit loaded whether you realized it or not though (heavily hardware/configuration-dependent)09:52
friendlyguyi didnt :)09:52
friendlyguyi like smb, especially modern versions of it. smb multichannel, smb direct stuff like that09:53
darkmesonI think it actually has support for the 'fsc' mount option these days ("FSCache"), so than and cachefilesd might help if there's enough local storage for the hot data and the workload is mostly read-dominated09:54
darkmesons/so than/so that/09:54
darkmesonIt always amuses me how people get sucked in by marketing terms like that09:55
friendlyguywell, its really nice in real world to09:56
darkmesonthey wade just far enough into the shallow end of psychology to get people believing their too smart by half solutions are easier and more straightforward, when the reality is anything but09:57
friendlyguyi do have infiniband connections, i do have multiple 10g links to my servers09:57
darkmesoninfiniband is nice, but that just moves the bottleneck to the slow disks unless they're in a dangerously large array with inadequate redundancy09:58
friendlyguy... or one uses nvme ;)09:58
darkmesonalways loved the rdma mechanisms too, but that's just a multisystem exploit waiting to happen. Especially in this day and age09:59
friendlyguyyup09:59
Junkahi buntus09:59
darkmesonif there was budget to go IB (even if only 10g) AND solid state, then why are you cheaping out on the fs? :P10:00
friendlyguyib is actually 40g, but the access layer is 10g ethernet10:01
darkmesonanyway, keep fusesmb in mind just in case ;)10:01
friendlyguyill try for sure10:01
* darkmeson got dual port DDR pulls cheap enough years ago, but ~$35 per 3-6ft, inflexible cable was total bullshit10:03
friendlyguyfunny, got the same stuff laying around10:03
darkmesonthen there's also the fact that the PCIE bus overhead effectively capped the theoretical max at about 16G10:03
friendlyguythose were my first tests with ib10:04
friendlyguyhuh? i never noticed that, did you get the cards with x4/x8?10:04
rudeguyhey guys, whenever i turn on my computer and log in, i always get this error: https://imgur.com/YKIHwJ510:05
friendlyguythe mellanox ones or?10:05
rudeguyhow can i fix it?10:05
darkmesonlike I said, it's PCIE bus overhead, so no getting around it no matter what10:05
darkmesonand yes, they're mellanox. who else? :)10:06
darkmesonrudeguy: can't load that (easily) atm. grub boot prompt, or?10:06
friendlyguywell, if pcie bandwidth + overhead > nic speed: there you go. doesn`t matter10:06
darkmesonIn practice, other components like slow SBs are going to matter more anyway10:07
rudeguydarkmeson: no, it's ubuntu's usual crash window. it says dbus-daemon crashed10:07
rudeguywhat exactly is dbus, anyway?10:10
darkmesonInteresting. I'd been having issues like that too, but I figured it was some of the other unusual things I was doing10:10
darkmesondbus is roughly the GNU/Linux equivalent of Android's intent system, only more horribly insecure and broken10:11
darkmesonmost distros still run it as the user 'messagebus", which is a bit more telling10:11
darkmeson(because it started life as a generic message bus for generalized IPC, kind of)10:12
darkmesontechnically, you can do without it IF you avoid the major DEs like Gnome/KDE, but systemctl will throw tantrums and some parts of systemd won't work10:14
darkmeson(all the useless parts that have nothing to do with init responsibilities and contribute nothing anyway)10:16
darkmesonanyway, head over to freedesktop.org if you want actual specs and so forth10:16
darkmesonas far as dbus crashing, the only thing I can suggest there is to 'cat /var/lib/dbus/machine-id' and make sure it exists and has a string in it10:19
rudeguyi see...10:20
rudeguyit does have a string in it10:21
darkmesonno, I guess I can also suggest "ps aux |grep dbus-daemon" to get the exact dbus command invocation and running it manually if/when it fails and doesn't come back. understanding what you'll be seeing is a bit more involved there, though10:21
tomreynrudeguy: you can see your systems' past reports by running:   x-www-browser https://errors.ubuntu.com/user/$(sudo cat /var/lib/whoopsie/whoopsie-id)10:25
=== jstein_ is now known as jstein
=== im0nde_ is now known as im0nde
jackjohnanyone facing LAN connectivity issue  with 19.0411:28
jackjohnhttps://askubuntu.com/questions/1135412/updated-to-19-04-and-no-ethernet-now11:28
Jonno_FTWhello11:38
BluesKajHowdy folks11:47
jrgweird. why does it keep rejoining channels? heh11:53
metresHello, I am having a weird issue... I have two screen, a VGA and a DVI. when both are connected on boot, only the DVI get a display after choosing the grub entry but if I only connect the VGA I can plug the DVI one once I am log in and everything works fine...Anyone got an idea?12:32
ioriametres, are you using gdm3 as display manager ?12:34
metresioria: sddm12:36
Kevin199Hello, I was wondering if anyone here knows how to make a Keyboard shortcut to open Terminal in Ubuntu Gnome12:36
ioriametres, no idea then12:36
Kevin199I go to Device, then Keyboad, then scroll down and clicked the + button. But I don't know what to put as a command12:37
metreshttps://help.ubuntu.com/stable/ubuntu-help/keyboard-shortcuts-set.html.en12:39
ioriaKevin199, you know that it's already set  with ctrl+alt+t ?12:41
metresKevin199: gnome-terminal ?12:41
Kevin199I'm very new to Linux12:42
Kevin199I don't 100% understand12:42
Kevin199ioria, ty12:42
ioriaKevin199, ok12:42
ioriametres, are you using proprietary video drivers ? i mean, do you have an nvidia card ?12:48
Kevin199I got it to work, ty for the link12:50
metresioria: no dedictated graphic cards, I got a amd APU12:54
metresI wonder if I change the cable on one screen from vga to hdmi and then both screen will receive digital signal...12:56
metresOn another hand, apparmor seems to do not work well with docker... I can run container but it prevent me to stop them,12:59
lberndHi! Could somebody please help me with fsck? I found a corrupt file on ext4 partition. The partition is mountable, still I want to repair it. The command fsck -p shows "inode has corrupt extent header". Is the next best step to "Clear inode" with answering yes? Thank you in advance for any hint!13:01
kek_hi I'm on ubuntu server and installed the ubuntu desktop minimal (since my friend wants a DE) and when I boot I get to the display manager. How can I switch to the terminal? ctrl alt f1 doesnt do anything13:32
TJ-kek_: the GUI is on tty1, use tty2 through tty6 with Ctrl+Alt+F2 through F613:34
kek_TJ-, ah it worked when I switched my keyboard ty13:37
vincenzomlHi, is there a command to reboot in a specific grub entry (and to list them all?). I only have bluetooth keyboard so I can't select an instance at boot13:53
transhumanistHi! I have two issues 1) gurb wont install into a hard disk that has been RECYCLED from a buffalo terastation (I think this is a sector size issue (low level format) ) cant find any utility that takes care of this (not even sure if its still possible on 1TB disks its toshiba disks (4) of them  2) want to install grub from the installer live cd in the terminal to see what errors it generates...complains about a /cow when I issue 14:14
transhumanist-install /dev/sdb , I don't think I have to jump over the moon to do this but pretty close!!! Anyone know how to solve either errors?14:14
TJ-transhumanist: you need to mount the choort at /target correctly to do grub-install correctly from within the chroot14:19
TJ-transhumanist: " for n in proc sys dev etc/resolv.conf; do sudo mount --rbind /$n /target/$n; done"  then "sudo chroot /target grub-install -v /dev/sdb |& tee /tmp/grub-install.log" then "pastebinit /tmp/grub-install.log"14:21
transhumanistthanks TJ will do that and come back14:28
sylarioHi14:41
sylarioI want to add a shortcut to my blender install in the launch bar.14:43
sylarioI cannot drag and drop and there is no option on the right click menu related to shortcuts14:44
d3vnu11test14:46
M_aDd3vnu11: test elsewhere14:46
d3vnu11:(14:47
parak0vskyAm looking for a method to permanently bind caps lock to home without remapping the whole damn keyboard14:59
ioriaparak0vsky, switch 66 to 110 : http://xahlee.info/linux/linux_capslock_do_home_key.html15:18
wondowsI hate when this happens... everything was working fine... then I start my PC the other day and everything is messed up. My monitors are not being recognized property, I don't have full resolution... wtf?15:28
wondowsI don't even know where to start15:28
lotuspsychjewondows: ubuntu version? kernel version?15:29
wondowslotuspsychje 18.0415:40
tomreynwondows: make sure you do the apport-collect while running the kernel version causing the problem, not the 4.18 version which worked well15:40
wondowstomreyn I don't know what that is15:41
immuhi lotuspsychje15:41
immuducasse, hi15:41
wondowsomg.. cant believe I'll have to spend hours trying to fix this...my day is ruined15:41
lotuspsychjewondows: start your system in recoverymode15:41
lotuspsychjewondows: and share your dmesg in a pastebin please15:42
tomreynwondows: ok, i assumed you had filed a bug since one which sounds similar was filed around the same time you discussed your experiences here.15:42
wondowsdmesg shows me plenty of these messages https://paste.ubuntu.com/p/ZCWHxHVZFS/15:45
wondowsnot in recovery mode btw15:45
lotuspsychjewondows: whats your nvidia chipset please15:51
tomreynwondows: read the ATTENTION paragraph at https://usn.ubuntu.com/4069-2/15:52
wondowsso what?15:54
wondowsit's a RTX 2080ti15:54
tomreynwondows: i'm guessing that you run 18.04 with HWE and got the 5.x HWE kernel15:54
wondowsguess it updated itself15:55
wondowswhat can I do?15:55
wondowsupdate to 19?15:55
lotuspsychjewondows: try the latest nvidia driver from the ubuntu graphics ppa, from !nomodeset15:55
lotuspsychje!nvidia | wondows15:56
ubottuwondows: For nvidia and matrox graphics cards, see https://help.ubuntu.com/community/VideoDriverHowto . For AMD/ATI graphics cards, see « /msg ubottu ati » and « /msg ubottu fglrxmissing » For the latest Nvidia drivers see https://launchpad.net/~graphics-drivers/+archive/ubuntu/ppa15:56
tomreynwondows: before you last rebooted, was this the problematic boot?15:56
wondowsit just happened15:57
tomreynwondows: actually you probably just need to upgrade nvidia drivers, yes. if you don't mind, post    journalctl -b | nc termbin.com 999915:58
tomreynhmm no this message suggests user space has nvidia driver version 430.26 but kernel has 418.56. so the nvidia driver was updated, but the kernel module needs to be upgraded, yet16:00
tomreynwhich probably means you need to    sudo update-initramfs -c -k 5.0.0-23-generic16:01
wondowsuname -r prints 5.0.0-23-generic16:01
tomreynso i guessed that version right16:02
wondowswhat does that do?16:02
wondows"update-initramfs: Generating /boot/initrd.img-5.0.0-23-generic"16:02
tomreynregenerate the initial ramdisk. i'm not certain that's where the updated nvidia kernel module needs to be, but can't think of anything else right now.16:03
wondowsso should I reboot?16:04
tomreynyes, shouldnt get worse16:04
TJ-tomreyn: the ATTENTION about 3rd party is for the DKMS (re)build of the module I'd expect16:07
tomreynTJ-: but are nvidia modules rebuilt via dkms? despite lack of source?16:07
wondowshave no idea how you guys figure this out16:07
wondowsthat worked16:08
wondowsI'll never understand this16:08
TJ-tomreyn: the shim is I think16:08
wondowsthanks16:08
TJ-tomreyn: not used nvidia drivers in a long time though so it may have changed16:09
tomreynTJ-: apprently it still helped, so my suspicion is the module was already there but dkms occurred after update-initram (due to kernel image update)16:09
TJ-!info nvidia-dkms-41516:09
tomreyn...when updates were installed16:09
ubottuPackage nvidia-dkms-415 does not exist in bionic16:09
tomreynwondows: i was really guessing,16:09
TJ-!info nvidia-dkms-43016:10
ubottuPackage nvidia-dkms-430 does not exist in bionic16:10
TJ-what's up with ubottu? that does exist! 430.26-0ubuntu0.18.04.2 ->  500 http://gb.archive.ubuntu.com/ubuntu bionic-proposed/multiverse amd64 Packages16:11
tomreynthere's only nvidia-dkms-39016:11
tomreyn...in bionic16:11
tomreynoh in -proposed16:12
tomreynhttps://packages.ubuntu.com/search?keywords=nvidia-dkms-43016:13
TJ-tomreyn: I'd guess that DKMS did (re)build but the new module wasn't added to the initiamramfs16:13
TJ-grrr, typos galore today16:14
rj1705Hello everyone, I am currently having issues with my Dell XPS and Dell D6000 dock. It was working for weeks until last night when it suddenly stopped. If I have it plugged in when booting I get dropped to the maintanance shell, but after pressing ctrl+d it boots fine.16:14
tomreynTJ-: yes, that's what i meant by: "my suspicion is the module was already there but dkms occurred after update-initram (due to kernel image update) ...when updates were installed"16:15
TJ-tomreyn: aha :)16:15
tomreynyou expressed it better :)16:15
TJ-my eyes are suffering much blurring today I think I'm missing a lot!16:15
tomreynget well soon.16:17
rj1705I should menton that I was running 18;04 now upgraded to 19.04 but the issue still exists16:17
tomreynrj1705: can you reboot twice, once while connected to the dock, once while not? and when you enter the maintenance shell, type    echo $REASON    and note down any output (if any), and then continue to boot?16:21
=== jstein_ is now known as jstein
rj1705tomreyn sure, I'll go do that now16:22
tomreynrj1705: and when you're done with those two boots, post   journalctl -b -1 | nc termbin.com 9999; journalctl -b | nc termbin.com 999916:22
rj1705ok :)16:23
rj1705tomreyn do that once I get back into my system?16:23
tomreynafter those two boots, yes16:23
tomreyni can remind you about those commands when you'll be back16:24
rj170if I echo $REASON nothing comes back16:31
rj170@tomreyn could you send me those commands again when you have a chance :)16:32
tomreynrj170: journalctl -b -1 | nc termbin.com 9999; journalctl -b | nc termbin.com 999916:33
tomreynso the difference is just "-1"16:33
StephenLynxhey, I think ubuntu's virtualbox package broke with a kernel update recently. In the end it complained about number of arguments when compiling something related to dkms.16:33
StephenLynxwhen I added oracle's repo and installed virtualbox 6, everything worked.16:33
abdulhakeemi wiped out and reinstalled my LAMP stack on my ubuntu server via tasksel, but now i can't ssh into the server anymore, keeps saying connection refused. Idk what I did16:34
tomreynrj170: this posts your full kernel log from last but one (-b -1) and the latest / current (-b) boot to termbin.com, a !pastebin like site.16:34
abdulhakeemdidnt think LAMP and ssh had anything to do with each other16:34
tomreynabdulhakeem: theyy don't, ssh also works in the dark.16:35
rj170@tomreyn https://termbin.com/jfid16:36
abdulhakeemhnn16:36
abdulhakeemhmm**16:36
tomreynabdulhakeem: is openssh-server installed then?16:36
eelstreborno matter what i do i always get this message with respin: https://pastebin.ubuntu.com/p/3dczBY4tqd/16:36
abdulhakeemi would think so because it was working before16:37
tomreynrj170: so https://termbin.com/jfid is the output of "journalctl -b -1 | nc termbin.com 9999", your last but one boot, with the docking station connected, where you were dropped to the maintenance shell and continued?16:38
tomreynabdulhakeem: does    dpkg -l openssh-server    say 'ii' in the beginning?16:39
rj170@tomreyn Yup docking station connected drop to the maintenance shell, ran echo $REASON but nothing came back, then hit ctrl+d and the machine booted fine but monitors not working from the dock16:42
tomreynrj170: okay, and the other log?16:43
ChiLLabiSI think i ran into a bug, tried this: sudo apt install --reinstall xserver-xorg-video-amdgpu . And got https://termbin.com/yovx16:47
ChiLLabiSFresh install of Ubuntu 18.04 LTS16:49
rj170@tomreyn sorry I think I mistook your instructions, I ran both those commands as one with a ; between16:49
tomreynrj170: okay, how often did you boot since?16:50
rj170I havent Lucky I have two laptops that I can use ha16:50
tomreynrj170: "ha"?16:50
tomreynoh that's an expression of relief, i assume.16:51
rj170@tomreyn sorry yes it is :)16:51
rj170Means I can stay on IRC on one whilst trying to fix the other16:51
rj170When I try running journalctl -b -1 I get 'Specifying boot ID or boot offset has no effect, no peersistent jounal was found'16:52
ioriarj170, have you tried to boot an older kernel ? 4.15 or 418 if you still have it ofc16:52
tomreynrj170: so i don't knwo which of those boots is uggested you'd do the log you posted is of . but we can just sort this out later. as a reminder, here's what i had suggested you'd do:  <tomreyn> rj1705: can you reboot twice, once while connected to the dock, once while not? and when you enter the maintenance shell, type    echo $REASON    and note down any output (if any), and then continue to boot?16:52
tomreynrj170: oh oyu have no persistent journal, then this wont work16:53
tomreynrj170: that's strange since it should be default on 19.0416:54
rj170I should also point out I have recently moved my root partition to LVM16:55
rj170One second just booting again16:55
tomreynrj170: so my understanding is that what you posted at https://termbin.com/jfid must is the log from the current boot, which you did with the docking station connected.16:56
rj170No thats with it disconnected16:56
tomreynthis line from the log supports this:   systemd-udevd[383]: Spawned process '/opt/displaylink/udev.sh /dev usb-004-003-DisplayLink_Dell_Universal_Dock_D6000_1711034143 /dev/bus/usb/004/003' [445] is taking longer than 59s to complete16:56
rj170I'm just booting back up with it connected16:56
tomreynthat's weird, since you said     Yup docking station connected drop to the maintenance shell, ran echo $REASON but nothing came back, then hit ctrl+d and the machine booted fine but monitors not working from the dock16:57
tomreynthis suggests you must have booted with the docking station connected since we first talked.16:57
tomreynrj170: i suspect you 'just' need to update your displaylink driver https://www.displaylink.com/downloads/ubuntu17:00
tomreynuse the one directly from dell instead if there is one17:00
rj170@tomreyn https://termbin.com/cs3s this is the output of journalctl -b from the maintanance shell. I ran journalctl -b > filename.txt in the shell, booted then nc'd the file contents17:02
tomreynrj170: thanks17:03
ioriaDependency failed for File System Check on /dev/mapper ... sounds not good17:07
rj170If the easiest thing is going to be reinstalling it im not that bothered. Most of my stuff is in git anyway17:08
tomreynrj170: do you know how the drivers you have in /opt were installed intially?17:10
rj170Yeah they were from displaylink.com's website. I installed them myself by downloading the zip and running the .run file17:11
tomreynChiLLabiS: what is the 'bug' you ran into, prompting you to (re)install xserver-xorg-video-amdgpu? what does     lsb_release -ds     report is the exact ubuntu version you're running, and which packages does    apt list xserver-xorg xserver-xorg-hwe-18.04    report is [installed]?17:12
tomreynrj170: then follow their documentation to install an update17:12
rj170bit of an update...17:23
rj170I uninstalled the displaylink drivers and now I can boot with the dock attached17:24
tomreynrj170: and it no longer drops you to the early shell, i assume?17:25
rj170Nope, loads up no problem17:26
rj170I've just tried to reinstall the driver and rbeoot but looks like the issue is back again17:26
rj170So by my logic there is something up with the drivers17:26
tomreynwhich driver were you uring there?17:27
tomreyn*using17:27
tomreyndid you read this? <tomreyn> rj170: i suspect you 'just' need to update your displaylink driver https://www.displaylink.com/downloads/ubuntu17:27
rj170Yup, I am using the latest version https://www.displaylink.com/downloads/file?id=136917:28
tomreynso ,yes, contact displaylink support, i guess.17:29
rj170Ok will do :) glad that we managed to get it narrowed down :)17:30
Kevin199Anyone know how to remove the "So and so had joined" and "so and so had quit" on irsi17:38
shiroininjai too would like to know this17:40
parak0vskyioria: it didn't save state after sleep or reboot17:41
OerHeksKevin199, see http://wiki.xkcd.com/irc/hide_join_part_messages17:43
Kevin199OerHeks, ty17:45
shiroininjaOerHeks:you are a god. thank you17:45
OerHekshave fun!17:46
johnjaywhat exactly are these "snap" things? source code or ?17:49
lotuspsychje!snaps | johnjay17:49
ubottujohnjay: Snaps are containerised software packages similar to flatpaks or appimage. For more info, see https://snapcraft.io17:49
lotuspsychjejohnjay: often users can install software with later versions, or software that the apt repos dont have17:52
johnjayhrm. so it's your app + a list of dependencies... but linux distros have different names for deps17:52
johnjayadmittedly i don't know much about how regular linux works eithers17:52
johnjaybut i assume the app has the shared library names compiled into the binary17:53
johnjayand then the OS looks for those shared libs in the $LD_PATH or something17:53
OerHeksno, it is all in the container17:53
OerHeksit is like PPA's, one needs to trust the maintainer17:54
Gaming4JCdeb are properly compiled packages for your distro (ubuntu in this case, but can also be debian). Snaps/FlatPacks are pre-compiled binary stuck in a container and not optimized for your distro17:54
Gaming4JCbut they can run pretty much everywhere17:54
johnjayall the deps are included with the snap?17:57
johnjayo_o17:57
Gaming4JCit's pretty bloated imo, but yeah you should find a bunch of ".so" libraries stuffed in there17:57
johnjaywouldn't that lead to every app having its own libc, its own libxyz, etc?17:57
Gaming4JCcorrect17:57
lotuspsychjejohnjay: join #ubuntu-discuss if you wanna talk more about it17:58
pennTellerHi guys, is there any way whatsoever to get trackpads to behave like Macbook trackpads? I.e with great thumb/palm rejection?17:58
alentoghostflameHey, I just built a new system with the Ryzen 3700x and RX 5700, the Ubuntu 19.04 installer gets stuck at the 5 dot loading screen. any fix?18:01
lotuspsychjealentoghostflame: we received another bug tonight similar, can you see if its related to yours? https://bugs.launchpad.net/ubuntu/+source/linux/+bug/183885118:06
ubottuLaunchpad bug 1838851 in linux (Ubuntu) "Display problems after updating to kernel 5.0.0-23" [Undecided,Confirmed]18:06
tomreynalentoghostflame: https://bugs.launchpad.net/bugs/1835809 is for ryzen 318:07
ubottuLaunchpad bug 1835809 in systemd (Ubuntu Eoan) "AMD Ryzen 3000 series fails to boot" [High,In progress]18:07
alentoghostflameDoesn't seem related. I'm running 18.04 (and messaging you via chrome) on said system, and my system seems to use that kernel version?18:07
alentoghostflamemeant for lotus, ill check the others out18:07
alentoghostflametomereyn: It says its released for disco, but the installer still failed for me18:08
tomreynalentoghostflame: 'released for disco' does not mean the installer isos were rebuilt18:08
alentoghostflameah, that would explain things a bit18:09
tomreynalentoghostflame: i.e. they were not. so your options are to install using a non graphical 19.04 installer or to upgrade from an earlier release, until amd provides a fix.18:09
tomreynsee comment 1618:09
lotuspsychjenice find tomreyn18:10
alentoghostflamejust wondering, are there drivers for the RX 5700 on 19.04?18:10
tomreynlotuspsychje: thanks, it's on the ~ubuntu-discuss list18:11
lotuspsychjetomreyn: ah tnx18:11
tomreynalentoghostflame: if there's a driver, then it's "amdgpu", the open source driver by amd18:11
alentoghostflamealright18:11
tomreynthey are usually quick to support, but you might need to get a firmware update (the driver will say so while loading if so)18:12
alentoghostflameAnother question, since I have the proprietary AMDGPU PRO drivers installed on 18.04, can I upgrade my kernel to at least 5.2 (for Valve Index support) safely, or will that break the drivers?18:13
tomreynalentoghostflame: amdgpu is part of the kernel, so you don't need to install extra drivers18:13
tomreynalentoghostflame: if you want amdgpu pro you'll need to read up on what amd supports18:13
alentoghostflameUbuntu wouldn't let me do 1080p until I installed the AMD drivers from their site18:13
alentoghostflameAnd i already have amdgpu pro installed18:13
alentoghostflamewell, installed it, then everything switched to the proper resolution18:14
lotuspsychjealentoghostflame: like tomreyn says, amdpgu from stock ubuntu should do its work normally, if not one can consider file a !bug18:14
lotuspsychjealentoghostflame: alternate you can try this method: https://linuxconfig.org/how-to-install-the-latest-amd-radeon-drivers-on-ubuntu-18-04-bionic-beaver-linux18:15
alentoghostflamethe latest drivers from the website installed just fine, I was just wondering if I could upgrade my kernel without breaking it18:15
tomreyna general hint: when using proprietary drivers: (1) make sure you actually need them and compare features to potential open source alternatives, (2) do not just upgrade ubuntu when offered, first make sure those drivers will be supported on the upgraded version (you will often have to hold back on release upgrading and !HWE kernels may not be supported at all or only later)18:16
lotuspsychjealentoghostflame: just keep in mind we warn users about using external ppa's as its a risk in some cases18:16
alentoghostflameI'll uninstall the proprietary drivers, and see if amdgpu can do 1080p18:16
alentoghostflameCan confirm, video looks horrible without drivers downloaded from the website18:20
alentoghostflameI seem to be locked with 1 monitor at 1024x76818:21
lotuspsychjealentoghostflame: are you sure amdgpu is loaded on boot?18:21
alentoghostflameHow would I check?18:21
lotuspsychjealentoghostflame: did you reboot after drivers switch? should show in your dmesg18:22
tomreynyou may need a newer kernel actually, since this card is so new.18:22
tomreyn!mainline18:22
ubottuThe 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/MainlineBuilds18:22
tomreynmaybe newer mesa, too.18:24
tomreynso padoka or oibaf ppa18:24
alentoghostflameso, grab latest kernel, use oibaf or padoka?18:24
tomreynyes, latest mainline build18:24
alentoghostflameGrabbing the latest kernel would fix my issues with the Valve Index, so that's nice. I will do that quick18:24
tomreyni'm reading https://www.phoronix.com/scan.php?page=article&item=rx-5700-july https://www.phoronix.com/scan.php?page=article&item=radeon-5700-linuxgl18:25
alentoghostflametomreyn: so install the latest in 5.3-rc2?18:26
tomreyni guess so, yes18:26
tomreynif you wanted the amdgpu pro route (personally i would not, don't require the added features) this introduced support for 5700: https://www.amd.com/en/support/kb/release-notes/rn-amdgpu-unified-navi-linux18:27
tomreynbut this only works with ubuntu 18.04.218:28
=== [1]MrMobius is now known as MrMobius
ioriaparak0vsky, odd;  that setting is persistent 'cause written in a file (:Xmodmap)18:39
tomreynalentoghostflame: oibaf's mesa is newer than padokas currently, in case it matters (it could).18:41
tomreynthat's https://launchpad.net/~oibaf/+archive/ubuntu/graphics-drivers?field.series_filter=disco  vs  https://launchpad.net/~paulo-miguel-dias/+archive/ubuntu/mesa?field.series_filter=disco18:41
Kevin199Has anyone here experiment with Arch?18:44
Kevin199I'm starting to think it's a bit of a meme, but I kinda wanna try it but Ubuntu seems good for right now18:45
lotuspsychjeKevin199: you are in #ubuntu support channel, we reccomend ubuntu18:45
Kevin199Well yeh, but I mean in comparison to Arch is there anything Arch has that Ubuntu doesn't18:45
tomreyn!discuss18:46
ubottuWant to talk about Ubuntu, but don't have a support question? /join #ubuntu-discuss for non-support Ubuntu discussion, or try #ubuntu-offtopic for general chat. Thanks!18:46
Kevin199okay ty18:46
=== macroprep__ is now known as macroprep
alentoghostflameInstalled the 5.3 kernel and am using Oibaf's ppa. I am no longer locked to 1024x768 or whatever, and am now at 1080p. However, I my 2nd monitor doesn't show up18:56
wondowshm so a lot of people are having the same problem I had this morning?18:59
alentoghostflamewhat problem?19:00
wondowsalentoghostflame your problem :P19:00
alentoghostflameRX 5700?19:00
wondowsnvidia19:00
alentoghostflameoh, hmm19:01
wondowsactually my kernel is 5.0.0-23-generice19:01
OerHekssounds like a no?19:01
wondows-e19:01
wondowsonly one of my monitors was working and I was locked into 1024x768 as well19:03
tomreyndifferent issue19:04
tomreynalentoghostflame: nothing on your logs on the 2nd monitor?19:05
tomreynno edid readings?19:05
alentoghostflameidk, I'm not very great at the technical side of Ubuntu19:06
tomreynalentoghostflame: post     journalctl -b | nc termbin.com 9999    and i'll have a look19:08
alentoghostflamehttps://termbin.com/z31c neat little trick19:08
alentoghostflamealso, my display flickers off and on every now and then? doesn't seem cable related19:09
tomreynyou should upgrade your bios https://www.gigabyte.com/Motherboard/X570-AORUS-ULTRA-rev-10/support#support-dl-bios19:12
tomreynyou'Re on F319:13
alentoghostflamemmm, probably a good idea19:13
alentoghostflamewhat, just drop a zip file on to a USB drive, then have the BIOS read that?19:14
alentoghostflame*drop the zip file19:14
tomreyn"Improve Destiny 2 gaming compatibility" may also mean you could boot the 19.04 installer out of the box.19:14
tomreynfat32 formatted, first partition, and there's a size limit if forgot, too.19:15
alentoghostflamehopefully the size limit isn't less than 16 gb19:15
tomreyni think it was much higher19:16
alentoghostflameI should probably make a 19.04 stick as well19:16
tomreynand keep it, yes19:16
tomreynalentoghostflame: your kernel log says you need newer gfx firmware, it's missing navi10_gpu_info.bin19:19
alentoghostflamethat's a start, i'll go find that19:20
tomreynthis goes into /lib/firmware/amdgpu19:20
alentoghostflamewhy would I be missing that?19:21
tomreynalentoghostflame: because your linux-firmware package is on the state it is on, which is most likely older than when this firmware was released by amd, and imported to the git repository at https://people.freedesktop.org/~agd5f/radeon_ucode/navi10/19:23
alentoghostflameah, thank you19:24
tomreynfrom which it is then later imported into the kernel.org maintained linux-firmware git, from where those package are later built for ubuntu19:24
tomreynor if you were asking why the driver looks for this firmware: while some (many by now) graphics drivers are open source, most still depend on proprietary firmware.19:25
tomreynso they can hide their too-advanced-for-the-competitors-to-be-allowed-to-look-at ways of doing graphics.19:27
tomreynalentoghostflame: so download all the files at https://people.freedesktop.org/~agd5f/radeon_ucode/navi10/ and place them in /lib/firmware/amdgpu/ (requires sudo to write to)19:30
tomreynoverwrite existing files, if any (probably not)19:31
alentoghostflamegot it19:31
alentoghostflameI didnt realize i needed all of them and only grabbed the info one, good thing startup disk creator takes so long19:31
tomreyn:)19:31
alentoghostflamealright, should I restart, or is there something else I should do to reload the video drivers?19:32
tomreynplease the navi* files in the firmware directory, then do the mainboard firmware upgrade, then come back and get us another kernel log19:33
alentoghostflamek19:33
gbit86Is there anyone here that has experience or an example of creating a new, or overriding an existing, Ctrl or Alt shortcut by using just xkb? (setxkbmap, or xkbcomp) I would like to remap "Ctrl + Home" to "Ctrl + Up"19:34
nedstarkdoes ubuntu support running an Infowars server?19:35
gbit86I'd also like to remap "Alt + Left" to "Ctrl + Left"19:35
james_brownI have an ubuntu machine that i use as a media server at home.  I wanna stream movies from there and I know I could use Plex but I wanted to know if there is a more educational way (in the sense that I could learn something new about Linux on the way))19:36
gbit86Using 3rd party tools, like autokey, is not workable, I would like to set whether it overrides both the left and right modifiers and autokey has no option like that. (and frankly autokey sometimes lags)19:36
humanBirdevery time my ubuntu starts up i get some system error popup19:38
tomreynhumanBird: do you have a scr3eenshot?19:40
humanBirdnext time it happens19:40
humanBirdit also asks me if i want to send a report. i dont see an option to see what actually went wrong19:40
tomreynhumanBird: see what's in /var/carsh19:40
tomreyni mean /var/crash19:40
tomreynyou can see your systems' past reports by running:   x-www-browser https://errors.ubuntu.com/user/$(sudo cat /var/lib/whoopsie/whoopsie-id)19:41
humanBirdhrm. the .crash file looks like gibberish19:48
humanBirdand requires me to sudo to see it19:48
dbuggerHi fellas. Problem: Very so often, my PC crashes to the point where I have to hard-reset it, and I am quite sure the fault of it its Chrome, and one of its tab abusing memory. Is there any way I could prevent this from happening?19:49
james_brownI have an ubuntu machine that i use as a media server at home.  I wanna stream movies from there and I know I could use Plex but is there a more educational way, in the sense that I could learn something new about Linux on the way?19:53
Kevin199dbugger, Chrome hogs Ram. Try firefox19:55
Ben64james_brown: depends what you mean by 'stream movies'19:57
james_brownBen64 I didnt know there were different meanings means19:58
tomreynhumanBird: i was just wondering about the file name19:59
james_brownBen64 I just wanna be able to watch movies that are stored on my server from my pc19:59
tomreynhumanBird: ...which should hint on the process which failed19:59
Ben64james_brown: mount the drive, then open the file in your favorite video player20:00
tomreyn!sysrq | dbugger: use this to prevent the need to hard reset (prevents data loss)20:01
ubottudbugger: use this to prevent the need to hard reset (prevents data loss): In an emergency, you may be able to shutdown cleanly and reboot by holding down Alt+PrintScreen and typing slowly, in succession, R, E, I, S, U and B. For an explanation, see http://en.wikipedia.org/wiki/Magic_SysRq_key20:01
james_brownBen64 Like sharing the server's drive?20:03
humanBird_usr_bin_gnome-shell.123.crash20:03
alentoghostflameOn my phone now. Installing the navi10 files has caused my PC to briefly produce a purple screen, then just stay stuck at black20:04
seven-elevenhi20:06
Kevin199Hello20:07
Kevin199Are we allowed to send imgur links? I need help with something and idk how to explain it20:07
seven-elevendoes ubuntu install python packages to /usr/lib/python3/dist-packages only or are there other places?20:07
seven-elevenKevin199, yes20:07
seven-elevenhow can I remove all pip installed packages without installing python packages installed by apt?20:08
james_brownBen64 Like sharing the server's drive?20:09
de-factohow can i prevent my kernel from claiming Sierra Wireless EM7455 USB 3.0 LTE device as MBIM ? I want to debug some things in vbox, but i can't select the device ...20:09
seven-elevenmaybe I simply uninstall all python packages and then run `dpkg -l|xargs apt install`?20:10
Kevin199https://imgur.com/lrSxqTi so it might be difficult to see with the resolution. But this dude made it so he could right-click his desktop and create shortcut links. Does anyone know any tutorials on how to do that to get me started20:10
seven-elevenehm I mean `dpkg -l|grep "python3-" |xarg apt install --reinstall`20:11
Kevin199I want to create a shortcut for irc20:11
seven-elevenKevin199, what DE are you using?20:12
Kevin199I'm not sure what DE means20:13
seven-elevenKevin199, https://www.ghacks.net/2010/11/29/add-a-quick-access-shortcuts-to-the-gnome-right-click-menu/20:13
seven-elevenKevin199, desktop environment20:13
Kevin199Gnome20:13
seven-elevensee the link20:13
Kevin199Ah ty ty20:14
=== ilbelkyr_ is now known as ilbelkyr
gst568923Hy guys, I should uninstall debian from UEFI dual boot with windows 10 to install a fresh distribution of Ubuntu20:28
gst568923I would like unistall debian from the live cd of Ubuntu20:28
gst568923and would like to know if this step are correctly:20:28
gst5689231) cd /boot/efi/EFI/ && sudo rm -rf debian 2) Remove Linux partitions 3) sudo apt-get install efibootmgr && sudo modprobe efivars && sudo efibootmgr --bootnum 0002 --delete-bootnum (0002 is debian)20:30
jeremy31gst568923: Just install Ubuntu on the partition where Debian is now20:35
gst568923Yes, but before install ubuntu, first I would like remove debian partition and grub20:37
jeremy31gst568923: ubuntu grub will replace Debians20:43
gst568923jeremy31 yes yes, ok, but I want to follow the steps manually20:43
jeremy31gst568923: you may have to mount the EFI partition manually and then remove the debian entry20:44
gst568923when I have installed debian, in the EFI folder  there is the follow file /boot/efi/EFI/Boot/bootx64.efi that have same MD5 checksum of /boot/efi/EFI/debian/grubx64.efi should I remove also /boot/efi/EFI/Boot/bootx64.efi?20:45
jeremy31is it actually /boot/efi/EFI/Boot/BOOTX64.efi?20:48
gst568923jeremy31 bootx64.efi is the specular copy of grubx64.efi because have same MD520:51
gst568923jeremy31 I seem to have read that the  /boot/efi/EFI/Boot/ path refers to removable devices, but I didn't understand what it actually means20:53
EriC^^gst568923: it means the uefi uses that path on removable devices to boot the efi file if found20:54
gst568923jeremy31 give me an example20:55
JFox762I have a stupid question. Do Files on Linux, when transferred to a Windows system, somehow consume less disk space?20:55
EriC^^gst568923: if you have a usb you plug in and choose to boot it when the pc starts, it will load the file in that path20:55
gst568923ops EriC^^20:55
jeremy31gst568923: EriC^^ likely knows this better20:56
EriC^^JFox762: yeah that's possible20:56
JFox762I just transferred 1.2GB of photos to Windows, via Sneakernet, and noticed that the files take less space on Windows... 1.16gb to be exact20:56
EriC^^JFox762: yeah that can happen, even on the same filesystem it can happen depending on what it's actually measuring20:57
JFox762Ohh ok20:57
JFox762I was just concnered that some files didn't make the transfer :)20:57
gst568923EriC^^ but sorry if I use an Ubuntu live on USB the grub that loads is not the one inside the files contained in the USB stick?20:58
JFox762thanks!20:58
EriC^^JFox762: no problem :)20:58
EriC^^gst568923: yes it is, and the files on that disk are on \efi\boot\bootx64.efi in theory20:59
EriC^^gst568923: the thing is, the uefi doesnt know what to load, so that's the default path it uses for removable media20:59
EriC^^gst568923: they should be in a small fat32 partition if you want to see them for yourself21:00
EriC^^not to be confused with the other partition that has all the good stuff and is larger in size21:01
gst568923EriC^^ but then if I want to completely remove debian and the grub, can I also remove the /boot/efi/EFI/Boot/bootx64.efi file?21:01
EriC^^gst568923: yeah, sure21:01
EriC^^i'd remove the nvram entry first, just in case you have difficulty booting into uefi mode on the live usb, so nothing breaks on you21:02
gst568923EriC^^ and when i start ubuntu from live USB (to do an installation from scratch) in that path what will be there?21:02
EriC^^i mean the efibootmgr entry (you have to be booted in uefi mode to do that, modprobe efivars rarely works)21:02
EriC^^gst568923: well it depends on the installer, some will copy ubuntu's efi file there just cause some uefi implementations are picky21:03
gst568923EriC^^ so you're telling me I'll have the file renamed bootx64.efi (referring to the ubuntu grub)21:05
EriC^^gst568923: precisely21:05
gst568923EriC^^ but when I delete the bootx64.efi file (even before installing ubuntu) does this deletion cause me problems starting windows 10? Or concern only linux21:07
EriC^^gst568923: it shouldn't, if you delete the linux entries, it should default to /efi/microsoft/boot/bootmgfw.efi and loads windows, but then again nothing in these uefi implementations is certain, each manufct has made his own set of ambiguous rules21:08
EriC^^gst568923: if you want to be 100% sure you could copy /efi/microsoft/boot/bootmgfw.efi over to /efi/boot/bootx64.efi21:09
gst568923EriC^^ ie in the path /boot/efi/EFI/Boo/ do I have to go and copy the file /boot/efi/EFI/Microsoft/Boot/bootmgfw.efi and rename it bootx64.efi?21:10
gst568923 /boot/efi/EFI/Boot21:11
EriC^^yeah21:11
jeremy31gst568923: some EUFI/BIOS settings should let you pick an EFI boot file, you should be able to pick the Microsoft file if needed21:12
gst568923EriC^^ but this procedure because some implementations of UEFI do not recognize the / boot / efi / EFI / Microsoft path and do they only recognize / boot / efi / EFI / Boot?21:12
EriC^^gst568923: yeah it might just look for that21:15
EriC^^ms by default also copies efi/boot/bootx64.efi there, fwiw21:15
gst568923EriC^^ after deleting bootx64.efi, if it does not find the windows 10 bootloader, I select it directly from the BIOS settings21:18
EriC^^gst568923: that'll work21:18
gst568923EriC^^ when I run efibootmgr command from the Ubuntu 19.04 live usb, is necessary run also sudo modprobe efivars or this module is loaded automatically21:19
EriC^^gst568923: if you type 'ls /sys/firmware/efi' and you get a bunch of files then you're good21:20
gst568923EriC^^ ok, and than If I should remove the debian entry (debian entry 0002 is in the first order) should start sudo efibootmgr --bootorder 0003,0002,0001,0000 to change order to change order and than sudo efibootmgr --bootnum 0002 –delete-bootnum or only second comman?21:22
gst568923command?21:22
Thr0rHello! Yesterday I ran the suggested update on my Kubuntu install. Seems the  kernel is updated to Kernel: 5.0.0-23-generic x86_64 - It will not boot anymore (just a black screen and hang) and I have to choose the Kernel: 5.0.0-21-generic x86_64 version to boot. Is this a known issue and will be fixed - or what?21:23
tomreynThr0r: there is the ATTENTION paragraph at https://usn.ubuntu.com/4069-2/21:23
tomreynthis probably means you would need to have any DKMS build modules rebuilt, and your initramfs updated.21:25
EriC^^gst568923: the delete command should be enough, assuming 0003 entry is the windows one21:25
gst568923EriC^^ yes 003 is windows my current order is 0002,0003,0001,0000 ; sudo efibootmgr --bootnum 0002 –delete-bootnum should be enough21:29
EriC^^yeah21:29
Thr0rtomreyn: Ok - I will read and try to understand that - Thanks. But will this be fixed permanently at some time?21:29
seven-elevenif I run `apt remove gnome-*` why does it want to remove `ubunut-software` package too?21:29
Kevin199I'm new so take this with a grain of salt, but I'm fairly sure Gnome is Ubuntu's default DE21:31
Kevin199So if you remove gnome then you're removing ubuntu's software package that's used to install Gnome21:32
Kevin199Correct me if I'm wrong(started a day ago)21:32
baneAnyone here have any experience with clamav or the unofficial sigs package21:32
OerHeksunofficial sigs package?21:33
OerHekslikely not supported here21:33
baneclamav-unofficial-sigs21:33
OerHeksoh, it *is* official21:34
OerHekshttps://launchpad.net/ubuntu/+source/clamav-unofficial-sigs21:34
EriC^^seven-eleven: likely ubuntu-software depends on gnome-* so once you remove that it might want to remove ubuntu-software21:34
seven-elevenEriC^^, gotcha, so kde doesn't require it so it's removed21:35
baneand what would be the benefit of installing the clamav-daemon? does it still use the same database as clamscan? I know clamav-daemon allows you to use multiple threads which is great21:37
EriC^^seven-eleven: yeah it looks like the only packages that depend on ubuntu-software are ubuntu-desktop and ubuntukylin21:40
EriC^^("apt-cache rdepends ubuntu-software" showed me that)21:40
de-factohow can i safely trigger that gnome expose function? mouse in upper left corner shows fancy bubble effect but no window expose, superkey also does not work... when vbox window is open21:43
alentoghostflameHey, im using Ubuntu 18.04 and installed the latest mainline 5.3-rc2 Linux Kernel. While one of my monitors is 1920x1080p as it should be (was 1024x768 or so before), my other connected monitor doesn't light up at all. How would I fix that?21:43
alentoghostflameForgot a major detail: Using a Ryzen 3700x, with a RX 570021:43
gst568923EriC^^ I send you a DM21:45
=== |WaV| is now known as WaV
EriC^^de-facto: does pressing the right ctrl button before trying help at all?21:51
gst568923EriC^^ the commands sudo apt-get install efibootmgr && sudo modprobe efivars not make sense because are present yet in the live of ubuntu?21:52
de-factoEriC^^, interessting, i will try next time i have it running, right now i had to close it because i need to do some work...21:53
de-factowhats the reasoning behind right control button? just curious...21:53
EriC^^de-facto: i have no idea tbh, it's just sometimes i try to get a certain function and it won't work before pressing right ctrl, it was just a long shot guess, thought i'd throw it in there in case it actually helps :)21:54
EriC^^de-facto: ah now i remember like if i want to switch to tty1 or get grub i have to press right ctrl first21:55
de-factoEriC^^, thanks a lot i will report next time i can afford to run vbox, my system is busy right now :)21:55
EriC^^no problem, good luck :)21:56
ResistancEwhere to download libusb-dev manually for trusty 64bit21:57
EriC^^ResistancE: assuming you know the risks of using an end of life release, http://old-releases.ubuntu.com21:58
de-factoEriC^^, its very weird, sometimes the vbox window just blocks everything in gnome, it wont let itself move, it blocks expose etc, other times it behaves properly. i just ran openwrt inside it, so no fancy gfx drivers etc22:00
de-factoi guess it has something to do with the mouse/keyboard caputuring or such22:00
EriC^^aha22:00
de-factobut i can move the mouse and use the keyboard outside of vbox, its just that it is able to block gnome/window manager somehow22:01
EriC^^de-facto: that's odd, i'm slightly more convinced right ctrl might help now according to google "You activate the VM by clicking inside it. To return ownership of keyboard and mouse to your host OS, Oracle VM VirtualBox reserves a special key on your keyboard: the Host key. By default, this is the right Ctrl key on your keyboard"22:02
EriC^^maybe it's some bug though, who knows22:03
de-factosounds promising, i will have to try that one, but gnome definitely should not behave like that either22:03
de-factonot letting windows being moved and showing the water animation but not firing the expose etc22:04
EriC^^sounds like it's not registering the clicks inside it but for some reason still acknowledges the position?22:07
Matthew_Moorenick MrGizmo75722:08
Matthew_MooreCrap!!.  Freenode is being a turd today.22:09
alentoghostflametomreyn: I did what you asked me to do (download all the navi10 files and put them in that specific place), and it caused my PC to do a purple screen for a fraction of a second when loading up, then immediately to a black screen without a blinking cursor22:09
=== Matthew_Moore is now known as MrGizmo757
tomreynalentoghostflame: hmm, can you show the log?22:10
tomreynalentoghostflame: journalctl --list-boots   to determine the (negative) boot ID, then, e.g. for the last but one boot:  journalctl -b -1 | nc termbin.com22:11
tomreynalentoghostflame: journalctl --list-boots   to determine the (negative) boot ID, then, e.g. for the last but one boot:  journalctl -b -1 | nc termbin.com 999922:11
tomreyn^ missed the port22:11
alentoghostflamecan't, I reinstalled Ubuntu 18.04 from scratch22:11
alentoghostflamealso, It wouldn't go anywhere where i could issue those commands22:12
tomreynoh :-/22:12
alentoghostflameswitching tty's wouldnt work22:12
alentoghostflame*didn't work22:12
tomreynyou could boot to recovery22:12
tomreyn!recovery22:12
ubottuIf your system fails to boot normally, it may be useful to boot it into recovery mode. For instructions, see https://wiki.ubuntu.com/RecoveryMode22:12
alentoghostflamealso for some reason GRUB wasn't showing up...22:12
tomreynhit escape repeatedly to bring it up on uefi boot22:13
alentoghostflameoh yeah, I did follow those instructions, and either I was too slow or it didn't work22:13
alentoghostflameoh, hmm22:13
alentoghostflameI guess I didn't spam escape22:13
alentoghostflamewell, reinstalling the 5.3-rc2 Linux Kernel got me back to 1080p, but still locked on one monitor22:14
Kevin199Does anyone know how to run Youtube in Terminal?22:23
akemlenovoKevin199, You can use youtube-dl to download video from url, you can try links/lynx to display the website in text mode and that's about it.22:25
Gaming4JCKevin199: youtube-viewer22:26
Rojolahi22:26
Kevin199I'ma try youtube-dl22:26
akemlenovoCool, didn't know this one Gaming4JC.22:27
Kevin199Youtube viewer wasn't properly working for me22:27
Kevin199But I'd give it a try22:27
Gaming4JCthere's also invido.us but it's not terminal per-se. Would render better in elinks than native YT tho22:28
RojolaWhat is the very best tutorial online explaining the best pratices on setting up a secure Apache + PHP + MySQL installation on a new Ubuntu server?22:28
RojolaI made some notes, that I should configure an UFW firewall to only accept few ports22:29
Rojolaand I need "mysql_secure_installation"22:29
Rojolaand "debian-sys-maint" so that MySQL can be accessed without a root pwd22:30
Rojolabut I need a guide telling me every step... is there any really good tutorial out there?22:30
Ben64you don't need a guide telling you every step22:31
Gaming4JCpersonally I'd just use DigitalOcean guides and then lookup hardening elsewhere22:31
Ben64it's not that complicated, install apache, mysql, php, don't expose mysql to the internet, use a minimally privileged user to access mysql from php, make backups regularly22:32
RojolaBen64, there is much more than can be done...22:33
Rojolafor example:  https://tecadmin.net/security-tips-for-lamp-stack-on-linux/22:33
Ben64eh22:34
Rojolathanks so far, I will come back later!22:39
stickiHello, I need help with my Ubuntu Desktop installation on a mini PC i found online.22:54
stickiI ran the install from a usb stick, and when I try to boot it drops me into a EFI Shell or something. I found some suggestions online and nothing worked. Including the startup repair thing. I have a paste bin.22:55
stickiis anyone even here?23:03
Habbiesticki, yes, many people are here, but not all of them are awake; not all of those are at their screens; not all of those know anything about EFI, etc.23:04
Habbiesticki, best to stick around a bit23:04
stickialright thanks Habbie23:04
Habbiesticki, also, it might help if you show what you're seeing23:05
stickiI'm sorry I don't mean to come across rude23:05
Habbieno worries23:05
stickiI'm just super fruustrated23:05
Habbieyou're stuck and frustrated and just want some help23:05
Habbieyes :)23:05
stickihttp://paste.ubuntu.com/p/TZ4dkStFKn/23:05
stickithis was the link it gave me when i tried the boot repair utility thing23:05
stickiplus the only efi i'm familiar with is elec fuel injection. i have no idea what an efi shell even is23:06
Habbie'extensible firmware interface'23:06
stickiok looks like it replaces the bios ..? so maybe i just did the install wrong. i'll try reinstalling.23:08
Rojolare23:10
RojolaI can not change the hosting provider for a reason, so I am sticking to what I have.23:11
RojolaI can choose between a vserver with:23:11
Rojola*) Ubuntu 16.0423:11
Rojola*) Debian 8.723:11
RojolaBoth is not very up to date - what should I pick?23:11
lotuspsychjeRojola: please stick to ubuntu support questions here23:11
lotuspsychjeRojola: perhaps #ubuntu-server or #ubuntu-discuss ?23:11
Rojolalotuspsychje, for real now?23:12
tdspick whatever's latest, build up a minimal ramdisk then pivot into it, and reinstall your preferred release how you'd like it from there23:12
tds:)23:12
OerHeks16.04 is stable and supported, just not the latest features23:12
RojolaOerHeks, 16.04 will only be supported until 2020, right?23:12
OerHeks18.04 would give 5 + 5 years23:13
lotuspsychje!eol | Rojola23:13
ubottuRojola: End-Of-Life is when security updates and support for an Ubuntu release stop, see https://help.ubuntu.com/community/EOL for more info. Looking to upgrade from an EOL release? See https://help.ubuntu.com/community/EOLUpgrades23:13
Rojola1 year and 9 months23:15
jeremy31Rojola: 16.04 supported until April 202123:15
Rojolayes - that's 1 year and 9 months23:15
Rojola1 year and 8 months23:16
OerHeksgood23:16
jeremy31Rojola: I don't keep precise track of EOL23:16
RojolaI'll go with Ubuntu then23:18
Rojolathank you!!23:18
Rojolasee you soon!23:18
lotuspsychjesticki: it would help, if you give volunteers more !details of your system, ubuntu version, logs, kernel version etc maybe we can brainstorm whats going on23:19
stickiah thanks lotus23:20
stickii downloaded this:23:20
stickiubuntu-18.04.2-desktop-amd64.iso23:20
stickiput it on a usb stick, installed it on my ACEPC mini pc23:20
stickirestarted and it puts me in a EFI Shell23:21
lotuspsychjesticki: did you install in uefi mode or legacy?23:21
stickii booted back to the usb stick, followed directions to do the boot fix utility thing23:21
stickiit gtave me this:http://paste.ubuntu.com/p/TZ4dkStFKn/23:21
stickilotus i'm not sure23:21
stickii started reinstalling to see if there was a thing for that23:21
lotuspsychjesticki: the exact model of your mini pc please?23:22
lotuspsychjesticki: maybe useful: https://ubuntuforums.org/showthread.php?t=238959923:24
lotuspsychjesticki: and another story you could compare: https://amindlost.wordpress.com/2017/10/18/acepc-ak1/23:31
malinaafter months and months of a passthrough win kvm/qemu, an update? (didn't reboot for a week), now stops gpu(nv) to bepicked up by vfio, unlike before. I added softdep nv/nouv* to ...-load.d/vfio.conf or ratrrher in modprobe.d , and it is agaain caught. However, now when I start the vm, which 'starts' the screen is blank and possibly the passed through controller with trhe hids (kb/m), doesn't seem necessarily to switch over (not sure due to23:33
malina scree nbeing all blank). recent qemu updates? apparmour? libvirt? something something? where could I find maintainers of these packages?23:34
malinahas passthrough issues soared slightly in past week or so when I didn't reeboot.. or maybe fortnight? :)23:34
malinauubnt is dead? no tech support?23:45
lotuspsychje!patience | malina23:45
ubottumalina: Don't feel ignored and repeat your question quickly; if nobody knows your answer, nobody will answer you. While you wait, try searching https://help.ubuntu.com or https://ubuntuforums.org or https://askubuntu.com/23:45
stickihey lotuspsychje sorry i disappeared there i had to run a surprise errand.23:45
malinaye, that's good. cheers.23:46
stickiACEPC AK2 J345523:46
tomreynsticki: that's your social security number?23:48
lotuspsychjelol23:48
stickilotuspsychje - i'm looking through the articles you listed, thank you23:48
stickii'm sure they were probably pretty easy to find if you know what you're looking for, i've been feeling pretty lost with this.23:48
stickiso i appreciate :)23:48
stickitomreyn - yes plez don't share it though super secret23:49
tomreyn;)23:49
humanBirdhaha! i finally got all my shit together into a ubuntu vm. now i can run a thing in the background and do real work meanwhile23:49
tomreynmalina: you may find more qemu users in #ubuntu-server than here.23:50
malinathan you tomreyn23:50
malinathat's what I was looking for.. cheers.23:50
tomreynmight help, might not, it's less busy ther eon the weekends.23:51
malinaya, but at least it's closer. as I don't really think generic help is going ot help with this no.23:51
malina:)23:51
malinaI know how to troubleshoot and have fixed earlier foobars during some update but this one is being stubborn, so I think some intrinsic change happened in some package and with all the automagic it can be hard to nail down.23:51
malinaI will try there.. thanks.23:52
tomreynyou're welcome.23:52
tomreynsticki: so this https://www.iacepc.com/acepc-ak2-mini-pc/23:52
stickiyep that's the one23:54
tomreynthis system seems to only have eMMC storage. and ubuntu was apprently installed on /dev/mmcblk1p123:55
tomreynthats the first partition on the eMMC storage /dev/mmcblk1 which has a DOS (non GPT, non UEFI-bootable) partition table.23:57

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