/srv/irclogs.ubuntu.com/2017/10/26/#ubuntu.txt

otsoaIt's "automatic(DHCP)" in my case and it doesn't work. The only thing that seems to work for me is editing /etc/resolv.conf but I'd prefer to avoid hacks like chattr00:00
TJ-Sven_vB: with GPT there's a backup (alternate) table stored at the end of the disk. If that isn't corrupt you can use the advanced options in gdisk to copy it to the primary table00:04
Sven_vBok, machine is back up without BIOS compat modes, GPT is still corrupted. any way to investigate the old file systems?00:04
TJ-otsoa: set it to the "Addresses only" method00:05
Sven_vBTJ-, how can I test whether the backup is corrupted?00:05
TJ-Sven_vB: hang on, I'm just checking here00:05
Sven_vBTJ-, thanks!00:05
TJ-Sven_vB: "sudo gdisk /dev/sda" then "?" to see the menu options. Then "r" to enter recovery menu. "?" again to see the options.00:09
TJ-Sven_vB: I suggest before you replace the primary table with the alternate you should write the primary table out to a backup file.00:09
otsoaOk I've found a solution. Put the DNS in /etc/systemd/resolved.conf and set dns=systemd-resolved in /etc/NetworkManager/NetworkManager.conf00:11
Sven_vBTJ-, thanks, I'll try.00:13
TJ-otsoa: did you not just set NetworkManager to "addresses only" method?00:13
otsoaI set "automatic(DHCP)" in nm-applet or rather left it there as that was the default but NetworkManager just wouldn't pick up the specified servers. It doesn't matter though, I've found a solution anyway00:17
Sven_vBTJ-, in the recovery menu, verify disk says the backup is broken, too: "Caution: The CRC for the backup partition table is invalid."00:18
TJ-otsoa: and as I've said , change that Method to the "addresses only" alternative and the DHCP-provided DNS servers will not be used, but those you add manually in the DNS text box will be00:19
TJ-Sven_vB: well done for checking! Then you've got a problem00:19
TJ-Sven_vB: do you have an idea of how many and what sizes the partitions should be?00:20
TJ-Sven_vB: also, very importantly, is this disk in a running system or are you doing data recovery from another PC?00:20
TJ-Sven_vB: if you've booted from sda then it is likely the kernel's internal partition table can be used to rebuild the broken on-disk table00:21
otsoathere's no "addresses only". https://imgur.com/vVT882S00:22
Sven_vBTJ-, the disk is from storage, I'm checking to see whether I can safely wipe it or want to recover stuff. given the broken GPT my current best guess is that it was from a Vista machine that had a RAID controller, and some of the RAID magic is missing now. based on this guess, I'd expect the disk to have 3 NTFS partitions with (max-20), 10, 10 GB. there's also the last 3 lines of https://gist.github.com/mk-pmb/09de0570716a4250bbafecfafc0f00:23
Sven_vB7d0000:23
Sven_vBhttps://gist.github.com/mk-pmb/09de0570716a4250bbafecfafc0f7d0000:23
TJ-otsoa: oh, that's tragic! that's not the nmapplet, that's some unity/gnome reduced functionality thing! proper nmapplet gives you full control.00:23
R13oseHow do I put in a background image when booting up?  I did once but lose that on upgrade.  I want this permanently.00:24
TJ-Sven_vB: hang on!00:24
TJ-Sven_vB: if it's from a RAID controller (assuming a mirror?) then its possible you just need to look further into the disk. Probably the first few sectors are taken up with RAID dedevice metadata00:25
TJ-Sven_vB: what kind of RAID level and hardware was it attached to?00:25
Sven_vBI have no idea what RAID config was used. the original owner wouldn't have cared, they took whatever config came from the shop. they were even surprised the machine had 2 disks instead of just 1 when I collected it for recycling.00:26
TJ-Sven_vB: you could scan the first few thousand sectors for the GPT header00:27
Sven_vBTJ-, what bytes should I be looking for? is there a magic string for grep?00:28
TJ-Sven_vB: try this: "sudo dd if=/dev/sda count=4096 | grep -abo 'EFI PART' "00:29
TJ-Sven_vB: if that doesn't find anything increase the count to 16384 - that should be enough to pass over most RAID metadata00:30
Sven_vBI tried "head --bytes=1G /dev/sda | grep -aboFe 'EFI PART'" instead: 512:EFI PART¶ 8825876:EFI PART00:34
TJ-Sven_vB: oooo, that's good... and bad. 512 bytes into the disk is where I'd expect to find it. Bad, because it confirms there's a corrupt GPT00:34
TJ-Sven_vB: I can't think why/how both would have bad CRCs but still be rcognisable though. most tooling will just zero those tables when zapping them00:35
codepython777one of my usb devices just stopped mounting completely. Any thoughts on how to debug this? usbmon looks silent00:35
Sven_vBI think I remember some theory that the RAID might have been to increase disk access speed. in that case the shop would probably make the disks interleave their sectors, would they?00:36
TJ-Sven_vB: they could have been using RAID-0 striping00:37
TJ-Sven_vB: in which case you need to dig out the other disk(s) :)00:37
R13oseHow do I tell which version of plymouth, I am using?00:40
jerR13ose, dpkg-query -W <package-name>00:41
jershould see something like: package-name   1:10.0-1ubuntu2 or whatever00:42
R13osePlymouth is 0.9.2-3ubuntu17 but I thought that was up to 5.1000:43
TJ-R13ose:  try "apt list -a plymouth"00:46
gerihi how can i update a symlink to a file? ln -sf ../../../build/libs/main1.0-all.jar main.jar      ?00:47
Sven_vBback again.00:48
R13oseTJ-: says plymouth/artful 0.900:48
R13ose0.9.2-3ubuntu17 amd64 [installed]00:48
TJ-R13ose: where did you get the idea of 5.10 from?00:49
Sven_vBTJ-, if the disk was from the machine that I think it might be from, then I got it because the other disk failed.00:49
naccgeri: ln -sf /target/of/link /name/of/symlink. See `man ln` for details.00:49
TJ-Sven_vB: ahhh. One of the big reasons I don't like RAID000:50
R13oseTJ-: https://www.kde.org/announcements/plasma-5.10.0.php00:50
naccR13ose: that's a KDE version00:51
TJ-R13ose: that's the KDE Plasma, not Plymouth!00:51
naccR13ose: what would that ever have to do with Plymouth's version??00:51
R13oseOh stupid00:51
TJ-word association?00:52
R13oseyes00:52
R13oseI can't find the plymouth boot splash selection00:53
R13oseI am using kde00:54
oerhekssudo dpkg-reconfigure plymouth && sudo update-initramfs -u00:54
Sven_vBTJ-, assuming it was indeed RAID0, is there a chance of verifying it had a) had 1 <= n <= 3 NTFS partitions and b) had no ext2/3/4 partitions starting within its first 16 GB?00:55
Sven_vBor could I detect which version of windows had been used with that disk? after all it seems to have a "Microsoft reserved" partition, and "Basic data partition" sounds like some windows LVM00:57
R13oseoerheks: that is done00:57
TJ-Sven_vB: if it was stripped over multiple disks I don't think even the forensic tools like testdisk (from the autopsy suite) could figure it out00:59
TJ-Sven_vB: depending on the size of the chunks in the stripes you'll likely have 64KB blocks on each disk, so you'll be missing a lot!00:59
Sven_vBTJ-, there might still be a chance of finding some NTFS or extfs volume labels that might help identify the disk.01:01
Sven_vBI'll have a look at that autopsy suite. thanks!01:02
Sven_vBnice, I found remains of windows file paths and a Thunderbird profile. I'll see if I can find a large continuous file, that could rule out the RAID0 possibility.01:06
TJ-Sven_vB: what size are physical/logical sectors on that device?01:07
TJ-Sven_vB: fdisk/gdisk usually report that with the -l option01:07
Sven_vBTJ-, the "gdisk -l /dev/sda" from the gist said "Logical sector size: 512 bytes"01:08
TJ-Sven_vB: from that you could work out approximately how many sectors each stripe chunk would require and therefore where to expect a jump from one disk to another01:08
TJ-Sven_vB: how about physical?01:08
Sven_vB"physical" isn't in the gist. I'll run fdisk -l again and check01:09
TJ-Sven_vB: if physical were larger that may well be what the RAID controller would use01:09
Sven_vB"Sector size (logical/physical): 512 bytes / 512 bytes01:09
Sven_vB"01:09
TJ-Sven_vB: OK, so you're luck there :)01:09
=== williambondj1 is now known as williambondj
TJ-Sven_vB: so you'd expect, with 64KB blocks, to have it move to the next disk every 128 sectors01:10
TJ-so the GPT only uses the first 34 sectors, so RAID0 stripping is not the cause of the corruption. Could be RAID5 or RAID6 though01:11
Sven_vBif there was any RAID at all, it could have been 2 disks max. would that rule out RAID5?01:12
TJ-Sven_vB: Yes; RAID-5 required a minimum of 3 I seem to recall01:13
Sven_vByeah RAID5 and 6 use parity according to WP-en, so I think with just 2 disks it can only be RAID001:14
TJ-Sven_vB: the thing is, if the hardware controller did it's own form of RAID0 it might have used smaller chunks. Without knowing which it's hard to know. Otherwise it would seem like something sprayed bad data across the entire disk01:14
Sven_vBcould the "corruption" simply be a too-new kind of Windows LVM that's not yet supported by Ubuntu?01:17
jerSven_vB, 2 disks is also valid for RAID1 not just RAID001:18
TJ-Sven_vB: possibly; anything is possible, but GPT is an industry standard so if both primary and backup tables have bad CRCs then you have to assume something weird has happened. You already know both the MBR PT and the GPT entries look bad. It looks like pseudo-random data01:18
=== Winter_ is now known as Winter
TJ-jer: yes, but that's mirroring, which won't create 'holes' in the data on a single disk01:18
jeroh i didn't scroll up enough01:19
jergotcha01:19
Sven_vBjer, RAID1 would look the same as no RAID at all, right?01:19
TJ-jer: we're trying to account for a disk where it *could* have chunks missing - which'd explain bad CRCs and data in both GUID PTs01:19
jerfrom a user's perspective? yes01:19
jerTJ-, yeah i just saw that now01:19
TJ-Assuming no RAID meta-data yes01:19
TJ-Sven_vB: but as you're seeing some corruption inside individual sectors I think something has written random data onto it01:20
TJ-Sven_vB: you could try inspecting the last bunch of sectors on the disk. there may be RAID meta-data there instead of the GPT backup header. If the backup header isn't at the end of the disk then that would tend to collaborate that idea01:21
Sven_vBwould it be a clue if I found a large JPEG or bitmap file?01:21
=== Winter is now known as Winter_
Sven_vBoh. in that case I probably replaced it earlier when I told gdisk to relocate the backup to the end of the disk.01:22
TJ-Sven_vB: well, if there's random corruption then finding a single or few files wouldn't be unusual. I'd expect "testdisk" to locate file-system structures to pinpoint where partitions start and end. if it can't find those, then there's lots of randomness01:23
TJ-Sven_vB: ouch! never write to a disk you're doing forensics on!!01:23
cfhowlettTHIS!!01:23
Sven_vBok then I'll stop guessing and poking around, and look into autopsy for real.01:23
=== Winter_ is now known as Winter
TJ-Sven_vB: take an image or create a copy on another disk01:24
Sven_vByeah, if it were serious forensics I'd have worked with an image. in this case I wasn't very careful because I can already see the data isn't valuable to be, it's now more about curiosity.01:27
Sven_vB*to me01:28
TJ-Sven_vB: that's good news :)01:28
Julien-zteHi, I install a Ubuntu 17.10 server i386 version, after the installation, I don't find networking service , nor /etc/init.d/networking?01:29
TJ-Julien-zte: see the release notes: https://wiki.ubuntu.com/ArtfulAardvark/ReleaseNotes#Network_configuration01:30
Julien-zte it doesn't use dhclient to get the ipaddress for the nic, and I can not restart the networking service either01:30
PetearKhhi when i create a file,its says no space,but when i do df -h I still see 70% of the space is there01:31
PetearKhwhat can i be doing wrong here?01:31
cfhowlettPetearKh, show us the paste:       df -h | pastebinit01:31
TJ-PetearKh: out of inodes? try "df -i"01:31
cfhowlettsounds right ^^^01:32
SvetaJulien-zte: does your internet still work?01:32
Julien-zteyes01:32
PetearKhcfhowlett: sorry I am connected from my windows box.I dont have the access to paste the output01:32
Julien-ztehi Sveta, I'm using another notebook to use internet01:33
PetearKhTJ-: in that case what can be the fix?01:33
Julien-zteit's the first time to know about networkctl01:33
PetearKhlets say df -i also looks fine,what could be going wrong?01:33
PetearKhTJ-:01:33
TJ-PetearKh: firstly discover where the inodes are being used up (LOTS of very small files usually)01:33
Julien-zteI want to know why it does not work during the boot state01:33
TJ-PetearKh: then either compress them into a single archive file or delete some, or move to another file-system01:33
PetearKhTJ-: what if I dont run out of inodes,what can be the other culprits01:34
TJ-PetearKh: without seeing "df" and "df -i" I can't say. Are you sure *all* the file-systems have free space and inodes?01:34
PetearKhTJ-: yes I am sure01:35
TJ-PetearKh: what command/process reported the "no space" error?01:36
PetearKhTJ-: i saw for mkdir01:36
PetearKhcan that be a simple thing I am missing somewhere?01:36
TJ-PetearKh: hang on... you're on a Windows PC now, but is the Ubuntu PC running as well right now?01:37
PetearKhTJ-: unfortunately not01:37
TJ-PetearKh: is it a dual-boot then?01:37
R13oseI am confused how to find the plasma boot system settings01:37
PetearKhTJ-: that linux machine is in my offcie01:37
TJ-PetearKh: one possible reason I can think of that would be transient is if there was a large file that had been deleted but some process still had an open file handle to. That file wouldn't actually get deleted until the process closed the file handle.01:38
codepython777is anyone using 4.13.9 on 16.04 here?01:38
TJ-PetearKh: does the problem remain over a reboot?01:38
TJ-codepython777: Yes01:38
PetearKhTJ-: yes it did01:38
TJ-PetearKh: ok, so not an open file-handle01:39
codepython777TJ-: how did you install it? source? or apt-get?01:39
TJ-PetearKh: must be inodes or space01:39
PetearKhTJ-: how can we see that process still has a open file handle?01:39
codepython777I want to see if that will solve my usb problem, just to try01:39
TJ-!mainline | codepython77701:39
ubottucodepython777: The kernel team supply continuous mainline kernel builds which can be useful for tracking down issues or testing recent changes in the Linux kernel. More information is available at https://wiki.ubuntu.com/Kernel/MainlineBuilds01:39
Bashing-omcodepython777: " sysop@x1604:~$ uname -r >> 4.4.0-97-generic"01:39
TJ-codepython777: if you want a regular 4.13 from 17.10 then enable the -proposed archive and install linux-lowlatency-hwe-16.04-edge01:40
codepython777TJ-: I think that would be more stable than trying the bleeding edge?01:40
TJ-codepython777: I've been using Ubuntu mainline builds for years with no problems. The only difference is it doesn't carry Ubuntu-specific patches or config, so, for example, unprivileged LXD containers won't always work correctly (due to Apparmor INIT issues)01:41
TJ-codepython777: if you want the Ubuntuised kernels use the HWE variants01:42
TJ-!hwe | codepython77701:42
ubottucodepython777: The Ubuntu LTS enablement stacks provide newer kernel and X support for existing LTS releases, see https://wiki.ubuntu.com/Kernel/LTSEnablementStack01:42
codepython777TJ-: linux-lowlatency-hwe-16.04-edge - how do i install this?01:42
TJ-codepython777: "sudo apt install <package-name>"01:42
codepython777oh - so i dont need to add any particular source01:43
TJ-codepython777: as long as you've got  xenial-proposed archive enabled01:43
TJ-it'll soon be in xenial-updates01:43
PetearKhTJ-: lsof?01:43
codepython777TJ-: firing my install01:44
codepython777TJ-: Thanks.01:44
TJ-PetearKh: I use an easier method. "sudo ls -l /proc/*/fd | grep deleted"01:45
PetearKhsure01:46
Julien-zteSveta, /etc/netplan is correct, but it does not get the ip address. systemd-networkd is running/active.01:46
Julien-zteit specify ipv4 while in the service log, "epn1s0: Gained Ipv6LL"01:47
codepython777TJ-: how do i tell it to boot from the new kernel instead of the old kernel?01:47
PetearKhwhat does a dmesg command show?01:48
PetearKhwhen can we use dmesg command01:48
TJ-codepython777: GRUB should have automatically added the new kernel to the boot menu, and it should be first in the list as it has the latest version01:55
codepython777TJ-: my boot menu is not showing up01:55
TJ-PetearKh: dmesg shows the kernel's log buffer01:55
steviehi ubuntu01:55
cfhowlettgreetings stevie01:55
TJ-codepython777: you have to press ESCape just as the firmware hands over to GRUB during boot01:55
PetearKhTJ-: will this be useful to know if there is any mem related issue?01:55
codepython777TJ-: cat /boot/grub/grub.cfg  | grep "4.13" --> empty01:55
steviei have a .deb (vscode), I tried sudo apt install <name>.deb - but it says it can't find it. It's in the directory I am running the command01:55
codepython777TJ-: it gives some kind of video error01:55
codepython777then drops me into ubuntu01:56
codepython777was trying to look for grub logs01:56
cfhowlettstevie, .deb is installed with sudo dpgk -i foo.deb01:56
TJ-codepython777: is it an UEFI system?01:56
steviethe how the f*** does this have 94 upvotes on stack01:56
codepython777TJ-: I checked it to be legacy - good point - let me double check01:56
mikesdriveinis ti normal to crash frequently when moving program windows from workspace to workspace using the workspace switcher?01:56
stevielol ill try that01:56
stevieyeah that worked so far, thank you - were you able to ever sudo apt install debs?01:57
TJ-codepython777: the only way it might not get into grub.cfg  - as I found out with another user a few hours ago - is if you've installed grub_customizer, which makes one heck of a mess01:57
stevieawesome, it installed. thanks again01:58
cfhowlettstevie, so far back as I remember, .deb has always been dpgk -i01:58
cfhowlettman dpkg for more info01:58
TJ-stevie: dpkg is for Debian Packages; APT is Advanced Package Tool, for fetching from the archive serviers01:58
steviethats what I figured since it was telling me it couldnt find it by regex01:59
TJ-stevie: apt calls dpkg 'under the hood' for installing the packages it fetches01:59
codepython777TJ-: dpkg --list | grep grub | grep cu = Empty01:59
TJ-codepython777: OK, thank $diety for that!01:59
stevieanother quick question, when I tried to use 'Software Install' under Xubuntu - why wouldn't it let me install the package? I clicked install and it would load then not do anything02:00
codepython777TJ-: now Escape does not do anything - just drops me into ubuntu02:00
TJ-codepython777: weird. are you tapping it repeatedly or holding it down?02:00
codepython777tapping02:00
TJ-codepython777: that's correct02:01
TJ-codepython777: maybe you're too late doing it, or too early! the duration for checking for the key can be very short, depending on the GRUB_TIMEOUT setting02:02
codepython777TJ-: I think the keyboard is no longer mounting on the usb!02:03
TJ-codepython777: in the system's firmware setup, you'll need to ensure that "Legacy USB support" is enabled - it means the firmware continues providing USBHID services to GRUB until the OS starts and takes over02:10
codepython777TJ-: trying to disable fastboot -> https://www.intel.com/content/www/us/en/support/articles/000006699/boards-and-kits.html !02:16
TJ-codepython777: that'd explain it02:18
codepython777TJ-: there is a fastboot which was enabled02:19
codepython777and it seems like one has to push the power button for 3 sec - completely wierd intel design02:19
TJ-codepython777: that's been introduced to make Windows look like it boots faster! in reality the firmware does a 'hibernate' and 'thaw' rather than the OS02:20
Sven_vBwill my smartmontools long test lose its progress if I reboot, or will the disk continue where it left off?02:48
cfhowlettreboot = stop that process02:48
Sven_vBcfhowlett, thanks02:49
cfhowletthappy2help! Sven_vB02:49
limbo_Is there any way to hide the window title bar in GNOME on the latest stock ubuntu?02:49
limbo_I just switched from unity, and I already miss the vertical space.02:49
redandblackhi, I'm new to launchpad02:55
redandblackI'm wondering, if a package isn't hosted on launchpad, is there any point to submitting a debdiff or patch to a bug for the stable xenial release? From what I understand it won't be included02:55
TJ-redandblack: which package?02:55
redandblackTJ-firewalld02:56
TJ-it looks like we do an automatic import from Debian; in which case the best thing to do is open a bug against it with Debian and suggest the patch there. (check they haven't already fixed the issue of course!)02:57
TJ-redandblack: see https://packages.debian.org/sid/firewalld02:59
redandblackTJ-: they have. they're on a far later version (0.4.4.5-2 vs. xenial's 0.4.0-1).03:02
redandblackTJ-: I understand that there is no longer an automatic import from Debian for the stable release03:02
redandblackhence my question. how to fix a bug that's been pending for a year if whatever patch I submit won't be released03:03
TJ-redandblack: check our latest version though; that'll be in artful which is 4.4.5-2 too see https://launchpad.net/ubuntu/+source/firewalld03:05
TJ-redandblack: so you could simply *backport* the patch from artful to xenial03:05
TJ-redandblack: as in, identify the fix in the artful package, ensure it applies to xenial cleanly, builds, and works. The proposed it via a bug report and the SRU (Stable Release Update)  process03:06
TJ-!sru03:06
ubottuStable Release Update information is at http://wiki.ubuntu.com/StableReleaseUpdates03:06
redandblackTJ-: ah, ok. so I've actually done all that up to proposing it to sru03:06
TJ-redandblack: if it's already in artful then SRU should be a smooth process03:07
redandblackTJ-: I ran into a problem there because I wasn't allowed to dput03:07
TJ-redandblack: to your own PPA?03:07
redandblackTJ-: ok, I should dput to my own PPA and then how do I advertise that to sru?03:08
redandblackTJ-: it's not clear how to make the bug report on launchpad link to my PPA etc.03:09
TJ-redandblack: yes, test the build in your own PPA. install it from there to your system and ensure it works correctly as an upgrade to the existing xenial package, then subscribe the appropriate SRU team to the bug (after following the SRU guidelines for the *Universe* component. I think the rules for that are slightly different compared to 'main'03:10
TJ-redandblack: you would attach a debdiff to the bug report03:10
TJ-redandblack: where the source isn't being maintained in launchpad/bazaar/git. Source-code management is a great mess currently and has been for some time, unfortunately. You sometimes have to run round the houses to figure out where the authoratitive repo is03:11
cfhowlett!ping03:20
ubottupong!03:20
redandblackTJ-: I /think/ I've done that... it's taking a while for my PPA to show up03:22
digital_lightHello03:39
digital_lightHey I could use some help trying to find drivers for my wireless card.03:41
digital_lightI am a first time linux user.03:41
cfhowlett!wireless | digital_light03:42
ubottudigital_light: Wireless documentation, including how-to guides and troubleshooting information, can be found at https://help.ubuntu.com/community/WifiDocs03:42
=== the_ant1 is now known as the_ant
=== gnomethrower_ is now known as gnomethrower
digital_lightok so I have an issue where I am trying to install ndiswrapper and I can't use the make command and can't seem to install the package.04:10
redandblackTJ-: thanks for the help. looks like it's up and everything is set. I'm still wondering how the sru team reading my bug report will know about my ppa (I do have a debdiff up on the bug page)04:14
freakyyhi all. is there any screencast software, like kazam, which can record wayland desktop? :)04:15
freakyydigital_light did u try sudo apt install build-essentials ?04:15
digital_lightno... it wasn't even suggesting that.  I was trying sudo apt install make.04:16
freakyynope that wont work04:16
harutSo I had a copy of Ubuntu 14 running on an old Dell Latitude 2120 notebook and I dropped that hard drive into a Dell Optiplex 755 and it booted fine with no problems04:16
digital_lightugh it sucks having to switch between os....04:16
harutNo question, just wanted to say how awesome I think that is04:16
freakyydigital_light ubuntu iscool ;D04:16
harutLinux Master Race04:16
freakyybuild essentials is the package which holds all the stuff required to compile things urself04:17
freakyyso install build-essentials04:17
freakyyand trxy make again04:17
digital_lightwill do.04:17
freakyyoh he quit04:18
freakyyproblem umm, it cant find the build essentials for me04:18
freakyyah its build-essential04:24
freakyy;D04:24
freakyyok umm, so does anyone know ... a screencast program for ubuntu 17.10 and wayland?04:24
digital_lightWhat was the command again?  Sorry had to switch oses and that is a pain04:26
lotuspsychjefreakyy: kazam?04:26
digital_lightForgive me but how do I install make again...  had to disconnect to get back on my ubuntu.04:29
subvhomei don’t know if you say my question about nfs...04:30
subvhomei was disconnected…04:30
redandblackdigital_light: sudo apt-get install build-essential04:31
geek0584ok guys i have a rather simple question probably, but i am kinda stumped... its been ages since i have used linux... i am trying to setup my vnc server and when irun the command ssh -L 5901:127.0.0.1:5901 -N -f -1 vncserver 127.0.0.1 i get04:32
geek0584ssh: connect to host vncserver port 22 : connection timed out04:33
digital_lightIt says unable to locate package build-essential.  Just a note I do not have internet atm (that is what I am trying to fix)04:33
digital_lightredandblack: ^04:35
geek0584digital_light do you have an ethernet cord?04:35
digital_lightMy system isn't any where close to a port atm04:36
geek0584what version of linux distro are you using?04:37
digital_lightThe latest ubuntu04:37
dos000i have a weird issue with gnome-terminal not starting when i am in vnc (i am using tigervnc) acan anyone help please ?04:37
dos000when i start it just sits there .. and blocks04:38
geek0584digital_light 16.04 or 17?04:38
digital_light... how do I check?04:38
dos000i installed ubuntu server17.10 on this machine04:38
dos000what should i use to debug it ?04:39
redandblackdigital_light: lsb_release -d04:39
digital_light17.1004:39
geek0584ok brb 1 sec04:39
geek0584digital_light https://packages.ubuntu.com/zesty/build-essential04:41
dos000how do i uninstall every thing that was not installed by the ubuntu-server ? i want to go back to what i had before04:41
subvhomelooks like my NFS share is working.. macos reads it with delay04:41
geek0584manual download04:41
geek0584save it to a flash drive04:42
=== the_ant1 is now known as the_ant
redandblackgeek058: isn't it odd that digital_light didn't get build-essential with the initial install?04:43
geek0584i had to install it with my 16.0404:44
geek0584it was missing some things04:44
redandblackhm, I guess I forget04:44
geek0584red maybe you can help me with my issue04:45
geek0584i am trying to setup my vnc server and when irun the command ssh -L 5901:127.0.0.1:5901 -N -f -1 vncserver 127.0.0.1 i get04:46
geek0584ssh: connect to host vncserver port 22 : connection timed out04:46
geek0584its not assigning to the correct port04:46
redandblackI don't have any experience with vncserver04:47
geek0584im just trying to setup remote access into this nix box04:48
redandblackare you sure you're port forwarding correctly in ssh?04:48
geek0584how do i assign in ssh settings ?04:49
redandblackwhat port do you want to forward to what port?04:49
freakyyhm, i wonder04:50
freakyydoes anyone know any good mouse cursor theme?04:50
freakyyfor ubuntu?=04:50
geek0584incommng vnc/remote connections to 590104:50
redandblacktry without 'vncserver'04:52
digital_lightOk I put it on a flash drive.  Now how do I install it?04:52
redandblackgeek0584: ssh -L 5901:127.0.0.1:5901 -N -f -1 127.0.0.104:53
freakyydigital_light u have to set ur bios to boot from usb04:53
freakyydigital_light then,, just insert hte stick into any usb port04:53
freakyyit should give u a boot menu04:53
freakyyselect live04:53
freakyyand boot into it04:53
freakyytry if everything works04:53
freakyyif it doesnt - it's up 2 you if you still anna install it04:54
digital_lightI already have Ubuntu installed though.04:54
geek0584redandblack ssh -L 5901:localhost:5901 -N -f -1 127.0.0.104:54
geek0584ssh: connect to host 127.0.0.1 port 22: Connection refused04:54
freakyywhat did u put on a flashdrive?04:54
redandblackfreakyy: d_l just put https://packages.ubuntu.com/zesty/build-essential04:54
digital_lightI am trying to install a manually downloaded package04:54
freakyyboot linux, stick in usb drive, dpkg -i pkgname.deb04:55
redandblackgeek0584: your vncserver is running right?04:55
geek0584ya its running04:55
geek0584let me kill and restart04:55
freakyygeek0584 what kinda vnc server is it?04:55
freakyyi once also wanted to set up a vnc server, but ... i dont know ... its somewhat ... i have no idea if i could use smb services etc. with the network then04:56
geek0584tightvnc04:56
lotuspsychjevnc is a security hole, be carefull with it04:56
lotuspsychje!vnc04:56
ubottuVNC 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 !FreeNX04:56
lotuspsychjeuse openssh method04:56
alkisgx2go, not freenx :)04:56
* alkisg waves04:57
freakyywhat is vnc? is that somethin like vpn?04:57
digital_lightOk that is giving me an error.04:57
gnomethrowerfreakyy: no... lets you remotely input keyboard/mouse and get display output04:58
gnomethrowerthink Remote Desktop for Windows if you're familiar with that, same kinda concept04:58
freakyyahh ok ;d04:58
freakyyyrea04:58
freakyyi remember thanks04:58
geek0584openssh?04:58
freakyyhey lotuspsychje :)04:58
digital_lightDependency problems04:58
lotuspsychjehi04:59
geek0584does open ssh have gui ?04:59
freakyydigital_light ... cant u upgrade ur ubuntu?04:59
freakyywhy is it that old?04:59
redandblackgeek0584: ssh -y04:59
digital_lightI am using 17.10 without internet atm04:59
=== thurstylark is now known as thursdaylark
redandblackforwards X1105:00
redandblacknot like remote-desktop though... you're on your own tty05:00
freakyydigital_light hm i cant help u then ... ive never done anything like that05:01
alkisggeek0584: lotuspsychje meant that you should use ssh to encrypt your vnc connection, i.e. use both ssh and vnc, not just ssh -X05:01
alkisggeek0584: as the wiki page says... in the openssh paragraph05:01
lotuspsychjevnc gets hammered worldwide, so pretty bad idea05:01
redandblackalkisg: that's exactly what geek0584 is trying to do05:01
lotuspsychjealso for ssh use fail2ban05:01
freakyydigital_light u might be able to ... just download a recent daily image and then ... use it to install stuff05:02
freakyylike as "installation medium"05:02
dos000i have tigervnc working fine here .. except i cant  start gnome-terminal .. xterm is working fine but very ugly05:02
geek0584exactly lotus05:02
freakyybut for that u have to flash ur usb drive05:02
freakyyand i dont know if it works so, yeah05:02
geek0584i am trying to setup my vnc server and when irun the command ssh -L 5901:127.0.0.1:5901 -N -f -1 vncserver 127.0.0.1 i get05:02
freakyywhat is better: white cursor or black/gray cursor? breeze or breeze_snow?05:03
geek0584ssh: connect to host vncserver port 22 : connection timed out05:03
digital_lightFreakyy: I honestly have no idea what you mean. I just installed Linux for the Dorsey time05:03
geek0584not sure what i might have configured wrong05:03
freakyydigital_light oh u just installed it ok ..05:03
dos000geek0584: can you connect ssh normally to that box ?05:04
freakyythen why dont u have an installation medium ... u can use that as source for build-essential05:04
dos000geek0584: seems like your ssh server is not running on that port .. maybe05:04
dos000confirm that first05:05
geek0584going by https://www.digitalocean.com/community/tutorials/how-to-install-and-configure-vnc-on-ubuntu-16-0405:05
alkisggeek0584: you want to access your already logged in desktop, or do you want to start a new remote desktop?05:05
digital_lightfreakyy: it didn't come with it.05:05
sdfgsdfghi how can I "diff -u" only the subdirectories 1 level below ?05:05
freakyydigital_light oh so u have something new, like a new pc but ... the network connection doestn work? oO05:05
freakyydigital_light however, when u download the iso of 17.10 u might be able to set that as installation medium in /etc/apt/sources.list05:06
digital_lightNo.  The install didn't have build-essentials.  I just installed the ISO myself.05:06
freakyyand then install build essential from there05:06
geek0584thats the guide that i am going by05:07
freakyydigital_light ok ... then use that iso as installation source ... ;D05:07
freakyyit should have the dependencies05:07
digital_lightIt didn't though.05:07
freakyyhm05:07
redandblackgeek0584: try "ssh localhost" and see if you can get in05:08
digital_lightI installed off the ISO and it doesn't have some things.05:08
freakyyit doesnt install everythin that son the dvd so ... could u maybe boot the iso, and then do:  sudo apt install build-essential05:08
freakyy?05:08
digital_lightI will try....05:08
freakyyok just put it inside05:08
freakyythe umm05:08
freakyydvd thing not ur local disc05:09
freakyyjust to check if it has it05:09
freakyybut it should have it05:09
geek0584ssh localhost05:09
geek0584ssh: connect to host localhost port 22: Connection refused05:09
digital_lightIt is a flash drive05:09
freakyyusb stick?05:09
redandblackssh is your problem05:09
digital_lightYeap05:09
freakyythat doesnt matter, installation medium is isntalaltion medium05:09
freakyysomehow ;D05:09
freakyydigital_light :D05:11
digital_light... it thinks my flash drive is an amd machine05:11
redandblackgeek0584: "sudo systemctl restart ssh"05:12
freakyyhm05:12
geek0584ok 1 sec05:12
freakyycant help u there05:12
freakyydidnt u install off that medium?05:12
freakyywait05:12
freakyydid u install using that flash drive?05:12
freakyyif yes, then boot into the system and do05:12
geek0584Failed to restart ssh.service: Unit ssh.service not found.05:13
freakyywindows-key: software and there choose the one with the cogwheel05:13
geek0584ermmm05:13
freakyythen u have an option there05:13
freakyyinstallation medium05:13
freakyyDVD05:13
freakyy;D05:13
freakyyselect that05:13
freakyymight work05:13
redandblackgeek0584: sudo apt-get install openssh-server05:14
redandblackgeek0584: https://help.ubuntu.com/community/SSH/OpenSSH/Configuring05:14
geek0584give me a few gonna run through that now05:15
freakyybrb, gettin smth 2 drink05:16
dos000ok .. i found something with strace https://paste.ubuntu.com/25821390/ .. anyone one rings a bell ?05:17
freakyydigital_light and? :)05:18
digital_lightI am not seeing one with a cog05:19
freakyyoh then05:20
freakyytry to find the right one05:20
freakyyits called applications or something05:20
cfhowlettfreaky nope05:21
freakyycfhowlett sorry i have another icon theme ;D05:21
cfhowlettsee the cog on the LOGIN screen05:21
freakyyno nothing with login screen ;D05:21
cfhowlettif I understand what your goal is05:21
freakyywe need the applications dialog05:21
* cfhowlett slips quietly back to lurk-mode05:21
freakyywhich shows the ... installation source mediums05:22
digital_lightEnd goal of getting build-essential installed05:22
freakyywithout having internet access ;D05:23
freakyyfor getting internetaccess05:23
freakyywith dependencies ;D05:23
freakyydigital_light do u have any ethernet cable?05:23
freakyymaybe that could help05:23
digital_lightI don't have a nearby port05:23
freakyyok05:24
freakyyso could u find it yet?05:24
digital_lightNo...05:25
freakyyumm05:27
freakyytry typing in: additional software05:28
freakyythen open that dialog05:28
freakyyand then choose the tab all tot he left05:28
freakyysorry additional drivers05:28
freakyynot software05:28
digital_lightHang on...05:28
digital_lightI might have downloaded the wrong thin05:28
freakyyok05:28
freakyy;D05:28
digital_lightI clicked on the dev and it says it is an informational ist of build-essential packages....05:29
digital_lightList*05:29
freakyybuild-essential actually is a meta package installing compilers libaries etc. for compiling stuff05:30
freakyywhat is the thing u trying to install?05:30
freakyyis it a .deb?05:30
digital_lightYes05:31
digital_lightFrom https://packages.ubuntu.com/zesty/build-essential05:32
freakyyoh yes of course sorry, i meant the thing u need build-essential for05:33
freakyywhat is it? a wifi adapter driver?05:33
freakyydoes anyone know a good software for takin screenshots on ubuntu with wayland?05:34
freakyyand for ubuntu on xorg?05:34
freakyywhich works on both05:34
digital_lightI am trying to install ndiswrapper05:35
freakyyhm ok ;)05:35
freakyydoesnt that have a package itself?05:35
cfhowlettit does!   sudo apt install ndiswrapper05:36
digital_lightUnable to locate package05:36
freakyyso the same problem u have with build-essentials now05:37
freakyywait05:37
freakyyndiswrapper/artful 1.60-4ubuntu1 amd6405:38
freakyy  Userspace utilities for the ndiswrapper Linux kernel module05:38
freakyyfor me it has it05:38
freakyywhy dont u download that .deb05:38
digital_lightNo I05:38
cfhowlettdigital_light, what ubuntu version are you on?05:38
digital_lightDon't05:38
digital_lightHave05:38
freakyy17.10 cfhowlett05:38
digital_lightInternet05:38
freakyydigital_light ok ... yes thats a problem ;D05:38
digital_lightThat is what I need ndiswrapper for05:39
cfhowlettdigital_light, apt policy ndiswrapper | pastebinit05:39
cfhowlettwait are you NOT on the target machine then??05:39
digital_lightNo iam05:39
cfhowlettcool:      apt policy ndiswrapper | pastebinit05:39
freakyypastebinit rules :D05:40
cfhowlettindeed!05:40
nchambersdigital_light: then how do you not have internet?05:40
digital_lightPastebinit is not installed05:40
redandblackdigital_light isn't going to have pastebinit05:40
nchambersdigital_light: apt policy ndiswrapper | curl -sF 'f:1=<-' http://ix.io/05:41
digital_lightI downloaded the ISO from a Windows version of this computer.05:41
redandblackdigital_light: when you booted the livecd iso you should have been able to have access to the internet and then been able to do all this stuff05:41
digital_lightCurl is internet based right?05:41
nchambersits an http client05:41
freakyyhe doesnt have internet ;D05:41
digital_lightIt isn't recognizing my adapter05:41
redandblackwhat's your adapter?05:41
nchambersfreakyy: you need internet for pastebinit as well05:42
cfhowlettatheros would be my bet ...05:42
nchambersand for IRC05:42
digital_lightAsus pce-ac6805:42
freakyynchambers yes ... but we have to admin, that continuing trying him to paste something off that pc is senseless05:42
digital_lightI am on my phone atm05:42
freakyy*admit05:42
nchambersfreakyy: not really05:43
freakyydigital_light hm, if u were on windows id say, try tethering -> usb -> mobile phone ;D05:43
freakyy-> internet05:43
digital_lightFreakyy that might just work05:43
digital_lightBrb05:43
freakyygood luck05:44
freakyynobdoy knows any screenshot tool for gnome on wayland? :(05:44
freakyyany good one not the defautl one integrated into gnome because that one sucks. doesnt have upload nothing05:44
cfhowlettfreakyy, eh? offers a choice of zimage or imgur upload05:47
freakyycfhowlett how?05:48
cfhowlettscreenshot > Host on Imgur > upload > choose a sized link.05:49
cfhowletthttp://i.imgur.com/ntcRz57.png05:49
Bashing-omfreakyy: shutter ?? ' apt show shutter ' .05:49
freakyyBashing-om dont like shutter05:50
freakyycfhowlett wait, how did u open that?05:50
freakyyi have "screenshot" but05:50
freakyyit doesnt offer anyhting like upload to imgur etc.05:50
cfhowlettI'm on Xubuntu so I have a different app.  wait 105:50
digital_lightI know what happened05:51
digital_lightIt installed the and versions.05:51
cfhowlettfreakyy, OK, I have xfce screenshooter.  you could simulate installation with   apt install -s screenshooter.05:51
digital_lightAmd05:51
digital_lightI have intel.05:52
cfhowlettdigital_light, intel what?05:52
digital_lightCpu05:52
freakyycfhowlett hm no thx i want something for gnome ;D05:53
freakyyhow do i switch the default file browser application in gnome? for some reason its opening dolphin05:53
freakyy(as i have kubuntu co-installed)05:54
hateballdigital_light: 64-bit packages are amd in name, they don't mean there's a problem on intel 64-bit05:54
digital_lightOh....05:54
digital_lightThat isn't clear then XD05:54
digital_lightI have make installed already then05:55
freakyywahts the error?05:55
digital_lightWait nvm....05:55
digital_lightI read the wrong line...05:55
freakyyok ;D05:58
freakyywhat yall think about my website: www.freakyness.de :D06:02
freakyyit runs on an ubuntu server ;D06:02
digital_lightOk so work around idea06:03
digital_lightUsing my galaxy s7 as tethered wifi06:03
freakyydoesit work?06:04
freakyyinstall everythign u need06:04
freakyyi have to go now06:04
freakyybye all ;D06:04
freakyy~gone06:04
digital_lightBut it doesn't want to recognize it either06:05
digital_lightGOT IT06:20
digital_lightIt I downloaded the wrong file06:20
digital_lightI legit have to through each dependency and install it manually D:06:34
cfhowlettand THAT is why we always say DO NOT install debs ...06:34
digital_lightI will do what I have to.06:35
ducassedigital_light: do you know which chipset your adapter uses? there might be a better way to do this06:42
digital_lightGive me one sec and i will find out06:42
roryHow can I install libperl.so.5.18 - I only have libperl.so.5.2206:46
rory16.0406:46
apsHi all. I wanted to find out if the change in cpu counters in /proc/stat are supposed to add up to a fixed value?06:46
digital_lightBroadcom BCM4360 ducasse06:47
ducassedigital_light: then you probably want bcmwl-kernel-source06:49
Bashing-om!bcm | digital_light06:50
ubottudigital_light: Help with Broadcom bcm43xx can be found at https://help.ubuntu.com/community/WifiDocs/Driver/bcm43xx06:50
ducasserory: short answer, you don't. you would need to replace 5.22, and other programs depend on that. you'll only break stuff.06:52
lotuspsychje!info perl xenial | rory06:55
ubotturory: perl (source: perl): Larry Wall's Practical Extraction and Report Language. In component main, is optional. Version 5.22.1-9 (xenial), package size 231 kB, installed size 669 kB06:55
lotuspsychjemorning alkisg06:55
alkisgMorning lotuspsychje, hi all06:55
cfhowlettdigital_light, bcm 4360 should be repairable in minutes with an ubuntu .iso.06:57
digital_lightHow?06:57
cfhowlettread the link from ubottu06:57
cfhowlettI use the "STA - no internet access"06:58
lotuspsychjedigital_light: as cfhowlett says, the driver should be in the iso dir of ubuntu, somewhere in /pool or so?07:05
digital_lightI am still having issues... Still missing things07:07
lotuspsychjedigital_light: explain?07:08
ThetaOrionisHey guys, so I have Ubuntu 16.04 installed on my Asus 301 chromebook with Crouton, and many things like scanning something or mounting/unmounting external drives etc fails in normal mode. When I use gksudo, it works.07:09
ThetaOrionisIs there any way Ubuntu can just behave normally on croutun?07:10
OERIASIs there a plan for patches to fix some of the issue with Unity on 17.10?07:10
lotuspsychjeOERIAS: can you detail 'issue'?07:10
digital_lightI have the install disk as installable but when I try to install the first package it says ...07:11
hateballThetaOrionis: probably better to ask in #crouton07:11
lotuspsychjeThetaOrionis: there might be some kernel play to come along to get it the way you want07:11
digital_lightDkms depends on gcc however gcc is not configured yet07:12
ThetaOrionisI see. Didn't know that a dedicated channel existed for that. :D Thanks hateball07:12
digital_lightJust a note I downloaded the ISO onto a USB stick if makes a difference07:14
lotuspsychjeOERIAS: https://itsfoss.com/use-unity-ubuntu-17-10/07:14
digital_lightI don't even have one of the folders the instructions have07:15
=== Guest25611 is now known as pax
=== pax is now known as Guest87078
digital_lightLet me check something07:18
lotuspsychjedigital_light: to get your issue solved, repeat here once in a while with all details: ubuntu version? system up to date? kernel? steps tryed?07:18
digital_lightlotuspsychje: what do you mean by system up to date?07:19
lotuspsychjedigital_light: latest updates07:19
digital_lightSo maybe... kinda hard to update with no internet07:20
lotuspsychjedigital_light: wich iso did you download?07:20
lotuspsychjedigital_light: .3?07:20
hateballThetaOrionis: crouton is a special case after all, since it runs in a chroot jail... and on top of chromeOS at that07:20
digital_lightGive me one sec07:21
ThetaOrionisIndeed...07:21
digital_lightHave to check that one Windows07:21
=== r0Oter is now known as r00ter
lotuspsychjedigital_light: lsb_release -a & uname -a can help you07:21
digital_lightThe name of the ISO is ubuntu-17.10-desktop-amd64.iso07:22
lotuspsychjeoh your on artful07:22
digital_lightI guess07:23
lotuspsychjedigital_light: can you put a cable in and update system?07:23
digital_lightNope07:24
lotuspsychjedigital_light: ok, did you browse the iso for that broadcom wifi?07:24
digital_lightI am upstairs router is downstairs07:24
auronandacedigital_light: just to be clear you'll need to use the same release iso as the system you installed07:24
digital_lightI used windows.07:24
digital_lightConsidering I used that ISO to install today I am07:25
lotuspsychjedigital_light: did you browse your iso for the broadcom driver?07:26
digital_lightI made a bootable USB drive from it.07:28
lotuspsychjedigital_light: thats not what im asking, you have your broadcom not working, so you need to install it from the iso dir07:29
digital_lightYes it is there but I can't install it07:29
lotuspsychjedigital_light: whats your error on it?07:29
digital_lightIt says I am missing dkms, linux-libc-dev, and libc6-dev07:30
alkisgdigital_light: does the live cd have internet access?07:30
digital_lightNo..07:31
lotuspsychjedigital_light: did you try installing it with software centre?07:31
digital_lightYes....07:31
lotuspsychjehmm07:31
digital_lightIt doesn't say anything07:31
alkisghttps://help.ubuntu.com/community/WifiDocs/Driver/bcm43xx says that the live cd has the headers and all the required parts to have the driver working, but not the installed system07:31
alkisgAnd it has the paths on the cd where dkms and the others are located07:32
digital_lightLet me try to install it on the LIVE CD then07:32
alkisgE.g. cd /cdrom/pool/main/d/dkms; sudo dpkg -i dkms*07:32
alkisgdigital_light: try the instructions on the real installation first07:32
lotuspsychjealkisg: +107:32
alkisgFollow the page. If that fails, then try from the live cd.07:33
digital_lightTried that..07:33
alkisgAnd dkms wasn't there?07:33
digital_lightNo but it's dependencies weren't installed07:33
lotuspsychjedigital_light: wich driver did you chooe to install exactly?07:34
alkisgTake the instructions from the start, and tell us on the first error that you see07:34
alkisgWhat is the exact chipset again? https://help.ubuntu.com/community/WifiDocs/Driver/bcm43xx#Internal_cards07:35
digital_lightThe one that came with the iso07:35
digital_lightBroadcom BCM436007:35
ducasseaccording to the manifest there's no dkms on the artful iso07:39
digital_lightThere is though....07:39
* dax ponders07:40
digital_lightUnder pool/main/d07:40
alkisg$ ls -l /mnt/pool/main/d/dkms/dkms_2.3-3ubuntu3_all.deb07:40
alkisg-r--r--r-- 1 root root 68310 Οκτ   6 13:28 /mnt/pool/main/d/dkms/dkms_2.3-3ubuntu3_all.deb07:40
alkisgducasse: ^07:40
alkisgdigital_light: start with the instructions, step by step, and tell us the first error message that you see07:40
ducassestill, it's not in the manifest :)07:40
alkisg$ ls -l /mnt/pool/restricted/b/bcmwl/bcmwl-kernel-source_6.30.223.271+bdcom-0ubuntu3_amd64.deb07:41
alkisg-r--r--r-- 1 root root 1544084 Ιούν 12 19:00 /mnt/pool/restricted/b/bcmwl/bcmwl-kernel-source_6.30.223.271+bdcom-0ubuntu3_amd64.deb07:41
alkisgHere are all the .deb files in the CD: http://termbin.com/duvw07:44
alkisgI don't think any dependency is missing.07:44
digital_lightI am doing a reinstall because I could install the driver just fine from the live CD.  I feel like I screwed something up07:46
alkisgdigital_light: if you have net from the cd, you can use "chroot" to update your installed system07:47
digital_lightA little too late XD fresh install just finished07:47
alkisgdigital_light: for example, you can do that now07:48
alkisgI.e. *before* reboot07:48
alkisgWhen you're still in the live system07:48
digital_lightI had just clicked restart....07:48
=== el is now known as elky
Minsoxhi. I am trying to get ubuntu night light to work. for some reason it doesn't work. it does change the color of my screen if I enable and disable the color profile, but it doesn't automatically adjust the color after that. it's fixed on that color.07:58
=== elky is now known as el
digital_lightOk first error I get is trying to install dkms07:59
digital_lightSays I am missing gcc and make | build-essential | dpkg-dev08:01
bazhangdigital_light, how are you presently connected to irc08:01
digital_lightMy phone08:01
bazhangdigital_light, do you have any internet computers of any sort08:02
digital_lightYes....08:02
digital_lightI have  a laptop.08:02
bazhangdigital_light, so what is preventing you from removing the cable from that an connecting it to the ubuntu one08:03
digital_light... It is connected on Wi-Fi08:03
digital_lightAnd my router is downstairs while I am upstairs08:03
bazhangdigital_light, so your router has no cable options at all08:04
digital_lightupstairs... vs downstairs08:04
digital_lightThat is the issue08:04
ph88kostkon, can i keep my sublime text or do i need to uninstall it before changing ppa ?08:07
digital_lightbazhang: I could carry my desktop downstairs as well my peripherals but even the I don't think we have a cable to spare08:08
ph88do i need to uninstall software before changing ppa ?08:12
alkisgdigital_light: I don't see any dependency missing: http://termbin.com/duvw08:16
alkisgdigital_light: if you're having difficulties installing the .debs from the cd, you can also do it from the live cd, and then use chroot as I said08:16
alkisgph88: no, you can uninstall/install etc it even after you change PPAs08:17
digital_lightI had go through and manually find them but they were there....08:18
digital_lightAnd it works08:18
=== Guest87078 is now known as pax
=== pax is now known as Guest73806
=== Fuchs is now known as zombiefox
=== alkisg1 is now known as alkisg
klemaxHello.08:39
klemaxI lost my windows part on bootloader.08:40
klemaxHow to fix it?08:40
alkisgHow/when did you lose it?08:43
klemaxalkisg: after installing ubuntu.08:43
klemaxI cant see it on bootloader menu.08:44
alkisgklemax: you don't see an option to boot windows (in grub menu?)08:44
alkisgThat means something is wrong08:44
klemaxalkisg: yes i dont see it08:44
alkisgPut the output of `sudo lsblk --fs` to pastebin08:44
klemaxBut i checked the data08:44
klemaxSure08:44
klemaxalkisg: paste.ubuntu.com/25822065/08:46
amosbirdHi, doesn anyone use termite? how can I make it highlight links08:47
bazhang!info termite08:47
ubottuPackage termite does not exist in artful08:47
bazhangwhats termite08:47
klemaxalkisg: I need to add this vista part to bootloader.08:47
ducasseamosbird: i use it, but it doesn't do that afaik08:47
alkisgklemax: also put your /boot/grub/grub.cfg to pastebin, and finally, mount "vista" and upload the output of "ls /mnt/boot-sav/sda2"08:48
klemaxalkisg: is there a package that copies of outputs to the pastebin ubuntu?08:51
alkisgklemax: command | nc termbin.com 999908:51
alkisgThere's also pastebinit, if you want to install a package08:51
klemaxOk thanks08:51
klemaxalkisg: termbin.com/ lzzo308:52
klemaxOpss sorry.08:52
klemaxalkisg: termbin.com/lzzo308:53
alkisgklemax: menuentry 'Windows 10 (on /dev/sda2)' --class windows --class os $menuentry_id_option 'osprober-chain-22F05BC2F05B9ABD' {08:53
alkisgYou do have an entry for windows there08:53
alkisgHow are you not seeing it when you boot?08:53
amosbirdducasse: ok. Does it support word completion?08:54
ducasseamosbird: nope. btw, try ctrl+shift+x08:54
amosbirdyeah, i know that:)08:54
klemaxalkisg: Let me explain it. I installed win10 on sda6 after that i installed ubuntu on same place. But i had win vista on sda2.08:54
klemaxalkisg: and now vista can not boot.08:54
klemaxalkisg: i know thats so weird.08:55
alkisgklemax: ah, you had vista, then installed win10, then win10 took over the windows boot manager of vista, then you installed ubuntu, and now grub loads the windows 10 boot manager which then cannot boot vista08:55
alkisgklemax: what error message do you see?08:55
klemaxalkisg: yeah exactly08:56
klemaxalkisg: when i boot win 10, repair manager are being opened but the process does not continue.08:57
klemaxBecause it is already deleted.08:57
klemaxI hope i could express myself.08:57
alkisgklemax: right, so at this point it's a windows issue, not an ubuntu issue, although you might have some success if you try "ntldr /bootmgr" from grub in the vista partition08:57
squarecircleohai, I'm searching for a iso for the next release 18.0408:58
squarecircleis there a testing image?08:58
alkisgDo you have another pc to join irc while you type some commands at the grub prompt?08:58
klemaxIm using androirc right now. Im not on pc08:58
ducassesquarecircle: no08:58
klemaxalkisg: i can do whatever you want.08:59
alkisgklemax: ok, before rebooting, paste the output of "ls sda2"08:59
squarecircleducasse: how do I prepare for the next release? can I just install 17.10 and change the sources?08:59
ducassesquarecircle: there's nothing there yet08:59
alkisgklemax: i.e. i want to see the files of the vista root directory08:59
klemaxOk09:00
ducassesquarecircle: hold your horses and wait for there to be something to test09:00
hateballsquarecircle: there's no nightly builds for 18.04 yet09:00
klemaxalkisg: termbin.com/d5kz09:03
squarecircleducasse: woah. well requirement is a LTS release. last one is 16.04, which does not support Ryzen processors09:03
squarecircleso I need 17.10 or 18.04, 17.10 obviously does not work out as it is no LTS release09:04
squarecirclehateball: thats meh, thank you09:04
ducassesquarecircle: 18.04 won't be usable for a good while yet09:04
alkisgklemax: ok, try this: reboot, press e in grub to get a shell, and type these commands: set root=(hd0,msdos2); ntldr /bootmgr; boot09:04
klemaxOk09:05
ducassesquarecircle: doesn't work for what?09:05
alkisgsquarecircle: LTS releases get newer kernels every 6 months, so they support newer hardware09:05
squarecirclealkisg: when does 16.04 is scheduled to support Ryzen?09:06
alkisgWhich kernel "supports ryzen"?09:06
ducassesquarecircle: 16.04 has 4.13 available now, did you try that?09:06
klemaxalkisg:  i cant use = in grub shell.09:07
alkisgklemax: type all keys in the keyboard until you find it09:07
alkisgIt might be in a different place09:07
klemaxHehe yeah.09:07
akikklemax: try left of backspace09:08
alkisgsquarecircle: https://wiki.ubuntu.com/Kernel/LTSEnablementStack#Kernel.2FSupport.A16.04.x_Ubuntu_Kernel_Support09:08
alkisgAn of course you can install any kernel from the kernel PPAs09:09
alkisgsquarecircle: from what I just read, kernel 4.10 is needed, which is the default in ubuntu 16.04.3.09:11
klemaxalkisg: yeah finally done09:13
alkisgklemax: did it boot?09:13
klemaxalkisg: still being opened win10 repair manager.09:14
alkisgklemax: then your /boot folder is wrong, so you'd need to fix it from windows, there are tutorials for that09:15
alkisg(C:\boot)09:15
squarecirclealkisg: I'll try this09:16
klemaxalkisg: so i need to install win on sda2 again.09:16
klemaxOpss09:16
klemaxSda609:16
alkisgklemax: there are ways to fix it; reinstall might help too, yeah09:17
alkisgIt's out of topic now though09:17
klemaxalkisg: Ok thanks for ur help, i appreciate.09:17
alkisgnp09:17
klemaxI need a package that will write win iso to usb.09:18
bazhang##windows klemax09:19
senaacannot launch packettracer 7.1 https://usercontent.irccloud-cdn.com/file/pEtsSUqa/P71026-161524.jpg09:19
senaasolution ?09:19
klemaxOn ubuntu bazhang.09:19
=== Guest73806 is now known as pax
=== pax is now known as Guest12879
akikklemax: which windows version is it and uefi or non-uefi boot?09:20
klemaxVista non uefi boot09:21
klemaxActually win709:21
akikklemax: i have a guide how to do it in win7. maybe it'll work for you https://atkdinosaurus.wordpress.com/2016/07/20/how-to-create-a-bootable-windows-7-usb-stick-in-linux/09:21
klemaxOh thanks let me check it09:22
akikklemax: just be careful to use the correct devices09:23
klemaxOk09:23
senaa./PacketTracer7 error while loading shared libraries: libqt5webkitwidgets.so.509:23
LTCDHey, I am using Ubuntu. I have changed my power settings to never suspend. However, my laptop after a certain period of time goes onto lockscreen where it asks for my password to login, how can I prevent this from happening?09:24
senaahelp me09:24
squarecirclealkisg: thanks09:25
alkisgnp09:25
rvgatefor some reason my update-manager is not using my system wide proxy settings... even setting "Acquire::http::Proxy" in "/etc/apt/apt.conf.d/proxy" or "/etc/apt/apt.conf" does not change anything... apt update works09:28
klemaxalkisg: if i installed ubuntu on sda6, would it fix it?09:32
alkisgklemax: no09:32
klemaxHumm only win then.09:32
b01tHello09:38
brainwashLTCD: settings > brightness & lock09:38
b01tI installed ubuntu xenial in vagrant/virtualbox(vagrant init 'ubuntu/xenial64' but am unable to find a package in there09:39
b01tthe package is called libzmq5; and by all sources online it should be available in the main repositories..09:39
brainwash!info libzmq5 xenial09:41
ubottulibzmq5 (source: zeromq3): lightweight messaging kernel (shared library). In component universe, is optional. Version 4.1.4-7 (xenial), package size 156 kB, installed size 467 kB09:41
brainwashis the universe repo enabled?09:42
b01tbrainwash: I think so09:42
brainwashcheck with "apt-cache policy"09:42
brainwashalso "apt-cache policy libzmq5"09:43
b01tok09:43
b01tInstalled (none) Candidate (none)09:43
b01tso you think the universe repo is disabled?09:44
brainwashrun the first command09:44
b01thttp://archive.ubuntu.com/ubuntu xenial/universe amd64 Packages09:44
b01t     release v=16.04,o=Ubuntu,a=xenial,n=xenial,l=Ubuntu,c=universe,b=amd6409:44
b01t     origin archive.ubuntu.com09:44
b01tI think it's enabled..09:45
brainwashlooks like it09:45
LTCDbrainwash Thank you.09:45
b01tbrainwash: why can't it find the package then?09:46
brainwasha simple "sudo apt-get update" does not solve it?09:47
brainwashto refresh the package list09:47
b01tno..09:48
b01ttried it multiple times already09:48
brainwashpretty odd09:49
brainwashone could download it manually from launchpad, and then install it09:51
b01tumm can you elaborate?09:51
brainwashbut that does not fix the underlying problem09:51
b01texactly09:51
brainwashperhaps it's worth to try with a different mirror09:52
brainwashare you able to find other packages from the universe repository?09:54
Ben64bet the problem is vagrant09:55
b01tlol09:57
=== beaver is now known as evilnewbie
senaahmm cannot locate pacakage libQt5WebKitWidgets09:58
brainwashsenaa: try libqt5webkit510:00
jamisnemoI'm trying to get a laptop with an nvidia gtx 950m to stop looping back to the lightdm login screen. Any hints on the latest up to date info on this?10:01
Hejkkiumm10:02
jamisnemoI just want the damn thing to work, i could care less about the nvidia drivers10:02
metaphysicianHello, why are upstart-bridge processes still around in 16.04?10:02
brainwashjamisnemo: which ubuntu version is that?10:02
jamisnemobrainwash, 16.04.310:03
ThinkT510metaphysician: because you can upgrade from 14.04 to 16.0410:03
Hejkkiback to the old days... chrome uses 100% cpu when it has 2 pages open.... lol10:03
jamisnemobrainwash, I've tried the ppa, the standard packages, the xserver-xorg-video-nouveau drivers.... none of them seem to work right10:03
brainwashjamisnemo: sadly, I'm not familiar with nvidia gpus10:04
cerionhi. I can't power off my bluetooth device unless it has been disconnected. Is htere an extension to allow to disconnect bluetooth device frm the menu (at the top rgiht) without going into bluetooth parameter ?10:04
metaphysicianThinkT510: Why are they around even in fresh 16.04 installs?10:04
jamisnemobrainwash, alright thanks10:04
brainwashmetaphysician: upstart may be still used for user services10:05
=== Harry_ is now known as Harry
ThinkT510metaphysician: my guess would be some software in the repositories my not have updated from upstart to systemd yet (especially in universe/multiverse)10:06
brainwashpanel indicators for example10:07
metaphysicianbrainwash: ok. initctl --user list  shows only bridge processes and startxfce4 processes running.10:07
senaabrainwash: how to install all package libqt5 ?10:07
brainwashmetaphysician: there you have it. the xfce indicator panel plugin probably still depends on upstart10:08
=== jackNemrod_ is now known as jackNemrod
brainwashsenaa: maybe install something that depends on all these libs, like qtwebkit5-examples10:10
brainwashsenaa: I guess it would be helpful to know which application you are trying to run in the first place10:11
senaabrainwash: thank you my cisco working🙏10:11
brainwashgreat :)10:11
metaphysicianWhat is the (sd-pam) process?10:13
BluesKajHowdy folks10:13
yetitwohey all! i recently upgraded to 17.10, and i'm unfamiliar with the gnome DE, having used unity for so long. one feature of unity i got used to was being able to tile windows using ctrl+alt+<numpad>. is there a way to get that behavior in gnome?10:13
yetitwoi've tried googling for an extension that does that but i haven't had much luck10:14
bazhangyetitwo, the gnome extensions website?10:14
brainwashmetaphysician: looks like systemd-pam10:15
yetitwobazhang: yeah, i've been looking and haven't found anything yet10:15
bazhangyetitwo, that would be the place I would check10:16
=== Guest12879 is now known as pax
=== pax is now known as Guest19037
JhsI can't use "sudo gedit" after updating to 17.10. it says "Invalid MIT-MAGIC-COOKIE-1 keyUnable to init server". how can i fix this?10:26
freakyyklemax unetbootin ?10:26
freakyyoh sorry had still scrolled up10:26
hateballJhs: because you shouldnt sudo X apps10:26
hateball!gksudo | Jhs10:26
ubottuJhs: If you need to run graphical applications as root, use « gksudo », as it will set up the environment more appropriately. Never just use "sudo"! (See http://psychocats.net/ubuntu/graphicalsudo to know why)10:26
Jhshateball, ok cool, thx10:26
klemaxfreakyy: is it for creating win isos to usb?10:27
freakyyklemax yes :)10:27
freakyybootable usb drive = unetbootin10:27
freakyyu can choose an iso or let it download the files itself10:28
Jhshateball, i installed gksu and tried "gksudo gedit". a window for entering password pops up, but it doesn't let me input the password... :/10:28
akiksudo -i sets up the environment for "graphical" apps10:30
Jhshateball, figured it out: needed to go to gksu-properties and disable screen grabbing10:32
hateballJhs: :)10:33
=== SimonNL is now known as SimonNL_Afk
=== Guest19037 is now known as pax
=== pax is now known as Guest97043
FManTropyxmy Ubuntu dekstop froze again... it seems that the disk was full, but it has done it before11:38
hliashey there, ubuntu 17.10 wayland: can you drag and drop from file-roller to nautilus? or is it just me?11:48
hliasalso, can't drang & drom a firefox link to mpv11:49
incogdrang & drom11:59
incogwho will help poor little hilias on his quest to slay the evil dragon, drom12:00
b100shi2all; if i have mounted cgroups `mount -t cgroup2 none /mnt/cgroup2` how could i limit memory for process by pid?12:06
qswzhow do you append a new line in a file: echo '\nshit' >> .gitignore ?12:08
akikqswz: echo -e12:09
qswzok thx12:11
=== Guest97043 is now known as pax
=== pax is now known as Guest13916
R13oseWhen I try to install flash, I get an error occurred while applying changes.  I have no idea why.12:39
auronandaceR13ose: you'll need to share the error for someone to help. Are you installing flash from the default repos?12:40
oerhekssounds like the update today12:40
R13oseauronandace: from discover.  I can't tell what the error is, the details box doesn't work to show more information12:42
oerheksrun updates in terminal again12:44
R13oseDone.  There is no flash update.  This error haa been there for ages12:45
oerheksahh, now we need to ask what error...12:48
R13oseYes but how do I find that out?12:48
=== SimonNL_Afk is now known as SimonNL
auronandaceR13ose: you'll need to pastebin the output of sudo apt-get update12:57
auronandace!pastebin12:57
ubottuFor posting multi-line texts into the channel, please use http://paste.ubuntu.com | To post !screenshots use http://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:57
auronandaceR13ose: sudo apt-get upgrade would also be useful12:58
R13oseauronandace: there are no errors or updates in that12:58
auronandaceR13ose: where are you getting an error with regards to applying changes then?12:59
motaka2Hi, I have installed xmind on my ubuntu 16.04 and I cant find where it is installed so that I can run it12:59
R13oseauronandace: discover program13:00
auronandaceR13ose: sorry, not familiar with that program. what is it, what does it do?13:00
oerheksmotaka2, what guide did you follow? xmind is not in out repos13:01
=== SimonNL is now known as registration
=== registration is now known as SimonNL
akikmotaka2: if you unzipped the xming zip, it'll be in that directory where you unzipped it13:03
akikxmind13:03
=== evilnewbie is now known as beaver
R13oseauronandace: updates like apt-get does13:04
motaka2akik: let me check13:05
=== gr33n7007h is now known as al2o3-cr
motaka2akik: yes it was in 64 bit folder thanks a lot. Where is the usual place where we can put programs like this? now it is just in Downloads folder13:06
akikmotaka2: /opt is a common dir13:08
motaka2akik: thanks13:08
auronandaceR13ose: where did you install it from?13:11
Aliekezhihi, it seems one of my kernel modules (wifi driver I guess ?) is crashing : https://bpaste.net/show/2e71ff36208713:20
AliekezhiI can see a kind of loop with this error in dmesg13:20
EugenAanybody familiar with midi?13:21
EugenAI'd like to connect midi keyboard to pc and and play notes using loaded sound font13:21
Aliekezhiwhat worries me in that error is the mention of "CPU : ...". Can this problem be related to a deficiency of one of my CPUs ?13:21
akikEugenA: i use ubuntu mate and use the kxstudio repositories to install all the apps13:23
=== Guest13916 is now known as pax
=== pax is now known as Guest97503
EugenAakik: which apps do I need to use midi keyboard?13:23
akikEugenA: it's a bit difficult to get started but i can help13:23
akikEugenA: there are many but i use ardour13:24
R13oseauronandace: discover is trying to install this for Firefox13:24
EugenAakik: hm, I'm looking for lightweight solution13:25
akikEugenA: there are also many guide videos on youtube you could learn from13:25
akikEugenA: others are lmms or soundgarden or qtractor13:26
EugenAakik: I don't need any recording functionality or something like that. Just use a soundfont to play notes live from the midi input13:26
akikEugenA: ok maybe just a virtual instrument host would do13:26
EugenAwhat is virtual instrument host?13:27
akikEugenA: i haven't tested this http://kxstudio.linuxaudio.org/Applications:Carla13:27
auronandaceR13ose: where did you get discover from? is it a PPA?13:28
auronandace!info discover13:29
ubottudiscover (source: discover): hardware identification system. In component universe, is optional. Version 2.1.2-7.1 (artful), package size 23 kB, installed size 84 kB13:29
EugenAakik: looks interesting, I should check it13:29
akikEugenA: i tested carla just now and it works13:31
akikEugenA: but anyway you should install those kxstudio repositories. they give you lots of choice13:31
EugenAakik: i'll try ksstudio distro, thanks13:32
EugenAkxstudio13:32
Sven_vBAliekezhi, I think the CPU number in front of the PID is just an indication on which CPU the program was running that had encountered the problem. I think it could have happend on any CPU.13:32
akikEugenA: the biggest thing for me to learn was how to make audio connections with the jack audio server13:33
EugenAakik: yes, I hope I'll manage this :-)13:34
R13ose!info plasma discover13:36
ubottu'discover' is not a valid distribution: artful, artful-backports, artful-proposed, bionic, bionic-backports, bionic-proposed, kubuntu-backports, kubuntu-experimental, kubuntu-updates, partner, precise, precise-backports, precise-proposed, stable, testing, trusty, trusty-backports, trusty-proposed, unstable, utopic, utopic-backports, utopic-proposed, vivid, vivid-backports, vivid-proposed, wily, wily-backports, wily-proposed, xenial, xenial-backports, xeni13:36
auronandaceR13ose: you're using kde then?13:37
R13oseauronandace: this is by the plasma development team.  An application explorer13:37
R13oseauronandace: yes13:37
auronandaceR13ose: do you remember adding any repos?13:38
R13oseauronandace: maybe long ago but unsure13:39
auronandaceR13ose: can you pastebin your sources.list file?13:40
oerheksls sources.list.d folder13:40
oerhekssure R13ose knows adding the plasma repo.. and knows howto paste an error log too13:41
R13oseYes but I don't know how to find the error log13:41
akik$HOME/.xsessionrc seems to be not used when in a wayland session13:44
akikwhat could be the new location?13:45
allureweird conflict, guys.. cant install wine on 16.04.0313:45
allurewith or without ppa13:46
allureany ideas?13:46
alluresays I've held broken packages13:46
leftyfballure: post the errors you get when you try to install wine (pastebin)13:46
allureleftyfb: https://pastebin.com/WifKfY6613:47
allurethat's with the wine PPA added13:47
allurewithout is the same error, though13:47
leftyfballure: start by removing the ppa, updating and posting to pastebin again13:47
allureleftyfb: new pastebin w/o ppa: https://pastebin.com/rwYz02x513:50
allureoh wait13:50
allureI f'up cause of tmux13:50
alluresec, will remake the postebin13:50
allurehere: https://pastebin.com/Ctfdhy1n13:51
leftyfbI feel like there's something missing13:52
leftyfballure: can you install a different package?13:52
allureleftyfb: other than wine, yeah13:52
leftyfballure: like nmap or byobu or something13:52
alkisgallure: apt install aptitude; aptitude install wine => paste output of that13:52
alluretested with vim and it installed13:52
alkisgapt sometimes is dumb...13:52
leftyfballure: apt-cache policy wine13:52
oerheksodd error KBuildServiceFactory::populateServiceTypes: "/usr/share/applications/display-im6.des13:53
allurehttps://pastebin.com/ht6fgHD313:53
allureleftyfb: candidate is 1.6.2-0ubuntu14, none installed :)13:53
leftyfballure: can you paste the entire output to pastebin?13:54
alkisgThe problem isn't in wine but in its dependencies13:54
leftyfboh, nm13:54
alkisgapt unfortunately doesn't notify us of them13:54
allureI did, its above my message13:54
leftyfbI'm going to go with the repo13:54
allurethe message before13:54
leftyfballure: can you temporarily change your ubuntu repo's to the official?13:54
allureI tried now with aptitude and the solution it proposes would remove 992 packages :-p13:54
alkisgallure: it has many solutions13:54
allureleftyfb: I thought it was the official.... :p lemme check13:55
alkisgSay "I don't accept that one"13:55
alkisgallure: and in the beginning it tells you which packages are causing the issue13:55
allurealkisg: ah yeah, nice.. I will try another13:55
leftyfballure: http://archive.ubuntu.com/ubuntu13:55
alkisgSo, pastebin the output of aptitude after saying "no I don't accept" a couple of times13:55
leftyfbtry that one13:55
oerheksftp.nluug.nl is pretty up2date13:56
alkisgallure: the important thing to note is which packages are causing the issue13:56
alkisgallure: once you know them, you can even continue with apt...13:56
leftyfboerheks: That doesn't mean it's not having some issue at the moment13:56
oerheksthe error look s like he installed some appimage? https://forum.kde.org/viewtopic.php?f=309&t=13986613:56
linux_userHas anyone attempted to assert the installation of Ubuntu 17.10 under VirtualBox 5.2 using LVM and Encryption? It seems to fail before it starts. I am interested if anyone has seen this and can offer corrective action in pursuance of effectuating a proper installation in this manner?13:58
allureI generated another sources.list and I am trying again :-)14:00
leftyfblinux_user: please use pastebin to share the errors you are getting14:00
alkisgallure: in the meantime, pastebin your `dpkg -l '*wine*' | grep ^ii`14:00
linux_userleftyfb: can I paste a screenshot to pastebin? as it seems I cannot copy the text of it14:00
alkisg...until you can paste  the output of aptitude :)14:00
alkisg!paste14:01
ubottuFor posting multi-line texts into the channel, please use http://paste.ubuntu.com | To post !screenshots use http://imgur.com/ !pastebinit to paste directly from command line | Make sure you give us the URL for your paste - see also the channel topic.14:01
allurealkisg: https://paste.ubuntu.com/25823671/14:02
alkisgallure: so you already have wine14:02
alkisgwine-development...14:02
allureI tried installing wine-development to see if it worked, but it wont work as well14:03
allureeven though the pkg is installed, I  have no wine on the path14:03
alkisgAnd aptitude will tell you that if you want to install wine,it will pull wine1.6, which will conflict with some packages that wine-development needs, so you'd need to uninstall wine-development and its dependencies14:03
alkisgwine-development goes in /opt14:04
oerheksas it is not a regular package, ask the wine ppa maintainer?14:04
alkisg$ ls -lha /usr/bin/wine14:04
alkisglrwxrwxrwx 1 root root 26 Οκτ  21 00:03 /usr/bin/wine -> /opt/wine-staging/bin/wine14:04
alkisgE.g. I have wine-staging14:04
allurealkisg: makes sense. Will uninstall it and try to install 1.614:04
alkisgallure: when you uninstall a package, its dependencies may not get uninstalled14:04
allurealkisg: really? :p I'm used to arch linux, man14:05
alkisgSo that might not solve the issue. Try it. But the best way is to let aptitude tell you the exact packages that conflict14:05
allurealkisg: ubuntu was supposed to be easier :-p14:05
linux_userleftyfb: Can you advise me how I put a picture into pastebin?14:05
allure!screenshot14:05
ubottuScreenshots can be made with the [PrtScr] button. Want to show us a screenshot of your problem? Upload an image to http://imgur.com/ and link the created page here.14:05
linux_userok14:05
auronandacewouldn't it be better to install playonlinux? then you can have whatever version of wine you like (all in their own separate directories too if you so desire)14:05
linux_userhttps://imgur.com/a/qwiUs14:06
alkisgSure playonlinux also works fine14:06
linux_userhttps://imgur.com/a/qwiUs <- this occurred when trying to do a 17.10 install under VB 5.2 (running under 17.10) with all downloads and drivers allowed and an encrypted LVM install requested.14:07
leftyfblinux_user: Looks like you have an issue with either the install media or the virtual drive you're installing to. Potentially even the physical drive the virtual drive is on.14:07
Sven_vBI'm trying to install ubuntu xenial from my USB live disk. it worked fine on two machines, but on the current one, the Unity session restarts every few minutes. any ideas on how to debug it? https://gist.github.com/mk-pmb/a820d41822e03eb76f3862fbf47a793214:08
SmilexHow can I see which version of libpthread is installed on Ubuntu?14:09
leftyfbSmilex: apt-cache policy libpthread14:09
leftyfbSven_vB: possible video driver issues?14:09
alkisgSven_vB: check `dmesg` and `cat /var/log/Xorg.*.log.old`14:10
Sven_vBleftyfb, will do14:10
kostkonSven_vB, goes back to the login screen?14:10
linux_userI hope my picture was viewable to those reviewing it14:11
Sven_vBkostkon, no, I have configured lightdm to login user ubuntu after about 3 sec14:11
Sven_vBkostkon, well actually "yes" but just for those 3 sec. :)14:11
leftyfblinux_user: Looks like you have an issue with either the install media or the virtual drive you're installing to. Potentially even the physical drive the virtual drive is on.14:11
kostkonSven_vB, yeah ok14:11
Sven_vBdmesg shows some nouveau errors. they're also in syslog so I've included them in my syslog excerpt for better timing overview: https://gist.github.com/mk-pmb/a820d41822e03eb76f3862fbf47a793214:14
linux_userleftyfb: I was able to install other OSes (CentOS, 16.04 Ubuntu, etc...) absent any issue with the physical drive (I even tried an external drive also). Moreover, I did an md5 and sha1 check on the ISO, it is not an issue as far as I can tell.14:15
Sven_vBnotably I can't see nouveau errors near the "Started Session 13 of user ubuntu." message14:16
leftyfbSven_vB: try installing nvidia drivers14:16
Sven_vBleftyfb, will try14:17
Sven_vBleftyfb, however, I'd like to minimize modifications to my live disk; is there a safe graphics mode I could use instead?14:17
linux_userleftyfb: I am doing a "check disc for defects" right now14:17
leftyfblinux_user: you could look in dmesg14:18
leftyfbSven_vB: maybe try without Unity? I'm not familiar with Unity enough to be aware of any "safe graphics mode"14:18
leftyfbSven_vB: if you're going to be only running this from a live usb, I would think you'd want a more resource efficient DE than Unity anyway14:19
Sven_vBleftyfb, nah, I'm trying to install to disk, but for that to succeed, the live session needs to survive for about 90 min. once it reboots from disk I can delegate dealing with drivers to puppet.14:21
leftyfbSven_vB: the live usb should give you the option to just install without running the live environment14:22
leftyfbthat wouldn't run Unity at all and just the installer14:22
linux_userleftyfb: I do not see a way to get into looking at dmsg, but the defect said 1 file was messed up (didn't say which), so I am redownloading via torrent the ISO14:22
leftyfblinux_user: dmesg on your host14:22
=== Guest97503 is now known as pax
Sven_vBleftyfb, that's good to know. I'll try whether I can find a safe mode for unity (I remember there was unity 2D some years ago) becuase then I can delegate answering ubiquity's questions to my auto-installer.14:24
linux_useroh ok14:24
linux_userwill do14:24
=== pax is now known as Guest46818
leftyfbSven_vB: if you're using an automated installer, then why do you need Unity at all?14:24
linux_userleftyfb: interesting both the ISOs (sever and desktop I downloaded) had bad MD5s! I was sure (as usually I ALWAYS check MD5s) it was good, but, I am re-downloading and will recheck it with defect check when done. if MD5 is good and defect check is good, I'll retry the install. Thank you and I'll get back to you in a few minutes after all that activity is done.14:26
Sven_vBleftyfb, it's a custom automated installer that uses ubiquity's automated mode, because ubiquity has a very good chance of being reliable, well-tested and getting actual bugfixes. and its auto mode is about 80% auto so adding the remaining 20% was easy.14:26
akik.xsessionrc didn't work in wayland but i was able to add a startup job through gnome-session-properties14:26
leftyfbSven_vB: Again, why bother running a live environment? You don't need it to run Ubiquity14:27
Sven_vBalso the fallback mode is very easy: if the auto-installer runs into problems, it can just shout to me via network and I VNC in.14:27
Sven_vBleftyfb, basically I've never tried without the live environment. I'll check what it is though.14:28
allurealkisg: it works, man14:30
alluresorry I took long, was on a call :-)14:30
allureI have to go to the dentist now... bad pain :-/14:30
allurethank you once again14:30
fChanX:/14:31
linux_userleftyfb: ok, got a new desktop ISO and it passed defect check and MD5 and SHA1! re-attempting the install now14:33
Sven_vBleftyfb, ok I rebooted in "Install Ubuntu" mode, and am now at the fully interactive ubiquity which asks for my favorite language. how do I modify that mode to run my install wizard first, so it can identify the machine, generate a debconf seed file and preseed that?14:33
leftyfbSven_vB: I don't know. I've never customized Ubiquity. I typically use a kickstart script.14:33
Sven_vBleftyfb, ok. in a first step I'll just let it sit around and wait how long the session survives. :))14:34
* linux_user leftyfb: Using a proper ISO seems to be working better! :)14:35
alkisgallure, np14:36
=== SimonNL is now known as SimonNL_Afk
bobschemlab_hello i'm in windows 10 and i have 150gb of unallocated space14:49
bobschemlab_how do I fix it so that C: takes up all of the unallocated space?14:49
oerheksbobschemlab_, format c: ?? better ask in ##windows14:49
bobschemlab_https://imgur.com/a/4IJDF14:49
oerheksno need to post, this is ubuntu support only14:50
bobschemlab_got it thanks14:50
bobschemlab_can i use gparted though14:51
bobschemlab_gparted is linux14:51
leftyfbyes, you can14:51
oerheksyou should do that from within windows, alse windows will cry like a baby when it finds an altered partition14:52
SwedeMikebobschemlab_: how did you end up in this situation? Why is the EFI partition there smack in the middle?14:52
bobschemlab_I have no idea14:53
bobschemlab_i was trying to dual boot14:53
bobschemlab_ubuntu14:53
bobschemlab_but i fucked up the bcd so I had to fix all of it14:53
SwedeMikebobschemlab_: because you'd need to somehow move that EFI partition in order to grow C:14:53
bobschemlab_ahhhh14:53
bobschemlab_so situation is > move efi to right side > grow c14:53
bobschemlab_with gparted?14:53
bobschemlab_to be honest this is why I hate windows14:54
SwedeMikebobschemlab_: this is not window specific.14:54
Sven_vBmy live session is in lockdown, probably because I killed ubiquity. how do I revert that lockdown?14:54
bobschemlab_so SwedeMike what's my best bet man14:54
SwedeMikebobschemlab_: I don't know what will happen if you move the EFI partition, but that's what you'd need to do14:54
bobschemlab_how do I move it?14:54
iAmSlowwhat to install to get flash for chromium14:55
oerheksSwedeMike +1  the outcome is uncertain, ask in ##windows14:56
freakyywhat's a good way to send files on the local network? wasnt there some tool which allowed me to simply do that?14:56
freakyysend files over the lan?14:56
bobschemlab_windows bubs don't know anything that's why I cam here14:56
bobschemlab_besides, I'm using gparted, it should be supported14:56
oerheksbobschemlab_, not our business, really14:57
SwedeMikebobschemlab_: the EFI partition has nothing to do with Linux, so I have no idea what will happen.14:57
SchrodingersScatalso backups14:57
bobschemlab_k but how do I move it with gparted is what i'm asking14:57
bobschemlab_not what will happen14:57
SchrodingersScatpage closed, case closed14:57
cristian_chi14:57
oerheksiAmSlow, install restricted extras for codecs and webplugins like flash14:58
cristian_cHow could I switch to evdev, as input system, after installed?14:58
cristian_cAny ideas?14:58
leftyfbiAmSlow: install adobe-flashplugin as discussed on the first result on google for "ubuntu chromium flash"14:58
pavlosfreakyy: using command line, you could remote copy (rcp) or remote sync (rsync). There is a gui app called nitroshare that seems to be easy to use.15:00
* linux_user leftyfb: I did a full installation (error free) but then when it prompted me to enter the password it never put the "*" characters there as I typed and it just sat there acted dumb. I am reinstalling it15:00
lyzeHey all! I'm trying to automate some deb file downloads but the websites don't have a "latest" url (e.g. example.com/latest.deb) but only have a example.com/download page where they link to the newest file (e.g. example.com/1.2.deb). Is there a program I can use to script website things (get <a>, click,...)? (Kinda like selenium or sth like that)15:00
iAmSlowty but i just downloaded form  adobe site and used flags15:00
freakyyok thanks15:00
SchrodingersScatlyze: I don't even know how many ways that can probably be done. How are you already automating it?15:01
wrksxMy system is kinda crashed, disks are not writable any more15:02
SchrodingersScatlyze: I personally like curl, so I would grab the example.com/download page's content and then do something similar to a grep -m 1 after you filter for the download links15:02
lyzeSchrodingersScat, I have a script file which setups everything (adds repos, downloads files, updates and installs from apt, git and stuff). The only thing which isn't automated yet are manual downloads from programs like Vivaldi or discord which only provide a download page with a file<version>.deb15:03
SchrodingersScatlyze: ok, so bash?  what I just described above /can/ be risky since you never know if the site maintainer is going to change things in the future, but I use it for things like nextcloud.15:04
=== Harry_ is now known as Harry
lyzeSchrodingersScat Yeah in bash. And yeah sadly. I'd love to find a program where I can use xpath or so to get the proper link15:04
SchrodingersScatwhat is xpath?15:05
linux_userleftyfb: any ideas on why I cannot enter the encrypted disk password when it boots up?15:05
SchrodingersScatlyze: I use this line in my nextcloud script, iirc it grabs the zip because that was easier with how they had the site at one point, dllink=$(curl -s "https://nextcloud.com/install/" | sed -e 's/href=\"/\n/g' | grep -i "/releases/.*.zip" | sed -e 's/\">.*//g' | head -n 1)15:05
lyzeSchrodingersScat oh nice, that could be doable o:15:06
oerheksdiscord comes as a snap15:07
SchrodingersScatlyze: yeah, each individual program would take you some time to narrow it down in the html, and lord help you if they do javascript nonesense, but it's doable, with the caveat about how they can change everything and make us cry.15:07
leftyfblyze: wget $(curl -s https://vivaldi.com/download/ |grep amd64.deb|awk -F '"' '{print $4}')15:07
rflemingGreetings... Does anyone smarter than I know how to make Firefox not make form fields dark, when using a dark theme?15:08
rfleming(in gnome)15:08
lyzeSchrodingersScat yeah js is the bane of my existence already. :p But using grep n co for that would be doable I think. Thanks!15:08
lyzeleftyfb oh sweet.15:08
wrksxI'm kinda stuck everytime I enter a command I have an Input/Output error15:09
SchrodingersScatlyze: and bash testing can help, so for example, you can use 'if' statements with programs as the conditional statement, if wget $(curl -s https://vivaldi.com/download/ |grep amd64.deb|awk -F '"' '{print $4}') ; then echo "Success!"  ; else ; echo "Failure! Pausing for intervention" ; read nothing ; fi15:09
wrksxI think something failed, maybe the disk15:10
ducassewrksx: sounds like disk problems15:10
wrksxFilesystem is not writable anymore15:10
wrksxducasse: is there anyway to see a log or trace from memory ?15:10
leftyfbwrksx: sounds like your drive is bad. Get a new drive, reinstall Ubuntu and restore from backup.15:10
ZenThiefI'm learning Ansible and remotely created a non-root user on ubuntu. I see examples deleting root password afterwards. Why would I want to do this?15:10
linux_userusing a remote display access to the VM did not let me enter the password either! It is stuck waiting for the encryption password to get any further!?!15:10
ducassewrksx: dmesg15:11
SchrodingersScatlyze: http://mywiki.wooledge.org/FullBashGuide#Introduction15:11
leftyfbwrksx: read-only and disk i/o errors means bad drive. Nothing for you to do other than reinstall on a new drive and restore from backup15:11
wrksxducasse: unfortunatly: -bash: /bin/dmesg: Input/output error15:11
ducassewrksx: and leftyfb is entirely right - new disk, restore15:11
wrksxducasse: issue is that's a server and the hoster is a PITA15:11
leftyfbwrksx: there's nothing else for you to do15:12
leftyfbthere is no fixing a bad drive ... not without spending 10's of thousands of dollars15:12
wrksxleftyfb: okay, but is there a way to "prove" a disk is toasted ?15:12
leftyfbthere's certainly no fixing a bad drive remotely with softeare15:12
leftyfbwrksx: yes15:12
leftyfbwrksx> ducasse: unfortunatly: -bash: /bin/dmesg: Input/output error15:12
wrksxleftyfb: okay I'll give a call to the hoster, fingers x15:13
leftyfbalso, at this point, this is 100% your hoster's problem and there's absolutely nothing left for you to do15:13
SchrodingersScatZenThief: I can't think of any reasons, may be a question for whoever wrote the examples?   At least not in that order, of creating a non-root then deleting root password.  If you used key based authentication then that would be one possible reason you wouldn't want a password hanging around, but I'm simply hypothesizing.15:13
wrksxleftyfb: I'd need to backup15:13
wrksxleftyfb: and restore after the disk change15:13
OtterCoderHi all! I'm wondering how to write a file as a user with no login. I need to create files and directories as www-data, but it's a pain chmodding them afterwards.15:13
leftyfbwrksx: something you should have been doing all along, or else the data was never important to begin with15:14
oerheksOtterCoder, standard would be: make the user member of www-data15:14
ducassewrksx: if you haven't backed up already it's too late now15:14
wrksxleftyfb: I got backups, but not one from today, and even tho it was concidered okay to loose a few days of data it's better to avoid it when possible15:15
OtterCoderoerheks: Pardon? My primary user is a member of the www-data group, but files I create are still mainuser:mainuser15:15
naccOtterCoder: chmod is the wrong command to use15:17
naccOtterCoder: did you mean chgrp?15:17
OtterCodernacc: sorry, chown.15:17
ducassewrksx: get the disk sent to you and try to recover data from it15:17
ducasse!recover15:18
ubottuSome tools to recover lost data are listed and explained at https://help.ubuntu.com/community/DataRecovery15:18
ZenThiefSchrodingersScat: Yes in between there's key based authentication.15:18
naccOtterCoder: you can still sudo to www-data, iirc, as root, even though you can't login as it15:18
wrksxducasse: I'll try to investigate a bit more, because there was some raid goin on on the server15:19
wrksxducasse: so I need to check what raid and why it didn't help15:19
OtterCodernacc: `sudo su www-data` returns This account is currently not available.15:19
ikoniaOtterCoder: you should never run that command15:19
OtterCoderikonia: So what should I do?15:20
naccOtterCoder: sudo su is not correct15:21
jstevewhite"su" = switch user, "sudo" == super user do something15:22
naccjstevewhite: not quite15:23
naccjstevewhite: sudo is do somethign as another user as well, but via your users password15:23
naccjstevewhite: based upon sudoers15:23
OtterCodernacc: Then what is the proper way? You're being cryptic.15:23
jstevewhitefair enough, but: "It originally stood for "superuser do" as the older versions of sudo were designed to run commands only as the superuser."15:24
naccOtterCoder: sudo -s -H -u www-data, I believe should work15:24
naccjstevewhite: yeah :)15:24
naccjstevewhite: so sudo == switch user do something15:24
jstevewhite"by default" the superuser >:)15:24
jstevewhiteheheh15:24
jstevewhitebut yeah, you're right.15:24
jstevewhite"technically" right. Which is the only kinda right that counts here, eh?15:25
naccjstevewhite: heh15:25
OtterCodernacc: Ah! So, switch-user-do with default shell, change Home, select www-data user.15:26
naccOtterCoder: yeah15:28
naccOtterCoder: it ensures you really "are" that user, with the right eviroment (which might includ important bits like umask)15:29
OtterCodernacc: Thanks much. That makes my life much nicer.15:29
naccOtterCoder: np, it worked for you?15:30
OtterCodernacc: Like a charm. :)15:31
SchrodingersScatZenThief: ah, k, keys are safer, I don't delete things though >_>15:36
plujonhttp://ix.io/BMy # uhoh..15:40
plujonsudo apt-get update shows unmet dependencies, but the list of packages seems to be empty..?15:40
plujonoops, the problem is with `sudo apt-get dist-upgrade` (not update)15:41
naccplujon: your output looks odd15:42
naccplujon: are you filtering out stderr or something?15:42
plujonnacc: No, but this happened recently:15:42
Richard_CavellWhen I go stat test.cpp, I get an access time, a modification time, and a change time.  Is creation time recorded?15:43
naccRichard_Cavell: i don't believe creation time is a stat field generally, `stat` has a 'time of file birth'15:44
Richard_Cavellnacc: Yes, it does15:45
Richard_CavellBut does the ubuntu disk format record that?  I just get a -15:45
naccRichard_Cavell: it's completely dependent on the fs, it's not generally available, afaict15:45
=== Harry_ is now known as Harry
plujonhttp://ix.io/BMA15:46
naccplujon: it's best not to filter output ... harder to help. But it looks like dpkg died due to memory issues; not sure what's goig on15:47
plujonnacc: dpkg died because the machine has 512 MB.  I stopped apache and it then could run as normal.15:47
plujon(512 MB of RAM)15:48
plujonhttp://ix.io/BMD # the full log15:52
oerhekstoo much old kernels: Use 'sudo apt autoremove' to remove them.15:54
naccplujon: and if you run `sudo apt-get -s -f install` what does it try to fix?15:54
naccplujon: yeah this does seem like a sort of unmaintainend system15:54
plujonnacc: refresh http://ix.io/BMD15:57
naccplujon: seems like you can drop the -s, it's just finishing the isntall of the packages that didn't install15:59
plujonThanks; I'll forge ahead with that.15:59
naccplujon: i would suggest an apt-get autoremove at some point soon too16:00
plujonHow come?16:00
naccplujon: see the first part of your paste16:00
naccplujon: you have 30-40 unused packages16:01
naccplujon: much of them kernel-related16:01
naccplujon: which means you're wastinng (probably) 100s of Ms of disk space16:01
Thunder_Twnacc: plujon: about 1 gig of space at least i'd estimate That could solve a load of install problems. Recommended to do # sudo apt-get autoremove16:03
pavlosplujon: can you paste, free -m16:03
naccThunder_Tw: pavlos: to be clear, it's not obvious there are ay install problems16:03
naccthe one issue they hit was a memory constraint physically on their system16:04
Unte36HEllo all. HAve some probs after kernel update. A) After reboots I lost wifi connectivity. it works only wired. B ) my sysetm is a collage of languages,  before it was all English16:04
Thunder_Twnacc: true but memory is extended with swap, witch is HD related too16:04
naccUnte36: what version of ubuntu? if you boot back to the old kernel, do a) and b) go away?16:04
naccThunder_Tw: right, but swap is fixed, unaffected by running out of disk space16:05
Thunder_Twnot always, i've heard that you can also have a swap file16:05
Thunder_Twnot always a seperate partition16:05
naccThunder_Tw: i never said antyhing about partitions16:06
naccThunder_Tw: swap doesn't grow and shrink, it is reserved16:06
naccThunder_Tw: regardless of where the swap space comes from, it's unaffected by other disk usage16:06
nacc(in terms of its consumption, obviously IO is affected)16:06
Thunder_Twtrue: for 14 and before by default, not if you go 16 and higher, a swap file can be disk-space affected16:06
naccThunder_Tw: what are you basing that on?16:07
naccThunder_Tw: swap files cannot be sparse, so they consume all their disk immediately16:07
Unte36Hello Nacc. Iḿ new to Ubuntu. I talked to this forum yestarday and they said it was the newest for 16.04 . No I have not boot back to boot kernel, before asking you guys. Last answer, no they are permanent16:08
Unte36Also I notice a lot of Mem consuption with this new version16:08
Thunder_TwIt is limited in size. so they can't consume all disk space16:08
naccThunder_Tw: i'm not sure what you're talking about nonw16:08
lordcirth_workSwap files needing to be contiguous and non-sparse is also the reason you can't make swap files on btrfs yet16:08
plujonsudo apt-get autoremove # available goes from 2.9G to 6.9G16:08
naccplujon: :)16:08
lordcirth_workThunder_Tw, swap files are a fixed size; they don't grow16:09
lordcirth_workYou make a 4GB swap file, you turn it on, it stays 4GB regardless of how much is used16:09
plujon:) indeed16:09
naccUnte36: i would try and boot back to the older kernel and see if the behavior is different, first16:09
Thunder_TwCan be totaly true. I'm no expert but i thought it could grow however16:09
lordcirth_workNope, to change the size you have to either add a second swap file, or disable swap, grow it, enable16:10
naccThunder_Tw: it cannot, as I said :)16:10
Thunder_Twlordcirth_work:  if you can add a second swap file doesnt that mean it can grow?16:11
Thunder_Twin general that is16:11
Unte36NACC . Most certainly, will do. Rollback to previous kernel. BTW is it possible to reinstall Kubuntu  with Xubuntu and preserve all my settings?16:11
lordcirth_workThunder_Tw, the amount of total swap grows; not the file16:11
superKillerhello. I installed 17.10 a few days ago and im having this weird problem that my laptop's touchpad stops working after i wake it up from sleep mode16:12
naccThunder_Tw: your question is like "if i add more memory, do i have more memory?"16:12
Thunder_TwThen a OS can dynamicly increase swap file if needed by adding more swap files16:12
naccThunder_Tw: no it can't. as in, it doesn't.16:12
lordcirth_workThunder_Tw, in theory it could; but it does not.16:12
naccThunder_Tw: please do't speculate quite so wildly :)16:12
naccsuperKiller: anything i dmesg when that happens?16:12
lordcirth_workYou could make a script to detect swap getting full and make a new one - but how about getting enough RAM?16:12
lordcirth_workAlternatively, look into zram and zswap.16:13
superKillernacc: sorry i didnt get you16:13
naccsuperKiller: at one point on my laptop, i had to `sudo modprobe -r i2c_hid; sudo modprobe i2c_hid` on s&r to get my touchpad back16:13
naccsuperKiller: when you wake up from sleep, run `dmesg` in a terminal16:13
naccsuperKiller: see if there are any errors16:13
superKillernacc: oh okay let me do that and get back16:14
Unte36NACC ??16:15
smsunartoheya guys! Congrats on making it to Google Code-In 2017 orgs :)16:15
naccThunder_Tw: lordcirth_work: at the same time, swap being full isn't itself a problem, it means you have a heavily loaded system (presumably overcommited at least in terms of memory) and the kernel is dtrt with the workload. There is no way to know policy as to "increase swap space" or not, because the intention is not knowable ahead of times.16:15
naccUnte36: sorry, i missed your questio16:15
naccUnte36: kubuntu and xubuntu use different configuratios, afaik; what settings do you mean?16:16
Unte36NACC I notice also a lot  of mem consumption. QUESTION: is it possible to install a lighter version for test on top say xubuntu  of my current install and preserve my settings and software????16:17
Unte36Software installed mostly I meant16:18
Thunder_Twnacc: Out of memory casualy means new things wont execute. Full swap is a problem that way, no?16:18
superKillernacc: this is the only message that i can see 'in red' . im new to linux tbh16:18
superKillernacc: https://dpaste.de/m2i016:18
naccUnte36: software istalled yes; settings between xubuntu and kubunntu aren't shared generally (i think)16:19
naccUnte36: you should be able to install somethig like 'xubuntu-desktop' and then logout and login to that session instead16:20
muzohi people anyone know how to make a terminal translucent?16:20
superKillernacc: your commands worked btw16:20
Thunder_Twdepends on the used terminal muzo16:20
naccThunder_Tw: it depends on how full, full is. Swap is not a permanent storage area, things get evicted to disk, etc. Things will execute in OOM, becuse the kernel OOM killer will kill consumptive processes.16:21
Unte36NACC So if Iḿ not rather pleased with the new version of Kubuntu. IT is possible to reinstall Xubuntu on top ? you think that it will make a difference as Ive said before. The system becomes really sluggish with the minimun overload16:21
muzoThunder_Tw which terminals can be made translucent?16:21
naccThunder_Tw: this is sort of offtopic here, I guess read about kernel swap usage, or ask in #kernelnewbies on OFTC16:21
naccsuperKiller: meaning when you ran the modprobe -r and modrobe, your touchpad came back?16:21
naccUnte36: i don't know, tbh. YOu would have to try it an dsee16:22
superKillernacc: yes16:22
superKillernacc: what does this mean though ? is there a more permanent solution or do i have to do this everytime this happens ?16:22
Unte36NACC Superb. Thank you very much for your assistance. Will proceed now16:22
naccsuperKiller: yeah, so something is wrong with the driver or hardware, may need a fix16:23
naccsuperKiller: uname -r ?16:23
naccsuperKiller: and which versino of ubuntu?16:23
Thunder_Twthanks nacc, I'll refresh my stuff. Swap as i know it back in the days RAM was costly that swap (at least in M$ windows) could get full. And problems I've had that way...16:23
superKillernacc: touchpad works fine on windows 10 which is dual booted.16:23
superKillernacc: 17.1016:23
=== SimonNL_Afk is now known as SimonNL
superKillernacc: uname -r is : 4.13.0-16-generic16:24
naccThunder_Tw: afaik, swap on windows is rather different16:24
naccsuperKiller: i'd file a bug with `ubuntu-bug linux` and describe your issue. Include the bit of dmesg you found that indicated an error and that the modprobe trick fixed it16:24
skiboyHas anyone else had the login loop issue with the latest 16.04 update?16:25
superKillernacc: okay. thanks a lot for your help though!16:25
naccsuperKiller: yw, for now you have the workaround at least :)16:25
skiboyIt was borked until I removed the nvidia drivers16:25
codelinxHi...Can anyone help me figure this out…. I outlined the issue and pasted the info in this -> https://paste.drhack.net/?02f4a2e0ad9e2e2e#Z0y+cK4Y5jeDcCbkzEuFs7oQxNyHgbvKzw0A8Se40Pc=16:26
skiboyI'm assuming that I'm not the only one16:27
shadoxxanyone in here running  MaaS?16:28
leftyfbshadoxx: we don't get many people here willing to take surveys16:28
naccshadoxx: there is a maas channel iirc16:28
shadoxxTrying to figure out an issue where maas is starting dhcpd on the interface that has a static IP16:29
Thunder_Twskiboy:  the last nvidia drivers(387.12) arent stable imho. I do not have login problems but games do crash that did run fine before the update16:29
shadoxxand the interface keeps sending out requests and loses its ip. even though it's configured properly in /etc/network/interfaces and doing an ifdown eno1; ifup eno1 reassigns the proper ip16:29
shadoxxi have to login to my ilo to manually run those commands though16:30
naccshadoxx: better asked in #ubuntu-server or the maas channenl16:30
skiboyThunder_Tw: I tried downgrading.  It still doesn't work until I remove the drivers.  I think it might be a kernel issue16:30
shadoxxnacc: will do, gracias16:30
skiboyor maybe bbswitch doesn't like the drivers16:30
shadoxxskiboy: can you paste your bbswitch configuration?16:31
skiboyshadoxx: just bumblebee.conf, right?16:32
shadoxxskiboy: correct16:33
skiboyshadoxx:https://paste.ubuntu.com/25824572/16:33
skiboyBut here's the strange part, it works whether or not I point bumblebee to the correct module or not16:34
shadoxxskiboy: figured. lines 60-6416:34
shadoxxchange your nvidia path.16:34
shadoxxnvidia-387 instead of nvidia-37816:34
shadoxxif you upgraded.16:34
skiboyNo, it's correct.  I tried downgrading to 37816:35
shadoxxThe bumblebee configuration in Ubuntu requires you to edit this file anytime you touch the nvidia versions.16:35
shadoxxOh, gotcha16:35
skiboyI had to remove it though.  It still got stuck in a boot loop16:35
shadoxxIs it possible for you to drop to runlevel 3 then run gdm/lightdm manually?16:36
shadoxxYou'd at least get output from whatever is causing it to crash in a terminal16:36
skiboyOne thing I remember from syslog was "the fail whale has failed" when I tried to login16:36
shadoxxlol16:36
skiboyI can log in fine once I remove the nvidia packages16:36
shadoxxUsually I update the nvidia drivers, then I re-run the nvidia xconfig utility to regenerate my X11.conf file16:37
shadoxxI'm running 384 no problem on Ubuntu 16.04 with a Titan X. I'm also running 384 with an Ubuntu VM with a Quadro P2000 passedthrough to the VM16:38
skiboyshadoxx: https://paste.ubuntu.com/25824606/16:38
Thunder_Twgood old hardware16:38
shadoxxare you able to run 'nvidia-smi' once you do a driver update and reboot?16:38
shadoxxGraphics have been an issue on Linux for as far back as I can remember. :[16:39
skiboynvidia is the only thing that has ever crashed my system, no joke.16:39
skiboywhat does nvidia-smi do?16:39
vijaikumarskiboy: sew that on a pillow --> "nvidia is the only thing that has ever crashed my system"16:40
vijaikumar:P16:40
shadoxxskiboy: nvidia-smi just gives you runtime information on the graphics card. kind of like top, but for the gpu16:40
shadoxxskiboy: if that runs correctly and gives you output, it lets you know that at least your drivers are compiled correctly16:41
shadoxxskiboy: personally, I just install the nvidia cuda repository and then do `apt install cuda`. It's ~4GB, but it configures everything properly AND gives you fun things like nvenc and cuda support out of the box16:41
shadoxxthat requires me to do 'apt purge nvidia-*' first though and reboot16:42
skiboySo it was running fine until I noticed that my battery was awfully low.  Then I noticed the driver had been updated, and was running instead of being loaded by bbswitch, so I updated the blacklists and bumblebee.conf, and rebooted my system.  Then it got stuck in the login loop.  Tried the most up-to-date PPAs and even tried downgrading.  No dice.16:43
skiboylogin loop unless I just remove nvidia packages now16:43
linux_userleftyfb: you still there?16:44
skiboyOf course, all of this could be avoided if Nvidia just made their drivers GPL and merged into the mainline kernel.16:45
skiboyBut that would require some level of sanity16:45
jamisnemoskiboy, I ran into a login loop issues just last night. stayed up till 4am trying to fix it16:45
jamisnemoBut I can't get the damn thing to login if I remove the nvidia drivers.16:45
* linux_user I installed Ubuntu 17.10 into a VirtualBox 5.2 VM with encryption & LVM. When it boots up I see the prompt to enter the password, and even when I click in the VMs window, no matter what I type the VM does not receive the characters, any ideas on that??16:46
skiboyjamisnemo: So it's the opposite issue of mine?16:46
jamisnemolightdm yells something about dkms not working right. What kernel are you running?16:46
TJ-skiboy: are you sure it isn't the old problem of 'root owns the $HOME/.Xauthority" file?16:46
skiboy4.4.0-97-generic with livepatching enabled16:46
shadoxxjamisnemo: sounds like the dkms compiliation step is failing. :]16:46
skiboyTJ-: already checked that16:46
jamisnemoshadoxx, but it isn't throwing an error16:47
TJ-skiboy: so what are the Xorg logs showing ?16:47
jamisnemoand I checked the .Xauthority permissions as well16:47
skiboylemme check16:47
shadoxxjamisnemo: aren't you in some local channels that i'm in. your nick is familiar16:47
jamisnemoand I'm 4.10.0.-35-generic soooo :/16:47
jamisnemoshadoxx, yup :D16:47
shadoxxi'm pretty sure ive met you in person lol16:47
jamisnemolol yup16:47
shadoxxjamisnemo: if you ever need in person help with ubuntu stuff, always feel free to hit me up16:48
jamisnemoRight. So the PPA drivers should be working...16:48
jamisnemoshadoxx, haha yeah, usually I'm okay. I agree that nvidia needs to just play ball a bit better16:49
shadoxx:D16:49
k12Apparently Ubuntu Server 17.10 is out. But when I run do-release-upgrade, the output said No new release found. Is there a waiting period before I can use that command?16:49
skiboyI'm not seeing anything particularly interesting in xorg logs16:50
skiboyall of the new nvidia drivers want to install some xorg-server-legacy package.  Don't know what that's all about16:51
TJ-skiboy: which ubuntu release is it? if it's before 17.10 then check /var/log/lightdm/ logs too16:51
TJ-skiboy: especially the references where the greeter hands over to the user sessions16:51
jamisnemoskiboy, what laptop are you running?16:52
jamisnemoand gpu16:52
nacck12: what version of ubuntu are you on?16:53
k1216.04 apparently. Is that why?16:53
Thunder_Twk12: you may want to state o16:54
nacck12: well, you wouldn't go 16.04 -> 17.10 ayways16:54
skiboyI'm on an Alienware 14.  Let me check the GPU16:54
nacck12: it would be 16.04 -> 17.04 -> 17.1016:54
nacck12: but also why do you want to go off of the LTS?16:54
skiboyGeForce GT 750M16:54
jamisnemoMan, apt has been yelling at me for a while now about being unable to create new files like: /var/lib/dpkg/info/linux-image-extra-4.4.0-97-generic_4.4.0-97.120_amd64.deb     because Operation not permitted..... even though I'm root.16:54
Thunder_Twk12:  You should change settings to not prefer LTS first16:54
jamisnemoskiboy, Okay good to know16:54
k12Ahh, I see.16:55
k12thx16:55
jamisnemolenovoa ideapad 700, GTX 950m16:55
fChanXWhat is LTS for? Why do people use it?16:55
TJ-jamisnemo: is /var/ on a separate file-system, has it remounted read-only due to file-system errors?16:55
lordcirth_worknacc, well, IMHO, if your swap is regularly full you need more RAM.16:56
* linux_user I installed Ubuntu 17.10 into a VirtualBox 5.2 VM with encryption & LVM. When it boots up I see the prompt to enter the password, and even when I click in the VMs window, no matter what I type the VM does not receive the characters, any ideas on that??16:56
skiboyfChanX: LTS is for people that don't like things breaking16:56
Thunder_TwfChanX:  TLS is short for Long Term Stable, it's to ensure you not to get unstable packages, bugs crashes16:56
jamisnemoTJ-, no, but it is on an "nvme" drive that's running disk encryption (if that matters)16:57
jamisnemoSometimes it works just fine if I just run the command again16:57
nacclordcirth_work: right, overcommitted16:57
skiboyIronically, I'm having this issue on an LTS release16:57
fChanXWould the LTS version be more stable maybe?  I haven't really paid attention to LTS vs not. Because I am a bit of an idiot sometimes. :p16:57
TJ-jamisnemo: it shouldn't make any difference. I wonder if you've got a broken apparmor profile? check /var/log/auth.log16:57
lordcirth_workmuzo, in gnome-terminal, right click, profiles, profile preferences, colors, use transparent background16:57
jamisnemoTJ-, ahh don't know about that. I'll check it now16:58
MatejMeckaHello?16:58
MatejMeckaI'm a GCI Student from Macedonia16:58
fChanXI meant 'more secure' sorry.16:58
MatejMeckaAnd i'm interested more about ubuntu16:58
fChanXNot 'more stable'.16:58
TJ-jamisnemo: if you can run the command that gives the error and pastebinit that'd be really helpful16:58
naccfChanX: security support is the same for all current releases16:58
jamisnemoTJ-, well I can try. it's literally: apt install linux-generic16:59
fChanXThank you nacc.16:59
jamisnemolol16:59
lordcirth_workMatejMecka, this is the Ubuntu support channel, welcome.  Did you have a specific question?16:59
naccjamisnemo: apt isntall won't try ad create a .deb file, afaik16:59
fChanXDoes anyone else still type 'apt-get install'? :p16:59
TJ-jamisnemo: right, but us seeing the exact error messages helps us pinpoint where in the apt code that is generated, and therefore maybe what the cause might be16:59
naccfChanX: yes, it's fine to do so16:59
MatejMeckalordcirth_work: Any GCI channels17:00
jamisnemoTJ-, ah right okay. Is there a way to get apt to be more verbose with it's output?17:00
lordcirth_workMatejMecka, GCI?17:00
MatejMeckalordcirth_work: Google Code In17:00
lordcirth_work!alis | MatejMecka17:01
ubottuMatejMecka: Alis is an IRC service to help you find channels. For help on using it, see "/msg Alis help list" or ask in #freenode. Example usage: "/msg Alis list http"17:01
TJ-jamisnemo: try "sudo apt -o Debug::RunScripts ..."17:02
jamisnemoTJ-, It looks like it's working just fine this time. No errors in auth that I can directly correlate with apt. Ah! Thanks i'll try that17:02
TJ-jamisnemo: "man apt.conf" will show many other possible Debug:: options that could help identify the cause17:03
jamisnemoomg duh :facepalm:17:03
TJ-jamisnemo: forgot the 'sudo' ?17:04
jamisnemono, I'm running it as root :D17:04
jamisnemoJust didn't think to go through the list of SEE ALSO in man17:05
jamisnemolol17:05
jamisnemoapt is the one part of deb/ubuntu I haven't fully wrapped my head around yet17:05
jamisnemothought I knew it.17:05
skiboyI'm pretty sure that my kernel and the nvidia drivers are incompatible17:05
TJ-jamisnemo: it's a hideous beast under the nice fluffy exterior :)17:05
skiboyI'm going to pass out now.  I'll take another crack at this later17:07
jamisnemoskiboy, I just installed 4.4.0-97-generic and my machine booted with nvidia-384 (384.90)17:07
skiboyjamisnemo: are you using bumblebee?17:07
oerheksbumblebee is old, prime is current now17:08
baxxif I'm installing tkinter does that get installed as sudo?17:08
cpinedhello, after upgrading from 17.04 to 17.10 I keep getting "recovering journal" although I am able to ssh to that PC17:08
jamisnemoskiboy, looks like it but I can't honestly tell.17:09
jamisnemoskiboy, oerheks, I'm not using the graphics PPA....17:09
=== mnepton is now known as mneptok
jamisnemoSo I'm using the ubuntu nvidia-384.... does that install bumblebee?17:09
skiboyWhat are the advantages of prime over bumblebee17:09
oerhekswe support prime.17:10
jamisnemooerheks, is there a quick way to know which I'm currently using?17:11
skiboyDo you still have to log out and log back in to switch cards?17:12
hdostSo quick help question, I know that there are a lot of package delays with all the changes going out from Ubuntu 17.10. I guess my question is how can I check how out of date security.ubuntu.com is?17:14
Unte36Hello all. Still with various languages in my system.17:14
hdostI know all the mirrors are https://launchpad.net/ubuntu/+archivemirrors17:14
alkisgUnte36: what does that mean, you want to remove some languages?17:14
hdostbut I can't seem to find security.ubuntu.com, any help is appreciated :)17:14
cpinedany idea what "recovering journal" means when powering up Ubuntu?  This started happening as soon as I upgraded to 17.1017:15
alkisgcpined: it means your pc didn't shut down properly17:15
lordcirth_workcpined, that's your ext4 filesystem mounting /, probably, and finding incomplete transactions in the journal17:16
lordcirth_workThe journal is specifically for recovering from hard poweroffs, so it shouldn't be a problem, but don't do that.17:16
* linux_user I installed Ubuntu 17.10 into a VirtualBox 5.2 VM with encryption & LVM. When it boots up I see the prompt to enter the password, and even when I click in the VMs window, no matter what I type the VM does not receive the characters, any ideas on that??17:17
cpinedlordcirth_work: How can I fix this?  I'm not able to get to the desktop although I can ssh to it.17:17
lordcirth_worklinux_user, most command line password prompts show nothing when you type17:17
Unte36ALKISG After kernel update. Problems: A) WIFI connection needs to be set up to aireplane and then re enable it for that it works. B) I got porgams in one language and file manager on a different one17:18
lordcirth_workcpined, there's nothing to fix, "recovering journal" means it fixed it, just shut down properly in future17:18
Unte36c ) lost my documents17:18
lordcirth_worklinux_user, just type and hit enter, it should work17:18
cpinedlordcirth_work: but I can't get to Unity..so I don't know what to do now.17:19
lordcirth_workcpined, is it just hanging at 'recovering journal'?17:19
fChanXlordcirth_work: what would the improper shutdown do? Lead to some loss or break the system? :o17:20
lordcirth_workfChanX, it shouldn't, ext4 has features like journalling specifically to handle that, but you still shouldn't do t17:20
linux_userlordcirth_work: Oh my gosh you missed the point...that is PRECISELY what does NOT WORK.17:20
bumbar_i've just upgraded to 17.10 (asa vbox guest), and resizing windows (minimize, maximize) laggs the system completely. would that be ubuntu or virtual box issue?17:20
linux_userlordcirth_work: But thank you for letting me know "it should work"17:20
lordcirth_worklinux_user, is this a graphical or command line prompt17:21
cpinedlordcirth_work: yes it just hangs...during upgrade to 17.10 I was browsing MuseScore and attempted to play a file then the PC froze after that I can't recover, although I can ssh.17:21
linux_userlordcirth_work: GUI17:21
lordcirth_worklinux_user, ok, so reboot, hold shift to get a grub menu, press e to edit the boot entry, go down to line starting with 'linux' and delete 'quiet splash' then boot with F1017:21
linux_userlordcirth_work: that will boot into GUI mode?17:22
Unte36alkisg??????17:22
lordcirth_worklinux_user, no, it will boot without the graphical splashscreen, so that you will get a command line password prompt instead of the GUI one, which hopefully will work17:23
Ruff_Wizard[m]Was there a spam outbreak on this server?17:23
Thunder_TwRuff_Wizard[m]:  yesterday there where a few17:23
lordcirth_workRuff_Wizard[m], yesterday there was some spam here.  offtopic, tho17:23
linux_userlordcirth_work: it does NOT work, it just gives me a blank graphical screen. What did work was booting into recovery mode (it prompted via text for the encryption password, and when entered it booted textually into recovery mode fine)17:24
Ruff_Wizard[m]Okay, cool. I still don't understand why people do it.17:24
lordcirth_worklinux_user, ok, and if you choose 'resume' from recovery, does it work?17:25
Ruff_Wizard[m]Up till now I thought that #freenode was the main place that it happened but sadly it seems that that's not the only place.17:25
Thunder_Tw!ot | Ruff_Wizard[m]17:25
ubottuRuff_Wizard[m]: #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!17:25
linux_userlordcirth_work: let me try that - be right back17:25
Ruff_Wizard[m]sigh17:25
Ruff_Wizard[m]ok17:26
linux_userlordcirth_work: Ok, so what I did was boot into recovery mode (I had to enter the password textually), then went and selected resume, it continued into the GUI mode. So, now what might you think the issue is?17:27
lordcirth_worklinux_user, so, in the past there's sometimes been bugs with plymouth (the graphical splashscreen during boot) not handling encryption prompts well17:28
lordcirth_worklinux_user, but did you say that editing the grub entry didn't help?17:28
TJ-linux_user: lordcirth_work I've witnessed that in the past. It turned out to be caused by the vt_handoff= missing, and the input was going to a different tty than plymouth was waiting for input on17:32
linux_userlordcirth_work: removing 'quiet splash' did not do anything except prevent the password prompt from showing up.17:32
linux_userwhat should vt_handoff= TJ?17:33
lordcirth_workTJ-, linux_user well that's interesting, in 14.04 I fixed this same problem just by removing 'quiet splash' which I do anyway because plymouth is boring17:33
TJ-linux_user: Usually, the kernel command-line has vt_handoff=7 I think it is? Can someone check who has it, I don't have a system handy right now to check17:34
ducasseTJ-: on artful? 7 here.17:35
TJ-ducasse: thanks for confirming that.17:35
TJ-linux_user: if the system is currently booted, what does "cat /proc/cmdline" report?17:35
TJ-ducasse: I couldn't remember if it was "=tty7" or "=7" :)17:36
ducassevt.handoff=717:38
TJ-aha17:38
linux_userok17:39
linux_userlet me boot it up and see what /proc/commandline says17:39
linux_userbut17:39
linux_userright now it just says "$vt_handoff"17:39
TJ-linux_user: that's the GRUB variable in the config. That get's replaced at boot-time17:39
alkisgUnte36: which ubuntu version is that? E.g. 16.04 with unity?17:40
TJ-linux_user: We're trying to determine if this plymouth 'split' input issue could be affecting it17:40
linux_userI do not understand17:40
linux_userdidn't you say to make vt_handoff=7?17:40
linux_user$vt_handoff=7 did nothing17:40
TJ- linux_user no, I wanted to see if the setting was there and I said what I thought it should be, which as ducasse said, is actually "vt.handoff=7"17:41
linux_useroh17:41
linux_userI can reboot and try that instead17:41
TJ-linux_user: if it isn't showing up in /proc/cmdline it is something we can investigate further17:42
klemaxHello17:42
klemaxI have some devices. Before opening them on dolphin, must be asked sudo password to mount them.17:43
klemaxHow to do it?17:43
linux_userI did see that there are some updates, so I am installing them and rebooting17:46
lordcirth_workklemax, I don't understand what you mean.17:46
ioriaklemax, you mean disable auto-mounting ?17:46
MYounisHello everyone!17:46
MYounisgreig Fallen. I treid making the Live Pendrive with Ubuntu as per the turorial on Ubuntu's site. Also tried setting nomodeset in boot. and also in grub file in live pendrive.17:46
MYounisStill the laptop stucks at the black screen after grub.17:46
klemaxioria: bingo17:46
ioriaklemax, https://help.ubuntu.com/community/Mount/USB#Configuring_Automounting17:47
Unte36alkisg ++++   Distributor ID: Ubuntu / Description:    Ubuntu 16.04.3 LTS/ Release:        16.04/ Codename:       xenial17:47
alkisgUnte36: what's the output of `ls /usr/share/xsessions` ?17:47
klemaxioria: ah it is only for usb device?17:48
ioriaklemax, i guess (not sure) also for sdcards17:48
klemaxioria: Im gonna use it for my sata disk.17:49
ioriaklemax, oh17:49
ioriaklemax, where are mounted right now ?17:50
linux_userOK, it booted into GUI: I had to remove "quiet splash $vt_handoff" and replace it with "nomodeset vt_handoff=7" yet, when I did that, it prompted for the password in text mode! YUK!17:51
linux_userwhy is the GUI not working to prompt for the password?17:51
Unte36alkisg ++++   Plasma.Desltop17:51
leftyfbit did txt mode because you removed quiet17:51
urvshhello17:51
Unte36alkisg ++++   Plasma.Desktop17:51
leftyfbUnte36: You only need to post it once.17:52
MYounishello urvsh17:52
eno_has anyone gotten chromium to work with netflix? i tried the instructions here but it still doesn't work https://launchpad.net/~saiarcot895/+archive/ubuntu/chromium-dev17:52
klemaxioria: /media/klemax/17:53
alkisgUnte36: ah, ok, I'm not use KDE, I can't help there17:53
alkisgWait for someone else17:53
lordcirth_workklemax, are these disks configured in /etc/fstab?17:53
linux_userTJ?17:53
leftyfbeno_: try firefox17:53
ioriaklemax, try the link above, if not working,   you can set fstab with the 'noauto' option17:53
Unte36alkisg ++++   Is there anyone in here who can assist me with this??????? : (17:53
MYounisHello everyone. I'm tryint to install Linux in my computer. But no luck so far. Stuck with windows for 2 years now17:53
eno_leftyfb: firefox works fine17:53
MYouniscan some one help me please17:53
lordcirth_worklinux_user, you need the full username to highlight: TJ- .  Also, did the text prompt work?17:54
leftyfbMYounis: you need to give us detailed issues. Preferably logs or error messages. And what version of ubuntu you're trying to install and how you're trying to install it17:54
klemaxlordcirth_work: no it is not17:54
linux_userlordcirth_work: what worked was replacing "quiet splash $vt_handoff" with "nomodeset vt_handoff=1"17:55
linux_userwhat do you mean "full username" to highlight?17:55
leftyfblinux_user: try putting quiet back17:55
linux_userok17:55
linux_userkeep vt_handoff=1 yes?17:55
leftyfbsure17:55
lordcirth_worklinux_user, saying someone's username, like this, makes their IRC client highlight the line.  Saying part of it does not.17:56
linux_userok17:56
Unte36ALKISG After kernel update. Problems: A) WIFI connection needs to be set up to aireplane and then re enable it for that it works. B) I got porgams in one language and file manager on a different one C) lost my documents17:56
Unte36HELLO ALL> After kernel update. Problems: A) WIFI connection needs to be set up to aireplane and then re enable it for that it works. B) I got porgams in one language and file manager on a different one C) lost my documents17:56
alkisgUnte36: I'm not using KDE, wait for someone else17:56
alkisg!patience17:56
ubottuDon'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 http://ubuntuforums.org or http://askubuntu.com/17:56
linux_userlordcirth_work, what exactly do you want the command line to look like remove "splash $vt_handoff" leaving just quiet, right?17:56
leftyfbUnte36: please stop posting the same things multiple times17:56
leftyfbUnte36: try running the previous kernel17:57
MYounisleftyfb thanks. I did on top but I think it went up in msgs without anyone reading them.17:57
MYounisI'm trying to intall Linux on my HP Envy TS i5 U110dx. With Integrated Intel HD 5500.17:57
MYounisI tried intalling Linuxmint in the start but with no luck. Recently I've tried intalling Ubuntu 17.10 and then Ubuntu 16.04.03. Facing same problem with all of them17:57
Unte36Ubottu sorry, Iḿ new to all this so not sure what is the protocol17:57
lordcirth_worklinux_user, I think leftyfb or others might be better to help you17:57
leftyfbMYounis: you have yet to detail an issue17:57
NginUSDoes anyone here know where I can see a changelog for the wget update that just happened on 16.04?17:58
leftyfbMYounis: mind you, we are only going to help you install ubuntu 16.04 or 17.1017:58
Unte36 ++ Ubottu sorry, Iḿ new to all this so not sure what is the protocol, will do. Yes I have tried to do that. Rollback kernel, repair packages, check files on repair mode17:58
leftyfbnhandler: apt-get changelog wget17:58
NginUSleftyfb: thx17:59
linux_userlordcirth_work when I used "quiet vt_handoff=1" it asked me for the password in text17:59
lordcirth_worklinux_user, yes, and did it work when you typed it in?17:59
linux_useryes it did18:00
leftyfblinux_user: try adding "splash" if you want the GUI (maybe)18:00
MYounisleftyfb yes I know. And that'll be great.18:00
MYounisWhenever I book from live Ubuntu Live USB. It stucks at black screen right after GNU grub. that gives options to try Ubuntu without installing and install ubuntu etc.18:00
MYounisI've set the bios. enable legacy boot. disabled secue boot. Set USB 3.0 to auto.18:00
MYounisI've tried putting nomodeset after quiet splash.18:00
linux_userand what should I do with "$vt_handoff" change it to "vt_handoff=1"?18:00
MYounisDuring boot and also in grub file in live USB18:00
linux_userwhen I did "quiet vt_handoff=1" it asked me the password textually but landed me at the GUI login page after booting18:01
leftyfbMYounis: try the server installer and when it gets to package selection, pick ubuntu desktop toward the bottom18:01
leftyfblinux_user: try adding in "splash" but keep everything else that's there now18:01
MYounisserver intaller?? You mean I should download another ISO?? Ubuntu Server?18:01
leftyfbMYounis: yes18:02
cpinedHello, any more ideas why I can't launch my GUI?  When powering up it hangs on "recovering journal"?18:02
MYounisleftyfb you think that'll work?18:02
cpinedI can ssh to that box and run applications fine.18:02
leftyfbMYounis: usually when someone suggests a solution, it's because they think it might work18:02
linux_userwhat is there now is "quiet vt_handoff=1"18:03
linux_userthat asks me the password textually and provides the GUI after18:03
leftyfblinux_user: again, add splash to it18:03
MYounisleftyfb Sorry man I just asked because I thought problem is with my graphics thing. the grub menu some in small neat text. Anyways, thanks I'll try that18:04
linux_userI did, when I did it prompted I saw the password typed on the screen high up but not in the block where it goes and it did nothing and stayed stuck18:04
linux_userusing: "quiet splash vt_handoff=1"18:05
linux_userisnt there a conflict between vt_handoff=1 and splash?18:05
leftyfblinux_user: doubtful. vt_handoff is which tty the GUI will run on18:06
leftyfbit actually doesn't really matter what that number is AFAIK18:06
linux_useroh ok18:06
linux_userquiet splash does not accept the password18:06
leftyfblinux_user: can I ask why you need the entire virtual desktop install encrypted?18:07
linux_userleftyfb: so I can test it and discover bugs like this before I set it up that way for a client who has not told me their needs for encryption (nor won't). I hope you are not going to question why I am doing something just because it is broken...that will not be helpful.18:08
lordcirth_worklinux_user, well, it would have been useful to know that this will need to go to a client; I was wondering why you cared about the splash screen working18:09
linux_userIf Ubuntu 17.10 has some real bugs and is a bit of turd, I think the question is why was it not fully tested well?18:09
leftyfblinux_user: some things (possibly this) won't work the same way virtualized as it will on bare metal.18:09
lordcirth_workcpined, look through /var/log/syslog and the output of 'dmesg'18:10
MYounisOne more question.  I never tried server installer before. I'm downloading the ISO ubuntu-16.04.3-server-amd64.iso. When will it get to package selection? in grub or during installation process?18:10
leftyfblinux_user: also, I wouldn't recommend installing 17.10 for a "client". You'll be reinstalling/upgrading them every 6 months if you install non LTS versions18:10
lordcirth_workvirtualization *shouldn't* hurt LUKS, one would think...18:10
leftyfbMYounis: during installation18:10
MYounisleftyfb thanks18:11
leftyfblordcirth_work: no, but it might affect graphics .. as in placement on the screen. Due to a virtualized graphics driver18:11
lordcirth_workTrue18:11
linux_userlordcirth_work: I agree, and I think questioning why someone uses something that is broken is not productive. Its why it is broken, because people do not care (not saying lefty doesn't) just saying its that kind of attitude with developers that leads to junkware.18:11
lordcirth_worklinux_user, it's counterproductive if it's a way to get out of fixing it; but not if it helps you understand the real problem18:12
linux_userleftyfb: I agree, but if I do not, the client will hire someone that will do waht he is asking.18:12
lordcirth_workXY problems happen here a lot18:12
cpined lordcirth_work, pattern not found18:12
linux_userlordcirth_work: true18:12
leftyfblinux_user: If it were me (first, I would install 16.04, not 17.10) I would install 17.10 on a test machine (not virtual) to see if this issue still exists. If it doesn't, then I would just do your virtualization testing without encryption and test everything else18:13
linux_userMoreover, this functionality was fine in 16.04, 16.10, and 17.0418:13
lordcirth_workcpined, ?  You didn't see any errors after "recovering journal"?18:13
linux_userI will but the customer wants it installed virtualized18:13
leftyfblinux_user: This particular issue might not be solved here. Your next step would be to file a bug.18:13
linux_usermoreover, if its a bug then the Ubuntu folks need to know so they can fix it18:13
linux_userI agree entirely leftyfb about the bug filing!18:14
linux_userwhere do I file a bug?18:14
nacc!bug | linux_user18:14
ubottulinux_user: If you find a bug in Ubuntu or any of its derivatives, please report it using the command « ubuntu-bug <package> » - See https://help.ubuntu.com/community/ReportingBugs for other ways to report bugs.18:14
leftyfblinux_user: https://help.ubuntu.com/community/ReportingBugs18:14
linux_usersomeone else will need to file the bug. it requires me to login with facebook or something, seems ubuntu doesn't let you have your own account anymore.18:16
linux_userone of my federal clients prevents me from having facebook18:16
linux_useror other social media accounts18:16
cpinedlordcirth_work, I see this in the log - 0 gnome-screensav[24760]: Cannot open display:18:16
leftyfblinux_user: launchpad does not require you to have a facebook account18:17
leftyfblinux_user: https://login.ubuntu.com/18:17
leftyfbor https://login.launchpad.net/18:18
leftyfbsame thing I think18:18
lapyoI'm having some problems with my wifi18:18
lapyoubuntu 17.10, 4.13.0-16-generic, ath9k driver18:18
lapyounstable and slow connection, first time ever having this problem with linux18:18
MYounisleftyfb i was gonna install Ubuntu as a dual boot with winodws. WIll I still be able to do that with Ubuntu Server?18:19
leftyfbMYounis: yes18:19
linux_userit put me into some personal details screen18:20
linux_userwhat do I do to file the bug?18:20
linux_userok, I clicked launchpad when I saw it18:21
linux_userlet me try to file a bug if I can figure out where to click to do that18:21
leftyfbpersonal details? Like your name?18:21
lapyoanyone? search engines just suggest reloading drivers but it aint't doing shit18:21
leftyfblapyo: please watch the language18:22
linux_userIs there something I click to file a bug? there is no file a bug link18:22
lapyosure, if the censorship helps me get some real answers18:22
BluesKaj!gug18:23
BluesKajhehe18:23
BluesKaj!bug18:23
ubottuIf you find a bug in Ubuntu or any of its derivatives, please report it using the command « ubuntu-bug <package> » - See https://help.ubuntu.com/community/ReportingBugs for other ways to report bugs.18:23
BluesKajlinux_user,^18:23
linux_userleftyfb: this is taking too much time, I am going to try to post a message somewhere to get the bug published, I don't see how to do it easily.18:23
leftyfblinux_user: posting the message "somewhere" will not get the bug published ... unless it's a filed bug on launchpad18:24
leftyfblinux_user: the link given to you twice now as instructions on filing a bug18:24
leftyfblinux_user: please read through it18:24
linux_userI DID18:24
linux_userI logged in18:24
linux_userwent to the link18:24
linux_userthere is no "file a bug" url18:24
linux_userI have no time to read through it18:25
linux_userI need to get a solution going18:25
linux_userthanks for all your help18:25
linux_userI do appreciate that18:25
linux_userfiling bugs with Ubuntu is too complicated18:25
leftyfbyou actually can't say that since you didn't bother to read the documentation on how to do it18:25
BluesKajlinux_user, read above18:25
leftyfbif reading documentation is too complicated .....18:26
pavloslinux_user: you just type ubuntu-bug the_package_name (there is example for evince), it will collect info and guide you through the process.18:27
LyndsySimonI have a Windows 10 tablet - does 17.10 have sufficiently mature touch support that it would be usable on it?18:27
LyndsySimonIt's a Samsung TabPro S Gold, for what it's worth. Roughly par with a Surface Pro.18:28
leftyfbLyndsySimon: yes and no. "sufficiently mature touch support", yes. Will it work on a Windows tablet, that's up to the drivers of the tablet and has very little to do with touchpad support in Ubuntu18:28
LyndsySimonleftyfb: I'm confident that I can handle dealing with drivers, assuming they actually exist at the moment.18:29
LyndsySimonAlternatively, are there any decent convertible tablet offerings out there that have excellent compatibility with Ubuntu?18:30
cristian_cLyndsySimon: beyond driver support, it's pretty a matter of desktop environment suppott, in terms of daily use18:31
linux_userleftyfb: bug filed18:32
LyndsySimoncristian_c: To be honest, I find Windows 10 to be barely acceptable in that regard.18:32
akikdoes ubuntu-bug sanitize the uploaded files?18:33
akikor can you do it manually?18:33
ducasseakik: aiui it sanitizes logs etc it collects18:35
cristian_cLyndsySimon: you've made a question, and you've provided an answer to that same question18:37
LyndsySimoncristian_c: Indeed :) I'm just toying with an idea over here, I don't have a problem that requires a solution.18:38
cristian_cah, complaint/bame18:38
cristian_crant/blame18:38
cristian_cgood18:38
akikLyndsySimon: i don't know why no one suggested this but you can boot a live session of 17.10 on the tablet (probably)18:39
LyndsySimonakik: Yeah, I think so. I'll need to dig up my USB-C <-> USB adapter, but I should be able to do it.18:39
LyndsySimonIf Wubi still exists, I could probably also install it from within Windows as a trial.18:40
akikLyndsySimon: it doesn't18:40
LyndsySimonakik: Interesting. Not sure what I think about that :)18:40
akikLyndsySimon: the live session doesn't change the tablet's configuration18:40
LyndsySimonI'm aware18:40
cristian_cLyndsySimon: luckily, wubi doesn't exiat anymore18:44
LyndsySimonBasically, I'm in a place right now where I'm trying to decide how I want to proceed in terms of my personal computing environment. I have a MacBook Pro and my Samsung tablet, running macOS and Win10 respectively. I'm considering replacing the MBP with a more powerful desktop, running Win10 or a Linux distro of some type. If Ubuntu on that desktop is sufficient for the gaming I do, then I'm curious if I can also18:45
LyndsySimonuse Ubuntu on my tablet, thereby having a single OS for all of my devices at that point.18:45
LyndsySimonThe only two games I really play regularly are Day of Infamy (a Source-engine-based FPS) and RimWorld. Both of them have Linux versions on Steam, and neither require squeezing every last bit of graphical performance.18:47
cristian_cLyndsySimon: just gnome shell has a decent touch support18:47
cristian_cbut I use double quote when I write 'decent'18:47
* LyndsySimon nods18:48
LyndsySimonMy biggest problem in Windows isn't touch support in the shell, but in applications. Web browsers in particular really suck in that regard.18:48
cristian_cbuy a laptop if you want use a full linx experience18:49
LyndsySimonWhile I agree, that's not really helpful...18:49
cristian_cor use the tsblet pc with its own keyboard, in laptop mode18:49
LyndsySimonI use it about half and half as a laptop. It's not my primary device, for sure, but it's nice to be able to use in the car and such as a tablet and to switch over to laptop mode to get "real work" done in a pinch.18:52
zuiss1is a snap package like a portable app on windows, where everything is contained in a bundle?18:57
Thunder_Twzuiss1: https://www.ubuntu.com/desktop/snappy18:59
nacczuiss1: #snappy, and sort of, it's a squashfs image19:00
oerhekstons of them, https://snapcraft.io/19:00
whallzhello19:02
linux_userhttps://bugs.launchpad.net/ubuntu/+bug/172781619:02
ubottuError: launchpad bug 1727816 not found19:02
whallzfresh installed ubuntu 16.04.2 on an Acer Aspire E 15 laptop, everything works fine, but "sometimes" mouse starts to lag like crazy19:03
whallzunexpectedly and it does not stop until i reboot19:03
oerhekslinux_user, if it is marked as security issue, we do not spot that report, without credentials19:03
linux_userhuh?19:04
oerheksor it is a wrong paste19:04
linux_usera password doesn't work, of course that is a security issue!19:04
linux_userhow could it not be?19:04
oerhekslinux_user, so pasting that bugreport is useless, we cannot read it.19:04
linux_userjust cut and paste it in your browser19:05
leftyfblinux_user: It's not a security issue. It's an interface issue.19:07
Thunder_Twwhallz: not to complain but LTS is 16.04.3, can you pastebin using the command # dmesg19:08
* whallz needs help debugging a laggy touchpad19:08
ioriawhallz, whallz, https://askubuntu.com/questions/823404/extreme-cursor-delay-with-acer-aspire-e15-on-ubuntu-16-0419:08
whallzaha i'll try changing that bios setting19:09
whallzthanks ioria , Thunder_Tw19:09
ioriawhallz, if not working, try  to bl :  sudo tee /etc/modprobe.d/blacklist-i2c-hid.conf <<< "blacklist i2c_hid"19:10
whallzcool19:10
oerhekshostnamectl status19:15
whallzioria: yeap that did it, also tried with a usb mouse,worked perfectly, switching to basic touchpad config19:24
whallzthank you19:24
whallzbye19:24
ioriaok19:25
riotzuhm, is there a shortcut to disable the mousepad on 17.10?19:31
riotzi just cleaned the keyboard a bit ago now the mousepad doesnt work anymore19:31
riotzgrrrr19:31
linux_userleftyfb: Well, I think if a password doesn't work its a security issue. Anyway, if someone wants to reclassify the bug or what have you the right people that manage bug reports can do that.19:33
linux_userI submitted as best I was able19:33
iorialinux_user, what's the problem ?19:34
leftyfblinux_user: since it's listed as a security bug, we cannot modify or even see it19:35
linux_userwell I submitted however I best could without reading tons of docs. I have no idea how to change it so, sorry but I guess its too late19:36
linux_usereventually someone will read it I am sure19:36
TJ-linux_user: we've un-secured your bug report and I've added an initial comment to it19:49
n4n0`mew19:49
pavlosriotz: can you disable in systems settings, devices?19:50
leftyfblinux_user: https://bugs.launchpad.net/ubuntu/+bug/172781619:54
ubottuLaunchpad bug 1727816 in plymouth (Ubuntu) "cannot enter encryption password in GUI" [Undecided,New]19:54
leftyfbit's more than likely a duplicate anyway19:54
TJ-I debugged and fixed this a long time ago for 16.04; I wonder if I can find my patches?19:55
hitman1Hi, How to get icon files of icons of system tray ?19:55
riotzpavlos, enabling disabling in system setttings didnt had an effect.. i made a reboot no effect19:58
catbehemothis it possible to use systemd-boot instead of grub with ubuntu 16.04? and if yes to I simply apt-get remove grub and bootctl --path=/boot/efi install?19:58
riotzthen i switched off the power completely and powered on and everything started working19:59
riotzmaybe some electrical failure?19:59
riotzi also rebooted to windows which refused the mousepad.. realy weird failure20:00
akikwhy is that encryption passphrase bug still "new" ?20:01
akikoh it's triaged20:01
=== KindTwo is now known as KindOne
hitman1I want to know path where system tray icons of ubuntu are stored ?20:02
hitman1location of the file.20:02
leftyfbhitman1: it's dependent on what application icon you're talking about20:02
hitman1leftyfb: any application20:03
hitman1take system's default icons case20:03
leftyfbhitman1: default icon for what?20:04
hitman1wifi, speaker etc20:04
leftyfbhitman1: dropbox: /usr/share/icons/hicolor/16x16/apps/dropbox.png20:04
numbiehey, can someone tell me how i disown a .sh mount script , so it doesnt not unmount when the script is done?20:06
indroraI think you're going to need to explain that a little clearer, @ numbie20:07
TJ-numbie: you means you want it to continue running in the background when you exit the shell?20:10
numbieyes, im using a short cut with xterm  test.sh20:10
numbiebut i can & disown , because i need give input20:10
uwdcan you elaborate on the "Mount script"20:10
numbiecan not*20:11
uwdnumbie: can you upload your script on pastebin or some other service so we can see what you're actually running?20:14
pavlosriotz: I booted off a 17.10 usb stick (Try Ubuntu) and was able to turn off/on mousepad so it must be some module loaded on your laptop.20:15
TJ-numbie: assuming the shell is bash, then "disown -h <executable> &" should be sufficient20:15
uwdTJ-: theres the doesnt unmount when the script is done part thats still confusing me20:16
numbiethat was a mistype, i just want it to keep it mounted, its throwing the mount points out when the shell is done20:18
numbiewhen i use the shortcut atleast20:19
TJ-numbie: if you need to give it input you'd have to do it via a new fd20:19
uwdas in umount <params> numbie ?20:19
naccnumbie: keep what mounted?20:19
naccnumbie: your script description is *really* vague right now20:19
TJ-uwd: if the shell exits it'll send a SIGHUP to the child process, killing it, unless "disown -h" option is used20:19
naccafaict, this feels like perhaps the wrong solution to an undescribed problem20:20
TJ-As I understand it, numbie is using the GUI with a .desktop shortcut added that does "xterm path/to/script.sh", they then enter some input and then *close* xterm, and want the script.sh to continue running (said script doing some form of mount/umount operations )20:24
numbieif elif with 1 mount 2 unmount20:24
naccTJ-: that's a lot of context I did not have :)20:25
numbiebut yes, that sums it up20:25
TJ-nacc: Just call me Calire Voyant :)20:25
naccnumbie: uh, what? that's not even close to reasonable pseudo-syntax20:25
TJ-grrr, Claire Voyant, even!20:25
uwdTJ-: i prefer the calire voyant20:25
uwdlol20:25
numbiei am a pleb, what do you expect20:26
Thunder_TwClaire*20:26
Thunder_Tw:p20:26
TJ-nacc: I'll be your interpreter for today: "read -p "option 1 or option 2 ?" choice; if [ $choice -eq 1]; then do_mount; elif [ $choice -eq 2 ]; then do_umount; fi"20:26
numbiebut the desktop thing instantly disowns it , before i can give input20:29
riotzpavlos, its fixed now like i said.. i had to switch off power completely after that it was working again on the next reboot20:31
naccnumbie: you could pastebin your script, as requested20:33
naccTJ-: :)20:33
numbiewell nohup seems to work20:42
numbieweird20:43
numbienacc, TJ-   thanks for the help, i don't even know how to script, not sure why  & disown does not work , cu20:48
pavlosriotz: ok20:52
=== jstein_ is now known as jstein
Sven_vBI finally managed to get the Ubuntu Xenial live session to boot without nouveau, by removing --- and -- from the kernel command line options in the UNetbootin menu file, and adding " nomodeset blacklist=nouveau".20:59
=== coffeeguy is now known as irc_chat-Rick
=== irc_chat-Rick is now known as coffeeguy
TJ-Sven_vB: You could also use nouveau.modeset=021:03
TJ-Sven_vB: assuming you''re not dealing with a nouveau vs nvidia driver issue.21:04
arooniis this the right way to suspend ubuntu from the command line ? systemctl suspend -i21:04
TJ-arooni: Yes21:05
TJ-arooni: although without the -i to begin with is preferred so you see a list of processes holding locks21:05
arooniTJ-: will ubuntu do it that way when i close my laptop lid?  just about 1/2 of the time i can't come back from suspend21:05
arooniits quite annoying :(21:05
TJ-arooni: sounds like an ACPI issue in the firmware, what does the systems "cat /proc/cmdline" show?21:06
arooniBOOT_IMAGE=/boot/vmlinuz-4.8.0-53-generic root=UUID=e2134f25-3709-4afb-85e9-72b1e6b46ca3 ro quiet splash acpi_backlight=vendor "acpi_osi=!Windows 2013" "acpi_osi=!Windows 2012" crashkernel=384M-:128M vt.handoff=721:08
Sven_vBTJ-, I haven't installed any proprietary drivers onto the live USB. what would be the benefit of nouveau.modeset=0 over blacklisting it?21:09
TJ-Sven_vB: well, if the GPU uses the nouveau driver you get all the other benefits but without kernel mode-setting21:10
Sven_vBTJ-, what benefits are that?21:10
TJ-arooni: I'd guess you need to modify your use of the acpi_osi options. right now you're disabling some built-ins but likely not passing the best one for that system21:10
arooniTJ-: have any suggestions?  i remember i got that from reading a *LONG* thread of people who also had suspend/resume problem21:11
nanodroneis snappy installable on puppylinux21:11
arooni*problems21:11
TJ-Sven_vB: hardware  acceleration support, etc. without that you'll be limited to the the VESA software based driver21:11
Sven_vBTJ-, thanks. I'll keep that in mind in case moving windows around becomes to slow or something.21:12
TJ-arooni: as it happens yes. I specialise on this :) I think you need the form acpi_osi=! "acpi_osi=Windows XXXX" where you need to identify the best XXXX21:12
arooniTJ-: imagine my luck !  ... so how do i find what version of windows that I *dont have* haha21:13
TJ-arooni: to identify the 'best' XXXX do "sudo strings /sys/firmware/acpi/tables/DSDT | grep -i 'windows' | sort | tail -1"21:13
arooniTJ-: came up Windows 2012 :P21:14
TJ-arooni: then edit the /etc/default/grub, GRUB_CMDLINE_LINUX entry. Remove *all* your existing acpi_osi code (maybe comment out that line to retain it and create a new line) then...21:14
arooniTJ-: in that file right now i have GRUB_CMDLINE_LINUX_DEFAULT="splash 2013'=1=1 acpi_backlight=vendor quiet acpi_osi='!Windows 2013'=1=1"21:14
TJ-arooni: ... GRUB_CMDLINE_LINUX="crashkernel=384M-:128M acpi_backlight=vendor acpi_osi=! \"acpi_osi=Windows 2012\""21:15
arooniTJ-: i also have GRUB_CMDLINE_LINUX="" ;; so leave that as it is?21:15
Apachezhow come ubuntu 17.10 iso doesnt contain software to burn cd/dvd discs?21:15
TJ-arooni: ahhh, you should remove all but "quiet splash" from that line, that line is only used for a default start. it won't work for any of the 'Advanced' boot entries21:15
arooniTJ-: so leave this line in there as you suggest? GRUB_CMDLINE_LINUX="crashkernel=384M-:128M acpi_backlight=vendor acpi_osi=! \"acpi_osi=Windows 2012\""21:16
arooniand leave GRUB_CMDLINE_LINUX=""21:16
TJ-arooni: no, I'd recommend you have GRUB_CMDLINE_LINUX_DEFUALT="quiet splash"  and GRUB_CMDLINE_LINUX="acpi_backlight=vendor acpi_osi=! \"acpi_osi=Windows 2012\""  ... I think the crashkernel entry comes from a script doesn't it?21:17
* arooni lucked out today in #ubuntu; no way he would have figured this out on his own21:17
arooniahhh ok21:17
TJ-arooni: watch out for my typos! GRUB_CMDLINE_LINUX_DEFAULT=... !21:17
=== KindTwo is now known as KindOne
TJ-arooni: don't miss the 2 double-quotes at the end of GRUB_CMDLINE_LINUX either21:18
arooniok now i have the quiet splash as you indicate; and:21:18
arooniGRUB_CMDLINE_LINUX="acpi_backlight=vendor acpi_osi=! \"acpi_osi=Windows 2012\""21:18
TJ-arooni: for the avoidance of doubt: http://paste.ubuntu.com/25825816/21:19
aroonii won't really know if this will work till i restart correct?21:19
TJ-arooni: you'll need "sudo update-grub" first, then a reboot to test it, correct21:19
arooniTJ-: is.... the grub whisperer21:20
arooni ok i'm excited; i'm gonna restart and see if my upgraded grub works any better21:21
aroonithanks TJ- for your help21:21
TJ-arooni: sometimes a bad wifi card/driver can cause problems with suspend/resume and has to be unloaded before suspending21:22
TJ-arooni: let us know how it goes21:22
dan01is it just me, or is there something wrong with how my desktop looks?: https://imagebin.ca/v/3f9igrz2t8Kc21:31
=== el is now known as elky
dan01Shouldn't I have to see more lines, have more free space? Controls seem bit to big, don't they?21:32
kostkondan01, looks normal to me21:33
waltmanHas anyone figured out how to get new windows in 17.10 to appear on top and get focus? This is by far my top peeve.21:33
=== elky is now known as el
waltmanThe only thing I've found is https://extensions.gnome.org/extension/1005/focus-my-window/, but it's from several gnome versions ago and I can't figure out how to install it.21:34
nanodronedan01, 1366*768 is why they look so big, but you can always scale them down21:34
akiknanodrone: i did exactly that after install. way too big21:35
nanodronegnome assumes every PC has a touchscreen21:35
dan01nanodrone: how do I do that, gnome-tweek-tool Fonts, scale?21:35
dan01akik: And what value should I put there?21:35
nanodroneno, it's the display scaling part21:35
akikdan01: https://atkdinosaurus.wordpress.com/2017/10/24/how-to-make-gnome-graphics-elements-smaller-ubuntu-17-10/21:35
kostkondan01, ok maybe the drop down menus look a bit off21:36
TJ-Its weird how DEs get the scaling wrong, especially since monitors provide both resolution and size (in millimetres) in the EDID block21:37
akikgnome has locked the dpi to 96 and they've also locked the minimum size for icons21:37
nanodroneit's simple math too, i've seen webapps scale better than most DEs21:38
aroonihere i am hahaha21:38
TJ-arooni: silly!21:38
TJ-arooni: so the suspend/resume works OK now?21:38
nanodroneTJ-, pos21:39
arooniTJ-: as far as i can tell; i'm not sure if i should be using     sudo systemctl suspend; systemctl suspend; or systemctl suspend -i21:39
arooniTJ-: also; is there a recommended way to make sure my computer suspends / wakes up at a certain time every day21:39
TJ-arooni: the systemctl -i suspend will not give you chance to consider if you need to stop an application first. without -i you'll get a list of applications holding a lock so you can consider if it is acceptable to stop them. Think, e.g., of an application doing a background download of files21:40
arooniTJ-: gotcha21:40
arooniso do i run it w/ w/o sudo21:40
TJ-arooni: for the timed suspend a cron job. for the resume, you'd need to use the real time clock (RTC) alarm functions to wake the PC up21:41
TJ-arooni: as far as I recall systemctl suspend works without sudo21:41
arooni//gist.github.com/16993885cfdc4afb9ac5a2c8bc4f43e621:42
arooniTJ-:  i was using this script for awhile which suspended but didnt seem to wake up the computer without it being locked21:42
aroonihttps://gist.github.com/16993885cfdc4afb9ac5a2c8bc4f43e621:42
dan01kostkon: neah, scaling didn't do it. drop down menus? how do I fix that?21:43
TJ-arooni: firstly check the PC can wake from S4 sleep: "dmesg | grep RTC"21:44
arooniTJ-: i did see this ; [    0.986785] rtc_cmos 00:02: RTC can wake from S4; and [    0.083964] RTC time: 21:29:37, date: 10/26/1721:44
TJ-arooni: ahh, yes, your script is about what I'd expect21:44
kostkondan01, I'm not sure I can help you I haven't touched gnome shell yet21:46
arooniTJ-: should that script be invoked from my normal user or sudo's user21:46
TJ-arooni: it has "sudo" calls in it so it'd be for the invoking user21:48
arooniTJ-: just didnt know if there is any downside to calling for a suspend from root21:48
TJ-arooni: usually it's the other way around :)21:49
arooniTJ-: well since my normal user cant run sudo without a password; i think i should invoke that script from root21:53
aroonibecause the point of that script is to stop me from using my computer when i should be going to bed lol21:53
TJ-arooni: LOL it's that bad?!21:55
arooniTJ-: insomnia is the worst; don't try it trust me haha21:55
TJ-arooni: I know it well21:56
TJ-arooni: my solution is to continue without sleep until the next night :)21:56
aroonioh man; you have incredible willpower21:56
aroonii tend to mess up my sleep cycle the nights i cant sleep with naps throughout the day21:56
TJ-arooni: right, well I hope your script does the job... I just don't see how, as the computer owner, you can't just countermand it :D21:57
shakermakerhello21:58
arooniTJ-: well usually i'm just doing something or playing the guitar and then it turns itself off and then i'm like 'time to go to bed21:59
aroonianyway thanks for your help21:59
Svetaarooni: it is also called self discipline22:27
Svetanot only will power22:27
Svetashakermaker: hi :)22:28
blackal3xso i did a fresh install of ubuntu (mate) 17.10 and when I opened the lid to wake from closign earlier, the wifi adapter managed to stop working...22:28
blackal3xis there some terminal commands that would reinstate the wifi without doing a system restart?22:30
Svetayou can disable wifi using the hardware switch and then reenable it, or restart the networking service22:30
donofriois there a battlefield 1942 frontend - not emulated sorta like darkplaces but instead of quake it's battlefield? (https://www.ea.com/en-gb/news/dice-battlefield-1942-free)22:47
donofriofor ubuntu of course, not wanting to use wine....22:49
daveomcdI've just installed 17.10, but I have a hidpi laptop screen. How can I get the overall ui to diplay larger without decreasing my resolution?22:52
Thunder_Twwine is not an emulator fyi22:53
kenrinYou want a quake battlefield 1942 frontend?  What does that have to do with ubuntu22:53
ikoniaOtterCoder: /win 122:53
ikoniaoops22:53
donofrioI want a ununtu native frontend for battlefield yes, just figured I'd ask cause I only really found wine howto22:53
kenrinbattlefield 1942 is a very old windows game.  It has nothing to do with linux,  use wine22:54
kenrinplayonlinux can help if you don't know wine that well22:55
donofrioyah I've used both thank you all....if anyone finds one let me know - I'll go back to mute22:55
=== Winter_ is now known as Loomy___
tgm4883donofrio: if anyone finds something that can't exist?22:56
=== Loomy___ is now known as Winter_
tgm4883donofrio: oh, I see what you're saying now. No, you're not going to find something like darkplaces for battlefield because the battlefield engine (refactor engine) isn't open source23:01
tgm4883refractor* engine23:01
dagerikDoing a Full AIDE scan on / takes a long time with many false positives. Which folders are worth checking?23:19
naccdagerik: if you're doing intrusion detection, it doesn't seem like you'd want to exclude anything23:21
grublesis it possible to downgrade xorg in 16.04 to a version that supports proprietary amd drivers?23:23
grublesi know it's possible for 14.0423:23
naccgrubles: i thinkn you mean support in the other direction23:23
naccgrubles: that the proprietary amd drivers support ... what version would that be?23:23
naccgrubles: do you mean the amdgpu-pro driver?23:24
grublesmy amd card is not supported by amdgpu23:24
naccgrubles: are you referring to fglrx then?23:25
grublesnacc: yes23:25
naccgrubles: that no longer exists, so no, you can't have that driver any longer23:26
naccgrubles: that's an AMD decision23:26
naccgrubles: if you want that driver, stay on 14.04, afaict23:26
grublesit exists here http://support.amd.com/en-us/download/linux23:26
grubleshm ok maybe the kernel is too new then23:27
naccgrubles: I don't know, but fglrx is not supported on 16.04 or later, if you want to use it, talk to amd, but it's not ubuntu at that point23:28
grublesnacc: ok. is it possible to downgrade xorg in 16.04?23:28
tatertotsgrubles: no23:28
naccgrubles: well, i mean, you can not run the hwe stack, presuming htat's what you mea23:29
naccgrubles: but i'm not sure what you mean23:29
grublesie installing xserver-xorg-lts-utopic23:29
grubleshttps://askubuntu.com/questions/676216/downgrade-xorg-server23:29
tatertotsgrubles: there is no more fglrx support..in ubuntu versions > 14.x23:29
tatertotsgrubles: and there's nothing you can do about it23:29
oerheksno, else reinstall 14.0423:30
naccgrubles: that's a hwe stack for 14.0423:30
grublesi se23:30
grublessee23:30
grublesthanks23:30
Iarfenapart from bin, usr/bin and usr/sbin is there another folder of binaries?23:48
kenrinlocal/bin ?23:48
kenrin~/23:49
bcowan   opt23:49
kenrinEasier to just echo $PATH and look23:50
oerheks /lib/firmware/23:50
naccIarfen: as kenrin said, totally depends23:50
Iarfenok23:50
Iarfenwhich are the default ones?23:51
naccIarfen: echo $PATH and see23:51
Iarfenok23:52

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