[00:01] TJ-: Yes there are several issues with these asus T100* transformerbooks [00:02] TJ-: but X server, wifi and sound worked almost out the box for me [00:03] Drunkhawk91: I think I know a fix for your problem. If I'm correct, it's a very common problem with ACPI DSDTs being customised only for Windows by the manufacturers. It's so comon I've written an article about it which contains some shell commands to apply a workaround. Read http://iam.tj/prototype/enhancements/Windows-acpi_osi.html [00:05] 23:41 < TJ-> can we preemptively protect #ubuntu-discuss, if it hasn't been already? [00:06] yes, if y'all consider it necessary, but he's not hitting enough of the namespace that i'd assume he's gonna hit here [00:06] if it does start up, anyone with an ubuntu/member/* cloak can do: /msg chanserv op #ubuntu-discuss, then /mode #ubuntu-discuss +rq $~a [00:06] to do the same thing me and Unit193 have been doing [00:08] dax: it looked like the spammer might be cycling through all the channels. When they do that the generally hit all channels eventually :) [00:09] we'll see. he's stopped for a bit, either out of boredom or because he's getting a fresh batch ready, who knows [00:09] TJ-: clearly the solution is for you to apply to ubuntu membership :) [00:10] +r probably wouldn't be a terrible idea since y'all are pretty much all identified with nickserv, but i'd rather not set it unilaterally just yet [00:11] TJ-: I also read somewhere about acpi_osi, I'll try your script to see if there are any changes (microSD, suspend, jack detection, auto brightness, etc ..) [00:14] Sveta: I've avoided that for 12 years; I'm not going to start now [00:17] he's a maverick! he doesn't always do things the conventional way, but boy does he get the job done ;) [00:17] TJ-: what are the drawbacks from your perspective? [00:18] daftykins: :) [00:18] I prefer being indepedent [00:18] membership involves a cabal of some sort? or you prefer to not be affiliated with a particular entity, even if these entities do not limit you? [00:21] I prefer being indepedent [00:23] TJ-: no improvement with acpi_osi=Windows 2015, but got few more to try :) [00:25] Drunkhawk91: you have got double-quotes surrounding that option haven't you? check with "cat /proc/cmdline" [00:25] Drunkhawk91: without them the option is not correct [00:26] Drunkhawk91: I'd generally stick with the latest version the DSDT OSI claims. It'll enable the most functionality. Have you thought of testing a mainline 4.14 release candidate kernel incase there are improvements there? [00:27] TJ-: Nope I didnt try 4.14 and indeed the option is not passed [00:29] Drunkhawk91: OK, let's get acpi_osi fixed first. It fixes so many things [00:29] Drunkhawk91: "pastebinit /etc/default/grub" [00:30] TJ-: GRUB_CMDLINE_LINUX="fbcon=rotate:3 acpi_osi=! \"acpi_osi=Windows 2015\"" [00:31] Drunkhawk91: well that is correct! You say it isn't shown by "cat /proc/cmdline" [00:31] Drunkhawk91: did you do "sudo update-grub" before rebooting? [00:31] TJ-: the script did yes [00:32] hmm, check it added it to the grub config with "grep acpi_osi= /boot/grub/grub.cfg" [00:32] http://paste.ubuntu.com/25820338/ [00:33] Drunkhawk91: looks like the grub.cfg doesn't have it. [00:33] nope indeed it did not [00:33] do "sudo update-grub" [00:34] then "pastebinit <( grep acpi_osi /boot/grub/grub.cfg )" [00:34] empty document for pastebinit, no output from grep [00:34] he doesn't want to pass the option [00:35] Hmmm! [00:35] Drunkhawk91: find /boot -type f -name grub.cfg" [00:36] I'm wondering if yours is in the EFI SP under /boot/efi/ [00:36] /boot/efi/EFI/ubuntu/grub.cfg [00:36] /boot/grub/grub.cfg [00:36] Hmmm, so, "grep -n acpi_osi /boot/grub/grub.cfg /boot/efi/EFI/ubuntu/grub.cfg" [00:37] nowhere [00:38] when you run update-grub do you see it list a bunch of kernel versions etc it's adding? [00:39] In your fiddling about to get the initrd to include the DSDT is it possible you've broken the generating scripts in /etc/grub.d/ ? [00:40] he found /boot/vmlinuz-4.13.0-16-generic boot/initrd.img-4.13.0-16-generic and added two boot menu entry for EFI firmware conf [00:40] I think I recall seeing mention of /etc/grub.d/05_acpi or some-such. [00:40] oh, hang on. Is this Secure Boot? [00:40] I remove xx_acpi from grub.d [00:41] I got secure boot disabled in BIOS [00:42] but you're using the -signed files. I *think* the problem could be that grub.cfg has to also be signed to be used [00:43] I'm not sure if GRUB drops that requirement if SB is disabled but you're using the signed version [00:43] it's strange because i add the option fbcon=rotate:3 and it appears in cat /proc/cmdline [00:44] I added it manually in /etc/default/grub [00:44] yes, that is very strange [00:46] right, let's be silly. Edit /etc/default/grub yourself, add "debug" to GRUB_CMDLINE_LINUX *after* the acpi_osi settings, do "sudo update-grub", and then see if that was added with "grep -n debug /boot/grub/grub.cfg /boot/efi/EFI/ubuntu/grub.cfg" [00:49] GRUB_CMDLINE_LINUX="fbcon=rotate:3 acpi_osi=! \"acpi_osi=Windows 2015\" debug" [00:49] no debug either [00:50] this line must be wrong [00:51] there must be something in the /etc/grub.d/ scripts failing to copy the value correctly for some reason. I've never come across this before [00:52] I don't remember having modify any script except adding xx_acpi (removed now) [00:53] I'll try remove my fbcon=rotate:3 and update to see [00:54] Drunkhawk91: before you do that... show us "pastebinit <( grep GRUB_CMDLINE_LINUX /etc/grub.d/* )" [00:54] Drunkhawk91: I want to check if there's any code referring to that variable that shouldn't be there [00:54] Even if I comment the whole line it doesn't update correctly [00:55] http://paste.ubuntu.com/25820418/ [00:55] the scripts in /etc/grub.d - 10_linux specifically, use that [00:55] errr... you're missing 10_linux! [00:56] i got 10_linux_proxy [00:56] is this ubuntu 17.10 ? [00:56] yes [00:57] Not sure where that came from but I cannot find it in any package in 17.10 [00:58] Drunkhawk91: what does "apt list grub-common" report [00:58] grub-common/artful,now 2.02~beta3-4ubuntu7 amd64 [installé] [01:01] this is the list of files in that package: note 10_linux, and no 10_linux_proxy. You've changed something on there at some point, which means grub can no longer generate its config. https://packages.ubuntu.com/artful/amd64/grub-common/filelist [01:02] hmmm, does "grub_customizer" ring any bells? [01:03] yes! [01:03] Grrrr [01:05] do you see anything like this (bug report for customizer) https://bugs.launchpad.net/grub-customizer/+bug/1518495 [01:05] Ubuntu bug 1518495 in Grub Customizer "fails saving grub configuration" [Undecided,New] [01:05] I will ban this kind of package, I knew it could be a bad idea [01:05] :) please do, it makes our job 10x harder [01:10] TJ-: nope no errors [01:12] Drunkhawk91: well, you need to figure out where installing grub_customizer moved your 10_linux too, and get it back. Try removing grub_customizer and if 10_linux doesn't reappear do "sudo apt-get --reinstall install grub-common" [01:27] TJ-:had a backup folder in /etc/grub.d/ with all grub.d/ scripts, /boot/grub/ and /etc/default/grub [01:27] Drunkhawk91: aha! [01:27] TJ-: should i manually remove all the _proxy scripts? [01:28] If grub_customizer was installed using apt I'd use that to *purge* it too [01:28] else you'll get the system in a mess [01:31] TJ-: it didn't clean /etc/grub.d/ [01:32] Drunkhawk91: crap package! [01:32] you'll have to remove all those weird bits, then to be sure "sudo apt-get --reinstall install grub-common" [01:52] TJ-: it was a mess, it didn't want to update-grub but I reinstalled grub properly [01:52] TJ-: I have acpi passed to /boot/grub/grub.cfg [01:52] TJ-: rebooting [01:59] TJ-: still no improvements ACPI Error: 3 table load failures, 8 successful (20170531/tbxfload-246) [02:00] is acpi_osi showing up in /proc/cmdline now [02:00] TJ-: but my dumb grub mistakes are solved, thank you for that :) [02:00] yes [02:00] :) [02:00] how's the SD card reader? [02:00] no detection [02:00] Hmmmph [02:01] mmc2: card never left busy state [02:01] had these errors before using modified DSDT too [02:02] sounds more likely the linux driver for that chip isn't complete then [02:02] show us another "pastebinit <( dmesg )" [02:03] http://paste.ubuntu.com/25820670/ [02:04] does the card work in other devices? [02:04] yes [02:05] it looks, from my searches, that this could be a kernel regression sometime in the last 5 months or so, judging by other reports [02:05] hmm i have a doubt now, it worked on my phone but never worked on this computer (in windows 10) [02:07] The commit description in this seems to offer an explanation of what might be happening https://groups.google.com/forum/#!topic/fa.linux.kernel/7MsrntjpRnM [02:12] TJ-:maybe that's why some users use patched kernels for all this laptop issues https://bbs.archlinux.org/viewtopic.php?pid=1700679#p1700679 [02:14] TJ-: but far too hard for me, I'll learn more about kernels and patches before doing anything stupid [02:15] have you tested suspend/resume now you have acpi_osi set? that is one of many things that setting should fix [02:16] yes, it can suspend but wifi disabled (no more wlan0) when resume [02:17] check /var/log/syslog for clues on that [02:19] Volker mentioning CONFIG_PMIC_OPREGION in the last post in that thread rather confirms what I thought from that patch I referenced - PMIC is Power Management Integrated Circuit. [02:20] so it looks like the IC maker hasn't published the datasheet for that IC and the driver writers are having to guess [02:21] best option seems to wait calmly so [02:22] at least I got wifi, touchpad, touchscreen, audio (speakers only) and X working [02:27] TJ-: Anyway, thanks a lot for your time and help! Learn many things today :) [02:28] hang on! [02:28] I'm reading the DSDT and I just spotted a possible reason [02:29] line 8989... the behaviour of SDHC depends on the value of OSID. I suspect that is set based on the OSI [02:30] can we know the expected OSI value or we have to try them all? [02:32] line 16086 has the INIt() function, there you'll see how the OSI name affects the value it sets in OSYS, and you'll see how the highest value is set for the latest version of Windows [02:32] if we can correlate whether OSID gets set based on an OSYS value we can figure out which path that code will be taking, and possibly change the OSI to make it take the other path [02:38] Can't see anything setting that value, only testing it. [02:38] must be set from somewhere else [02:39] OSID looks like it could be a bit flag because I only see tests for values 1 2 4 8 [02:45] I'm convinced that's it. If you read the SDHC's ABUF and WBUF resources you'll see they are quite different [02:46] different GPIO pin lists [02:46] and _CRS() returns one or the other based on OSID [02:48] other T100* users are using acpi_osi command line option [02:48] with Windows2012 as osi name [02:48] https://github.com/jonpry/t100_patches [02:49] but it might not be the same exact model [02:54] right. you could try it, but if they've coded Windows 2015 in it and we can see it sets the highest value of OSYS that will almost always means the most functions are enabled [02:54] And I've read hundreds of DSDTs; I used to specialise on the ACPI code in the kernel about 10 years ago [03:01] From my brief reading of the DSDT it looks to me like the wrong PMIC setup is being run, and possibly the wrong GPIO settings (via the ABUF/WBUF configs) [03:01] I have to go now, it's past 4am! [03:01] I've got a T300CHI here but not had any problems with it [03:03] TJ-: Have a good night and thank you again for everything! [04:21] good morning to all [04:24] hows the night been Bashing-om [04:24] artful rush already over? [04:45] lotuspsychje: :) .. been slow over all . a couple of interesting posts though . Yaeh the initial shock is wearing off on artful :) [04:46] kk [06:06] Good morning [06:14] morning all [06:16] ducasse: WB :) [06:17] Hey ducasse , Bashing-om [06:18] How are you guys? [06:19] lotuspsychje: As I am on irc .. can not be too bad :) You got a big day planned ? [06:20] Some meetings, not much more ;) [06:22] lotuspsychje: Personal interaction .. can be a good thing - make a good day . [06:23] hiya lordievader, Bashing-om - how are you guys today? [06:23] Doing good here, ducasse :) [06:25] incredibly foggy here, the world outside is just a grey blur [06:26] Good reason to keep the curtains closed ;) [06:26] ducasse: All the more reason to irc :) [06:34] Bashing-om: yep, i'm certainly staying inside, at least :) [06:36] ducasse: Fur Baby does not want to get the paws wet anyway . [06:38] Bashing-om: mine neither. just as well, being grey she would just disappear in the fog, worrisome if she wanders onto the road [06:45] ducasse: Perish the thought ! [06:52] hey ducasse & lordievader [06:52] lordievader: cool :p https://akademy.kde.org/sites/akademy.kde.org/files/2016/akademy2016-tshirt.png [06:53] :) [06:53] Hey lotuspsychje [06:53] 'sup, kids? :) [06:53] yow daddy [06:53] good morning lotuspsychje [06:53] Heh. [06:53] \o jink [06:53] o/ ducasse [06:56] !beaver [06:56] Ubuntu 18.04 (Bionic Beaver) will be the 28th release of Ubuntu - Announcement at http://www.markshuttleworth.com/archives/1518 - Discussion in #ubuntu+1 [06:56] yayyyy [06:56] morning all [06:56] hey EriC^^ [06:56] hey lotuspsychje [06:56] how's it going? [06:56] the next LTS to bug out [06:57] great here mate bout you EriC^^ ? [06:57] hey look we got a release schedule [06:57] doing good, just woke up [06:57] dax: where? [06:57] bionic beaver, nice :D [06:58] https://wiki.ubuntu.com/BionicBeaver/ReleaseSchedule (and #u+1 topic) [06:58] ah tnx mate [06:58] lets autojoin again [06:59] dax: at wich step, daily images will be available? [07:00] when the toolchain gets uploaded they'll start generating and getting put in pending. if it's like last cycle, we'll then be waiting a few days for all the autotest failures to get fixed, and then it'll get moved to current and linked in +1 [07:00] cool [07:01] (pending and current referring to the subfolders of http://cdimage.ubuntu.com/daily-live/ ) [07:05] http://news.softpedia.com/news/ubuntu-18-04-lts-dubbed-as-the-bionic-beaver-launches-april-26-2018-518186.shtml [07:08] lotuspsychje: is the build-essential stuff also on the iso? [07:08] ducasse: i think all is there, to make a working broadcom with the restricted-extras [07:09] sounds reasonable [07:09] !info build-essential [07:09] build-essential (source: build-essential): Informational list of build-essential packages. In component main, is optional. Version 12.1ubuntu2 (xenial), package size 4 kB, installed size 20 kB [07:09] optional hmm [07:09] the package list for the livecds is at e.g. http://cdimage.ubuntu.com/daily-live/current/artful-desktop-amd64.manifest [07:10] ah, brilliant - thanks [07:11] nah, no build stuff [07:12] gcc's in there. build-essential isn't. [07:12] ah [07:12] i assume there's some other place to get that list, i don't see it in the folder for the final release isos [07:12] i only looked for build-essential and make [07:12] i think someone pointed me at it once but no idea where it was :) [07:27] nite nite Bashing-om [07:29] lotuspsychje: Good nite lotuspsychje and all .. take care see yall on the flip :) [07:29] ducasse: https://www.deviantart.com/art/i3-on-Manjaro-Oct-2017-711589839 [07:32] oh, there are .manifests in the final release folders, i must have scrolled past them :\ [07:35] lotuspsychje: not to my taste, but... :) [07:42] bbl work guys :p [07:43] dax: the manifest should include all packages on the iso, right? i'm a bit confused here... === el is now known as elky === elky is now known as el [10:13] Howdy folks [10:17] heya BluesKaj [10:17] o/ [10:18] Hey EriC^^ \o [11:59] ok Bionic Beaver chainloader is in the repos === Thunder_Tw is now known as thunder_tw === thunder_tw is now known as thunder_Tw [15:36] I'm really not a fan of gnome requiring me to go to a website to update my extensions. [15:37] And the popups that say "This extension is out of date" or whatever won't open the link in Firefox. It has to be in done in Chromium AFAICT [15:38] huh? i usually ignore those messages .. [15:39] then your gnome extensions are out of date. lol [15:39] "your flash is out of date, jaba jaba" [15:39] no, not flash. gnome extensions. [15:39] extensions.gnome.org [15:39] yeah [15:40] nicomachus: i *think* it's hard to do anything else though [15:40] nicomachus: i guess they could be snaps [15:40] oh.. is this new in 17.10? [15:40] but that's still an open feature [15:40] oerheks: it's a gnome thing [15:40] the distro ships some extensions (iirc) [15:40] oh, now I see why it didn't work with firefox. I forgot you have to have a stupid BROWSER EXTENSION to do it. which I installed in Chromium but not Firefox. [15:40] but the SRU process gates those packages getting updated [15:40] nacc: there *has* to be a better way. [15:40] and the upstream updates are usually not bugfixes [15:40] they are new versions [15:40] nicomachus: don't run gnome? [15:41] much like ... everything .. gnome wants their own flow to all distros [15:41] just like go and go-get [15:41] nacc: ha, I guess that's a solution [15:41] or python and pypi [15:41] everybody does this meta-distribution stuff these days [15:41] which makes being a distro *really* hard [15:41] I've gotten to like gnome though. as much as my rice/unixporn friends talk crap all day. [15:42] nicomachus: yeah, the UX is overall pretty nice [15:43] after I spent some time on it. haha [15:43] yeah [15:43] stock gnome isn't so great. gnome with a few key extensions and tweaks is excellent. [15:45] nicomachus: yep [15:45] nicomachus: but that you can have a tweakable stock everywhere is good, imo [15:45] nicomachus: ship a good base, let users do stuff to do it locally [15:54] nacc: I can agree with that. [15:55] nicomachus: esp. for 17.10 [15:55] nicomachus: i expect we'll see, hopefully, a bit more of a default tweaked experience in 18.04 [15:55] the big thing for 17.10 was just gettig folks migrated successfully, i think [16:09] I'm still on 16.04 [16:09] nicomachus: ah gnome ubuntu? [16:09] 17.04 here .. my unity [16:09] but switched over to Gnome about 6 months ago [16:10] oerheks: when do you plan to upgrade? [16:10] because I knew it was coming, so figured I might as well jump in. [16:10] nicomachus: tbh, i saw this coming a while ago and jus tinstalled gnome ubuntu from the get go :) [16:10] nacc, not, i will prepare an other machine to get known to gnome3 [16:10] oerheks: ah ok :) [16:10] somehow i refuse to upgrade [16:10] I just installed the gnome-desktop package or whatever it was. [16:10] nicomachus: yeah [16:11] when i read about systemd hardening ... [16:12] example: https://github.com/konstruktoid/hardening/blob/master/systemd.adoc [16:12] highly interesting [16:20] my new moto x4 has some cool gesture controls. You can just wave your hand over the locked phone to have it show the lock screen and any notifications. I can't figure out how to get more gesture controls, though. [16:20] there must be a way to add more functionality to that... [16:21] The implication being the camera is always watching you? [16:22] TJ-: :) [16:23] https://www.youtube.com/watch?v=JsntlJZ9h1U [16:24] the anthem of an older and newer generation (the latter just don't know it) [16:24] what's that? [16:25] Private Eyes by Hall & Oates [16:25] "Private Eyes ... are watching you" [16:25] "they see your every move" [16:26] Ahhh. I don't touch youtube and I find videos very wasteful of bandwidth and low on information content :) [16:26] To me, a few words speak a thousand pictures :) [16:26] TJ-: :) [16:26] if i had a better way to make a song play on your system, i'd use it :) [16:27] You managed it ina few words :) [16:28] Trouble is, they're not private eyes in the threat sense... they're potential passing the data over the network to some entity where you have no control of what happens to it. [16:28] yep [16:28] and they presumably are also storing it [16:29] which means there is biometric-esque data somewher in the cloud [16:29] You have to assume that [16:31] slightly off-topic, but on my Android-based (LineageOS) PDAs (I refuse to call them 'smart' or 'phones'!) I have AFWall+, Android Firewall installed. I only allow applications I know require network access. I also have it pop-up 'toast' notications whenever it blocks access. That is *very* revealing the extent of un-necessary network access by so many applications. [16:31] TJ-: interesting! [16:31] We have open-source, we need the same for open-data - as in, we, the user/owner, are in control of it [16:34] Back in the late '90s I proposed one of my inventions/devlopments to the UK government - a nationwide federated identity scheme which had the subject in total control of who could access which aspects of the data stored on them (using cryptography, timed/count based access, and so forth). Unfortunately it never got anywhere because there was no foresight. The last few years we've finally got something [16:35] like it with federated ID checks, but it's opaque to the subjects and they have no control over the data held on them [16:37] I had written the entire thing so it was a real/live demonstration. The techies could see the benefits but the bearuacrats stymied the whole thing. I had the feeling then it was partially due to those in power not wanting to give control to the citizens. Since then that feeling has become reality in almost every country. Sleepwalking into the scenario in Orwell's '1984' [17:19] daftykins: this makes it all worth it: https://i.imgur.com/ZEIf3Y3.png [17:23] nicomachus: heh, i don't see it the same way [17:24] Hello everyone! [17:24] Is greig and Fallen here? I treid making the Live Pendrive with Ubuntu as per the turorial on Ubuntu's site. Also tried setting nomodeset in boot. and also in grub file in live pendrive. [17:24] Still the laptop stucks at the black screen after grub. [17:25] as you can see the topic states this is not a support channel, so queries in #ubuntu please [17:26] daftykins I think something is messed up there too. [17:26] I don't see any users there [17:27] MYounis: there's over 1000 people there. [17:27] MYounis: /join #ubuntu [17:27] they're not identified to nickserv and #ubuntu is +r [17:28] !register [17:28] For information on registering your IRC nick, see https://help.ubuntu.com/community/InternetRelayChat/Registration - For any further help, ask in #freenode. [17:28] or see the multiple messages in the -unregged channel you ended up in. [17:28] * nicomachus wonders why this channel isn't +r tbh [17:29] nicomachus: because it isn't getting spam attacks and nobody with access to it (which is all cloaked ubuntu members plus some people) is sufficiently convinced/motivated to do it pre-emptively [17:30] Ok thanks. [17:34] MYounis: (you can also ask in #freenode (or probably also in here)) if you have questions, I'm about to wander off so -unregged probably won't be much help [17:38] thanks dax [19:42] I've been using this phone pretty much ALL day and it's at 48% battery. :D [19:42] 3h 0m 12s of screen time [19:43] 1h 6m 8s of Pokemon GO (high battery usage), which includes 31m 43s of GPS usage [19:46] i am seriously afraid of pokemon .. Poke-Phobia [19:46] :-D [19:46] no, i suffer Chrometophobia [19:47] it's a good time [19:48] There is always someone who helps me with that, thanks. === el is now known as elky === elky is now known as el