[00:06] how come i am able to do `ssh user@www.profess.com` but I can't do `ssh user@profess.com`? My A record is `@.profess.com` points to the right IP [00:07] why is the frame rate so low when I do this? https://streamable.com/48le4 [00:07] I'm using 18.04 [00:09] profess, do both hostnames resolve to the same IP when you resolve them locally at your machine? [00:10] Sven_vB, profess.com resolves to nothing at all. :| [00:10] profess: you broke the zone [00:10] profess, now you know :) [00:11] I don't think the "@" belongs in your A record line [00:12] also I thought @ was implicit on the right side [00:13] well is it possible to just leave subdomain blank if you have access to the actual file? My registrar's interface only lets me do that, then it replaces it with the `@` symbol. [00:13] @ is the origin of the zone, nothing do to with "right side" [00:15] @ is supposed to work to let me do just profess.com according to everything i'm reading. I guess I'll just give it more time and stop messing with hosts and hostname. [00:17] @ is the origin of the zone. so if the zone is for profess.com then @ is profess.com. so at minimum you need @ IN A and you can have www (without dot) as CNAME for that [00:18] profess: here's the doc for more info: http://www.zytrax.com/books/dns/ch8/ [00:20] is it possible to create a partition to split the size of a disk that has already been partitioned? I want to split my disk into two partitions so I can use windows in one and ubuntu in the other, but how can I do this without losing the system that is already installed? (ubuntu mate) [00:21] zmugg: show a pastebin of "sudo parted -ls" [00:22] zmugg: you can shrink windows and ubuntu will use the unallocated space and make a partition [00:22] zmugg: nevermind the pastebin, use windows to shrink it with disk management tool, you might need to defrag first if it says it cant [00:26] Thanks blackflow [00:26] Hey there! is it possible to express an /etc/network/interfaces definition for a L2 vlan interface and have it come up automatically with the system, without an ip? auto eth1.99; iface eth1.99... but this is incomplete. [00:26] haven't been able to figure this out from grepping ifreload plugin [00:27] iface eth1.99 is required but unsure what to do to tell ubuntu to just simply bring it up and dont ask questions [00:29] but has no unallocated spaces === perry is now known as Guest79071 [00:35] is it possible for me to use the live cd with gparted installed to do this? === bhalithan1 is now known as bhalithan === Dreaman is now known as Blade [00:38] resize ubuntu mate? sure, if it is not encryptes, it is easy with the live iso + parted [00:38] zmugg, ^^ [00:39] tons of howto's, https://howtoubuntu.org/how-to-resize-partitions-with-the-ubuntu-or-gparted-live-cd [00:39] zmugg: yes use gparted, i thought you meant you had windows installed [00:39] your problem will be: after installing windows, you need to fire up the live iso again, to reinstall grub bootloader [00:40] zmugg: what oerheks said ^ [00:40] that is why we advise to install windows first, but it can be done [00:44] I'll create a backup as a precaution [00:46] are there not any good python IDEs on the repos provided on install? [00:49] does Ubuntu desktop include sshd preinstalled? [00:49] I have sshd_config file but I don't seem to have sshd installed [00:50] deznutz: pycharm or bust.. not in a repo, but just available as a .tar.gz with a shell script inside. [00:50] thatlizdude: sshd is not installed by default on ubuntu desktop. and this configuration file would not be there either, unless you had sshd installed previosuly or placed it there. [00:51] oh I edited ssh_config [00:51] hmm [00:51] deznutz: thonny is readily available from apt. it's rather simple, though. [00:53] deznutz: you may find more available via !ppa or pip [00:56] Hello, I am curious what the best e-mail client is for Exchange users? Is it pretty much Evolution or Thunderbird with Davmail these days? [00:57] personally I do not like thunderbird, I have had many problems with it in mate === ztrawhcse is now known as elibrokeit [00:58] Oh I see, what do you use @zmugg [00:59] pigdin PythonMonads [01:05] thanks Tomreyn [01:06] ok zmugg [01:21] I am trying to understand why as a normal user I cannot do a 'mysql -u root.' It says 'access denied for root@localhost' but when I do sudo mysql it connects me without a password. When I do a USE mysql; SELECT user, host, password FROM user; it shows me root@localhost w/ no password. I assume that explains why I can login as root without a password, but the question I have is why I have to use sudo for it to work. is it because it's [01:21] matching user@localhost instead of 'root@localhost' when trying to connect and sudo changes the user to root? [01:22] sometimes it's not enough to know that something works, you want to understand 'why' it works. [01:26] illuminated: i don't know, but try `echo $USER $UID` with & without sudo; then `whoami` with & without sudo .. you'll note some detail changes with sudo, other doesn't. [01:28] guiverc: no change. both reports the same username and uid [01:28] oh, interesting. whoami reports differently though [01:29] one reports user, the other reports root. [01:30] illuminated: Well, here's a basic question. Let's assume it's okay for "sudo mysql" to work - it's run as root. If 'user' (any user) can say "mysql --hey-I'm-root", why would you expect (or want) that to work? [01:32] I never said it was 'ok.' I just wondered why calling it with sudo worked and without did not. [01:32] illuminated, since 16.04 : This means that a non-root user can't log in as the MySQL root user with an empty password. >> https://wiki.ubuntu.com/XenialXerus/ReleaseNotes#MySQL_5.7 [01:33] is a guest session still available for Ubuntu? and how would you set it up in bionic beaver? [01:33] bynw, all versions have a guest session standard, logout, choose.. [01:33] desktops, that is [01:35] thanks oerheks [01:35] illuminated: I agree; I just didn't consider your question completely. Based on oerheks' response, I would check the permissions of mysql.sock, wherever that's hiding these days [01:38] oerheks, no guest option was at the login screen. only my own username or a not listed link. when choosing not listed there is a prompt for a username and then a password and "guest" doesnt work. does it need to be enabled someplace. been trying to find it online and only finding stuff for older versions of ubuntu [01:38] how about top panel right side? [01:39] if you delete your username, would do too i guess [01:41] illuminated: not sure about your configuration, but I can do mysql -u root with an empty password on my laptop (which just serves as a test environment). runing 18.04 mysql 5.7.22 [01:42] howudodat: well, I'm running mariadb not straight mysql [01:42] and according to https://mariadb.com/kb/en/library/authentication-plugin-unix-socket/ socket auth is default with mariadb since ubuntu some version or another back [01:42] oerheks, looks like 18.04 uses GDM/GNOME which doesnt support the guest session login. it was disabled with 16.10 according the an article i'm reading but there are work arounds [01:48] illuminated: if you do select User, Host, HEX(authentication_string), plugin from mysql.user what is your root line? [01:50] I recently installed 18.04 on a machine with a USB Ethernet gadget. I want to give it a static IP and specified one in /etc/netplan/99-usb.yaml. But when I 'netplan apply' (or --debug apply) it fails because the file /sys/..../usb0/device/unregister doesn't exist. Unfortunately I'm asking from memory; netplan sees this as a hotplug device and tries to replug it but the device/un directory and file don't exist. So, absent this, [01:50] what is the "right" way to give device 'usb0' a static IP in bionic? [01:50] howudodat: | user | host | authentication_string | plugin | [01:50] +------+-----------+-----------------------+-------------+ [01:50] | root | localhost | | unix_socket | [01:50] +------+-----------+-----------------------+-------------+ [01:50] 1 row in set (0.01 sec) [01:51] illuminated, pastebin please [01:51] apologies [01:52] so I have the following sudo policy : https://paste.ee/p/r45UK how can I get this policy to show up in ubuntu software, it just shows my superuser account instead (has sudo access) [01:52] illuminated: ok, so my install isn't fresh, but I keep migrating my db (been doing it this way since 12.04). you can do this: ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY ''; and it should work. [01:54] howudodat: cool === padgaland_ is now known as padgaland [02:10] howudodat: IDENTIFIED WITH changes which authentication plugin your db user is authed by. You can view the options with this SQL query: SELECT plugin_name, plugin_type FROM information_schema.plugins WHERE plugin_type='authentication'; [02:20] illuminated: that is correct. [02:22] haha this system76 ad is pretty funny. "I don't want a TV with a keyboard!" https://www.youtube.com/watch?v=TcWVKqeF0MY [02:22] but i do wonder if this laptop gets more than 3 hrs battery life :) [02:22] oops im in the wrong channel [02:27] illuminated: as I understand it socket auth uses the logged in users credentials by retrieving the uid. This would render -u root superfluous. since the local user doesn't have an entry in the user table for authenication you get denied. sudo pulls in the uid of root and that is allowed in the table. If you dont want that change to mysql_native auth. (I may not have explained tht 100% corr [02:27] ect, but the gist of it should be fairly close) [02:27] can someone tell me what the hell i'm doing wrong: https://toolbox.googleapps.com/apps/dig/#A/afiction.org A record gives the right thing but navigating in my browser gives me no page [02:28] like is it really possible google's dns is updated but mine isn't [02:29] howudodat: yeah, that's kinda what I read as well [02:30] max3: afiction.org returns a chart [02:30] howudodat, lol i guess my dns is gimped for real [02:30] thanks [02:31] max3: try dig afiction.org....or nslookup, then set type=a, then set debug, then afiction.org [02:31] both tools will give you some extra hints [02:32] how do i set ...? dig from terminal returns a response that says there's no answer [02:32] max3:ping afiction.org [02:33] does it respond with anything? [02:33] name or service not known [02:34] oh nm it's all set now (what i really wanted to google to see a TXT record) [02:34] thanks howudodat [02:41] hello [02:50] hey i have some kernels (old ones that i added my self and i want to get rid of them so i can get some disk space back) but autoremove and autoclean doesn't delete them and free up space [02:52] Yes, because you added them specifically. [02:53] ghostnik11: http://iam.tj/projects/ubuntu/apt-autoremove-old-kernels [02:56] good evening all [02:56] almost midnight for me [02:56] I'm looking for text to speech = something better in quality than eSpeak - but like espeak - any suggestions? [02:56] bout to say good morning [02:56] krytarik, leftyfb: yeah i was trying to do it just via commands in terminal. the only way i can do it is if i run a script? there has to be another way. and i don't understand, just becasue i added them my self, ubuntu can not autoremove them? [02:56] i just installed kubuntu 18.04 lts and having issues with copying files to my second hard drive and also the usb..in dolphin file browser my main hard drive has a green icon to the left of it and the others have a red icon? [02:57] hehe [02:57] good morning aswell [02:57] ghostnik11: that script will do the work for you [02:57] u think it is permissions related ? [02:58] leftyfb, so that means everytime i add a kernel manually, i will have to run this script to remove them? [02:58] ghostnik11: no, you can remove them manually if you like [02:59] leftyfb, yeah but with this script i am going to have to first make it using text editor then i have to make it run then i will have to put it in the command window. can [02:59] can't we just have one command to do that all for me [02:59] :/ [03:00] leftyfb, i will copy and paste it into a txt file now and get started on it [03:01] ghostnik11, if you added the kernels manually, then it's easiest to remove them manually too. After all, you know which ones you added and which ones you no longer need. [03:02] ic56, yeah but i added them through, command. i figured i could just uncommand them or something [03:03] ghostnik11, I don't understand. What do you mean "through command"? What command? [03:04] ic56, like going into terminal and telling it to add this kernel from like the kernel website or download it first from kernel website then run command to add the kernel [03:04] Is anyone able to troubleshoot this? https://www.ffxiah.com//forum/topic/52488/the-windower-50-alpha/1/#3356128 Supposedly from a couple sources Ashita is supposed to work while old versions of windower never has (but i am unable to get it going https://www.ashitaxi.com/ ) "Im on Ubuntu 18.04 & i can run Vanilla XI np its golden but when it comes to API i get no luck ;; https://bugs.winehq.org/show_bug.cgi?id=28861 [03:04] bugs.winehq.org bug 28861 in imm32 "Final Fantasy XI hangs after character selection" [Normal,New] [03:04] http://www.playonline.com/ff11us/download/media/install_win.html this is where you can get the base came & well [03:05] While you cant play without a monthly fee i dont even think you would need to actually run the game updates & get beyond base installation to troubleshoot this [03:05] + honestly if Ashita was to run then that would give you access to private servers but yea trying to crossover from windows to linux I couldnt success soo far [03:05] & theres reports of Ashita working... In other word if i could get that to run on ubuntu than more than likely Windower5 Beta would work too as its requiring same components as far as i can tell [03:05] heres claim that Ashita should be working on linux https://www.reddit.com/r/ffxi/comments/7acvgv/does_ffxi_run_very_well_under_linux_thinking_of/ On top of the initial Windower5 Beta link that i gave first where someone claim that they got it working on Wine also [03:05] ghostnik11, So, after downloading, what command did you use to add each kernel? [03:05] For years ppl asked if windower could work on linux & the answer was no as you can see here : http://forums.windower.net/index.php@sharelink=download%3BaHR0cDovL2ZvcnVtcy53aW5kb3dlci5uZXQvaW5kZXgucGhwPy90b3BpYy8xMDcyLXJ1bm5pbmctd2luZG93ZXItd2l0aC1mZnhpLXRocm91Z2gtd2luZS8,%3BUnVubmluZyBXaW5kb3dlciB3aXRoIEZGWEkgKHRocm91Z2ggV2luZSk,.html but i thought Windower5 would fix that maybe no longer needing dependencies of like [03:06] !paste | buthow0 [03:06] buthow0: For posting multi-line texts into the channel, please use https://paste.ubuntu.com | To post !screenshots use https://imgur.com/ !pastebinit to paste directly from command line | Make sure you give us the URL for your paste - see also the channel topic. [03:06] netframework 3.5-40 as its up to 4.7 now but I have been failing at getting it solved [03:06] Ashita was alternative & assuming it would run, more than likely the new windower would too. That was my question Whew sorry for the spam [03:06] buthow0: go to #winehq for help [03:07] well i am gonna mess with the permissions gots to be that [03:09] ic56, sudo dpkg -i *.deb [03:10] ghostnik11: for those kernel images you have in /boot, you can get the packages they were installed from like this: dpkg -S /boot/*linu* [03:10] w00t w00t [03:10] LINUX 4 LIFE [03:12] HERE! https://paste.ubuntu.com/p/fkpK9wvHbj/ [03:12] tomreyn, yeah there is 3 there. one is the current kernel i am using. then you have two more that i can uninstall to save disk space [03:12] tomreyn, ic56 linux-image-4.4.0-130-generic: /boot/vmlinuz-4.4.0-130-generic [03:12] dpkg-query: no path found matching pattern /boot/vmlinuz-4.4.0-130-generic.efi.signed [03:12] linux-image-4.9.87-040987-generic: /boot/vmlinuz-4.9.87-040987-generic [03:12] ghostnik11, Ah, I see. In that case, assuming you still have the *.deb files, the easiest way might be sudo dpkg -r FILE.deb Where "FILE" is any package you want to remove. [03:16] ghostnik11: here's a better script: awk '/^[[:blank:]]*linux/ {print "/boot"$2}' /boot/grub/grub.cfg | grep -v 'signed' | sort | uniq | xargs dpkg -S [03:16] !paste | ghostnik11 [03:16] ghostnik11: For posting multi-line texts into the channel, please use https://paste.ubuntu.com | To post !screenshots use https://imgur.com/ !pastebinit to paste directly from command line | Make sure you give us the URL for your paste - see also the channel topic. [03:18] ghostnik11: those you want to uninstall you can run 'apt purge' against. but you'll probably want to uninstall headers as well, incase those are seperately packaged. this will list all linux* packages (probably including the headers, if any): dpkg -l 'linux*' [03:20] ghostnik11: also, some of these packages may have been installed thorugh meta packages. the 4.4.0-130 kernel image is a dependency of the linux-image-generic package on ubuntu 16.04, for example - but i dont know which ubuntu version you are running, did you discuss it? [03:21] tomreyn, i am running 16.04 [03:22] buthow0: (as lefty said) please ask in #winehq, we can't really help with making windows programs work through wine here. [03:22] tomreyn how come? i went there& ill stick to it but im looking for help nearly everywhere all i get is ppl running from it like hell [03:22] ghostnik11: ok, that's good to know. :) [03:22] ghostnik11, tomreyn: I'm off. Catch you later. [03:23] ic56, okay bro, thanks for the help [03:23] tomereyn if you dont know how sure just say it but so far all i get is getting swiped off as idk,,, [03:23] buthow0: would you join #windows and ask them how to make some closed source linux game work on windows? [03:24] tomreyn we are in 2018 & tbh no im here because of that because i try to move from windows [03:24] buthow0: software made for a different platform is best used there only. [03:24] tomereyn if anything im trying to have linux adapt further, while i do desire to learn more myself, i could just ignore it & stay on my other computer but i wanted to try linux forever [03:25] tomreyn theres testiomys of it working tho & if you clicked th elinks i gave you the guy that created the new beta API himself say it should work on linux & that he would like it to [03:26] tomereyn but of course because video game! its not important for ubuntu developpers... [03:26] tomreyn* [03:26] buthow0: i like that you try linux. i'm just saying we cvan't support you in making windows applications and games work on linux here, unless they are built for linux. in fact we only support applications available in ubuntu here (and sometimes a little bit more). [03:26] ffs i need a new keyboard [03:27] buthow0: this is not the place to discuss this. please move this elsewhere. we have #ubuntu-offtopic for non support topics. [03:28] (I'll be happy to talk a bit more there) [03:28] k [03:33] Im unable to join channel tomreyn [03:34] !register | buthow0 [03:34] buthow0: For information on registering your IRC nick, see https://help.ubuntu.com/community/InternetRelayChat/Registration - For any further help, ask in #freenode. [03:35] you'll need to have your nickname registered to join [04:01] tomreyn, the apt purge worked, thanks bro. i got rid of 4.9.8 kernel and 4.0.4 kernel and freed up more than 500mb [04:03] ghostnik11: welcome. hope you'll still boot successfully then. [04:03] tomreyn, lol, we will see [04:05] is this normal for a machine without nfs installed? and for none of the inodes to show up in /proc/net/unix ? http://termbin.com/dd0k [04:05] it's an ovh dedi [04:05] 16.04 [04:07] sirensari2, could wel be, ovh provides a heavily tweaked system [04:07] oerheks, i used the non ovh kernel or w/e they call it [04:08] sirensari2, better reask in #ovh ( unofficial support ) [04:08] ghostnik11: su be sure to run update-grub, and check its output [04:08] it's not normal though right ? [04:09] i guess ill just spin up a vps to test [04:25] tomreyn, yeah it updated and only shows my current kernel and also the efi option for my android x86 boot. so i think i am safe [04:33] Heya [04:34] Got to move/resize my current /home partition live [04:34] Please help [04:35] kutt, boot a live iso, open gparted and do so? [04:36] kutt: and before you do this, make backups. [04:37] given i dont have a live iso right now [04:37] Can this be done with tty [04:37] ? [04:37] short answer: no. [04:38] because we're too lazy to guide you through it. [04:38] !cookie | tomreyn [04:38] tomreyn: Wow! You're such a great helper, you deserve a cookie! [04:38] the other approahc is much easier and less error prone [04:38] !botsnack [04:38] Yum! Err, I mean, APT! [04:38] lolz. Speaking the truth though. === bhalithan1 is now known as bhalithan [04:43] Hmm really good support [04:43] thanks. [04:43] kutt: Do you need to make it bigger or smaller? What do you mean by "move? [04:44] yes, we're kind enough to save you from mistakes you don't want to make. [04:44] make it smaller [04:44] kutt: you expect free support from people where it takes a long time, is risky? (unless you know what you're doing) - you expect a bit much in my view. using a 'live' is user level work; not cli [04:45] kutt: if you're going to make it smaller, make sure you back up all your data. shrinking a partition has a risk of data loss especially with low disk space [04:45] I am free to take risk . [04:46] growing, too, or any kind of partition table edits. [04:46] you'll need a livecd or live usb of some linux (the lighter the better). Before you boot into it, run "cat /etc/fstab" and "cat fdisk -l" [04:46] growing might be possible, but shrinking .. well, you find out. [04:47] write down the output or print it [04:47] ahhh .. but he does not want livecd, just tty [04:47] well by live I mean live console too [04:47] you can't format a mounted disk [04:48] so boot into the livecd or liveusb and if you prefer console mode, run parted [04:48] the interface is pretty intuitive. The /etc/fstab file will tell you which partition is mounted on /home [04:49] if he had, we saved 10 minutes [04:49] given i dont have a live iso right now [04:49] then fdisk -l shows you the layout so you cn locate the partition [04:49] within parted, help will display the command list. [04:50] just resize whichever partition /home is mounted on (parted allows size specification in KB, MB, GB, etc instead of sector sizes, which is convenient). Hopefully its near the end of your drive, before the swap space. [04:51] https://pastebin.com/KsSmLyRG [04:52] your linux is in one extended partition, like ubuntu 18.04 does standard now. there is no seperate /home/ [04:53] y [04:53] yeah your swap space and linux is a single partition divided into "logical partitions" [04:54] you have two Windows partitions...do you happen to know why its set up like that? [04:54] ok if you think its complicated , then one thing can I just want to copy the bytes from /home to /dev/sdb (new ssd) ? [04:55] you have another drive available? are you using it for anything? [04:55] given /home is a folder not a separate drive [04:55] ya an empty one [04:55] to keep backup [04:55] I just want to copy bytes through dd [04:55] ok...make sure you read up on this a little before executing... [04:56] yeah it would be: [04:56] dd if=/dev/sda of=/dev/sdb bs=512 [04:56] but copy not possible through dd for directory [04:57] "/dev/sda" and "/dev/sdb" are files, not directories [04:57] linux treats all devices as files [04:58] ya what can be done for directory then. It gives error [04:59] dd: reading '/home': Is a directory [04:59] it won't copy a directory. You don't need to. Copying sda to sdb should transfer all data from one drive to another, with all metadata about directory hierarchies intact [04:59] but problem is /dev/sdb is 120gb sdd [05:00] and sda is 500 gb hdd [05:00] kutt: you can either image the entire linux / partiiton, or, probably the better option, create an archive of the /home directory tree. [05:00] Hi all, I was previously running Ubuntu 16.x on this hardware. I have since done a clean install of Ubuntu 18, but having done so, my maximum resolution is less than it was before. Where should I start for investigating this? lshw gives me this: product: 82G33/G31 Express Integrated Graphics Controller. Which I know is not a fantastic card, but it's capable of more than 1024x768, which is the current max in [05:01] settings. [05:01] that's an option if you have the disk space. You can tar the entire home directory, mount /dev/sdb, and copy to it. You'll need to format sdb first, of course [05:01] tomreyn : second option looks better [05:02] alone is 287G [05:02] so, format the disk first. My favorite console tool when I don't have to resize is cfdisk...in that case its cfdisk /dev/sdb [05:02] * root alone [05:02] tar can compress the directory and it will probably fit in 250GB [05:03] kutt: what are / were your plans for sdb? [05:03] T3ss: try hitting and typing display; I can view & change resolution from there. (this is vague sorry, as I'm using xfce & can't seem to find the gnome-settings at the moment) [05:03] kutt: did you mean to use it some otherway? [05:04] T3ss: sorry you've already tried - my mistake [05:04] kutt: I'm thinking your best option is to back up all your data in /home on the blank drive and then reinstall Linux [05:04] guiverc: yeah, the max in there is 1024x768, but I had higher options in Ub 16.x [05:05] it's probably possible to do the entire root filesystem...but only if you know you've got the space for it [05:05] space only for /home folder [05:05] is reformatting required ? [05:06] ok so cfdisk /dev/sdb (or your preferred partition editor...) [05:06] if sdb is empty, its not formatted [05:06] formatted as NTFS [05:07] oh, that's workable [05:07] so you don't have to [05:07] ok then just rysnc ? [05:07] first find an empty folder to mount it on...try "ls /mnt" [05:07] if that folder is empty, thats a good place [05:08] rsync? prob not necessary [05:08] I'm thinking just archive and compress all of /home...you'll save space [05:08] already mounted on /media [05:08] as NEw_VOlume_ [05:08] oh word...so here's the command to run [05:08] as New Volume_ [05:10] first, do you have enough space on your current drive to hold a copy of all of /home? [05:10] just temporarily [05:10] ya man [05:10] ok [05:10] all empty [05:10] go to / and run [05:11] sudo tar cvjf home.tar.bz2 /home [05:11] on / or /media/New Volume [05:11] it will output every single file it works on, which is what the v does...(you can omit the v if you don't want to see it) [05:12] T3ss: i'm at a loss sorry, other than to check your cable connections aren't loose (yes I've seen it reduce resolution) [05:12] actually yeah, try navigating to /media/New Volume [05:12] then run the command [05:12] tar -cjf home.tar.bz2 /home [05:13] it'll take awhile [05:13] I ran sudo tar cvjf home.tar.bz2 /home [05:13] guiverc: I'm thinking of going into recovery mode and creating a xorg.conf. [05:13] I know, OK [05:13] yeah that's right [05:13] Thanks [05:13] T3ss, maybe a factory reset of the monitor helps [05:14] at the end, the other disk should contain the file "home.tar.bz2". You can just unpack it to restore everything, including directory structure and permissions. see man tar for more info. good luck [05:14] oerheks: Not sure this monitor (a Samsung TV) supports that. [05:16] T3ss: it will support unplugging thze power for 1 minute. [05:17] tomreyn: heh, ok, I'll try it. [05:17] T3ss: i've actzually seen this help with edid issues, though on non 'smart' devices [05:18] Whats thre best simple video editor in unbuntu that support smany formats. Mainly need it for simply editing/snipping video and converting. nothing fancy [05:19] kutt: oh, one more thing. Just check the tar file with ls -l to make sure it isn't owned by root [05:20] MysticReverie, openshot, tons of others too https://itsfoss.com/best-video-editing-software-linux/ [05:20] tomreyn: What's 'edid' ? [05:21] T3ss: the data a monitor provides other devices to identify itself and its capabilities. [05:21] 'edit' ? [05:22] oh lol [05:22] https://en.wikipedia.org/wiki/Extended_Display_Identification_Data [05:24] i'm beginning to think tomreyn can cure rainy day ! [05:28] unless there's an fsck wrapped command for it, no. [05:29] hmm [05:30] 'i'm a doctor Jim, not a mgician!' [05:32] So, I pulled the power on the tv for a couple of minutes, but display settings still only show up to 1024x768 [05:33] Could it be that wayland was a better server for my rig? [05:34] T3ss, i was wondering the other way, xorg better? [05:35] oerheks: isn't 18.04 defaulted to xorg? [05:36] yes [05:36] if you had better screendetection in wayland, i would switch back [05:37] oerheks: was 16.x wayland or xorg? [05:37] also xorg, wayland started with 17.04 or 17.10, as default [05:38] ok, so to switch? [05:38] I just log out and there should be an option on the login screen? [05:39] logout, click username, with password dialog you would see the settings icon to change [05:39] T3ss: probably. before you do this, can you post the output of the "dmesg -T | nc termbin.com 9999" command? [05:40] what does nc termbin.com do? [05:40] T3ss: it posts the log to this website [05:41] tomreyn: huh, cool [05:41] done [05:41] T3ss: tell us the url, please, and repeat the process for 'cat .local/share/xorg/Xorg.0.log | nc termbin.com 9999' [05:43] http://termbin.com/mhty <- dmesg [05:44] tomreyn: do you mean /var/log/Xorg.0.log ? [05:45] tomreyn: http://termbin.com/930u <- Xorg log [05:45] MysticReverie, have you starred your trek today? [05:46] T3ss: remove nomodeset [05:47] tomreyn: How do you mean? 'remove' isn't a valid command. [05:48] T3ss: oh, i thought you'd know how it got there, since it's not there by default. ok, so run this in a terminal: sudo nano /etc/default/grub [05:49] there should be a line starting "GRUB_CMDLINE_LINUX_DEFAULT=", i it probably has "nomodeset" in it. if so, remove it. if not, is "nomodeset" listed elsewhere on this file? [05:49] tomreyn: I used a couple of xrandr commands to try and add the profiles, but reversed those when they didn't work. [05:49] tomreyn: no, "nomode" doesn't appear in the file. [05:50] how ot chang ethe size of the timeline and preview in kden live? the timeline area is huge, and the vide opreview is very small. but i cnat see to drag to chang ethe size [05:50] T3ss: oh wait you did a recovery boot. can you not boot normally then? [05:50] tomreyn: no? I haven't dont a recovery boot. I was going to in order to generate a xorg.conf. [05:51] T3ss: you can exit the file editor using ctrl-x, then answer to not save the file [05:51] tomreyn: thanks, I opened in vim anyway. [05:52] tomreyn: I did run "xrandr --newmode" and "xrandr --addmode" [05:52] T3ss: the "dmesg" output you provided is definitely from your current session. it says "Command line: BOOT_IMAGE=/boot/vmlinuz-4.15.0-23-generic root=/dev/mapper/ubuntu--vg-root ro recovery nomodeset", which means that your kernel was booted with the "recovery" option, which takes place when you select the recovery option from grub menu. [05:52] tomreyn: to try and manually add 1900x900 and 1920x1080 - but when I activated them in the gui it wasn'tg right. So I *thought* I removed them. [05:53] tomreyn: Ah, perhaps I haven't rebooted since I had gone into recovery for a separate issue. [05:53] T3ss: ok, thanks for clarifying,. i don't think the two are related, though. can you reboot and post dmesg again, like before? [05:53] tomreyn: will do. Back soon. [05:58] recently updated my xubuntu 18.04 laptop and rebooted... now it hangs starting gdm [05:59] also weird is when I hit 'ctrl-alt-f3', keyboard stops working after about 30 seconds, and I have to hit ctrl-alt-f3 again to get back [05:59] Guest116: do you have an error like starting gnome display manager link is not ready? [05:59] any ideas as where to start trouble shooting? [06:00] Guest116: i'd suggest editing grub (E) and removing 'quiet splash' to see if useful messages appear during boot [06:00] ps: 'quiet splash' are found on the linux (kernel) line [06:01] okay I will try that now [06:06] T3ss: did the reboot help? [06:06] removed quiet splash and rebooted [06:07] tomreyn: can't currently boot. It keeps hanging just before the login screen. [06:07] it's hung on '[ OK ] Started User Manager for UID 125' [06:07] tomreyn: (I'm on IRC on a different computer now) [06:08] Guest116: nothing unusual before that? and can you ctrl+alt+f4 & use a terminal? (I assume yes) [06:08] also weird that my usb devices won't work either, though when I check /var/log/messages, it shows up that I'm connecting/disconnecting [06:08] T3ss: ok, do you know how to bring up the grub menu and edit the linux boot parameters there? [06:09] Hi, syslog reports; gvfsd-metadata[*]: message repeated 7 times: [ g_udev_device_has_property: assertion 'G_UDEV_IS_DEVICE (device)' failed] ?? why ?? [06:09] and yes, I can ctrl-alt-f4 and access the tty [06:09] Guest116: is your system up to date? if not: sudo apt update && sudo apt full-upgrade from tty [06:09] tomreyn: yes, I'm trying (again) with quiet and splash removed, but it doesn't seem to be taking effect. [06:10] tomreyn: It just goes to a blank screen for a while, and eventually loads a cursor in the bottom right but is unresponsive. [06:10] T3ss: if this doesn't work either, then try recovery again, and choose to enable networking on the menu, then go to the root prompt. [06:10] xubuntu1804: tell us the full story please, ubuntu version? what are you trying to do? [06:10] though after about 10-15 seconds, the tty fails to take input and I have to ctrl-alt-f3 again [06:11] tomreyn: it was doing this before, I thought I'd fixed it, but apparently not. That's why it would have still been ia recovery boot before. [06:11] lotuspsychje: I just did the update 30min ago, and that is what I believe caused this [06:11] lotuspsychje: no packages need updating at this time [06:12] xubuntu-18.04, full up to date, checking why I'm getting gvfs errors [06:12] I'm interested to know what Guest116's issue is, because the snippets I've seen sound like what's happened to me. [06:12] I'm trying to figure out what device grub efi is installed on. I think I may have messed up and put it in multiple locations [06:12] Guest116: i don't know, it could be that gdm is restarted & takes control (switching to gui logically at least) but fails... forcing you to switch to term again... (guess only) [06:13] Guest116 guiverc check my recent bug on gdm, (ubuntu-desktop) https://bugs.launchpad.net/ubuntu/+source/gdm3/+bug/1780986 [06:13] Launchpad bug 1780986 in gdm3 (Ubuntu) "Boot stuck at ubuntu logo gnome display manager" [Undecided,Incomplete] [06:13] Any grub/EFI experts here? [06:13] tomreyn: ok, here we are again. I've gone into recovery, then enable networking. During the enable networkig phase it gets to "[ OK ] Reached target Swap" and then sits there. I've found if it Ctrl C, it moves on and boots. [06:14] zuser: best to ask your question to the channel [06:14] maybe; https://bugs.launchpad.net/ubuntu/+source/gvfs/+bug/1752091 ?? [06:14] Launchpad bug 1752091 in gvfs (Ubuntu) "gvfsd-metadata[1703]: g_udev_device_has_property: assertion 'G_UDEV_IS_DEVICE (device)' failed" [Undecided,Incomplete] [06:14] Guest116: if you `dmesg|less` (hit G to jump to bottom) do you see any clues (are you capable of recognizing any) then maybe journalctl.. [06:15] Does anyone know how to list where grub-efi is installing the bootloader? [06:15] guiverc I did a /etc/init.d/gdm3 stop and now the tty issue doesn't happen anymore [06:15] As in what device grub is installed to? [06:15] xubuntu1804: yeah that bug looks usefull, have you affect yourself yet? [06:15] Guest116: have a look at lotuspsychje's suggested bug, your issue exactly - try what lotus suggested (work around) and see if it helps [06:16] tomreyn: confirmed again, I hit Ctrl C and now I'm at the login screen [06:16] guiverc Guest116 not sure if it will work on xubuntu (ubuntu-desktop package) [06:16] lotuspsychje guiverc thanks! [06:17] will check now [06:17] Guest116: okay - i forgot you were xubuntu (xfce) so maybe it's different, I still suggest try [06:17] T3ss: it's possibly this issue ("getrandom hang") https://bugs.launchpad.net/ubuntu/+source/gdm3/+bug/1779476 [06:17] Launchpad bug 1779476 in gdm3 (Ubuntu) "Ubuntu 18.04: gdm3 does not switch to graphics after update" [High,Incomplete] [06:18] enabling proposed and installing the kernel provided there should work around it [06:18] !proposed [06:18] The packages in Ubuntu are divided into several sections. More information at https://help.ubuntu.com/community/Repositories - See https://wiki.ubuntu.com/RecommendedSources for the recommended way to set up your repositories. [06:18] Guest116: please take note - if the purge gdm gdm3 has warning or error (such as doesn't exist) - stop there! [06:19] +1 guiverc [06:20] sorry; have you affect yourself yet? ?? [06:20] xubuntu1804: to the bug you found [06:20] T3ss: okay, so the lower graphics mode will be a result of the nomodeset kernel parameter, which is a result of the recovery boot. so if we can fix your boot issue we have probably solved it all. [06:20] tomreyn: so, log in and enabled proposed? [06:21] T3ss: that's what i suggest, yes. [06:21] tomreyn: thanks - I'll try that. And sorry for the screw up - I didn't realise I was still in rec mode. That was daft. [06:21] T3ss: you could also boot an older patchlevel of this 4.15 kernel if you prefer, it's a little easier. [06:21] T3ss: no problem ;) it was easy to find out once i had the dmesg output [06:22] tomreyn: How so? Don't I just go into software update and enable proposed? [06:22] lotuspsychje / guiverc: I was able to fix the issue differently [06:22] tomreyn: yeah, but I'm not a complete noob - I should have seen that. [06:22] lotuspsychje / guiverc: instead of gdm, I switched over to using lightdm [06:22] my journalctl -xb & syslog show many entrys [06:23] lotuspsychje / guiverc: life is good again; Thanks for helping me work through the root cause! [06:23] T3ss: you need to enable proposed *and* update repository infor *and* install the newer kernel version. but i guess it's pretty easy from the GUI, yes. [06:23] !yay | Guest116 [06:23] Guest116: Glad you made it! :-) [06:23] Guest116: yeah ! [06:23] T3ss: i'll bbiab [06:23] I should check to see if there is a gdm bug for the most recent update [06:24] Guest116: my bug happened twice recently [06:24] ugh... [06:24] well thanks again!! [06:24] no sweat [06:27] journalctl -xb | grep 'G_UDEV_IS_DEVICE (device)' [06:29] T3ss: i'm back [06:29] connect [06:29] tomreyn: Great. Just installing the updates after adding proposed. [06:30] lsct [06:30] LSWS [06:31] T3ssokay, let me know how your next boot works out when you'll be ready for it. i'll be around. [06:31] grep 'G_UDEV_IS_DEVICE (device)' /var/log/syslog [06:32] tomreyn: so theoretically, once the new kernel is live, the boot issue should be resolved? [06:32] tomreyn do you ever sleep or stop helping in here? [06:32] T3ss: right [06:33] MysticReverie: yes, but let's talk about non support things in -offtopic [06:33] lol [06:36] https://gitlab.gnome.org/GNOME/gvfs/commit/d7e1397854f32e793b4f65d894908d67072dcb3f ?? [06:36] tomreyn: rebooted, and stuck at the splash screen with a dead mouse. [06:37] tomreyn: ^^ which is the same status as before the proposed update. [06:38] T3ss: a pity. can you retry with nomodeset, set manually? [06:38] tomreyn: Going to rec mode, the new kernel is listed (4.15.0-27). I'll try enabling networking in that and see if it's the same issue. [06:39] ok [06:40] tomreyn: stuck at "Reached target Swap" again. [06:40] tomreyn: ok, so I just add that to the kernel line? [06:41] T3ss: can you do a cold reboot, so just power off, wait 10s, power on, boot with default (-27) kernel? [06:41] tomreyn: will do that now [06:44] xubuntu1804: i advice you to add yourself affected to the bug you found, tell your whole story there, try a few steps (other kernel boot etc) [06:44] tomreyn: splash screen now. Will see if it gets to the login. Incidentally, you're right, the resolution is fine when botted normally. [06:45] tomreyn: hung on the splash screen. As soon as the cursor appears, hdd activity reduces to a trace amount, and the rat is dead. [06:45] tomreyn: so, same issue under -27 [06:45] ok, thanks, maybe fixed in new kernel?? [06:46] xubuntu1804: wich kernel are you on now? [06:46] Hello is there a working vncviewer for ubuntu 18? i installed gvncviewer and xtightvncviewer. but there is no appliaction in appliactions for it... [06:46] T3ss: okay, can you boot the default kernel but without "quiet" and without "splash" so we'll know what the error is? [06:46] !vnc | OlofL [06:46] OlofL: VNC is a protocol for remote desktop. https://help.ubuntu.com/community/VNCOverSSH describes how to use it securely. It works best over fast connections, otherwise look at !FreeNX [06:46] I need something lightweight that can open in GNS3 [06:46] tomreyn: yup, my hunch is it'll be stuck at the same line. [06:47] OlofL: be carefull with vnc..its a security flaw to use [06:47] Linux kunt 4.15.0-24-generic #26-Ubuntu SMP Wed Jun 13 08:44:47 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux [06:47] T3ss: probably, but i'm hoping we'll have a better idea as to why [06:47] lotuspsychje: its not a problem atm... [06:47] i need simple vnc working [06:47] xubuntu1804: can you test .23 plz? [06:48] tomreyn: to make sure my method is right. I hit 'e' on the grub entry, then change the 'linux' line to remove quet and splash, and then I just hit F10? [06:48] s/quet/quiet [06:49] ok, I'll report back, thanks, bye 4 now! [06:49] T3ss: right, i'mnot 100% sure about f10, i usually use ctrl-x [06:51] tomreyn: it says either, I've tried Ctrl x this time. Reason for asking is that it then just goes to a blank (ubuntu brown coloured) screen. Whereas I thought it would go to a black screen with the raw boot process printed. [06:52] tomreyn: did the same this time. Sits there for a bit, then turns black. Then the cursor appears on a black screen. Shortly afterwards, the hdd stops its activity, and the cursor is non-responsive. [06:52] T3ss: right, i had the same expectation there. not sure about the brown colored screen. [06:52] tomreyn: by brown coloured, I mean the same colour as the splash screen, just without the ubuntu logo [06:53] T3ss: hmm, that's annoying. all i can think of now is (a) replacing gdm by lightdm and (b) nomodeset [06:53] tomreyn: happy with either. [06:53] tomreyn: I'll reboot so I can install lightdm [06:54] T3ss: well nomodeset is easy, but wont get you a better resolution [06:54] T3ss: right [06:54] lotuspsychje: vinagre worked. but not xtightvncviewer or gvncviewer [06:54] tomreyn: anything else I can / should report for this bug? [06:55] T3ss: we can look at the syslog later, and maybe learn more aboiut what is failing. we could also do this now. [06:56] tomreyn: I'd like my frustration to help the commuity if possible. [06:56] tomreyn: just booting into rec mode and then gui now [06:57] tomreyn: is lightdm just a matter of apt-get install lightdm? [06:57] T3ss: :) much appreciated. we'd want to know what hapepend during the 'normal' boot, the one without recovery + nomodeset. so we'll need to look at syslog, but not at the latest records but at those about the non 'nomodeset' boot. [06:58] T3ss: yes, probably, it should spawn a prompt asking you whether you'll want to use lightdm or gdm post installation [06:59] tomreyn: indeed it did. [06:59] * tomreyn fingers crossed [07:00] tomreyn: ok, full reboot into -27 now? [07:00] T3sssure, why not [07:01] tomreyn: strap in [07:02] tomreyn: sitting at the 'brown' blank screen... [07:02] meh [07:02] hdd still active though. [07:02] She's not done yet [07:02] splash screen [07:02] responsive cursor [07:02] login screen! [07:02] wohoo [07:03] We're in, ahhhh my eyes are so much happier with this reso [07:03] Ok, so both problems fixed. Now what can I do to help the community with the gdm3 bug? [07:05] T3ss: you can review your syslog, find the latest boot where you booted with normal boot options, so with "quiet" and "splash" (and then into gdm3), and see where it failed. [07:05] Linux kunt 4.15.0-23-generic #25-Ubuntu SMP Wed May 23 18:02:16 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux [07:05] tomreyn: up for talking me through that? [07:05] T3ss: yes, i'm trying to look up the commands, give m a min [07:05] grep 'G_UDEV_IS_DEVICE (device)' /var/log/syslog [07:06] tomreyn: oh sure, sorry. [07:06] Jul 13 17:00:33 kunt gvfsd-metadata[1441]: g_udev_device_has_property: assertion 'G_UDEV_IS_DEVICE (device)' failed Jul 13 17:00:38 kunt gvfsd-metadata[1441]: message repeated 33 times: [ g_udev_device_has_property: assertion 'G_UDEV_IS_DEVICE (device)' failed] [07:07] xubuntu1804: ok, add this to the bug please, you tested .23 and did not help [07:08] T3ss: that's fine. this will return the latest boot timestamps and the options used: sudo zgrep 'kernel.*Command line' /var/log/syslog* | sort -nr [07:08] sorry, how do I add to bug list? [07:08] xubuntu1804: do you have a launchpad account yet? [07:09] sorry, no [07:09] xubuntu1804: you need to register first to put yourself affected [07:09] launchpad account is not expensive [07:09] T3ss: note down or tell me the file name and the timestamp for the last but one most recent boot with the 'splash' option [07:11] T3ss: to explain: the latest boot with this option will be the one you just did, where you booted ito lightdm, and without an issue, as far as we know, so we're looking for the one before that [07:12] T3ss: you can also just pipe this command into "nc termbin.com 9999" and we can look at it together if you prefer [07:13] tomreyn: I think I've got it, but I'll share anyway. [07:14] ok thanks, should I wait for; https://lists.ubuntu.com/archives/bionic-changes/2018-July/015544.html [07:14] tomreyn: http://termbin.com/w2s9 [07:16] T3ss: so "Jul 13 15:55:49" is the one i guess [07:17] T3ss: hmm you're on a newer kerne now, though, i'm wondering why it didnt find those. [07:17] T3ss: there should have been a 4.15.0-27-generic line there [07:18] tomreyn: true... [07:19] T3ss: can you run: "uname -r" just to confirm you're running -27 ? [07:20] T3ss: also, "Jul 13 16:09:43" is how many hours ago now? [07:21] T3ss: it's possbile that it didnt get to write the earlier logs to disk actually. can you pos tthe latest syslog? pastebinit /var/log/syslog [07:21] *sudo [07:21] !pastebinit [07:21] pastebinit is the command-line equivalent of !pastebin - Command output, or other text can be redirected to pastebinit, which then reports an URL containing the output - To use pastebinit, install the « pastebinit » package from a package manager - Simple usage: command | pastebinit [07:28] tomreyn: http://termbin.com/2hwx [07:28] tomreyn: sorry for the delay, pastebinit was timing out. [07:29] T3ss: oh weird. [07:30] T3ss: i'll look at the log for 5-10 minutes, to confirm it's gdm3 that got in the way, and then we can file a bug report? [07:30] tomreyn: sounds good [07:33] T3ss: by the way, there's a firmware update available for this mainboard. it might improve a few things. unfortunately it won't provide mitigation of some of the "spectre" vulnerabilities for this system, and those wont be available through microcode updates for this (old) cpu either. intel initially said they'd fix those old systems, too, but have since changed their mind. [07:33] T3ss: in other words, buy new hardware sometime soon, don't rely on this system too much. [07:34] tomreyn: for stability or security reasons? [07:34] the bios update is at https://www.gigabyte.com/Motherboard/GA-G31M-S2L-rev-10#support-dl-bios (i'd do the beta, if it's the latest available, it's usually stable; you now have F6 06/05/2008) [07:35] T3ss: security [07:35] an attack could also impact stability, of course. but not so important. [07:35] and only locally possible realistically [07:36] tomreyn: it's mostly just to hold backups, hobbying, and maybe netflix [07:42] T3ss: ok, i just wanted to advise you so you won't use *this* computer to prepare disclosure of secret nsa material ;) [07:43] tomreyn: duly noted *Ctrl C!! Ctrl C!!!* [07:45] T3ss: looking at the systemd log for this 'default' boot on the non 'proposed' (but current default, for 18.04) kernel, i don't see anythign that looks like a fatal error to me. it's possible that Xorg.*.log has something about it if we look at a log around Jul 13 15:56:08 - if this still exists. [07:46] T3ss: but i suggest you just run "ubuntu-bug gdm3" now and report that you upgraded, that 16.04 worked fine, and what happened on the fully updated 18.04, as well as after enabled -proposed, with gdm3. [07:46] and that lightdm worked around it. [07:47] .tomreyn: I have a Xorg.1.log which is July 13, 17.00 [07:48] T3ss: that's the last modification time. if you look into it, you should see another timestamp saying when Xorg started, maybe that's around Jul 13 15:56:08 ? [07:49] tomreyn: k, I'm running the bug report [07:50] T3ss: cool, you'll need to have or create a launchpad / ubuntu account to submit it, i'm afraid (it'll guide you). [07:50] just sayin, so you can cancel now if that's not an option [07:50] Hey [07:51] hi roman_Tony [07:52] Hi [07:52] where I can find list of old kernels released for Ubuntu 16.04? [07:52] HEllo [07:53] qwebirc69547: i don't immediately know the answer to this question, but am wondering whether there may be a better approach to take. can you discuss what you'Re trying to achieve? [07:54] in mainline you find 2.6 - 4.17+ http://kernel.ubuntu.com/~kernel-ppa/mainline/ [07:55] tomreyn: just waiting for the confirmation email to authorise my account. SOOO many thanks for your help with all of this. [07:55] we found there is but introduced in Ubuntu 16.04 linux-image-4.4.0-127-generic kernel [07:55] T3ss: thanks for posting the bug report and giving others a chance to benefit from the time we spent. [07:56] regarding iotop and /proc/PID/status [07:56] So I want to go through each kernel release note , which related after *0-127 [07:57] released after* [07:58] I am getting this >>> https://paste2.org/asaPz0Y9 ....while running apt-get update ...Whats the solution ? [08:00] hey guys, can anyone help me understand if my headphone jack just straight up died? My laptop keeps outputing sound through the speakers even if I plug in my headphones [08:00] qwebirc69547: if you are now running the latest ubuntu 4.4.0 kernel, you can look at the changelogs using apt-get changelog linux-image-$(uname -r) [08:01] tomreyn: what do you think would be a helpful bug summary? [08:01] Hi. When I want to stop kernel execution with 'echo g > /proc/sysrq-trigger', output says that this sysrq operation is disabled, even though all kernel options that should be enabled are enabled. What's wrong here? [08:04] T3ss: intel 82G33/G31 GPU: gdm3 freezes before login, upgraded from 16.04 [08:04] tomreyn: no, this wasn't upgraded. It was a clean 18 install [08:05] T3ss: oh, sorry, that's an even better report then [08:05] 16 was previously installed, but wasn't upgraded [08:06] T3ss: maybe this is better then: "18.04 with intel 82G33/G31 GPU: freezes before login, fresh install" [08:08] dchotas: if you have another headphone or external speaker witht he same connector, see if this gets output in the same jack. [08:10] qwebirc83838: many of the magic sysrq options are disabled by default for security reasons (a physically local attacker could use them to overcome a lock screen, for example) [08:11] How to enable them, then? [08:11] qwebirc83838: see /etc/sysctl.d/10-magic-sysrq.conf [08:12] tomreyn: bug reported. #1781550 [08:12] bug #1781550 [08:13] bug 1781550 in gdm3 (Ubuntu) "18.04 with intel 82G33/G31 GPU: freezes before login, fresh install" [Undecided,New] https://launchpad.net/bugs/1781550 [08:13] tomreyn: now to prepare for guests to arrive. Thanks again for your help [08:13] T3ss: welcome, see you === T3ss is now known as Sh4d03 [08:13] good morning. I would like to upgrade 14.04 to 16.04 but all the guides I'm reading make tell me how to go to the latest version, whereas I need to specify a newer but not the latest - any hints ? [08:14] qwebirc15269, if you upgrade to 16.04, you would get the lates 16.04.5 ... [08:15] if you don't want that,. do a fresh install and do not upgrade. [08:16] sorry, maybe I explained poorly [08:17] security-wise and bug-wise your demand is odd, yeah [08:17] qwebirc15269: since upgrading LTS releases to 18.04 is not yet supported, 16.04.5 IS in fact the latest version you can currently upgrade to, if you follow the LTS upgrade path [08:17] I was just looking to use do-release-upgrade but only go 14.04 to 16.04 not 18.04 [08:18] although I think tomreyn just gave me the answer [08:18] tomreyn: I've tried other headphones and external speakers aswell, the sound keeps coming from the laptop speakers [08:18] 18.04 upgrade path will be available when 18.04.1 is released [08:18] tomreyn: I've also tried a couple things software wise: force reloading alsa, modprobing all it's sound drivers [08:18] in 2 weeks, AFAIK [08:18] perfect ! thanks all [08:19] qwebirc15269: run "/usr/bin/software-properties-gtk --open-tab=2" and make sure it says "For long-term support releases" on the bottom. [08:19] qwebirc15269: then close it and run "update-manager -c" [08:20] it's console only, but I think I've seen the equivalent check in a guide [08:21] qwebirc15269: Prompt=lts in /etc/update-manager/release-upgrades; do-release-upgrade [08:22] !sound | dchotas see the link in the end: [08:22] dchotas see the link in the end:: If you're having problems with sound, click the Volume applet, then Sound Preferences, and check your Volume, Hardware, Input, and Output settings. If that fails, see https://help.ubuntu.com/community/Sound - https://help.ubuntu.com/community/SoundTroubleshooting - http://alsa.opensrc.org/DmixPlugin - For playing audio files, see !players and !mp3. [08:22] ty tomreyn [08:24] Thanks . i got released noted by 'apt-get changelog linux-image-$(uname -r)' [08:25] dchotas: you could also ask in #alsa (i *think* this exists, if not, check their website for the right channel or use !alis to search it). i rmemeber that i had a similar issue once, and one of the alse developers told me this can happen if the electrical resistence is too low on this jack to surpass the threshold where a plugged-in device is detected. apparently they have databases for every audio chipset defining these thresholds, and not all [08:25] are always dcorrect. [08:25] dchotas: but this is just from memory, might not be 100% coirrect. [08:26] qwebirc69547: i was a little silly there, you could just have specified "apt-get changelog linux-image-4.4.0-127-generic" [08:27] Hi [08:29] hi DamBedEi [08:30] hi all [08:31] is it possible to have a shorter sidebar ? [08:31] tomreyn: so this could ahve been caused by an update to alsa? [08:31] Something similar to OSX more than a bar that take all the size of the screen ... [08:34] dchotas: probably not an update, but mabye an upgrade. [08:35] dchotas: i.e. just installing security patches should not introduce such issues. [09:49] Hi, is there a viable alternative for filemaker under ubuntu? [09:51] libre office base perhaps? [09:52] empedokles78: What are you looking for, specifically? [09:53] jink: I need to print article numbers with product titles (labels). [09:54] And those are in FileMaker already? [09:54] empedokles78: sounds more like calc job [09:56] !info kexi | empedokles78 [09:56] empedokles78: kexi (source: kexi): integrated database environment for the Calligra Suite. In component universe, is optional. Version 1:3.1.0-2 (bionic), package size 1738 kB, installed size 7607 kB [09:57] jink, no, I have done things like that in filemaker once on mac, it had good printing capabilities. [09:57] hi, my openssh is v.7.2 ... any way i can upgrade it to 7.3 so Include works? [09:57] asking because i would expect ubuntu to update it on its own [09:57] not sure how I can get calc to print labels. [09:58] !latest | gebbione [09:58] gebbione: Packages in Ubuntu may not be the latest. Ubuntu aims for stability, so "latest" may not be a good idea. Post-release updates are only considered if they are fixes for security vulnerabilities, high impact bug fixes, or unintrusive bug fixes with substantial benefit. See also !backports, !sru, and !ppa. [10:00] empedokles78: you can check the #libreoffice channel mate, they might help you print labels [10:01] hi [10:02] noodleking: welcome to ubuntu support, how can we help you? [10:02] Is there a good web resource for understanding the networking changes since 16.04? [10:03] I'm trying to setup a static IP and a LAMP environment, following the generic online tutorial for LAMP but ... the network interface has clearly changed with eth0 nowhere to be found and in its place some emp0s thing. [10:04] I want to just understand what the changes are, what they mean - if anything - and how to work around them for the purposes of setting up a LAMP dev environment in a VM in windows. [10:04] noodleking: are you running ubuntu serverN [10:06] I downloaded ubuntu server, not sure what the N signifies though. [10:06] noodleking, this may help with the reasoning for eth0 -> .... nic name change (https://www.freedesktop.org/wiki/Software/systemd/PredictableNetworkInterfaceNames/) [10:06] lotuspsychje, what would you recommend? kexi or calc? [10:06] thanks guiverc, I'll have a read of that. [10:13] empedokles78, the best is probably a personal preference; kexi is from the calligra suite, calc is from libreoffice... [10:25] hey guys, how can I prevent a non-sudo users SFTP access to only a single folder - i.e. I dont want them to be able to download other files from other folders [10:27] Gabe_H_Coud: sudo and SFTP don't have anything in common. To prevent a user with some uid/gid to access a folder, the folder must not be readable and "executable" for that uid and gid. [10:29] Blackflow: thanks! Is there a way to apply read and exec permissions to ALL folders/files for a given user without affecting other users? [10:31] guiverc, thanks. the openoffice way so far seems not very intuitive (seriesletter-assistant). [10:31] Gabe_H_Coud: not sure I understand what you're asking, what does "for a given user" means? you apply modes to directories, optionally in a recursive fashion, or using `find` to filter files/dirs in that hierarchy. [10:33] blackflow he is the scenario: I need to give a dev front-end access only to 2 folders. However, With filezilla, the user can currently browse all the other folders and though they cant alter them, they can download the files/folders to their local devices. [10:33] here* [10:39] Gabe_H_Coud: SFTP access is FTP over ssh. It means it's using SSH mechanics for accessing the system. which means when a user logs in, they're usually "starting" with their home directory. So all dirs/files in it, and _below_, would be accessible. If you want to prevent access to and dir, in _that_ hierarchy (below the "starting dir"), you must use directory permissions. [10:39] Gabe_H_Coud: if however you're talking about accessing dirs _outside_ the "starting directory", then you must apply ssh chrooting for that user. [10:40] typically, users should have full access to their home dirs and all in it, chrooted so they don't access anything outside it. [10:40] e [10:40] hei [10:40] Gabe_H_Coud: s/to and dir/to files and dirs/ [10:42] this sounds like the users' sftp access is currently too wide. you should instead setup an stfp chroot, restricting this users' sftp access to their home directory (and its subdirectories) only. and optionally bind-mount additional directories into their home directory so that they can accesss this, too. [10:44] blackflow thanks a lot mate! looking into chroot now! [10:44] tomereyn thats exactly what I am trying to do [10:44] Gabe_H_Coud: check ChrootDirectory directive of sshd_config manpage, it explains everything. [10:44] tomreyn** [10:45] Gabe_H_Coud: note however that when you chroot a user like that, they will only be able to access that system via SFTP, but not through regular SSH. For regular SSH you'll need to do bind some devices and shells in their chroot [10:45] blackflow: nothing with Chroot currently exists - I guess thats why [10:46] blackflow: thats fine. for this specific user no ssh access will be required, purely SFTP [10:46] yeah by default ssh users have full system access (subject to regular permissions of course) [10:47] bind mount: https://unix.stackexchange.com/questions/198590/what-is-a-bind-mount [10:48] Is this the newest libreoffice for my 16.04 LTS?: Version: 5.1.6.2 [10:48] Build-ID: 1:5.1.6~rc2-0ubuntu1~xenial3 [10:49] !info libreoffice xenial [10:50] libreoffice (source: libreoffice): office productivity suite (metapackage). In component universe, is optional. Version 1:5.1.6~rc2-0ubuntu1~xenial3 (xenial), package size 3 kB, installed size 17 kB [10:50] 6.0 is available https://snapcraft.io/libreoffice [10:50] empedokles78: yes, unless you'll use the snap or ppas [10:50] !ppa [10:50] A Personal Package Archive (PPA) can provide alternate software not normally available in the offical Ubuntu repositories - Looking for a PPA? See https://launchpad.net/ubuntu/+ppas - WARNING: PPAs are unsupported third-party packages, and you use them at your own risk. See also !addppa and !ppa-purge [10:51] tomreyn, they told me it's quite old in the libreoffice channel. do you recommend 6.0? [10:52] empedokles78: i never used 6.0, so could not comment. [10:52] ppa is newer that snap, https://launchpad.net/~libreoffice/+archive/ubuntu/ppa?field.series_filter=xenial [10:52] between snap and PPA, I'd definitely recommend the snap. [10:52] but i would choose snap, *if* you need 6.x [10:53] don't mess with your global filesystem namespace with PPAs. use snaps if possible, and from verified vendors like Canonical. [10:53] oerheks, what is a snap? [10:53] (always make sure you check WHO is supplying a snap, as _ANYONE_ can do it) [10:54] snaps and flatpack are the newer software channels [10:55] some packages are already as standard in softwarecenter too [10:55] Hiyas all [10:56] oerheks, snaps are listed in softwarecenter? [10:56] they're not just channels, they're a completely novel containerized software delivery method, complete wiht security implications of such an approach, especially given that anyone can publish a snap. [10:56] there is no filter for snaps only, but yes, it is mentioned in the description AFAIK [10:56] and there's STILL no bot factoid for snaps.... [10:57] blackflow, suggest one :-) [10:58] Software center lists a 6.0.5.2 stable for libre office, is that that snap? [10:58] oerheks: I did, several times now [10:58] oerheks: I wonder if I should open a bug report instead of doing it through the bot [10:59] empedokles78, read the details at the end.. i am not on 16.04, so cannot see what you see [11:01] It only states: "LibreOffice is a powerful office suite – its clean interface and feature-rich tools help you unleash your creativity and enhance your productivity. LibreOffice includes several applications that make it the most powerful Free and Open Source office suite on the market: Writer (word processing), Calc (spreadsheets), Impress (presentations), Draw (vector graphics and flowcharts), Base (databases), and Mat [11:01] h (formula editing)." Developer: Canonical and it's a newer version than the snap linked to. [11:03] odd indeed, info on the site is outdated [11:04] that's why I prefer good old always up to date command line tools. `snap info libreoffice` ftw ;) [11:05] but i see 6.04 on 17.10 :-D [11:05] guys [11:05] need help [11:05] channels: [11:05] stable: 6.0.4.2 (65) 479MB - [11:05] candidate: 6.0.5.2 (67) 480MB - [11:05] beta: ↑ [11:05] edge: ↑ [11:06] Since i updated my ubuntu 18.04 i cant connect to wifi [11:06] so ubuntu softwarecenter is putting a wrong stable lable for this? [11:06] see. candidate is not 'stable'.. [11:07] can i "snap install" it somehow? [11:07] I guess the drivers are installed but the settings say that the wifi adapter is turned off [11:07] the stable one. [11:07] yes, click on it in softwarecenter :-) [11:08] empedokles78: yea, `sudo snap install libreoffice` [11:08] Guys? [11:09] !patience | Wicardo [11:09] Wicardo: 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/ [11:09] kk [11:09] blackflow, thanks a lot, found it on the snap site in the meantime. [11:09] so ppas times are counted? [11:11] if one would publish for other linux distros too, there is a choise [11:11] snap, flatpack, and there are more ( and older) [11:14] Wicardo: Is there a killswitch? Like a hardware button to press or a switch to flip? Is the adapter enable in bios? [11:17] deem: Its a laptop [11:18] After installing that 6.0 libreoffice, do I need to restart and my old icons will be link to the newer version? [11:18] And it world fine after I install ubuntu from a live usb yesterday...Only after i updated it that the problems started occuring [11:21] Wicardo: That doesn't answer my question [11:22] Wicardo, read what deem posted above [11:23] Well there is no killswitch [11:23] and also it works fine with Windows [11:23] so i doubt it is a bios issue [11:23] what does "rfkill list" report? [11:24] only the bluetooth [11:24] doubt isn't certainty [11:24] so it lists nothing about wireless at all? [11:24] nope [11:25] BluesKaj: I will check BIOS as a last resort [11:25] if nothing works [11:25] If it's not listed at all, it could be disable via BIOS or there is no driver installed, which is mostly not common [11:25] Wicardo: whats the output of: lsusb | nc termbin.com 9999 [11:27] tomreyn: Aren't those wifi controllers connected to the pci controller? [11:27] http://termbin.com/iqjh [11:27] deem: maybe :) [11:27] Wicardo: whats the output of: lcpci -nn | nc termbin.com 9999 [11:28] Wicardo: whats the output of: lspci -nn | nc termbin.com 9999 [11:28] ^ typo fixed [11:29] http://termbin.com/y208 [11:29] 01:00.0 Network controller [0280]: Broadcom Limited BCM43142 802.11b/g/n [14e4:4365] (rev 01) [11:29] yes [11:30] ah, combo: BCM43142 is an adapter for both WiFi and Bluetooth [11:30] When i go into additional drivers it already says that its already using the drives [11:30] *drivers [11:31] Urgs, seems like no fun with this adapter [11:31] https://askubuntu.com/questions/55868/installing-broadcom-wireless-drivers [11:32] Let me check that out [11:32] Thanks :) [11:32] Wicardo: I would recommend as first step to simply disable and enable the adapter. Maybe it helps [11:33] That's also an possibl solution form the link [11:33] sudo apt-get install bcmwl-kernel-source & reboot [11:35] oerheks: I already tried that [11:36] I dont have a dedicated button to turn the adapter off [11:36] brcmfmac states "BCM4366 14e4:4365 Queued for 4.6+" https://wireless.wiki.kernel.org/en/users/Drivers/brcm80211#supported_chips [11:36] is there a specifc command for it? [11:36] most laptops have FN key + F1-F12 for extra options [11:36] often in blue [11:37] I have a airplane mode button [11:37] but not for wlan [11:37] Airplane mode should be fine [11:37] Okay lemme see [11:38] firmware https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/commit/?id=52442afee9907bc32a058f22bb3295d040677c26 [11:38] airplane mode didnt work [11:39] firmware is in "linux-firmware" package. [11:40] Wicardo: i suggest you show logs. dmesg -T | nc termbin.com 9999 [11:40] I have a 18.04 LTS server that won't boot from Disk. I am trying to use the live-server ISO to run a rescue, but I can't find the rescue mode anymore in the boot options? any ideas/ [11:41] http://termbin.com/nlzn [11:42] adamretter_: use the non "live" server or desktop image. [11:42] adamretter_, i didn't think the 18.04 server had a 'live' mode; i thought only desktop isos had it [11:42] @tomreyn okay I have a desktop image here too, let me try... [11:42] guiverc: it's the default now [11:43] @guiverc the ISO for the 18.04 server is named ubuntu-18.04-live-server-amd64.iso [11:43] tomreyn: where do I find the non "live" server ISO? I can't seem to find it anywhere? [11:44] adamretter_: where you found the live image, clicking on the link on the top of the page [11:44] :) thanks tom, adam [11:44] wenn ich libreoffice 6.0 über snap installiert habe. kann ich die alten icons (die immer noch auf 5.0 linken) aktualisieren? [11:44] oder sollte ich 5.0 einfach komplett von der platte löschen? [11:44] !de | empedokles78 [11:44] empedokles78: In den meisten Ubuntu-Kanälen wird nur Englisch gesprochen. Für deutschsprachige Hilfe besuche bitte #ubuntu-de, #kubuntu-de, #edubuntu-de oder #ubuntu-at. Einfach "/join #ubuntu-de" eingeben. Danke für Dein Verständnis! [11:44] @guiverc http://ubuntu.mirrors.ovh.net/releases/bionic/ [11:44] tomreyn: sorry I meant - http://ubuntu.mirrors.ovh.net/releases/bionic/ [11:45] Wicardo, FWIW maybe this will help https://launchpad.net/ubuntu/bionic/+package/broadcom-sta-source [11:45] oops, sorry. can I remove libreoffice 5.0 from my pc after installing 6.0? [11:46] How do i install those [11:46] ?? [11:46] cause libreoffice icons are still linking to version 5.0. [11:47] !ppa | Wicardo [11:47] Wicardo: A Personal Package Archive (PPA) can provide alternate software not normally available in the offical Ubuntu repositories - Looking for a PPA? See https://launchpad.net/ubuntu/+ppas - WARNING: PPAs are unsupported third-party packages, and you use them at your own risk. See also !addppa and !ppa-purge [11:47] adamretter_: http://ubuntu.mirrors.ovh.net/releases/bionic/HEADER.html -> "alternative images location." -> http://cdimage.ubuntu.com/releases/18.04/release/ [11:48] adamretter_: this mirror wouldnt show the directory index as the main mirrors would [11:48] tomreyn: so I saw that, but as it was a smaller file I had dismissed it - will try it now [11:48] adamretter_: .. sory you couldnt see those links [11:50] tomreyn: so I just tried the live desktop image as well - from that I also can't seem to access a rescue mode [11:50] Wicardo: if you look at the bottom of your dmesg (kernel log), i.e. what you posted, you see repeating messages related to bluetooth. this is not normal, indicates malfunction. since you have a combo chipset (bluetooth + wireless) i suspect that the malfunction of the bluetooth driver prevents detection + operation of the wireless one. [11:51] empedokles78, sure, apt remove libre* would wipe 5.0 [11:51] maybe it is because i have been trying all these fixes off the intrnet? [11:52] tomreyn: okay cool thanks that server cdimage you pointed me at has the Rescue Mode [11:52] adamretter_: welcome :) [11:53] empedokles78: don't use wildcards!! [11:53] oerheks: don't recommend wildcards!! [11:53] Hi, is there any other tools that can monitor network bandwidth per process instead of nethogs? [11:54] Wicardo: hmm could be. depends on what you did. :) [11:54] blackflow, or should it be libreoffice* ? [11:55] NO wildcards :) [11:55] libre* will wipe out halfa system, btw [11:55] just libreoffice does not remove it all [11:55] Wicardo: https://bugzilla.kernel.org/show_bug.cgi?id=198699#c11 is probably going to fix it [11:55] bugzilla.kernel.org bug 198699 in Bluetooth "Kernel regularly logs: Bluetooth: hci0: last event is not cmd complete (0x0f)" [Normal,New] [11:56] blackflow, "apt remove libreoffice/xenial-updates,xenial-security 1:5.1.6~rc2-0ubuntu1~xenial3 amd64 && libreoffice/xenial 1:5.1.2-0ubuntu1 amd64" ? [11:57] [Fri Jul 13 14:31:31 2018] bluetooth hci0: Direct firmware load for brcm/BCM.hcd failed with error -2 [11:57] [Fri Jul 13 14:31:31 2018] Bluetooth: hci0: BCM: Patch brcm/BCM.hcd not found [11:57] empedokles78, how do you get those name, libreoffice/xenial-updates etc ?? [11:57] ^ matching bluetooth firmware files not found as discussed in the bug tracker. [11:58] empedokles78: no. either name all the libreoffice-... packages individually, or use a wildcard CAREFULLY. apt remove libreoffice libreoffice-* and check that's really all that's being removed. [11:59] empedokles78: auto dependencies will be separately listed, and those are okay to be removed. check the explicit list under "The following packages will be REMOVED:" [11:59] ubuntu's pastebinit can't paste php scripts [11:59] echo " it just returns "http://paste.ubuntu.com/" [12:00] nothing else [12:00] oerheks, apt list libreoffice -a [12:00] blackflow, this were the two packages it did list. [12:01] just wanted to say a massive thank you to blackflow and tomreyn - your help and guidance has been much appreciated! [12:02] empedokles78: dpkg -l libreoffice* | grep -P "^ii " -- that will list what's installed of libreoffice* packages [12:02] Gabe_H_Coud: you're welcome :) [12:02] So when trying to reinstall grub, I get the error: The file /boot/grub/stage1 not read correctly [12:03] Gabe_H_Coud: :) [12:04] Hi, any ideas how we can logg access to a system? We're required to do so for 5 years, and that would indicate SSH logins primarily, but also access to MySQL without having to store everything since 5 years of logs are a lot [12:04] Sure I can run a cronjob that greps the auth's from syslog, but that is a nasty solution [12:05] blackflow, yields this: https://dpaste.de/Bq8y [12:05] empedokles78: also, when working wiht * on the command line, better put that whole name in quotes, eg. dpkg -l 'libreoffice*', as * has special meaning on the shell [12:06] empedokles78: I believe removing libreoffice-core will pull out all other libreoffice packages. alternatively, you could use the wilcard, but carefully, like I mentioned above. apt remove libreoffice libreoffice-* [12:07] hans_: use singlw quotes to prevent shell expansion [12:07] blackflow, so which command do I have to use to not interfer with the 6.0 snap? :) [12:07] hans_: okay, ignore me, doesnt help [12:07] or should I better use softwarecenter? [12:07] empedokles78: apt deals with .deb packages. snap deals with snaps. [12:08] tomreyn, sure, but that isn't the problem here, echo ' empedokles78: I don't use software center because it blurrs the difference between the two, and I think it's very important to know where your packages are coming from. plus, command line is more versatile and more informative. [12:08] hans_: right, apparently it can't handle text starting with < [12:09] hey there. i was wondering about these new snaps... if there is a snap available, and i 'apt-get install' the package instead of using the snap directly, will it automatically use the snap anyway under the hood? [12:09] on 19.04 [12:09] tomreyn, let me guess, some dev didn't know how to escape < , and decided the best course of action was to simply block < ? [12:09] *18.04 [12:09] hans_: echo ' hans_: i don't know, but you can inspect the source code. [12:10] dreamcat4, no, apt install and snap install are isolated [12:10] blackflow, so "apt remove libreoffice-core" should do what I want? [12:10] thanks for the answer oerheks [12:10] * hans_ wonders how termbin deals with random portscanners [12:10] empedokles78: I am guessing it will (being, eh, the core dependency for other libreoffice packages). you can always check with dpkg -l 'libreoffice*' if something still remained around. [12:11] (however i'm not entirely sure what i should do now) [12:11] empedokles78: I'm guessing it will remove ALL the libreoffice packages, yes. [12:11] i ask on golang which is best to install (the snap or apt pkg) but they dont seem to care [12:11] tomreyn, do you know if there's an open bug for `pastebinit can't handle < ` ? [12:11] blackflow, why not "apt remove libreoffice"? [12:11] dreamcat4: I'd say use the default distro packages unless you need something specific from the snap'd version [12:12] dreamcat4, out apt packages are tested, with snaps you trust the publisher, if that is canonical, it would be the same [12:12] c/out/our [12:12] tomreyn, (and for the record, it's weird, both debian and fedora pastebinit handles < without problems, seems to be an ubuntu-specific issue) [12:12] empedokles78: because 'libreoffice' is a metapackage, the installation of which pulls in others (as its deps) but removal of which doesn't remove those deps [12:12] empedokles78: I mean you can remove 'libreoffice' but it won't pull out the other libreoffice-... ones [12:13] blackflow, not sure what you mean. :) [12:14] empedokles78: 'libreoffice' depends on, say, 'libreoffice-writer', but libreoffice-writer doesn't depend on libreoffice. it's a metapackage, designed to pull in the entire suite with single command [12:14] hi all, need help accessing an encrypted home folder from a live disk [12:14] hans_: i do not know if there's an open bug for `pastebinit can't handle < `. i know that bug reports are filed and can be searched on https://launchpad.net [12:14] empedokles78: so if you install libreoffice, it will pul ITS dependencies. removing it will NOT remove its dependencies [12:15] hans_, 'PHP and other Web scripts are not allowed' [12:15] empedokles78: that's why you have to remove them all individually, or use a wilcard CAREFULLY, like I've shown you above. [12:15] (or cheat with libreoffice-core, assuming it's a dependency for all others which will then be pulled out automatically, because of that) [12:15] blackflow, but I want to delete the whole libreoffice 5.0. [12:16] empedokles78: exactly. [12:16] ioria, if that's the case, then pastebinit should print such an error, but it just literally prints "http://paste.ubuntu.com/" [12:16] hans_, it prints nothing [12:17] ok i guess it doesnt really matter then... i'll try the snaps [12:17] empedokles78: Libreoffice is a SUITE of several packages, you see. one package 'libreoffice' pulls them all IN on installation of it, but removing it will remove just the 'libreoffice' metapackage, it will not remove all the individual ones. with me so far? [12:18] ioria: i got the same output as hans_ when i run: echo ' hans_: so file a bug report if there's not one already. [12:18] dreamcat4: this one? https://snapcraft.io/go [12:18] interestingly the go snap is maintained by 'mwhudson' at ubuntu.com [12:19] tomreyn, yes, it's not allowed [12:19] rather than being listed as 'official' [12:19] but if he works at ubuntu, maybe that doesn't really matter much [12:19] dreamcat4: that's what I wanted to pooint at. I have no idea who that is. If you don't know either, be skeptical. [12:19] we already had malware in snaps because anyone can create a snap [12:19] blackflow: yeah that one [12:19] ioria: right, i understanmd so much [12:20] tomreyn, go to paste.ubuntu.com, paste a php script and you'll get ' PHP and other Web scripts are not allowed' [12:20] ioria, it certainly returns something (that weird url) for me: https://scontent-arn2-1.xx.fbcdn.net/v/t1.15752-9/37110417_2122333631130136_9207661793810317312_n.jpg?_nc_cat=0&oh=fd3e7d28717ed26925b4db394264a23c&oe=5BCFAC20 [12:20] ok but his email is '@ubuntu.com' [12:20] ioria: i did ;) [12:20] blackflow, okay, a bit complicated for deinstallations over the cmd then. let me try your command. [12:20] dreamcat4, no, i think he is independant, but surely a golang packager/maintainer https://launchpad.net/~mwhudson/+archive/ubuntu/go1.8-for-snaps [12:20] dreamcat4: it's on you to decide whom to trust. I just want to point out be careful which snaps you install. [12:21] core [12:21] dreamcat4, oh wait, he is with canonical, in NZ [12:21] ok thanks. i think i'm good then for this one [12:22] it does make me wonder though... about all those other snaps on the ubuntu store. if some of the more questionable ones could be suspect [12:22] i am more a python guy, so sad to read Guido van Rossum , mister Python, stops .. https://mail.python.org/pipermail/python-committers/2018-July/005664.html [12:23] blackflow, that says: https://dpaste.de/JV3u is it just because of not putting sudo in it? [12:23] empedokles78: ja [12:25] tomreyn, btw, you just remove ' it certainly makes the pastebinit command unreliable [12:26] really ? [12:26] if you can't guarantee that a file you want to pastebinit doesn't start with " ye, exactly [12:27] thus, unreliable [12:28] ok [12:28] blackflow, just to prevent a major disaster: https://dpaste.de/OzQ5 :) [12:29] Getting a message often: Jul 13 13:25:07 mediabox kernel: [148245.067418] swapper/4: page allocation failure: order:0, mode:0x1080020(GFP_ATOMIC), nodemask=(null) [12:29] empedokles78: that looks okay. you also have stuff to autoremove, so you could additionally 'apt autoremove' [12:29] ioria, in any case, when it just returning the pastebin web url (as it does for me), or returning nothing at all (which it alledgedly does for you), it certainly lacks some error reporting [12:29] The network stopped respond and had some time before it went on to respond again [12:30] also, the return value is 0 [12:30] empedokles78: when that's done, check with that dpkg -l 'libreoffice*' command if any packages remain 'ii' (installed), then apt remove them individually [12:30] guess it should have been 1 or something [12:30] hans_, sorry, when i said 'prints nothing',i meant 'http://paste.ubuntu.com/' [12:31] oh oki [12:31] raidghost: looks like swap is having trouble. posibly hardware issues. anything else in the logs around that time, something indicating disk trouble? [12:32] blackflow: I was told that since i have 64GB of ram. and the system is on SSD (It was not recommanded) to make swap partiton on the SSD [12:33] raidghost: I hope you have good backups. when SSDs start having trouble, they tend to die abruptly and catastrophically (all or nothing) [12:34] .... assuming of course that's what it is. but you should really check the logs around the time of that swapper error, see if anything disk related is logged [12:34] blackflow: all my stuff is on raid (7200RPM drives) [12:36] blackflow, plenty: https://dpaste.de/ZTXY [12:37] empedokles78: no, I see just a few. please pastebin dpkg -l 'libreoffice*' | grep -P '^ii ' [12:37] how to get php 7.2 on xenial ? [12:38] !info php xenial [12:38] php (source: php-defaults (35ubuntu6.1)): server-side, HTML-embedded scripting language (default). In component main, is optional. Version 1:7.0+35ubuntu6.1 (xenial), package size 2 kB, installed size 11 kB [12:38] either using a ppa or rolling it from source [12:39] !crosspost | Haris [12:39] Haris: Please don't ask the same question in multiple Ubuntu channels at the same time. Many helpers are in more than one channel and it's not fair to them or the other people seeking support. [12:39] I see [12:39] I thought the server community had separate contributors [12:39] not necessariy [12:40] Haris, anyway, i use https://launchpad.net/~ondrej/+archive/ubuntu/php/ [12:40] my gOOgle search says its possible through ppa. any native methods ? [12:40] that PPA is often recommended yes. [12:41] Haris, sudo add-apt-repository ppa:ondrej/php ; sudo apt-get update ; sudo apt install php7.2-whatever-you-use (-cli / -fpm / modphp ? ) [12:41] blackflow, what does dpkg?: https://dpaste.de/WuOw [12:42] Haris, define "native methods" [12:42] ubuntu repos', universe, non-ppa [12:42] updates [12:43] Haris: mind the warning about the PPAs tho [12:43] !ppa | Haris [12:43] Haris: A Personal Package Archive (PPA) can provide alternate software not normally available in the offical Ubuntu repositories - Looking for a PPA? See https://launchpad.net/ubuntu/+ppas - WARNING: PPAs are unsupported third-party packages, and you use them at your own risk. See also !addppa and !ppa-purge [12:44] Haris, well, if you upgrade to ubuntu 18.10-prerelease, you probably get php 7.2 [12:44] I can't do that untill bionic or its repos'/pkgs are stable enough for production [12:44] 18.10? don't recommend installing that yet. [12:44] !info php7.2 bionic [12:45] php7.2 (source: php7.2): server-side, HTML-embedded scripting language (metapackage). In component main, is optional. Version 7.2.7-0ubuntu0.18.04.2 (bionic), package size 9 kB, installed size 76 kB [12:45] oh neat, it's in the repos already [12:45] tomreyn, you never annoy . my fault not being accurate in reporting my output [12:46] # sudo add-apt-repository ppa:ondrej/php ; sudo apt-get update [12:46] sudo: add-apt-repository: command not found [12:46] yes, but some others are not [12:46] ioria: ;) thanks. [12:46] ok [12:46] apt-add .. [12:46] ? [12:48] empedokles78: see if removing libreoffice-common pulls out those remaining 6 too. or just.... apt remove 'libreoffice-*' (carefully, and check the list of packages that will be removed) [12:48] Haris, it needs software-properties-common, not sure why that is not installed on xenial [12:48] this is a fresh install from amazon ami [12:48] of xenial [12:49] Haris: whats the exact name of the ami you installed? [12:50] the default one for xenial [12:50] blackflow, "Die folgenden Pakete werden ENTFERNT: [12:50] libreoffice-common libreoffice-l10n-de libreoffice-l10n-en-gb libreoffice-l10n-en-za [12:50] libreoffice-style-breeze libreoffice-style-galaxy libreoffice-style-human [12:50] 0 aktualisiert, 0 neu installiert, 7 zu entfernen und 36 nicht aktualisiert. [12:50] " [12:50] 7? [12:51] !paste | empedokles78 [12:51] empedokles78: For posting multi-line texts into the channel, please use https://paste.ubuntu.com | To post !screenshots use https://imgur.com/ !pastebinit to paste directly from command line | Make sure you give us the URL for your paste - see also the channel topic. [12:51] 16-server based HVM instance AMI from amazon aws [12:51] ireland [12:51] Hi. A coworker is running Ubuntu 17.10. And after a recent update network stopped working. There is no network icon in the upper-right indicator (or what is that, next to volume, battery in the upper right corner of the screen). The wired network config part seems also gone from settings (Settings/Network/Wired - the whole wired section is not there). nmcli shows that the network connections (there are 2 wired connections, as there are 2 ethernet cards) exist [12:51] ncmli con up if 'Wired connection 1' says: Error: Connection activation failed: No suitable device found for this connection. [12:51] empedokles78: yes 7. libreoffice-common PLUS "those remaining 6 too". 6+1=7 yup. [12:51] any idea of what has happened/how to solve this? [12:52] nm-connection-editor shows the connections too. We even tried adding a new eth. connection and activating the new one. Still the same issue. [12:52] blackflow, https://dpaste.de/B2sy some unfound dirs. but the packages seem removed. [12:53] I also looked inside /etc/NetworkManager/system-connections at the config of the connections and it seems OK - as far as I can tell [12:53] empedokles78: I guess that's it then. [12:54] Hi I got a problem with my wifi on ubuntu... [12:54] zub: gnome and NM can be flaky sometimes. shouldn't be needed, but perhaps reboot would fix it? [12:55] Haris: thanks. this is probably https://www.ubuntu.com/download/cloud then. [12:55] blackflow, thanks a lot. [12:55] (as much as it pains me to recommend reboot to fix post-update things, go blame gnome :) ) [12:55] Haris: ... so not default 'ubuntu server', i assume. [12:55] empedokles78: you're welcome. and if those icon problems persist, see if removing and reinstalling the snap fixes it. [12:56] blackflow: reboot doesn't help :( [12:56] the situation persists [12:56] I'm especially puzzled by the whole wired section disappearing [12:57] for now the corowker does "sudo dhclient " to work around... but that's ugly [12:57] anything in /etc/netplan/ [12:57] zub: can you pastebin the output of journalctl -p err ? [12:57] I tried to reproduce by installing 17.10 in a VM but there it works [12:57] zub: and also journalctl -u NetworkManager.service [12:57] blackflow, they are gone. the only problem is that the snap version dialogue won't show my personal directory. It displays "65" next to the house (home). [12:58] zub: https://bugs.launchpad.net/ubuntu/+source/network-manager/+bug/1638842 [12:58] Launchpad bug 1676547 in network-manager (Ubuntu Yakkety) "duplicate for #1638842 No network connectivity (NIC unmanaged) after upgrade" [Critical,Fix released] [12:58] Hi guys. I'll explain: I installed some gnome personalization extantion on Ubuntu to show the wifi network info in the top bar. Well, now after a variable amount of time (10-120 minutes) the wpa_supplicant crashes and gets "unavailable" in the wifi GUI. running "service wpa_supplicant start" as root fixes it but it's pretty annoying. Other linux distros work flawlessly. So Either I reinstall, which is boooring, or I was hoping [12:58] could be that [12:59] empedokles78: possible, I don't know. snaps are isolated environments and depending on how they're defined, they may or may not have access to your ~/ home. [13:00] okay, but that's another question for another time. :) [13:00] empedokles78: maybe you just need to connec the :home interface? more info here: https://tutorials.ubuntu.com/tutorial/advanced-snap-usage#3 [13:01] blackflow: not much interesting here, except perhaps for Jul 13 01:11:31 ubuntu NetworkManager[772]: ((src/devices/nm-device.c:1452)): assertion '' failed [13:02] and indeed, it sort of behaves as if network manager decided to not manage any of the eth cards, so I'll see what the ticket linked by ppf suggests [13:02] I have to day it works OK until a recent regular update (and as it's not my PC, I don't know all the details) [13:02] zub: the bug is essentially a miscommunication between netplan and NM [13:02] what is netplan? [13:02] zub: is tehre anything in /etc/netplan/* and does the supposedly one file there say renderer: NetworkManager ? [13:03] zub: it's the new network configuration abstraction layer present in ubuntu since 17.10 [13:03] zub: it's a networking configuration layer [13:03] zub: more info https://netplan.io/ [13:04] !netplan | ah there's a factoid [13:04] ah there's a factoid: Netplan is a network configuration abstraction renderer which uses YAML descriptions of a network to work with either a NetworkManager or Systemd-networkd "renderer". More information at https://netplan.io/ [13:04] there is 1 file in /etc/netplan, says version: 2, renderer: NetworkManager [13:04] so that seems OK [13:05] zub: !paste please [13:07] ppf: https://paste.ubuntu.com/p/WNdGj8T3H3/ [13:08] zub: what about /etc/network/interfaces ? anything other than lo? [13:08] nope, and also nothing in interfaces.d [13:08] zub: that looks okay [13:08] So on a Ubuntu 18.04 host, using vmbuilder and virsh I am unable to boot a kvm Ubuntu 18.04 server. It hangs at Booting from hard disk. Is this a known problem? [13:08] perhaps nmcli device might be useful [13:08] next step is checking the configurations in /etc/NetworkManager/conf.d and /usr/lib/NetworkManager/conf.d/ [13:08] to show if nm actually thinks it manages the interfaces [13:09] whether the device is unmanaged [13:09] oerheks: how to install it on xenial ? [13:10] Hi guys [13:10] i try lockpref proxy settings for all users so appers "Failed to read the configuration file. Please contact your system administrator" [13:10] add-apt-repository ppa:ondrej/php [13:10] create mozilla.cfg in /usr/lib/firefox/defaults/pref [13:10] and custom.js /usr/lib/firefox/defaults/pref [13:10] # add-apt-repository ppa:ondrej/php [13:10] -su: add-apt-repository: command not found [13:10] How do I know which css selectors I can use in when styling gtk? [13:10] Haris: apt install software-properties-common [13:11] Hello :-) [13:11] ppf: https://paste.ubuntu.com/p/8BJGK6yR37/ so nm does think it does not manage this [13:11] Haris: install software-properties-common to add-apt-repository works [13:11] got it. done =) [13:12] Haris: :-) [13:12] zub: okay, check why in the conf.d dirs [13:12] any help me, offtopic rsrs [13:13] ppf: https://paste.ubuntu.com/p/ZW9T995VXZ/ nothing interesting there [13:13] zub: there's another one in /usr/lib/NetworkManager/ [13:13] ppf: thanks, let's see [13:13] i don't understand this new settings [13:14] i try lockpref proxy settings for all users so appers "Failed to read the configuration file. Please contact your system administrator" [13:14] :/ [13:14] !patience | slipttees [13:14] slipttees: 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/ [13:14] blackflow: ok bro. Sorry [13:15] slipttees: also please don't call me (or anyone actually) bro, thanks. [13:16] ppf: https://paste.ubuntu.com/p/rTw9D9W9Nm/ the [13:16] 10-globally-managed-devices.conf looks interesting [13:16] 0_o [13:16] yeah, maybe try and throw in an except:type:ethernet in there [13:17] ppf: I don't know details about the matching here, but that seems like this would really make ethernet interfaces unmanaged [13:17] ppf: I'll try, thanks [13:17] im struggling since 2 days to install gvfs1.30.4-1 from debian.org on lubuntu. is there any easier way to install dsc-files from their site maybe with GUI? [13:20] why not use the deb [13:21] zub: please let us know if that fixed it. [13:21] ppf: still unmanaged, huh. we changed unmanaged-devices to: unmanaged-devices=*,except:type:wifi,except:type:wwan,except:type:ethernet [13:21] did you reboot [13:22] that is after restarting network manager but not rebooting [13:22] its not working for me when i add a deb src into sources.list >Malformed entry 1 in list file /etc/apt/sources.list (Component) [13:22] ok, he's rebooting [13:23] TommyOne: mixing apt sources of debian and (l)ubuntu is a bad idea. [13:23] ppf: zub: is taht file even needed on a desktop these days? bionic's NM doesn't have it fwiw [13:23] TommyOne: why weould you do this? [13:23] @tomreyn: uh didnt know, im kinda new to lx [13:23] TommyOne: it's a good recipe to hose your system, so dont ;) [13:24] i have to replace my gvfs 1.28.x into 1.30.4-1 cause i cant mount usb drive [13:24] so, reboot and still unmanaged. the file /usr/lib/NetworkManager/10-globally-managed-devices.conf is there. afaik this is 17.10 desktop installation [13:24] blackflow: it is on mine (not a clean install); however it leaves ethernet unmanaged as well, but NM doesn't use it [13:24] zub: cat /etc/*-release to be sure ;) [13:25] TommyOne: no. you need to fix the issue which prevent your from mounting the usb drive. either through the correct configuration, or by a bugfix provided by ubuntu. [13:25] *prevents you [13:25] !latest | TommyOne [13:25] TommyOne: Packages in Ubuntu may not be the latest. Ubuntu aims for stability, so "latest" may not be a good idea. Post-release updates are only considered if they are fixes for security vulnerabilities, high impact bug fixes, or unintrusive bug fixes with substantial benefit. See also !backports, !sru, and !ppa. [13:26] blackflow: the file is part of network-manager [13:26] i tried. let me explain. i want to access my digital camera through usb but i cant. in some forums they told me to upgrade gvfs because its a known bug [13:26] ppf: PRETTY_NAME="Ubuntu 17.10" [13:27] ppf: yes, but what I'm asking is whether it's even needed on a desktop. assume NM will want to manage them all? so, no need for unmanaged entries? [13:27] zub: lshw -c network [13:27] and for any special, advanced cases, one can always add an exception [13:27] blackflow: yes, i don't understand that bit. in my case the file is being _ignored_ [13:27] ppf: I have a fresh 17.10 installed in a vbox, where eth is managed. and the /usr/lib/NetworkManager/10-globally-managed-devices.conf is the same - it contains this strange looking unmanaged-devices=*,except:type:wifi,except:type:wwan [13:28] zub: yes, it's the same for me [13:28] so, red herring :) [13:28] ppf: lshwc? well, sud odhclient brings network up [13:28] TommyOne: does the camera simply not "show up", or do you get an error message? [13:28] so the hw itself + kernel seem OK [13:28] zub: still, paste please [13:28] TommyOne: do you have an error message which any graphical application or gvfs utilites returned? [13:28] OK [13:29] it shows up but cant access/mount proper due to my wrong gvfs version. its a known problem. so i try to change it [13:30] zub: another thing you can try is setting unmanaged-devices=none in NetworkManager.conf [13:30] as blackflow said you actually want them all [13:30] TommyOne: if it's a known problem, then a bug report must exist. can you point me to it? [13:30] TommyOne: you can't just upgrade/change version to random packages in a system. they're all carefully selected and tested, and have critical interdependencies. [13:30] ppf: good idea, I'll try, thanks [13:30] ppf: oh I just realized this is a file in /usr/lib/ ... I was looking for it in /etc/NetworkManager/ [13:31] yeah it's on Bionic as well.... (and my NM is managing eth just fine) [13:31] zub: oh btw... if there's no icon on the top bar, what about Settings -> Network ? [13:31] ppf: https://paste.ubuntu.com/p/2cpD7844K7/ (I see the warnings about root... but as I'm ralying it to thei coworker who's getting fed up with trying stuff, that's all I can do) [13:31] @tomreyn: i tried with gphoto2 - i can see it on usb001,004 but when i try to config the cam isnt avaiilable anymore [13:32] blackflow: no wired adapters there, even the Wired section is gone [13:32] there's only VPN and Network proxy [13:32] yes, that's because of the unmanaged state [13:32] sudo nmcli dev set ens33 managed yes [13:32] @tomreyn: https://forums.linuxmint.com/viewtopic.php?t=146167 [13:33] TommyOne: don't prefix nicks with @ on IRC, it is not needed, an in some cases might NOT even hightlight them [13:33] blackflow: im sry, bad habbits from twitch irc chat :-) [13:34] how do i switch to xcfe desktop? [13:34] TommyOne: sre you using lubuntu or linux mint? [13:34] *are [13:34] tomreyn: lubuntu [13:35] TommyOne: can you disconnect and reconnect your camera, then run, in a terminal, "dmesg -T | nc termbin.com 9999", and post the HTTP address it returns here? this will post your kernel log to the this pastebin on the internet. [13:36] TommyOne: keep the camera connected for at least 15 seconds, though. [13:36] ppf: so, still, even after sudo nmcli dev set ens33 managed yes, it's unmanaged [13:37] and I'm afraid I can't ask him for more tests now. I'll try something mor eon monday. Thanks for you help. [13:37] tomreyn: http://termbin.com/eik7 [13:37] can /proc/pid/statm be used to determine the memory usage of a program? [13:37] for some reason nm persistently refuses to manage the interfaces [13:37] I thought the first number was the memory usage in kB, but it doesn't match what is reported in htop [13:37] blackflow: also, thank you [13:37] zub: artful is gone soon, perhaps suggest an upgrade to bionic, and by upgrade I mean backup data, reinstall from scratch :) [13:38] blackflow: ideally, but this is a bit of a corporate world, so... might not be that easy [13:38] sigh.... corporate and EOL... [13:39] they should be using LTS then, unconditionally. [13:40] TommyOne: thanks, i'm reading up a little, will get back to you in 10 minutes [13:41] tomreyn: thanks a lot, since i spend so much time alrdy on it -- feel free to take more time ;-) [13:45] TommyOne: np ;) so, when you connect the camera, and keep it (and all other usb devices) connected for a minute, then run "dmesg | tail", does it still say "USB disconnect" there? [13:45] Hello guys having troubles connecting to VPN on Kubuntu 18.04. I have added all the settings required by provider (IPVanish). Everything seems to be added and then when I go to hit "Connect" on the IP Vanish VPN it doesn't do anything literally it doesn't even attempt to connect any ideas? [13:46] tomreyn: connect + wait 1 min + tail sure won't notice any disconnects happening in that minute [13:46] should tail first and THEN connect === will_ is now known as Guest70417 [13:48] blackflow: it will show whether there was a non user initiated disconnect within the minute or not, whic is what i'd like to find out. [13:48] (also dmesg -w ftw instead of | tail) [13:49] blackflow: oh, didnt know -w, thanks [13:49] tomreyn: yeah but tail has -n10 by default, so if you wait and THEN tail, you might lose it [13:49] tomreyn: device not accepting address 10, error -71 [13:50] blackflow: seems to have worked, but you're welcome to provide better instructions to TommyOne ;) [13:50] tomreyn: just saying tail FIRST, and then fiddle with USB [13:51] TommyOne: ok, so that's not a gvfs issue, and definitely not the one one this 2014 forum thread (it's still helpful to look at it, though) [13:54] so i tailed first, connected and dmsg -w finally but still the same error [13:55] TommyOne: dmesg is just showing you the kernel ring buffer messages, it's not attempting to solve your problem per se [13:56] TommyOne: can you also "sudo tail /var/log/syslog", please, see whether there is a "segfault" or anything lookign liek an error. [13:56] when i type gphoto2 --summary i get error (-53: »Could not claim the USB device«) [13:58] tomreyn: org.gtk.vfs.GPhoto2VolumeMonitor[1122]: (process:2100): GVFS-GPhoto2-WARNING **: device (null) has no BUSNUM property, ignoring [13:58] TommyOne: can you try the camera on your other usb ports, too, please? [13:58] tomreyn: i try [13:59] ok, that's just a warning, not a bug [14:00] can i use tmux on vnc server instead of ssh? [14:00] My supermicro server is blinking red on the sata backplane (bpn-sas3-815tq) and i cant figure why. All the hdds are ok. [14:00] TommyOne: also, have you tried the camera on a different computer, one younger than 13 years? [14:01] !crosspost | killall [14:01] killall: Please don't ask the same question in multiple Ubuntu channels at the same time. Many helpers are in more than one channel and it's not fair to them or the other people seeking support. [14:01] also, hardly ubuntu related. [14:03] tomreyn: yeah tried now with different cable on different usb port - still getting error with gphoto2. i just want to access the usb webcam mode. i know its possible because several people got it working. [14:04] tomreyn: on windows10 the camera is working fine with canon software named "camerawindow" [14:04] TommyOne: windows on the same computer? [14:05] tomreyn: different computer [14:07] TommyOne: your computer is pretty old, may have an old (hardware) version usb. i suspect this can be related. but i don't have a good suggestion other than: try this camera, this cable, and this ubuntu version (16.04) , as a live cd, on a more modern computer. [14:08] tomreyn: also note a rather old kernel there (4.4) [14:09] shouldn't be an issue, the camera is old, too. but sure, TommyOne could try !hwe a try, too. [14:10] TommyOne: this is (a generic description of) the problem: http://www.linux-usb.org/FAQ.html#ts6 [14:10] hmmm thought its a good idea to take 16.04 but ok will try older kernel usb-drive and see what happens. thanks a lot so far guys <3 [14:11] !hwe | TommyOne [14:11] TommyOne: The Ubuntu LTS enablement stacks provide newer kernel and X support for existing LTS releases, see https://wiki.ubuntu.com/Kernel/LTSEnablementStack [14:11] this is newer, not older [14:13] If I compile my program using Cygwin on my Windows machine. Should everyone else who uses Windows also have Cygwin to run this program? [14:13] tomreyn: will read that thx [14:13] Artur: you ask this in #ubuntu why? [14:14] TommyOne: actually you can try to disconnect the camera, then "sudo rmmod ehci_hcd", then connect the camera again. [14:15] tomreyn: rmmod: ERROR: Module ehci_hcd is builtin. [14:16] TommyOne: oh, makes sense. ;) [14:16] !find smurf [14:16] Found: W:, W:, W:, W:, W:, W:, W:, W:, W:, W: (and 229 others) http://packages.ubuntu.com/search?keywords=smurf&searchon=names&suite=bionic§ion=all [14:16] TommyOne: well i give up for now. read the FAQ link, try the other computer, good luck! [14:17] tomreyn: yea thx :-) [14:20] @search westover [14:20] !warez | zezuz [14:20] zezuz: piracy discussion and other questionably legal practices are not welcome in the Ubuntu channels. Please take this discussion elsewhere or abstain from it altogether. This includes linking to pirated software, music, and video. Also see !guidelines and !o4o [14:35] Getting this error now with 1000mA(2xusb-ports to microUsbCam) What does this mean? >> 7251 (pool) Attribute num_reads (and others) will be removed. See zram documentation. WARNING! power/level is deprecated; use power/control instead [14:37] i guess the driver is using faulty commands [14:39] Hello, I am using avconv to record screen and voice, the problem is that on lengthy records, the voice lags behind and it is not processed correctly. Do you know what could be fixed or what is wrong with this script? http://paste.ubuntu.com/p/KyQ5b67cMb/ [14:39] TommyOne: The driver is trying to tell the USB controller to send more power to the device (default USB port power is limit to 0.5mA) ... If the camera has a secondary power supply, it would be a good idea to use it. [14:39] The voice is Ok for first 5 minutes. [14:39] mojtaba: what version of Ubuntu are you using? [14:39] pragmaticenigma: 16.04LTS [14:40] pragmaticenigma: the cam is connected to 2 usb ports and the powercell is fully loaded [14:40] pragmaticenigma: any idea? [14:41] mojtaba: not at this very moment. I know that I have never had luck with avconv keeping the audio in sync with the video... speant many hours on it [14:41] pragmaticenigma: you mean replace battery with constant voltage supply would solve it? [14:42] mojtaba: I would recommend getting ffmpeg and trying with that [14:42] pragmaticenigma: Did you give up or are you using any other solution? [14:42] pragmaticenigma: I have to replace just avconv term with ffmpeg? [14:42] in that script? [14:43] mojtaba: It might be that simple, yes... I know some avconv arguments are not compatible or redefined from ffmpeg... but I think you'd be okay to change it over to ffmpeg [14:44] pragmaticenigma: I remember that ffmpeg was discontinued at some point, and avconv was supposed to be a replacement for that. [14:44] TommyOne: If the camera has the ability to be plugged directly into a power outlet, I would strongly recommend using that. Computer USB ports were never really designed for powering devices. [14:45] mojtaba: ffmpeg has never been discontinued. Ubuntu decided to move to avconc (a port of ffmpeg) to avoid conflicts with liscensing issues for codecs [14:45] mojtaba: Ubuntu has since moved back to installing ffmpeg by default [14:46] pragmaticenigma: i can only only replace the battery with a dummy from canon where i can plug in a 5v power supply. the error makes no sense to me due to the fact the battery has way more current than the power supply could give out. :-D [14:47] pragmaticenigma: thanks, I will change avconv to ffmpeg [14:47] TommyOne: I don't know the hardware side of things... the error message is the computer sending a message that a device is trying to negotiate a high power output, and the method being used is not recognized [14:49] pragmaticenigma: thx a lot - will try to solder a constant current supply to the camera [14:50] TommyOne: Why would you do that? Seems extreme [14:50] zub: sorry had to leave for an exam. did you fix it? [14:52] How would I go about checking sha1sum file hashes of about 50,000 files on Linux? I've ran the command: "find /media/lubuntu/Windows -type f -exec sha1sum {} >> windowsHashes.txt \;" and collected something like 41MB of hashes in the file. [14:53] pragmaticenigma: because i have these old spare parts and want to reuse them. im not supporting planed obsolesence. ;-) [14:53] Sunbeam1963: that sounds like a good approach [14:53] I'm copying all the files over an ethernet cable to another Linux box and would like to make sure all the hashes match up. [14:54] That's okay TommyOne ... just seemed like quite a jump from the USB not pushing enough power [14:54] Sunbeam1963: you'd write a script [14:54] I'm just not sure how to compare the hashes because all of the files have different directory paths. [14:54] Sunbeam1963: so what is it you don't like? [14:54] ah [14:54] Or use something like rsync which will verify the files [14:55] yes that means you use $favorite_script [14:55] pragmaticenigma: since i want to power the cam 24/7, i have to do it anyway :-D [14:55] Sunbeam1963: again, you'd write a script [14:55] I used cp -prv /blawblaw /blawblaw [14:55] sup [14:56] hi [14:56] slak, sup [14:56] !resize [14:56] Frank2: can we help you with something? [14:56] alright frank... [14:56] hello [14:57] Sunbeam1963: so the target directories will have a different structure? you'll not be copying the directory-tree as is? [14:57] I resized a ext4 partition with gparted, the file-system is on a microsd [14:57] im connected to a wireless access point with a laptop... now i want to hook my wireless router to the ethernet and transmit that connection [14:57] doable? [14:57] but rebooting from it , the space remain the same of before [14:58] adrian_1908, the directory tree shouldn't be affected, however the directories above all the files being copied will be different names. [14:58] I tried with resize2fs /dev/sdb # but don't go [14:58] Sunbeam1963: strip them in your script [14:58] Sunbeam1963: or compensate for them when you're comparing [14:59] Frank2: you need to resize the partition(fdisk) and the filesystem(resizefs) [14:59] Sunbeam1963: as someone said, rsync might be an option. you can do recursive copying/mirroring and it should verify the integrity [15:00] leftyfb, I resized it with gparted, but resize2fs give me error, only read [15:00] adrian_1908, I've completed most of the copying already. [15:00] Sunbeam1963: you could run rsync afterwards and it will check for differences. lemme check the syntax, one moment. [15:03] Sunbeam1963: rsync -av /host/source/datadir /otherbox/backup/datadir [15:04] Sunbeam1963: you can add the "-n" flag for dry-runs, that might actually work as well i just thought. [15:06] Sunbeam1963: actually, it might be /host/source/datadir/ with a trailing slash. rsync is very picky iirc. === tyzoid is now known as tyz0id === tyz0id is now known as tyzoid [15:14] can i use tmux in vnc? [15:15] takeme: perhaps you can ask in the #tmux channel [15:15] i mean that can i have session in vnc? [15:19] I did "rsync -nav /source/ /target/" hopefully it's going to check the hashes, I'm only seeing a bunch of files being displayed on the screen. [15:24] Sunbeam1963: not sure how to condense it down, but basically without the "-n" flag it would copy your content based on the host data. If you add the --delete flag, it will remove files from the target that don't exist on the host, i.e. a mirror. [15:25] isn't there some statistics at the end of the run, about changes made? === nubcake is now known as nubcake_ === nubcake_ is now known as nubcake [15:32] Is the MySQL package from apt a bit different on Ubuntu? I'm having trouble creating MySQL users and changing the MySQL root password. [15:33] ppf: it's not my computer and the cowork has had enought of debugging attempts; I'll try to poke him again on Monday [15:33] coworker [15:34] Randolf: no. It's not different at all. [15:35] Hmm. I'm having problems with "access denied" errors. The folks in the #mysql channel think it's not a fresh install, but it is. [15:35] ppf: last result is: network manager peristently claims the iface is unmanaged; maybe running network manager in foreground and reading what happens on nm startup (any complaints about anything) or seeing if it prints anything after nmcli dev set managed might help === SimonNL is now known as SimonNL_Afk [15:36] hi there [15:37] Randolf: using `mysql -u root -p` to log in? [15:38] adrian_1908: No, just sudo mysql [15:38] It doesn't prompt for any password. [15:38] zub: okay :) [15:38] keep us updated! [15:38] I have a very strange bug with my monitor refresh rate on Ubuntu Budgie 18.04... I set 2560x1440 120Hz and it's allright - monitor shows that 120Hz is active and system too... But in real Ubuntu renders only 60Hz... How can I solve this problem? Video intel hd 4600. On Windows this configuration working fine on 120Hz correctly - real 120 not faked like in ubuntu [15:39] I also check https://www.testufo.com/ - and the test shows that real refresh rate is 60Hz not 120Hz! [15:40] Maybe some ideas? === i4 is now known as ^am [15:41] When I rename the standard Desktop user (UID 1000) to "admin" are there any problems to be expected with a Desktop setup (e.g. name reserved for internal usage of some pkgs)? [15:42] ^am: vblank_mode=0 glxgears [15:43] de-facto: i think there used to be an admin group on Ubuntu. I would avoid using that username. [15:43] Hi guys [15:44] <^am> tomreyn, https://pastebin.com/Nafmeycv === mous is now known as mous40 [15:45] can you pick a better nick? [15:45] tomreyn, sorry reboot [15:46] am_: well, you got 13375 FPS, seems solved? [15:46] het Butt , this a family oriented support chat , change your nick please [15:46] noah, system real refresh rate is 60Hz, not 120Hz [15:46] tomreyn, no [15:47] tomreyn, monitor works at 120hz and I can see it in monitor menu, but system shows 60Hz... I dont understand why and how [15:48] tomreyn++ [15:48] tomreyn, https://www.testufo.com/ shows up the real 60Hz on my onitor [15:48] monitor_ [15:48] am_: vblank_mode works per application unless you export it, in which case it works for any child process from then on. [15:48] am_: try changing any setting on that test website [15:48] then set it back [15:50] tomreyn, how I can check the real refrash rate of monitor in ubuntu? [15:51] Is there a way of reinstalling a package and all dependent packages (to fix a broken package manager)? [15:52] am_: xrandr [15:52] am_: you can also set it there. sorry, the fps stuff didnt make sense, i guess. [15:52] tomreyn, https://pastebin.com/RuBEM038 - it's shows up that now activated 120Hz but this is not true [15:53] anli, apt-get install --reinstall packagename [15:53] and or/ apt install -f # to fix broken dependencies [15:53] am_: not true based on? [15:53] I easily can fill difference between 60 and 120... and now is 60 and not 120... [15:53] If git is dependent on libcurl4, will that also reinstall libcurl4? [15:53] try .. [15:53] hi anli [15:53] am_: sorry, i dont know then, [15:53] how are u [15:54] tomreyn, Is that possible that monitor works on 120Hz, but system desktop env render only w 60 fps? [15:54] ButtPhucker101: please change your nick now [15:54] ok [15:54] am_: sure, default is to limit to 60 fps with mesa === ButtPhucker101 is now known as Buttmeister101 [15:55] is this one ok, it is better? [15:55] Still getting git-remote-https: /usr/lib/x86_64-linux-gnu/libcurl.so.4: version `CURL_OPENSSL_3' not found (required by git-remote-https) [15:55] (not tried -f yet) [15:55] nope, did only reinstall git, not the dependent packages [15:55] hi hgggdh is this ok [15:55] tomreyn, how can I solve this? [15:56] Or pass [15:56] Could I have Bhutmeister101 if Bhut is my name [15:56] anli, odd, if you install git, it installs dependencies, else it is optional [15:56] but I am reinstalling [15:56] AmilBhut101: yeah, I guess it is goodbye [15:58] hi guys! question: did someone installed ubuntu server 18 lts in virtual box 5.2.12? [15:58] Buttmeister101: You're an idiot. You should be banished from this channel. [15:58] Randolf: please stop [15:58] Randolf: do NOT engage trolls [15:58] hggdh: Okay. [15:59] where can i paste an image with the error i received ? [15:59] I'm having some problems with cut-and-paste -- I need to copy text from a PuTTY or Xterm session, but it never seems to paste into anything. [15:59] Are there some known issues with this? [16:00] YuxKukMo, imgur.com [16:00] am_: so compare this "GALLIUM_HUD=fps glxgears" to this "vblank_mode=0 GALLIUM_HUD=fps glxgears". default vblank_mode is 1, meaning synch to vblank = limit to 60 FPS. [16:00] Randolf: Ctrl + Insert is how to copy [16:00] And one more problem hotkey shortcuts just stop working for my from reboot to reboot and I need to rebind they to other key kodes bcs previous keykodes not working [16:00] Randolf: Shift + Insert for paste [16:00] and cant be bound [16:01] am_: this explains how to disable vblank_mode for your user account / X session: https://wiki.archlinux.org/index.php/Intel_graphics#Disable_Vertical_Synchronization_.28VSYNC.29 [16:01] pragmaticenigma: That just puts a "0" on the screen. [16:01] I tried CTRL-V and nothing happens. [16:02] tomreyn, hmmm now I'm changing from 120 to 60 hz and 120 dissapears from menu in settongs o.O [16:02] tomreyn, 10x [16:02] Randolf: In which application? I don't usually have much luck with Xterm with cut and paste [16:02] can i know name of email? [16:02] https://imgur.com/a/DRJyysT [16:03] Randolf: In putty, the other option is to highlight the text, then click once with the left mouse button. the highlight will disappear, and the text will have copied to the clipboard [16:03] tomreyn, xrandr shows only 60hz mode [16:03] 120 100 and 85 is dissapear) [16:03] reboot will solve this problem [16:03] But why it's happening [16:04] am_: you cna use xrandr to define modes on the fly, as well as /etc/X11/xorg.conf to make it permanent. [16:05] tomreyn, there is no xorg.conf in my /etc/X11/* [16:05] am_: right, it's not there by default [16:05] can i know name of email? [16:05] oh [16:05] pragmaticenigma: That works in Windows, but under Ubuntu it doesn't. [16:06] takeme: What are you talking about? [16:06] email client of ubuntu [16:06] pragmaticenigma: It just changes the range of text highlighted depending on where I click. [16:06] pre installed [16:06] leftyfb: [16:06] takeme: thunderbird [16:06] ah [16:06] thanks [16:07] anyway can i install it on windows? [16:07] so, this is the error that i received during installation in virtual box https://imgur.com/a/DRJyysT. any idea why ? [16:07] am_: have you tried to set the rate i.e.: xrandr --output HDMI-1 --mode 1920x1080 --rate 120? [16:07] leftyfb: ? [16:07] takeme: I believe so, but you have to check somewhere else [16:07] takeme: yes [16:07] ah thanks :) [16:10] horani, yes [16:10] I need to reboot [16:11] horani, yes it's done [16:12] Randolf: I don't use Putty or XTerm in Ubuntu... I use either gnome-terminal or Konsole [16:12] Now it's ok [16:12] Oh, okay. I'll try those. [16:12] which allows Ctrl + Shift + C and Ctrl + Shift + V for copy and paste respectively [16:12] That would be very helpful. [16:12] But next question is how it's possible to render Ubuntu GRUB2 menu on DP? Now it's shows only on HDMI [16:12] Re-typing on-screen text into IRC isn't fun. [16:13] Just in case my MySQL datafiles are b0rked, is it an easy process to just wipe them out and start over? [16:14] am_: you reboot a lot. :) more environment variables for debugging: https://www.mesa3d.org/envvars.html LIB_GL and GALLIUM refers to 3d accelerated graphics only. the i945/i96 should also work for you (2d). [16:16] tomreyn, this is for glxgears? [16:17] am_: anything which creates graphical output. [16:17] tomreyn, when I use vblank_mode=0 glxgears and vblank_mode=1 glxgears - the result is the same [16:17] am_: that's not the commands i had provbided, though [16:18] you dropped the hud [16:18] now the command GALLIUM_HUD=fps glxgears shows 120fps [16:19] so it limits to the monitor refresh rate now. [16:19] No monitor now working good [16:19] And I can see 120 hz [16:19] ) [16:19] Thanks [16:19] Can I fix a broken apt by copying files from an iso file? [16:20] (ubuntu iso) [16:20] Now, can I set to display grub2 menu on DP not HDMI? It;s possible? [16:20] anli: you can set your sources to the install media [16:20] am_: i dont think so, but not certain [16:20] So a ubuntu installation iso can be made an apt source? [16:20] ah, makes sense [16:21] anli: check in your software&sources [16:22] am_: it's possible that you can configure your bios to prefer the external monitor over the internal one, though, if it's a laptop, or to prefer once type of connection over another (e.g. DP vs. HDMI vs. VGA) [16:23] lotuspsychje: Is that no+ [16:23] ? [16:23] I am not asking if something similar to an iso file is an apt source [16:23] am_: if i understood well, for grub: add "video=DP1-1:d" to the GRUB_CMDLINE_LINUX_DEFAULT=..... [16:23] anli: im not following you now..? [16:24] horani: that's a kernel parameter, would only work after grub. [16:24] horani, now i'll try, 10-x then back [16:25] And i was tried to set resolution to grub2 but it's not working and very low now( [16:25] \I set it vefore on previous ubuntu versions with framebuffer, but i don't it's working method now or not [16:25] anli: also when you say a 'broken' apt, can you define please...what exactly doesnt work anymore? [16:26] horani, why DP1-1 or it's just an example... my DP is just DP-1 [16:26] a [16:26] am_: was an example [16:27] DP1:d in your case [16:27] they're gone, again ;) [16:29] however tomreyn isprobably right. this is kernel parameter which will work after grub. therefore this solely depends on bios [16:32] Okay, so I shut down the MySQL daemon, then I used "apt purge default-mysql-server" followed by "apt install default-mysql-server" which all worked fine. But starting the daemon resulted in errors now and it can't find a directory called "mysql-files." === SimonNL_Afk is now known as SimonNL [16:33] hu [16:33] hi [16:33] anyone? [16:34] Randolf: provide more context, ubuntu version, what is your overall plan, what have you done so far, what are you doing now, how's it not working, what's the error message. [16:34] !ask | wlt [16:34] wlt: Please don't ask to ask a question, simply ask the question (all on ONE line and in the channel, so that others can read and follow it easily). If anyone knows the answer they will most likely reply. :-) See also !patience [16:36] tomreyn: I'm using Ubuntu Linux 18.04 LTS, and I'm trying get MySQL re-installed because the previous installation was b0rked and denying access to do normal things. But now I'm getting an error that the directory "/var/lib/mysql/" cannot be created. [16:36] I just want to get MySQL working. [16:37] Randolf: you only purged and reinstalled a meta packages, though, not the full mysql-server, i would think: https://packages.ubuntu.com/search?keywords=default-mysql-server [16:37] is there ubuntu for smartphone? [16:37] i read something about it, but does it works good? [16:37] on mobile [16:37] mtdms: canonical stopped ubuntu touch [16:37] Randolf: can you show the exact error message? [16:37] didnt work? [16:37] mtdms: but the community of #ubports taken over [16:37] mtdms, yes, there is #ubports , community project of that phone thingy [16:38] tomreyn: I'll need a moment because cut-and-paste isn't working -- Shift-Insert just puts a 0 on the screen for me... [16:38] mtdms: see also the ubports.com website to see if your device supports it [16:39] Randolf: try ctrl-shift-v [16:39] tomreyn: mysqld: Can't create directory '/var/lib/mysql/' (Errcode: 13 - Permission denied) [16:39] Randolf: installing as root? [16:39] horani: Yes. [16:40] android could be also linux? like ubuntu a distro? [16:40] tomreyn: The problem is that Ubuntu isn't copying text from PuTTY or xterm. [16:40] it has linux kernel right? [16:40] Randolf: this may be a result of not properly purging mysqld earlier [16:40] mtdms: we take only ubuntu support questions here [16:40] mtdms, yes, but that would be offtopic here [16:41] tomreyn: Oh. Well, how can I make sure that happened? I think perhaps "apt purge default-mysql-server" may have missed something then. [16:41] Randolf: you can drag and mark with the mouse, then paste with middle mouse button [16:41] tomreyn: Yeah, I don't have a middle mouse button. Only left-and-right on this trackpad. [16:42] tomreyn: But the usual copy-and-paste that works with PuTTY under Windows isn't working here. [16:42] I can copy-and-paste between other applications, just not PuTTY or xterm. [16:42] I'm more concerned about MySQL though. [16:42] I can live with re-typing things manually for now. [16:42] Randolf, i would reboot first after removing a 'borked install'. then purge all cruft that is left behind, and start fresh [16:43] oerheks: Done that. This is where I'm at now. === semeion is now known as mnemonic [16:44] Randolf: then let us know which http address this returns "sudo ls -al /var/lib/mysql | pastebinit" [16:44] tomreyn: That directory doesn't exist. [16:46] Randolf: let's clean up again: sudo apt purge default-mysql-server 'mysql*' # be sure to read what it'll be doing before you confirm the prompt. [16:48] Oh, this is asking me with a purple window to remove the database now. It looks like adding `mysql*` makes the difference here. [16:49] That prompt didn't appear earlier when I used just "sudo apt purge default-mysql-server" (without the 'mysql*' part). [16:49] Okay, that's working now. Thank you tomreyn. [16:49] Re-installation worked without any problems. [16:50] welcome [16:50] I'll let the folks in #mysql know about this. [16:54] qiut [16:54] Client Quit [16:54] exit === butterbiscuit is now known as foxdie === freepbx145 is now known as scheder [17:26] suggestions for easiest to use openvpn or othre vpn software? I'd like to be able to securely tap into my own internal network while outside my home for purposes of netflix/hulu/etc. [17:26] (while traveling) [17:27] !vpn | xgpt [17:27] xgpt: For more information on vpn please refer to https://wiki.ubuntu.com/VPN [17:28] thats an old page [17:28] Ubuntu 10.04? think thats gone [17:29] compdoc: feel free to find a new wiki :p [17:30] * compdoc is feeling free now - thanks [17:31] xgpt: https://linuxconfig.org/simple-openvpn-connection-setup-on-ubuntu-18-04-bionic-beaver-linux this is newer [17:31] xgpt: https://www.wireguard.com/ [17:32] hello how to purge netplan? [17:32] I am on ubuntu-18.04 [17:32] and when I do `apt purge netplan` [17:32] I can still use it with `netplan` [17:32] add .io [17:32] Даров [17:32] tomreyn: lol this removes ubuntu-minimal as well [17:32] !ru | Syabro [17:32] Syabro: Пожалуйста наберите /join #ubuntu-ru для получения помощи на русском языке. | Pozhalujsta naberite /join #ubuntu-ru dlya polucheniya pomoshi na russkom yazyke. [17:33] shibumi: that's just a meta package, doesn't hurt. [17:33] anyone here on KDE Neon? [17:34] I'm not entirely sure how large the volume is but I connected an external usb drive to my 32 bit laptop. I could open the directory in the lubuntu file browser but then the file browser closed it self and the device no longer shows. [17:34] tomreyn: what is the difference between the netplan and the netplan.io package? [17:34] xodiak: i use neon on one machine [17:34] (rebooting now n trying windos) [17:35] shibumi: one is the package you want to remove, the other isnt [17:35] shibumi: "apt-cache show PACKAGE" to get info on any package, installed or not. [17:36] thx [17:44] tomreyn: I have reinstalled ifupdown network scripts.. why is ubuntu 18.04 throwing errors on the interface wildcard `ether`? [17:45] do you know some swift ide for ubuntu? i dont wanna use a mac,please [17:47] mtdms, not in the repos, and you asked this yesterday too? .. #swift-lang [17:47] !acpi_osi [17:47] hy guys... how command get acpi_osi support? [17:47] thanks [17:47] shibumi: this lacks context, but i'll probably still not know if you'll provide it [17:48] slipttees: Could you provide more information about what you are trying to do? [17:48] slipttees: can you be a bit clearer? Your question doesn't make much sense. [17:48] pragmaticenigma: fn+keys no work [17:48] slipttees: that wouldn't be a function of ACPI [17:48] :/ [17:49] tomreyn: context: I want to deploy VMs in a vmware environment with openvmtools as some sort of initialization. openvmtools supports only ifupdown tools.. so I reinstalled them. And openvmtools generates an interfaces file with the interface "ether" as wildcard for any ethernet interface but somehow ubuntu18.04 seems to ignore this wildcard [17:49] tomreyn: in short: everything is broken /o\ [17:49] hi [17:50] slipttees: Support for hot keys is limited, and depends on the support of BIOS to send those commands to Ubuntu, and Ubuntu knowing what to do with them. === T4P4N_ is now known as T4P4N [17:54] pragmaticenigma: enable/disable touchpad, wifi work... sound and brightness wont [17:55] shibumi: i can't seem to find anything online about openvmtools creating interfaces named "ether*" by default. [17:56] tomreyn: the interface is named 'ether' only.. I guess it's a wildcard.. no idea. I use ansible vmware-guest module for deploying the VMs [17:56] shibumi: i would also not know how iot creates them, it'd be necessary to ensure they'd not conflict with https://www.freedesktop.org/wiki/Software/systemd/PredictableNetworkInterfaceNames/ [17:56] tomreyn: yeah i Know.. even if I disable them it doesn't work.. so it's more a bug in openvmtools vmware guest agent.. [17:57] i guess so [17:57] if openvmtools would support systemd-networkd everything would work fine ;) [17:57] just netplan should be removed.. [17:57] no idea why you need another abstraction layer there.. [17:57] it doesn't make sense for me.. [17:57] Ubuntu 18.04 isn't supported yet with netplan. 16.04, works fine, openvmwaretools [17:58] netplan is not an abstraction layer... it is a replacement [17:58] oerheks: are you sure? netplan is on default in the server image for ubuntu 18.04 [17:58] having netplan installed or not would not make a difference other than a few more bytes on your hdd in your case [17:58] pragmaticenigma: replacement for what? [17:58] shibumi, ha yes, but not on vmware [17:58] tomreyn: well if netplan is installed with cloud-init it fuckups every network configuration I do in /etc/systemd/network/ [17:59] so all users are still on16.04 lts [17:59] oerheks: ah ok you meant openvmtools sorry :D [17:59] shibumi: a topic for another channel, I'd focus on your current issue [17:59] * tomreyn is not really into cloud-init. [17:59] pragmaticenigma: everything solved :) [18:00] pragmaticenigma: my solution is at the moment: create a custom ubuntu 18.04 template for vmware without netplan... generate .network files templates with ansible.. deploy them via vmware_guest_file module [18:12] hello i am president of debian in Poland [18:13] i want xorg in kernel [18:13] xorg is 30 years of hard work [18:14] of xorg.foundation [18:14] someone know Torvalds ? [18:15] someone got maybe email for Torvalds ? [18:15] okularni1: That's offtopic. Do you have an Ubuntu specific support question? [18:17] are ubuntu want a freeware and warez torrent p2p official polish president of UBUNTU ?? My friend is a programmist and he got long hairs like hippie. He can fight for freedom for you [18:17] okularni1: please leave [18:17] he live i psychiatric hospital [18:18] !op | okularni1 [18:18] okularni1: Help! Channel emergency! (ONLY use this trigger in emergencies) - Pici, Myrtti, jrib, Amaranth, tonyyarusso, Nalioth, lamont, CarlK, elky, mneptok, Tm_T, jpds, ikonia, Flannel, genii, wgrant, stdin, h00k, IdleOne, nhandler, Jordan_U, popey, Corey, ocean, cprofitt, djones, Madpilot, gnomefreak, lhavelund, phunyguy, bazhang, chu, dax [18:18] You are an ellite of UBUNTU [18:18] here [18:19] do you want someone from underground for president function in Poland ? [18:19] okularni1: trolling is offtopic here. Please try #ubuntu-ops [18:19] its not trolling [18:19] people got power [18:19] ubuntu has a risk of deinstallate the xorg [18:20] they say they want wayland [18:20] and wayland is a 2 years of work . For example xorg is 30 years [18:21] okularni1: this is a support channel. Please go elsewhere for your rants [18:22] give your voice to LORD SASANEK (PSYCHIATRIC HOSPITAL DREWNICA POLAND) if you want LORD SASANEK for president of ubuntu in Poland .mail omnismoriar1@gmail.com [18:22] He are a schisophrenic [18:22] .. okularni1 nobody is interested in your activism, your opinion is valuable, but not in this channel [18:22] and he can programming for 5 hours in day [18:22] !ot [18:22] #ubuntu is the Ubuntu support channel, for all Ubuntu-related support questions. Please register with NickServ (see /msg ubottu !register) and use #ubuntu-offtopic for other topics (though our !guidelines apply there too). Thanks! [18:23] whats happen here ? [18:24] !ubuntu | okularni1 [18:24] okularni1: Ubuntu is a complete Linux-based operating system, freely available with both community and professional support. It is developed by a large community and we invite you to participate too! - Also see http://www.ubuntu.com [18:24] whos here ? [18:27] ok look at the nicklist [18:28] too late === ben_r_ is now known as ben_r [18:29] someone here? [18:29] someone here? [18:29] i need help please === phinxy is now known as Guest38975 [18:30] hi all === guest_qualcosa is now known as GiupO [18:30] !ask | TheTrobz [18:30] TheTrobz: Please don't ask to ask a question, simply ask the question (all on ONE line and in the channel, so that others can read and follow it easily). If anyone knows the answer they will most likely reply. :-) See also !patience [18:30] is there a version of ubuntu that has efi 32 [18:30] hi all [18:30] Reading package lists... Done [18:30] Building dependency tree [18:30] Reading state information... Done [18:30] Package virtualbox-5.2 is not available, but is referred to by another package. [18:30] This may mean that the package is missing, has been obsoleted, or [18:30] is only available from another source === GiupO is now known as MrGiupO [18:32] as of 15.10 the 32 bit iso has UEFI onboard [18:33] but if you want a 32 bit uefi for a 32 bit uefi/64 bit machine, there seems to b e a hack, but i would drop it [18:35] is someone using mate 18.04 with multiple XScreen (mine has four) and nitrogen ? I have an issue, i can't set a desktop wallpaper for screen 0.1 0.2 0.3, screen 0.0 is able to change [18:35] Hey guys, I cant seem to get my corsair machanical keyboard to detect while booting on the grub boot selector. I works fine in bios and in win mbr. I have checked to see that the switch on the back was on BIOS and have tried the other 3 settings on boot as well. Any ideas? [18:47] oerheks, its actually an old macbook which is 32bit [18:48] intel or powerpc? [18:48] intel [18:48] 16.04 will do [18:50] Southern_Gentlem: Kubuntu has 32bit packages for everything, IIRC. [18:51] uebera||, the 32bit efi is the main issue [18:52] Has the package intltool been replaced? [18:52] Southern_Gentlem: You're looking for "grub-efi-ia32 - GRand Unified Bootloader, version 2 (EFI-IA32 version)" and 'friends', right? They exist for 18.04 [18:52] "as of 15.10 the 32 bit iso has UEFI onboard" [18:52] so 16.04.4 will do [18:55] anli: intltool exists for 18.04 in "Section: universe/devel" [18:55] Can I use apt to install it? [18:56] you better get used to systemd/systemctl and services [18:56] anli: Yes. Why not simply try it? (make sure you have the universe repository enabled ("sudo add-apt-repository universe") [18:57] Ah, ok, could I do that in the debootstrap command line? [18:57] I ran: debootstrap bionic folder [18:57] Anyone experienced getting Your Hardware Enablement Stack (HWE) is supported until April 2019. on ubuntu 18.04? [18:59] HWE on 18.04 ?? i thought that was not supported yet [19:00] my point exactly [19:00] im trying to figure out why the hell its happening [19:00] s/hell/heck/ [19:00] what do you mean, 18.04 is just released, there is no release wioth newer xorg/wayland and/ or kernel [19:00] irated, 2019 is the deadline of the trusty hwe [19:00] that is the backport, HWE [19:00] anli: If you look at the debootstrap manual, you'll see a "--components" option where you can specify the repositories. [19:01] nice [19:01] irated, where and when did you get that msg ? [19:01] irated, so you have no issue with HWE on 18.04 :-) [19:02] ioria: update-motd is generatin it [19:02] Looked deeper and found this command [19:03] https://gist.github.com/pryorda/d9f6e3ae5653008104cc1d2865787522 [19:04] I'm not sure what kernel comes with 18.04. [19:04] sI could read the script to find out exactly why its doing it, but was hoping someone knew off the top of their head [19:04] irated, cat /var/log/installer/media-info [19:08] !info linux-libc-dev bionic [19:08] linux-libc-dev (source: linux): Linux Kernel Headers for development. In component main, is optional. Version 4.15.0-24.26 (bionic), package size 974 kB, installed size 5003 kB [19:08] irated: the version above should match the current kernel [19:09] I need some more component beside universe, I suppose [19:09] There was no bin folder :) [19:09] !patience [19:09] 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/ [19:09] !help [19:09] Please don't ask to ask a question, simply ask the question (all on ONE line and in the channel, so that others can read and follow it easily). If anyone knows the answer they will most likely reply. :-) See also !patience [19:10] anli: "debootstrap bionic /mnt" should definitely create a bin folder… [19:11] I already have a folder, not being mnt where I want the result to come [19:12] But I assume universe is not the only component I will need [19:15] irated: On your system, does "dpkg --list | grep \\-hwe" produce any output? [19:16] uebera||: So I ran debootstrap --components=universe bionic myfolder [19:17] anli: And it did not install a minimal installation below myfolder? Then there should be an error message of sorts… [19:18] anli: You might find this helpful (even if you don't care about zfs, it shows the steps how to use 'debootstrap', chroot into 'myfolder' and add additional repositories): https://github.com/zfsonlinux/zfs/wiki/Ubuntu-18.04-Root-on-ZFS [19:23] Is it complicated to install kexi from a tar?: https://community.kde.org/Kexi/Releases#3.1.0 [19:23] Is it recommended? [19:24] !info kexi bionic [19:24] kexi (source: kexi): integrated database environment for the Calligra Suite. In component universe, is optional. Version 1:3.1.0-2 (bionic), package size 1738 kB, installed size 7607 kB [19:25] empedokles78: Which version of Ubuntu are you currently using? [19:25] uebera||, 16.04 [19:26] !info kexi xenial [19:26] kexi (source: calligra): integrated database environment for the Calligra Suite. In component universe, is optional. Version 1:2.9.7-0ubuntu12 (xenial), package size 4234 kB, installed size 12339 kB [19:26] uebera||: Trying again, the base system is not installed, maybe I need another component beside univierse? [19:27] debootstrap.log did not reveals anything [19:27] -s [19:28] empedokles78: Personally, I prefer to use packages wherever possible. Makes it much easier to keep track. If the current Kexi is not available for Xenial in a third party repository you trust, you could backport it yourself. Still much cleaner than installing a .tar [19:29] uebera||, backport? I'm not a hacker unfortunately. :) [19:29] Do I need to use --components=universe,alpha or something? [19:29] Okay, I'm using 2.9 then. [19:30] uebera||: looking now. [19:30] Sorry I was dealing with work stuff [19:30] irated, cat /var/log/installer/media-info [19:32] anli: debootstrap is supposed to create a minimal system w/o any parameters apart from " ". Are you able to start a virtual machine using VirtualBox or qemu? I'd suggest to try the same steps in a clean environment (e.g., using the Live Desktop iso) [19:33] I like the idea of having a minimal subsystem, I would prefer to not use a virtual host or software that is not needed [19:33] I want to create a constant build system where a certain software will not fail to build [19:34] With softweare with versions that I can control [19:34] anli: If you say that you don't see a minimal system nor an error message, then something is amiss with your current environment. Trying to use debootstrap and check the expected results can help you to determine what is not working (because for me, it just works). Of course, after fixing your primary environment, you need to repeat everything for a permanent minimal environemnt. [19:35] I got the bin folder and other folders when not specifying --components [19:35] anli: It is impossible to determine the reason why it does not work for you. [19:36] anli: Ok, if that is the case, why not follow the howto I mentioned--chroot into the resulting environment and add the universal repository there manually, then install your desired package(s). [19:36] I have almost no parameters in this problem, why does debootstrap bionic myfolder create a bin folder while debootstrap --components=universe bionic myfolder does not [19:37] Its like universe is not a complete components list [19:37] anli: Try to combine universe with all other environments, especially main [19:38] anli: something like "--components main,contrib,non-free --include mydesiredpackage" [19:38] So main,universe must be the correct parameter value [19:38] I think I will not need to use any others [19:39] --include universe? [19:39] anli: No, "include" takes names of packages, "components" takes names of repositories [19:40] cool [19:41] hm, strange, I get a bunch of non deletable files in myfolder because I have module files [19:41] In proc [19:41] ...for instance [19:41] anli, may i ask you what are you doing ? [19:42] I am setting up a minimal system for building gimp [19:42] From source [19:43] Which will never fail [19:43] ah [19:43] However, my system refuses to remove myfolder because it contains files created with mknod [19:44] anli: Using https://flathub.org/apps/details/org.gimp.GIMP is not an option for you? [19:44] It gets confused by them [19:44] No, that is an installation webpage [19:45] I am a developer [19:45] I see. [19:47] rm gives me "operation is not permitted" on those kernel files, seems someone is trying to protect me against something [19:48] As usual for no reason [19:49] anli: Are you inside a non-privileged container? [19:49] It seems proc is not a folder [19:49] I do not know what that is [19:50] anli: I was referring to this --> https://linuxcontainers.org/ [19:50] I wish I can rm proc in that sub folder [19:51] I am into a debootstrap chroot jail [19:51] in [19:51] Well, there isnt really such a thing [19:51] But I assume you know what I mean [19:52] anli: Did you follow the steps from the howto? Then the proc subdirectory is linked to your system /proc. [19:52] I was only running debootstrap bionic myfolder [19:53] Then myfolder contains a non-removable proc dir [19:53] Hi. I'm trying to `sudo apt upgrade`, and getting the following message: [19:53] libegl1 libgl1 libgl1:i386 libglvnd0 libglvnd0:i386 libglx0 libglx0:i386 [19:53] Ok, then you're *not* inside a chroot. (This usually means you executed chroot) [19:53] The following packages have been kept back: [19:53] libegl1 libgl1 libgl1:i386 libglvnd0 libglvnd0:i386 libglx0 libglx0:i386 [19:53] What should I do, if anything. [19:54] dunpeal: You can explicitly install them: paste the list of packages into the command line after "sudo apt install ". [19:54] anyone have a fix for this - https://bugs.launchpad.net/ubuntu/+source/ca-certificates-java/+bug/1770553 [19:54] Ah, its of course only to umount those dirs [19:54] Launchpad bug 1770553 in ca-certificates-java (Ubuntu) "[SRU] backport ca-certificates-java from cosmic (20180516ubuntu1)" [Undecided,Confirmed] [19:54] uebera||: should I? what's even going on in there? [19:54] use sudo apt dist-upgrade [19:54] re: Ubuntu shipping with a Java keystore that older versions can't read [19:55] oerheks: tried that too, no difference [19:55] So there is a problem in that debootstrap mounts things for me [19:55] dunpeal: This means that there are updates for the packages you already installed, but these updates come with new dependencies (i.e., require additional packages to be installed). That's why by default, the updates are kept back. [19:55] Well, maybe thats not a problem, only a necessity [19:55] uebera||: ah. why :386 packages though? my system is amd64, as are all my installed packages [19:55] rdg, ugly ... but a temp fix is answer #3 [19:56] https://bugs.launchpad.net/ubuntu/+source/ca-certificates-java/+bug/1770553/comments/3 [19:56] Launchpad bug 1770553 in ca-certificates-java (Ubuntu) "[SRU] backport ca-certificates-java from cosmic (20180516ubuntu1)" [Undecided,Confirmed] [19:56] anli: No. debootstrap does not mount anything for you. You said you were inside a chroot, so I assumed you manually mounted the required system folders. [19:56] anli: By installing a minimal system, however, very likely "mknod" was executed which creates the required special folders (/dev/ , ...) [19:57] When I had only ran the line I showed you, I got those mount points, dunno if I had to chroot myfolder to get them [19:58] !paste | anli [19:58] anli: For posting multi-line texts into the channel, please use https://paste.ubuntu.com | To post !screenshots use https://imgur.com/ !pastebinit to paste directly from command line | Make sure you give us the URL for your paste - see also the channel topic. [19:58] anli: Which mount points were added after debootstrap? [19:59] /root/myfolder/proc and /root/myfolder/sys in the host system [19:59] Or what to call it [20:00] https://bugs.launchpad.net/ubuntu/bionic/+source/ca-certificates-java/+bug/1771363 [20:00] Launchpad bug 1771363 in ca-certificates-java (Ubuntu Bionic) "ca-certificates-java: convert PKCS12 cacerts keystore to JKS" [High,Triaged] [20:00] anli: It would be better to call them "special folders". If you talk about mount point that appear, people assume that these were mounted using the mount command, e.g., "mount | grep /root" lists them. [20:00] rdg ^ [20:01] Well, they are mounted with the mount command are they not? [20:01] hm, when doing this again, I did not get those folders mounted [20:02] anli: Not in this case as part of a chrooted environment. These folders are used as destination for [r]bind mounts. Have a look at the tutorial again, it contains the mount commands you need to execute prior to entering the chroot. [20:02] Hi, I have an mdadm array on ubuntu which i tried to grow from 5 disks to 6 disks. Its got stuck at 82.8% and I'm seeing the following error INFO: task md0_reshape:174 blocked for more than 120 seconds.. I have tried rebooting and a live flash drive to assemble with --freeze-reshape but no joy [20:02] any ideas how i can fix it if possible? [20:02] I've attempted to mount the array but it doesn't mount === ben_r_ is now known as ben_r [20:08] MetalWolf: I don't use mdadm myself. If you don't get an answer here, your best bet IMHO is too look for a mdadm specific troubleshooting guide like https://alwaystinkering.wordpress.com/2017/09/23/troubleshooting-linux-software-raid-mdadm/ [20:10] thanks uebera|| [20:12] MetalWolf: what raid level, how did you grow it, what's the mount error, did it assemble properly? [20:14] blackflow: raid 5, it doesn't give an error when I try to mount it it just never actually mounts, same think I'm having when I examine it. yes it re-assembled but started the reshape and got stuck at the same point [20:14] I'll get the grow command just now [20:15] mdadm --grow --raid-device=6 /dev/md0 /dev/sdd [20:15] I stupidly forgot the backup flag :/ [20:18] err sorry [20:18] no /dev/sdd at the end I had added /sdd using --add [20:18] What is needed to be a apt mirror? [20:20] MetalWolf: can you pastebin cat /proc/mdstat? [20:21] yep hold on a second [20:22] https://pastebin.com/Unb7pJG7 [20:24] blackflow: appreciate the help [20:25] MetalWolf: what's sdf? not part of the array? [20:26] sdf is the boot drive (USB flash) [20:27] MetalWolf: and if you check mdstat again, it sits there at that same percentage? [20:27] yes [20:28] reshape = 82.8% (3236979712/3906854400) finish=644382.4min speed=17K/sec [20:28] MetalWolf: can you pastebin say last 50 lines of dmesg? dmesg | tail -n50 [20:29] https://pastebin.com/uU9HhTad [20:32] MetalWolf: yeah that's some hard failing kernel there. Could be simply hardware issues. Thing is, I don't have any experience with such setups like 5-drive raid5 and you're adding 6th drive. I'm used to hard 3-drive raid5, or 4-drive raid6, with optional additional as hot spare [20:33] got similar issues when i moved to a usb boot flash [20:33] and increased in factors of minimum drives per level, so for example X times 3 for raid5. the fact this is failing at that same percentage as you say, suggests some serious HW issues, could be two drives failing, but raid5 can tolerate only 1 [20:34] what i don't understand is that all drives are showing as ok [20:34] MetalWolf: I'd start by reseating sata cables. blow them off, could be accumulated dust causing signal loss, or even oxidation [20:34] MetalWolf: showing wehre? [20:34] with mdadm examine [20:35] that's only reading metadat [20:35] it's failing at resilvering [20:36] all pass smart as well.... guess it could be two damaged blocks at the bit of the drive [20:37] the drives are in an hp microserver so are slide in rails. [20:37] MetalWolf: smart is stupid. if it shows imminent failure, it _might_ fail. if it shows nothing, it _might_ fail. [20:37] lol true [20:37] Who can give an worked advice for ubuntu to configure the grub2 boot menu resolution? [20:37] I might try a different linux OS and see if it see's the drives and builds. [20:38] Now is very low... I'll try to setup it from my notebook with 1600x900 res [20:38] MetalWolf: there is however SMART conveyance test which supposedly does surface scans [20:38] MetalWolf: come again which ubuntu is this? [20:39] 16.04 [20:40] actually i tried with a 16.04 recovery pen.... might try 18.04 see if i get any joy [20:42] MetalWolf: can you pastebin full dmesg? or at least more lines so full kernel backtrace is seen? [20:45] https://pastebin.com/chZhfuZQ full since last reboot [20:49] Any solution to this problem? "error while loading shared libraries: libatomic.so.1: cannot open shared object file: No such file or directory" [20:50] MetalWolf: yeah, looks good until line 956, that's first failure. I'm sorry, I don't see from that _what_ exactly is causing it, but it being a kernel even like that suggests either hardware failure or a kernel bug [20:52] I'll try 18.04 see if its a kernel bug [20:54] MetalWolf: wait, where's that mdadm --examine pastebin? [20:55] mdadm -examine never completes either- [20:56] MetalWolf: nvm, found your previous post. you've got bad blocks on TWO drives, sda and sdg. So I'm guessing that's it. raid5 can only tolerate one drive failure.- [20:57] can i skip the bad blocks n accept the data loss? [20:57] MetalWolf: I don't know. You could try Bionic, see if the newer mdadm and kernel can fare better, but I doubt it. [20:58] uebera||: no it does not show anything [20:58] bionic? [20:58] MetalWolf: mdadm has no data checksumming and no ability to heal. once it starts seeing corruption, it's game over. I'd suggest you to consider ZFS or even btrfs (but not raid5 or 6 lol), or if you _really_ must, then hardware raid with self-healing ability [20:58] Any solution to this problem? "error while loading shared libraries: libatomic.so.1: cannot open shared object file: No such file or directory" [20:58] MetalWolf: 18.04 = Bionic Beaver [20:59] i can’t open terminal after upgrade what’s wrong? [20:59] !details | takeme [20:59] takeme: Please elaborate; your question or issue may not seem clear or detailed enough for people to help you. Please give more detailed information; for example, we might need errors, steps, relevant configuration files, Ubuntu version, and hardware information. Use a !pastebin to avoid flooding the channel. [21:00] oh gotcha lol [21:00] downloading now [21:00] thanks [21:00] MetalWolf: anyway I think your problem is that you started array geometry reshape with bad blocks present on two drives. that's a problem because mdam wants to finish reshaping but it can't skip that step. [21:02] *sighs* thanks blackflow [21:02] andrew09: what's the context of that problem? [21:02] blackflow: I'm trying to open Cydia Impactor [21:02] MetalWolf: yeah sorry. mdadm is nice for whole drive falures, but totally incompetent for blockwise corruption. [21:04] andrew09: that's not a regular package in Ubuntu, right? [21:05] i can’t open terminal after upgrade what’s wrong? help me ubuntu users :( [21:06] blackflow: do you know the path of these "shared libraries", I want to copy the file but I don't know where. [21:08] andrew09: usually they're installed under /lib/ and /usr/lib/ === captain__broken is now known as CaptainFixerpc14 [21:09] hi [21:10] someone could help with ubuntu 18.04 stuck at boot with message "A start job is running for Hold ut...finished up"" [21:12] qwebirc39676: This one : https://bugs.launchpad.net/ubuntu/+source/gdm3/+bug/1779476 ? [21:12] Launchpad bug 1779476 in gdm3 (Ubuntu) "Ubuntu 18.04: gdm3 does not switch to graphics after update" [High,Incomplete] [21:12] How to identify which job hangs ? === kostkon__ is now known as kostkon [21:16] qwebirc39676: it's plymouth-quit-wait.service. See if removing 'splash' from kernel command line in grub helps [21:17] ok I'll try [21:22] @blackflow yes it helped [21:23] #blackflow but it still don't boor [21:23] *boot [21:24] qwebirc39676: read the bug Bashing-om linked above. if you're hit by that entropy problem, moving mouse around for a few seconds should help. If it does, install 'haveged' when you log in. [21:24] !info haveged [21:24] haveged (source: haveged): Linux entropy source using the HAVEGE algorithm. In component universe, is extra. Version 1.9.1-6 (bionic), package size 28 kB, installed size 72 kB (Only available for linux-any) [21:25] hi [21:25] good night to every one [21:26] Hi Thorkel! [21:26] Urbanecm [21:26] thanks for the welcome [21:27] Yw, can I help you somehow Thorkel? [21:27] if you wanna... [21:27] i'v got a problem with Lubuntu [21:27] Just write your question, somebody will reply :) === mous40 is now known as mous [21:28] great [21:29] i'v got a old pc running Lubuntu but did not detect de intel GMA3000 graphics card [21:30] i'v been looking arround on the web for 4 or more hours but didn't find out a solution [21:30] have some one of you any whay to solve this situation? [21:30] i'v downloaded the intel privative drivers but i dont find the way to install them [21:31] Hmm, that isn't anything I understand, sorry. Hopefully somebody else will know [21:31] hi i have been trying all day to get my wifi to work its a rtl8723be [21:31] thanks in any case Urbanecm [21:31] yw [21:38] can someone help me with the RTL8723BE, i tried the stuff on the forum and online and none of it is working :S [21:44] jorl [21:44] no one is talking here [21:44] miss ye old goode days [21:45] I am talking to my walking-dead machine right know and it doesn't want to cooperate... [21:58] hi folks, quick one anyway I can disable auto power off monitors on lock, but still able to lock [21:58] I have a docking station, to power back on and login takes more than one minute [21:59] seems like a gnome3 feature [22:12] what's the difference between ubuntu server and ubuntu live server? [22:19] Lope: none [22:19] okay, thanks [22:20] I've gotta shutdown now, take care [22:24] Hello, can anybody tell if the default Vim has +cipboard feature enabled? [22:24] I can't make "p* or "p+ to work [22:27] Found :version. No, it doesn't. Does anybody know the package where it does? === ptx0 is now known as kash === kash is now known as ptx0 [22:40] hello [22:40] ● systemd-modules-load.service loaded failed failed Load Kernel Modules [22:40] how do i know wich kernel the system is ?? [22:42] uname -a [22:43] already had some strange spam virus in lubuntu/firefox [22:44] i thought that was almost impossible [22:46] REGISTER Passw0rd! ammiegirl808@gmail.com [22:46] well back to da drawing board [22:48] how can I make my ubuntu instance turn into a router? === daniel is now known as Guest87645 === r0Oter is now known as r00ter [22:56] I strongly suggest a better password. :/ === fabricius1 is now known as fabricius === guto is now known as n0cturn0 === dbugger_ is now known as Dbugger [23:28] How do you pronounce awk? [23:32] Can anyone help with booting Ubuntu 16.04 with grub when I accidentally installed Kali with Katoolin? === mous is now known as longcat [23:40] whoamianymore: exactly the way you spell it. [23:41] whoamianymore: "awk", clearly. [23:41] confluency: Is the k not silent though? [23:42] I have no idea. I just say "awk". [23:42] But you ignore the silent k and silent w? [23:43] I just hold my breath for three letters. [23:43] You know, the way you normally say "awk". [23:44] I just find it odd you ignore the silent k, as well as the silent w and a [23:44] Everyone knows what I mean; when I say "sed" that's also three silent letters but the tone is completely different. [23:44] I just grunt [23:44] No, no, that's vim. [23:45] This all came from me trying to find a cli text editor for windows [23:45] awk is a bold choice, but I can see how you could make that work. [23:46] I wanted something like nano tbh [23:46] Well, that's four letters. That won't work at all. === Rainbow|___ is now known as QuinnStorm === QuinnStorm is now known as Guest67996 === Guest67996 is now known as QuinnStorm === QuinnStorm is now known as RtMF