=== Sven_vB_ is now known as Sven_vB [00:10] sruli: well you want weird stuff [00:13] hello [00:14] any? [00:14] for do a ask ? [00:15] can you change interface for KDE ? [00:17] albertx, change to gnome? [00:27] Ben64: define wierd [00:29] bazhang: excuse me , no , I want KDE [00:35] sruli: Does it require root permissions to write any files to the local directory? Using sshfs shouldn't cause you to need to use sudo where you wouldn't otherwise need to. [00:35] Jordan_U: yes need sudo to write to local dir [00:37] sruli: Then what does that have to do with sshfs? No matter how you access the remote files you'll need root to write them to a local directory (if that local directory requires root permissions to write to). [00:38] Jordan_U: sshfs should not be mounted with sudo, if it's not you cant access the mount with sudo, i dont know of a way to copy the file as user and paste as root [00:40] * albertx searching ... interface kde [00:40] Ben64: is there a way with rsync to "--out-format="%n"" to file instead of stdout? [00:41] anyone know of a good blog or article on how to move a physical ubuntu os to vmware. without using vmware vCenter tool. [00:53] sruli: Looks like -o allow_other allows other users (including root) to read from an sshfs mount. [00:54] sruli: To use that option as non-root, you'll need to edit /etc/fuse.conf . [00:54] Jordan_U: need ot change ssh config to allow that, i am not sure of the wider implications of setting allow_other in ssh config [00:54] Jordan_U: sorry i meant fuse.conf [00:54] sruli: You do not need to change ssh config, only fuse configuration. [00:54] Jordan_U: not sure of the wider implications of setting that [00:59] sruli: Looks like the allow_other mount option allows any user access to any files (as long as the underlying fuse filesystem allows, for example you'll never be able to read files that require root access on the remote machine if you're logging in to the remote machine as non-root). Adding default_permissions makes it more secure by checking file modes. If you provide allow_root then only root (and the [00:59] mounting user) will be able to access the files. [01:01] sruli: As far as I can tell, the option is not allowed by default only because it might lead to users accidentally giving other users access that they did not intend to give. So it's to save you from shooting yourself in the foot security-wise. So just be careful to aim away from your toes (and probably stick to only using the allow_root mount option, even though you will be uncommenting [01:01] #user_allow_other in /etc/fuse.conf) . [01:02] Jordan_U: will try that, need to reboot after change? [01:07] so, i got ubuntu riced and installed, but now it won't shutdown.. o.O [01:08] it says "A stop job is running for Network Manager 55s / 1min 30 ss" [01:16] Jordan_U: thanks, saved me a bunc of time needing to rewrite my scripts [01:30] if i do "ssh user@server "do something" " does it auto logout when job complete? [01:31] you can test it by asking it to do `ls` [01:31] Sveta_: if comes back to my user in terminal, just want to be sure session has closed [01:32] i think it should show the directory listing too, i'll check in a moment [01:32] yes, `ssh sveta@remoteip ls` shows me the `ls` output at the remoteip machine and then logs out [01:32] Sveta_: yes it execute the "ls" just want to make the session logout [01:33] thanks [01:33] i think the answer is 'yes, it does auto logout' [01:33] no worries :) [01:34] night all [01:48] Greetings! [01:49] I'm having issue using openconnect on Kubuntu 17.10. I've created the profile, but when I press CONNECT nothing happens. [01:49] anyone with suggestions? [01:53] I'm having hard drive errors, but smartctl doesn't show any errors. Is there a simple way to test my drive? (USB drive) [01:54] I had to run fsck.ext4 and repair the fs, which put a few files in lost+found [01:55] snapfractalpop: what happened to get errors? Did your machine prematurely restart? [01:55] I think smartctl is solely for debugging SSD-specific problems [01:56] s/debugging/diagnosing/ [01:56] rfleming: I'm not sure what the original cause of the errors were.. but I have had the machine go down in a power outage [01:56] snapfractalpop: that's most likely the cause of your disk errors. [01:57] rfleming: is there a way to check that all the sectors are ok? [01:57] smart is only for disk diagnostics on a set number of sensors... used to predict when a disk will fail. [01:57] snapfractalpop: that's what fsck is for :) [01:57] I have had other drives go bad where sectors were reported as unusable [01:58] but if you want to do a surface scan, you can (I think) use the -c option in fsck [01:58] rfleming: I used fsck with -p, but I had to go interactive because of the nature of some of the errors [01:58] I manually said 'y' to everything.. but I want to run another scan to see what's up [01:59] I also had concerns that my USB controller could have issues.. but I'm not sure if that's a likely scenario [02:00] and to complicate things further, my syslog is getting spammed with "tag#0 Sense Key : Hardware Error [current] [descriptor]" [02:00] for a different drive, which is supposedly a false positive [02:01] still get shared folders working between lubuntu and mint-de vms, despite the windows host my windows laptop being able to access the shares on both.... anyone have any other suggestions, have tried samba for hours, NFS as well [02:02] zztopless: idk your situation, but maybe a simple http server would suffice? [02:02] node has a package called http-server [02:02] and python has python -M SimpleHTTPServer or something like that [02:03] snapfractalpop: Most hard drives are supported : https://www.smartmontools.org/ ; https://www.smartmontools.org/wiki/TocDoc ; https://help.ubuntu.com/community/Smartmontools . [02:03] node? [02:04] I'm wondering if sticking another hdd in mt pfsense box and using one of the file sharing packages might be better in the short term? [02:04] Bashing-om: I have some success with doing: sudo smartctl -a -d sat /dev/sdd [02:05] Bashing-om: but the option in the gui of the gnome disk utility (disks) is grayed out [02:05] zztopless: node as in nodejs [02:05] ah [02:05] zztopless: if you have it installed.. otherwise, the python one works well too [02:06] zztopless: but I remember nodejs being faster at bulk transfers over http for some reason in my tests [02:06] snapfractalpop: Can not advise about the GUI interface - never used it myself . [02:06] k, will have a look at both [02:07] Bashing-om: is that command I mentioned the proper way to query the drive? Is this something that the drive will have data on, or do I have to set something up in fstab? [02:07] I do have python installed, [02:07] mostly just because it's so often needed to compile packages [02:08] zztopless: try cd /path/to/share/directory; [02:08] zztopless: then: python -m SimpleHTTPServer [02:09] zztopless: then from the other computer (on the same subnet) navigate to it's ip address [02:09] zztopless: probably something like 192.168.0.xxx [02:10] zztopless: and add a ":8000" at the end.. or whatever port the server says it's running on [02:10] snapfractalpop: I have not seen 'sat' - will have to consukt the manual . .. try as ' sudo smartctl -a -d ata /dev/sdd ' . Where you "know" that the target is that 4th drive . [02:13] ok, will give it a go [02:13] Bashing-om: I get "Read Device Identity failed: Invalid argument" [02:13] Bashing-om: and "A mandatory SMART command failed: exiting. To continue, add one or more '-T permissive' options." [02:14] Bashing-om: but if I s/ata/sat/ I get some results.. [02:17] SmearedBeard: ' sudo smartctl -a /dev/sdd ' let's say presently that we are not accessing with libata such then that 'ata' is invalid . [02:21] Bashing-om: this is my output when I use "-d sat" https://ghostbin.com/paste/ygbao [02:23] snapfractalpop: looking. [02:23] Bashing-om: thanks [02:27] snapfractalpop: That seems good to me . A deeper ( and takes a long time ) test is as ' sudo smartctl -t long /dev/sdd ' . [02:28] Bashing-om: ok, I'll try that. That would be a "self test" right? [02:28] Bashing-om: is it weird that no errors showed when I had to do fsck? [02:29] snapfractalpop: Yes .. just run the command in terminal .. and wait ---- wait for it wait . [02:29] or is smartmon confirming that the hardware is ok, and fsck was showing that the filesystem got messed up somehow? [02:30] snapfractalpop: Depends on what outputs you wanted fsck to report . What is the fsck command that you ran ? [02:30] snapfractalpop: Not at all uncommon for the file system to become inconsistent .. and the hardware is just fine . [02:31] Bashing-om: well, at first I just noticed the drive was sluggish, and sometimes not mounting. then I checked /var/log/syslog, and found that it recommended running fsck, so I ran that as "sudo fsck.ext4 -p -C0" [02:31] and it said that some decisions would need to be made manually.. [02:31] so I ran again without the "-p" and said 'y' to everything.. [02:31] but some files ended up in lost+found, and I didn't see any hardware errors in smartmon [02:34] Bashing-om: so now I want to be careful, and check the hardware for errors [02:34] snapfractalpop: Well as you now know ' -p ' : -p trys fixes where response not required . Now I do consider that the file checking routines in fsck are a lot smarter than I am ! . "-y ' : auto answers yes for fixes needing response . [02:36] snapfractalpop: What led to determinning that sdd was the drive with issues ? [02:37] Bashing-om: well, now it is /dev/sde (it's an external usb drive, so the drive letter changes) [02:38] Bashing-om: I determine this by "tail -f /var/log/syslog" among other things [02:38] snapfractalpop: Good 'Nuf - the syslog does not lie :) [02:39] Bashing-om: hopefully.. although all this #tag0 spamming makes me wonder.. [02:40] snapfractalpop: Is there a change in reported errors when the USB port is changed ? [02:41] Bashing-om: for the #tag0 stuff? [02:41] snapfractalpop: someone strange happened, not sure if it was the python script, but after trying the usual methods, I just put the IP of the other other vm with the shared folder in (just the IP int he location var, no \\ or SMB or suffixed with the shared folder name [02:41] and suddenly I was in the root of the file system at that IP [02:42] zztopless: in which directory did you run python -m SimpleHTTPServer? [02:44] Jus6 checked, it didn't run, I made a typo (missed half the line copying it) [02:44] weird [02:44] Sgut [02:45] sorry, ignore that [02:45] got 2 horus sleep last night (1:45PM now) [02:46] I was looking in the other vm, I ran it in the target shared folder, /media/contribute/ [02:46] and in the client vm, when I go into /media I see that folder and one labelled lubuntu [02:47] for the record there are other folders in media [02:47] zztopless: wait, these are vms? ah.. I didn't know that.. I'm not sure if there is some NAT happening then.. [02:48] zztopless: are all of these vms in the same subnet? [02:48] they are, but both running in bridged mode with assigned IPs at the router/firewall (pfsense) [02:48] yep [02:49] they can both access various windows shares from computes around my apartment [02:49] zztopless: that's strange.. I have never had SimpleHTTPServer serve anything but the current directory it was run in [02:50] And I was testing using was as a TOR/Freenet/I2P server and the other VM and my PC as clients, and that worked fine too [02:51] well I get a permission error when trying to creat a folder or file, so let's see if I can get that fixed first [02:52] zztopless: to be clear, the machine with the share folder (lets say it has ip: 192.168.0.3), you cd to /media/contribute, then run python -m SimpleHTTPServer and from the other computer, go to your web browser (chromium, firefox, brave, whatever) and type 192.168.0.3:8000 in the address bar, and that shows you the root directory of the machine with the share? [02:54] hmm actually not sure if it's working, I had queued up coping the folder structure in /media from the server to the client, via windows.. yep, that's what happened, just have started it [02:54] been a weird day [02:55] zztopless: that is strange [02:55] https://forum.pfsense.org/index.php?topic=57475.0 could be promising... my pfsense box is way under-used [02:56] zztopless: what happens when you run "ll" in the /media/contribute directory? [02:56] that should show you permissions.. [02:56] and list the files and directories [02:57] looking for a tool like assogiate [02:57] "ubuntu-tweak" doesn't work anymore for me [02:58] Bashing-om: btw, I ran the smartctl -t command (I had to specify "-d sat" again), and it seems like the "job" or whatever it might be called went to the background [02:59] Bashing-om: the command prompt came back, and there is a message that the Test will be complete in 196 minutes [02:59] Bashing-om: I guess the test is running in "offline mode" [03:00] snapfractalpop: one sec, copying the output gave me unsupported characters [03:01] total 16 [03:01] drwx------ 1 user user 4096 Nov 2 08:03 ./ [03:01] drwx------ 1 user user 12288 Nov 2 08:05 ../ [03:04] snapfractalpop: Yeah .. will take a long time .. [03:05] Bashing-om: if everything looks ok after the self-test, I wonder then if I could also have a USB bus controller problem.. [03:05] not sure how such a thing could be tested [03:08] zztopless: so, there is nothing inside that directory? [03:08] not yet [03:09] zztopless: the methods I was describing are not writable, AFAIK [03:09] There will be [03:10] in other words, using the simple http server in this way will only make those files available to download from other local networked devices, but not to upload [03:10] That's ok, I'll work it out eventually, appreciate the help === TikTok is now known as michealb [03:11] That could work as a poor last resort by putting it on the other end an having a script copy the contents periodically, timed with a script and the other end that empties it (to not waste space) [03:11] zztopless: but if you want to have data going "both directions", you might want to look into ssh [03:12] Very convoluted compared to a simple shared folder between to OSs that are essentially the same :/ [03:12] I'm pretty sure the default setting for openssh-server is to allow sftp [03:12] I did have a quick dabble with sshfs earlier [03:13] I've had success with it in the past, but forgot everything I learned, though I do remember one particular file manager was set up to work really with with it [03:13] and you can then use the pub keys (usually ~/.ssh/id_rsa.pub) and append them to the respective authorized keys file [03:13] (~/.ssh/authorized_keys) [03:14] zztopless: Both boxes 'buntu and in the same house on a shared router ? : http://ubuntuforums.org/showthread.php?t=2159449 . [03:14] yes [03:14] then you can have secure sftp, which the file browser can treat as regular local files via sshfs [03:15] yeah, that's what I was looking at - hopefully works :P [03:16] Gonna take a break for a few hours, been up since 5am as my GF starts work at insane-people o'clock and her car's being repaired atm [03:19] Going to bite the bullet and get a NAS in a few weeks (nothing fancy, just large enough to give 10TB of usable space with (probably) RAID5. Should make sorting out share folders and what not a lot simpler you'd hope [03:20] what flavour Ubuntu do you use snapfractalpop? [03:20] zztopless: I'm on UbuntuStudio [03:21] which uses xfce, so it's a bit like xubuntu, but with lowlatency kernel out of the box [03:21] zztopless: what are you running? [03:22] Kubuntu, the Mint-KDE have always been my preferred (the two are very similar) [03:22] http://www.active-technologies.com/content/ubuntu-file-type-control-mime-control [03:22] what happened to assogiate [03:22] I like lubuntu with it's low footprint when needed [03:22] zztopless: lets keep it support related mate [03:23] we have a nice #ubuntu-discuss channel :p [03:24] After years of doing most of my work on Kubuntu/Mint (mostly marketing consulting these days, but was a lot more setting up websites for small businesses when i started it), I still use Windows as my host [03:24] Not sure why [03:24] sorry [03:24] does anyone know of any file type GUI tool [03:24] ubuntu-tweak doesn't work for me [03:25] gotta run for a bit, thanks for the help guys, snapfractalpop especially. === zztopless is now known as zz-afk [03:25] zztopless: well, good luck on setting it up. [03:26] thanks :-) [03:26] zz-afk: you're welcome [03:26] zz-afk: be sure to look into ssh though, it's easier than you might think [03:27] thanks, will do absolutely [03:28] all I want to do is associate a file type with a portable application in my home folder [03:28] and I don't want to have to make stupid files and use xdg-mime to do it [03:28] i just want to click and click and be done [03:29] bloop: your on mint? [03:29] no [03:29] ubuntu 16.04 [03:29] bloop: perhaps the #kubuntu guys might know some package? [03:41] this is really dumb [03:41] I put the launcher in /usr/share/applications and it's still not present in "open with" view all applications [03:42] how do people associate programs with file types on ubuntu? [03:42] without hacking out a stupid XML file for each and every single one [03:43] bloop: https://askubuntu.com/questions/171098/how-do-i-change-a-documents-extension-file-extension-file-format [03:44] my application that I want to associate doesn't show up in the list [03:44] like I just said [03:44] 10 seconds ago [03:45] and for some RIDICULOUS reason... ubuntu doesn't have a browse option [03:45] like windows [03:46] bloop: calm down mate [03:46] bloop: wich app are we talking about? [03:46] why does it matter? [03:46] it's a portable app [03:47] i copied the launcher into /usr/share/applications [03:48] bloop: the more info you give us, the better we can help you [03:48] what I want is a file type and association manager like in ubuntu-tweak [03:48] but it doesn't work anymore and is discontinued [03:54] bloop: wich extension are we talking about? [03:54] it's sublime text and I want several extensions [03:55] but that doesn't matter [03:55] because the problem is general [03:56] HOLY poop! I setup postfix as an SMTP local-send-only server earlier today, started to add sasl to make it remote accessible, checked logs, and WHAMBAM logs -> NOQUEUE: reject: RCPT from unknown[23.227.207.153]: 454 4.7.1 : Relay access denied; from= to= proto=ESMTP helo= :o [03:56] Can’t u just open the file right click and then select the open with????? [03:56] my postfix rejected an email from spameri too :) [03:57] I had no idea email spammers were so... active... on little servers [03:57] I did find a cool thing though: https://groups.google.com/forum/#!topic/news.admin.net-abuse.email/FluMw5tx0xo [03:58] they probably send to all addresses [03:58] was within 15 minutes after setting 'inet_interfaces = all' [03:58] heh [03:59] bcowan, nope [04:00] bcowan, you can only choose from a list of files on your system that were installed a certain way [04:00] Hmmm I have the option to open with other application here [04:01] bcowan, screenshot [04:01] bcowan, I mean yes [04:01] there is "open with" [04:01] but that list of applications is a list of applications that were installed in a very specific way [04:01] you can't just "browse" [04:01] and select a file like on windows [04:01] for some absurd reason [04:04] SmokinGrunts: try in #ubuntu-server perhaps? [04:05] Yeah I see, they send u to the stupid software center too [04:05] lotuspsychje, I shall, thanks. Tried here for visibilty first [04:07] i probably can't associate a file type with a program in my home directory because "muh security" [04:07] pffft === r0Oter is now known as r00ter [04:11] Hey [04:11] What is the default permissions of the a root owned directory such as /var/www/html/? [04:14] rgb-one: I have seen that owned by www-data or apache2 user instead of root.. [04:25] I didn't have luck doing a UEFI install until I did it with a DVD drive [04:25] snapfractalpop: I was referring to permissions in the form of 0755 and such [04:25] 0755 is the default from what I read [04:26] rgb-one: yes, 0755 is what I've always seen as well [04:27] rgb-one: usually, 0755 for directories, and 0644 for files in there [04:28] rgb-one: but I do not think that is true for all "root" owned directories [04:32] snapfractalpop: Oh === thurstylark is now known as thursdaylark [05:36] Need 8GB free space for Windows Update (Win 10-64 bit) | Small SSD, have GRUB 2 and Ubuntu 14.04 LTS on same SSD with Windows 10 install | Only have 6GB space in the Windows 10 partition free, no way to clear any more without attacking System/SystemResource folders for space | [05:37] Have unformatted space of 6GB, could use, but only if I convert Disk0 to dynamic disk [05:37] With dynamic disk conversion in Windows Disk Management, will I lose GRUB 2/Ubuntu function? [05:37] aka, will it kill my grub setup [05:38] If I figure this out on my own/hard way I'll report my findings ... [05:40] !dualboot | ttgg [05:40] ttgg: Dual boot instructions: x86/AMD64: https://help.ubuntu.com/community/DualBoot/Windows - Macs: https://help.ubuntu.com/community/MacBookPro https://help.ubuntu.com/community/YabootConfigurationForMacintoshPowerPCsDualBoot [05:45] I already have dual boot setup and functioning. This is a disk partition/space management question, really more towards Microsoft because of the dynamic disk conversion would have to be initiated from Windows diskmgmt tool. I figured I'd ask here, since I thought this question would have come up before. [05:45] It's cool though, I'll figure out a solution. [05:47] ttgg: i think to expand a partition on ubuntu you can chroot from a liveusb, for windows expanding partition, ask i ##windows plz [05:48] Hey everyone, I've reformatted my SSD multiple times and can't for the life of me remove GRUB off of it, would clean all from diskpart from a windows 7 install disk remove it 100%? [05:50] Desez2tPunk, you try gparted from a liveboot? [05:50] Desez2tPunk: have you removed every partition? [05:50] Desez2tPunk: dban / raw re-write if you're just trying to blow the disk out. [05:51] sudo dd does all sorts of fun stuff, with the right user [05:52] Does dd manipulate the disk directly? Or does it deal with files? [05:54] reads and writes raw device files thru kernel [05:54] SmokinGrunts: Have not tried gparted from a liveboot, however with a windows install deleted every partition, and true formatted and now trying clean all in diskpart from windows 7 install disc, no usb available. Cobrax, deleted with windows install all partitions. [05:55] ttgg: Never heard of it but it seems interesting, will look into for future needs :) [05:56] disable safeboot in your bios and use gparted in a liveboot, imo [05:57] Technically clean all in diskpart supposedly writes 0 on everything, so I assume that'd get rid of grub, however at this rate I thought a full format woud have gotten rid of it but I was wrong LOL [05:57] windows always leaves weird things; ghosts, corruption, problems and issues :P [06:00] SmokinGrunts: Oh trust me, I prefer Linux, as of right now I'm running Kali on my laptop haha. Unfortunately this is being done for a friend, it started off as a simple lets move the windows from an HDD to an SSD but the SSD previously had a linux install, so I figured removing all partitions would remove grub and the linux install but to my surprise..... GRUB to the rescue! If only GRUB wasn't this good at staying alive..... (Ha [06:03] sounds like you just missed something [06:05] ttgg: sounds like you have non continuous space, that's why windows wants to make it dynamic. You could; or you could boot into a live cd and *move* the ubuntu installation so that windows gets more continuous space [06:05] Desez2tPunk: how are you formatting the SSD without removing grub? [06:06] also be aware of the differences between an MBR and GPT [06:07] also, best bet for Windows ALWAYS: backup your files and do a clean install ;) [06:09] alkisg: using a windows 7 install disc I used the command prompt and diskpart to format. [06:11] Desez2tPunk: sounds like you missed step 6, "clean": http://knowledge.seagate.com/articles/en_US/FAQ/005929en [06:11] SmokinGrunts: Oh trust me that's the one thing I've aways learned bahaha... I'm attempting to do that now, clean all finally removed grub however the windows install disc is throwing an error saying it can't make a new system partition, which I then made manually and it still won't install (I assumed GRUB was messing with it, guess not.) off to #windows I go [06:11] reading material https://wiki.manjaro.org/index.php?title=Some_basics_of_MBR_v/s_GPT_and_BIOS_v/s_UEFI [06:11] Formatting a partition isn't the same as clearing the mbr [06:11] use gparted or another *nix tool to first clean, then setup your drives/partitions as you'd like. Then run OS installations [06:12] alkisg: Tried clean after formatting, and just now did clean all, GRUB removed, now to get dumb windows to install properly. I wish I could just install Linux lol [06:13] thanks alkisg your solution is the most elegant for my needs. It is trivial to point GRUB to a different mount point for Ubuntu, but moving Windows around in real life, is like moving Windows around in Minecraft. [06:13] Eh, nowadays installing win10 is quite fast [06:13] SmokinGrunts: Thanks for the reading material, I was actually attempting to look into the difference between MBR and GPT [06:13] damn, I had a great guide, but it's on my windoze box [06:13] np [06:13] best to learn when you have the chance; the opportunity provides motivation, which gives like +10 to learning skill [06:14] Win10 install, just did that about a week ago, was like... 1 hour~ magnitudes faster than 95-ME era installation, that's for sure. [06:14] skills stay with you, (some more than others...) and so it's like gold fer yer soul [06:15] Isn’t the MBr on the head of the drive? [06:15] yep, after firmwares [06:15] If you format it, how come it won’t be modified? [06:15] cuz windows? dunno heh [06:15] Cobrax: yes, sector 0. diskpart can format partitions, which start later. [06:16] Cobrax: it's like formatting /dev/sda1 in linux instead of /dev/sda [06:16] Yeah that’s ehat [06:17] I figured, if you format the entire drive there should be no GRUB [06:17] "format" is for partitions, while for mbr there's "clear" [06:17] Linux is a bit unique in that it can format (mkfs) the whole /dev/sda if someone really wants that [06:18] clear all also 0's everything out come to find out, in essence doing clears job, and full formatting [06:18] Wiping isn’t needed [06:19] Instead of doing clear I had done clear all which removed GRUB, granted took neary an hour for 223GB's lol. I know but we were going to wipe anyways. [06:19] it just uses up the lifetime of your drive [06:19] Unless you need to hide something [06:20] Not that I know of, was just hoping that would for sure get rid of GRUB which I found out it does lol [06:20] Does leenux view partitions are seperate devices? [06:21] SmokinGrunts: Mind if I PM you? [06:21] sure [06:34] Any ubuntu-users@lists.ubuntu.com moderators present? I've just sent an announcement about a brief downtime which I'd like approved, please. [06:38] blahdeblah: perhaps ask in #ubuntu-ops ? [06:38] #ubuntu-ops aren't mailing list moderators [06:38] lotuspsychje: already did - just covering my bases. :-) [06:39] I'm sure the right people will see it eventually; just trying multiple avenues to be sure. [06:40] it may be a good idea to ask the people when you find them which avenues they would prefer for future reference, since if I recall correctly this is a recurring thing. [06:41] Anyway, the downtime is at 2017-11-05 23:00 to 00:00 UTC (but hopefully will take much less time than that) - spread the word! :-) [06:41] Services affected: many Ubuntu/Canonical web sites [06:43] Come see us in #canonical-sysadmin with any questions. [06:45] hey [06:50] good shit! [06:52] I ain't never seen follow-through like that before. Or at least rarely. [06:59] Hi all, I have big problem with keyboard after upgrade fromm 17.04 to 17.10. Previously every works perfect, but after upgrade from time to time my keyboard repeated randomly characters - usualy reboot solves problem. Today after I wakeup my laptop from suspend mode, problem exist and even reboot not fixed this. The second thing is my touchpad stopped working [07:00] Of course I tried google the ssolution, but there is no fix for my problem [07:02] currently I changed delay in universal access, but now keyboard have mega lag [07:03] dj_drops, what's your kernel version? open a terminal, type 'uname -a' [07:03] also what keyboard [07:04] 4.13.0-16-generic #19-Ubuntu SMP Wed Oct 11 18:35:14 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux [07:04] SmokinGrunts: internal in notebook [07:06] I'm trying to install lamp-server on Ubuntu. [07:06] http://howtoubuntu.org/how-to-install-lamp-on-ubuntu this isn't the right place, right? [07:08] ReedK0: looks fine [07:08] https://help.ubuntu.com/community/ApacheMySQLPHP [07:08] except i guess it isn't 'sudo /etc/init.d/apache2 restart" anymore [07:08] it says php5 isn't in use [07:08] hrm. dj_drops I suggest posting a thread on askubuntu, provide all of that info. Someone's going to ask you what your model name of laptop is, what the driver info for the keyboard is, and all that. usual stuff. [07:08] oh maybe that too [07:09] someone told me there's official documents for such things [07:09] I think help.ubuntu.org is official? [07:09] it's the community wiki [07:10] SmokinGrunts: thanks [07:10] no prob, now go get it solved [07:11] ben try 'sudo service apache2 restart' [07:12] lol I do things too fast. [07:12] disregard [07:12] :o [07:18] https://wiki.ubuntu.com/Releases - "Long term support (LTS) releases are for 5 years." sounds weird, I'd add "supported" in-between... === sjd_zeus1 is now known as sjd_zeus [07:27] hey i have 2 program or process running i saw that they were running using top command but i want to automate them by automate i mean if 1 process stops/killed ( by user ) other stops automatically. if one starts other starts as well [07:29] for start what i can do is if program is appeard in top command i can run other command [07:32] does the RX570 work okay in Ubuntu? [07:33] AMD has let me down in the past: 9600XT, 5800, 7950, R9 280X [07:33] is the RX series any better? [07:38] hey [07:39] trying to run a command at startup, wont work [07:39] it's the command to restart dropbox [07:39] in Xubuntu [07:41] anyone have trouble with crontab or maybe rc.local? [07:42] EndlessMacro: neither will work for that, there is a settings panel for startup tasks - use that instead [07:43] i have that window open [07:43] Dropbox is set to start\ [07:44] but the dropbox icon doesnt works until I run the command [07:44] make an entry for it under 'application autostart [07:45] ok i'll try that [07:45] can you please explain why it doesn't work in crontab or rc.local? [07:47] those are for system services, run as root, not your user, and have no access to your graphical session (both because of permissions etc and because they run before you even log in) [07:48] makes sense [07:50] hey i have bash script converted into binary shc to to decrypt it so i can change it :) [07:50] http://www.thegeekstuff.com/2012/05/encrypt-bash-shell-script/ [07:53] cool_dude: you don't have the original script? [07:53] no [07:54] that might be because you're not intended to mess with it [07:54] you can say that this is of challange from a friend [07:55] i have to decrypt and tell him that what was a script [07:55] ok, then it's up to you to figure it out :) [07:55] this isn't an ubuntu issue, sorry. [07:56] how can I get my CA authority to get back to me in a timely manner? [07:56] then which channel would help me ? [07:58] https://github.com/yanncam/UnSHc [07:58] tgfgit [07:59] thanks SmokinGrunts [07:59] ye [08:03] ducasse, i found solution, i had to disable dropbox at startup, then add a new entry like you said [08:04] ducasse, if i dont disable the default dropbox app in startup window, it doesnt work [08:06] EndlessMacro: you'll only need that entry, correct. [08:30] how hard it is to decrypt oppenssl encrypted file without password ? [08:30] i'm trying to boot ubuntu, but it's stuck at "A start job is running for Login to default ISCSI targets (7min 51s / no limit)" [08:30] and that is still counting [08:30] how can i stop that? [08:30] and that "no limit" is just completely and utterly stupid [08:31] cool_dude: impossible [08:31] why [08:31] i have very powerful gpu [08:31] ...because it's encrypted, that's it's job [08:32] i have root access [08:32] p100 gpu [08:32] https://bugs.launchpad.net/ubuntu/+source/kickseed/+bug/548617 | https://ubuntuforums.org/showthread.php?t=1583952 [08:32] on cloud [08:32] Launchpad bug 546929 in linux (Ubuntu Lucid) "duplicate for #548617 most PATA/SATA modules missing in Lucid netboot" [Critical,Fix released] [08:32] zamba: ^ [08:33] any decryption method [08:33] cool_dude: ok then it might only take you 26975707677015035472426 years [08:33] zamba: iscsi=false [08:33] how much power is needed ? [08:34] depends how long the key is [08:34] cool_dude: only the NSA might know the answer to that [08:34] 10-12 digits probably [08:34] don't guess [08:34] with salt [08:35] not more then 15 for sure [08:35] that's not a key [08:35] aes-256-cbc [08:35] will take forever [08:36] cool_dude: if you'd be able to do this, the Internet would be broken [08:36] but people even hack ssl [08:36] so short answer is ? [08:36] no [08:39] * cool_dude off-topic : what is difference openssl certificate and openssl file encryption ? [08:45] cool_dude: short answer is "you can't crack aes" [08:45] cool_dude: and for your other question, if you know it's offtopic, why ask here at all? [08:46] because openssl channel on irc is not online [08:46] i know difference but want to conform [08:46] cool_dude: that doesn't make this the channel to ask in [08:47] hmm [08:47] sorry for that [08:47] \o/ [08:47] Hi :) [08:47] cool_dude: did you use ##openssl? 176 people in there... [08:47] yes [08:48] no answer :9 [08:48] :( [08:48] nm [08:49] hmm aes is unhackable [08:49] cool_dude: that might be because the way the question is phrased currently sounds a bit like "comparing apples to oranges" [08:49] hmm [08:49] ssl vs encryption lol [08:50] hey is ppa esay to manage [08:51] or i should be expert in that ? [08:51] should I marry a wife, or buy a hooker? [08:51] marry a hooker and buy a wife? [08:52] double rot-13 encryption [08:52] cool_dude: if you know nothing about building from source and debian/ubuntu packaging, you need to read up on it first. [08:53] they'll sing ballads at my funeral of the man that 'really did it.' [08:54] thanks ducasse [08:54] cool_dude is just keepin' us on our collective toes. [08:54] * SmokinGrunts shakes cool_dude's hand [08:55] * cool_dude shakes SmokinGrunts’s hand [08:55] lol [08:55] lets go buy hookers. [08:55] Hey guys, I recently updated myself from Win10 to Ubuntu 17.10 (Tried even before, but it didn't worked for me becouse could not get proper display resolution even with cvt, xrandr etc.), but with latest version, it works fine. But now I have another issue. Since I'm using Skype a lot, everyday for communication with coworkers, parents etc., I'm somehow forced to use it. My issue is that I'm getting annoying crackling sound while on c [08:56] Has someone got in that trouble, and possibly solved it? [08:56] deiks: your first line got off after "crackling sound while on c" [08:57] cut [08:57] stop getting the latest and greatest. it's never actually that. get LTS. Don't ever get a new windows release unless it's at least a year-and-a-half-old. damn. [08:57] 16.04 lts [08:57] ye [08:57] personal choice [08:58] mutante: My issue is that I'm getting annoying crackling sound while on call.. [08:58] thats all :) [08:59] deiks: it almost sounds like it might be a hardware issue, like the plug on the cable on a headset? [08:59] re" crackling sounds" [09:00] there could be an issue with: driver issues, spurious high-power electromagnetic emissions nearby, a shoddy partial break-in-the-wire going to speakers, a bad jack connection, or probably ghosts in the machine [09:01] Or bad echo reduction code from skype [09:01] honestly, it's gotta be lack of hookers [09:01] Try writing your voice in some other software to see if there are cracks there [09:01] SmokinGrunts: it's a support channel, maybe join #ubuntu-offtopic for chat... [09:01] SmokinGrunts: we try to keep this channel family friendly, so please drop that [09:02] my bad, I couldn't resist... [09:02] I'm sorry, sincerely [09:02] mutante: on windows working very well while skyping, also on ubuntu works fine with youtube etc., just problem with skype.. and same with audio card output, and headset usb [09:02] just fall-back to most likely a driver issue with sound [09:03] deiks: do your call partners also hear the crackling or is it only on your end? did you use the skype test call to test? [09:03] what kernel and soundcard driver do ye have? [09:03] deiks: there was just a big version update for skypeforlinux. it went from 5.5 to 8.9 [09:04] just me, and also same with test call. But sometimes crackling leaves, and I can hear fine [09:04] could be pulseaudio latency: https://bbs.archlinux.org/viewtopic.php?id=164959 [09:04] then, again, it returns [09:04] hardware is intermittent, from my experience: https://askubuntu.com/questions/617160/crackling-during-skype-calls-what-can-i-do [09:05] check yo cord [09:07] you can test by doing a recording, and jiggling (GENTLY) the area around where the headset/microphone connects [09:07] that'll rule out hardware [09:07] deiks: also test with another headset [09:07] at least, external hardware [09:10] akik: didn't tried with another headset, but two ways works same.. sound card on one side and headset on another [09:11] deiks: i didn't quite understand [09:12] well, I'm getting same problem if using headset (USB), or without headset [09:14] could be the jack, if it get a lot of use deiks [09:15] but if I were ye, I'd try every software avenue first [09:15] SmokinGrunts: he gets the crackling also without using the jack [09:15] oic [09:16] prolly i/o then [09:17] deiks: have you tested other video calling apps except skype? === nitemare is now known as trobotham [09:20] I didn't, but will later when get back to home :) Could be something general for "calling", dunno === SmokinGrunts is now known as SG_Sleeps [09:34] why's one of my KVM guests have a nicely colored terminal when I SSH into it remotely, but another isn't so nicely colored? [09:34] all systems are 16.04 [09:34] Good morning, my rig running Ubuntu 17.10 crashed earlier and now during boot I get a message that disappears way too quickly to read all of it. Something about connecting to lvmetad. Where could I see this full error message? [09:35] SG_Sleeps: echo "$PS1$PS2" to see the variables that make up the prompt [09:35] dmesg [09:35] Ah, is that the whole terminal, and not just the prompt? [09:35] dmesg | less [09:36] I think journalctl also works these days... [09:36] Is mini.iso dd'able to a usb stick? [09:37] server 1: \[\e]0;\u@\h: \w\a\]${debian_chroot:+($debian_chroot)}\u@\h:\w\$ > [09:37] server 2: \[\e]0;\u@\h: \w\a\]${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ > [09:37] different terminal color-escape codes? [09:37] if subcomponent of my software is using Apache 2.0 licence, do I have to follow it or can I use MIT? === KindTwo is now known as KindOne [09:38] yeh, justa buncha color differences. but why...? [09:40] Good morning, my rig running Ubuntu 17.10 crashed earlier and now during boot I get a message that disappears way too quickly to read all of it. Something about connecting to lvmetad. Where could I see this full error message? [09:40] BeardBr0: people here answered you already about dmesg and journalctl... [09:40] oh man [09:41] sorry I didnt mean to do that :/ [09:46] BeardBr0, check /var/log [09:46] also ^^ those other things [09:47] Alright so besides not paying attention I could use some help. This error that I am seeing is on a clean install and what ends up happening is when the computer boots up my secondary monitor (in portrait) is where the login prompt gets displayed but in landscape [09:48] Im not sure if there is anything else that happens but for examply the nvidia x server wont launch and randomly Ill have apps that get stuck [09:49] the install media checks itself out and I believe my SSD also is alright [09:52] using proprietary or else? [09:52] proprietary driver* [09:53] yes correct [09:53] legit question, should I not be? [09:53] def legit [09:53] annoying I bet [09:53] tis either a driver or an xserver issue for sure [09:54] didja try a community release? [09:54] nope, I dont know how [09:54] check this: https://askubuntu.com/questions/126857/dual-monitor-configuration-with-one-in-landscape-mode-and-the-other-in-portrait [09:54] I got basic things down kinda even with KDE earlier I was running into random crashes [09:55] Maybe try an lts version like 16.04? [09:55] @SG_Sleeps, so thats not a problem [09:55] after I login everything is normal [09:55] oh check flags for grub video [09:55] prolly? [09:55] but prior to having that crash and when I had everything configured for ~3 days it just worked [09:56] no idea what that means [09:56] okay this is my last one tonight, I swear! [09:56] @alkisg, yeah if I cant figure out what that message I am seeing at boot is I might as well [09:56] BeardBr0: doesn't it show up in `dmesg` ? [09:57] alright, hookers. Just kidding. It's gotta be rotation somewhere in xserver config [09:57] I mean not 'gotta,' but 'maybe' [09:57] Howdy folks [09:57] @alkisg, no sorry I dont see it if I search for like key words nothing shows up [09:58] @SG_Sleeps, no worries thank you for your help. I dont want to keep you if you need to get some sleep [09:58] 3/4's of my screen us white and the rest is gray. I am using kde. How do I fix this? [09:58] I don't even know what it is... I just lay there and suddenly sometimes it's a new day... it's some weird magician's trick, I'm sure... [09:58] R13ose: if you logout to the display manager, does it work fine? [09:59] alkisg: can't logout, unless there is a shortcut, I can try [09:59] @SG_Sleeps, lol time traveller [09:59] :/ [09:59] R13ose: you have autologin enabled? [09:59] Nope. [10:00] R13ose: so then you do see the login screen when the pc boots [10:00] Is that affected? [10:01] fresh install of what version, what is 'uname -a' output, what version proprietary nvidia driver is being used, and is this only upon first-boot? [10:01] alkisg: this is when I can run applications not before. [10:02] R13ose: that doesn't answer my question. When Kubuntu boots, you see the login screen where you enter the username/password to login. Does the display work fine there? [10:02] @SG_Sleeps, you talking to me? [10:02] ye [10:02] alkisg: yes [10:02] srys [10:03] R13ose: ok then the problem sounds specific to kde, which I don't use, sorry [10:03] Grrrrr [10:03] @SG_Sleeps, Linux BeardBr0-MS 4.13.0-16-generic #19-Ubuntu SMP Wed Oct 11 18:35:14 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux [10:04] And yeah that error message is appearing every boot [10:04] okies, now nvidia driver release version [10:04] shit I dunno what the grep would be for dmesg here [10:05] @R13ose, I was trying out KDE but man oh man random app/menu crashes I gave up [10:05] Gnome is better? [10:05] @SG_Sleeps, is there a way that I can pause boot when that error appears? [10:05] there's a log somewhere, or a way to -v a log [10:05] @R13ose, lol if mine was stable yeah it seems snappier and doesnt glitch out coming out of sleep [10:06] hrm [10:06] @R13ose, but it does take a bit of getting used to [10:06] R13ose: kubuntu 16.04 here working fine, using intel graphics [10:06] Okay [10:07] BeardBr0, try 'nvidia-smi' [10:07] @SG_Sleeps, the output is pretty but what am I doing with it? [10:07] version number [10:08] | NVIDIA-SMI 384.90 [10:08] same for driver [10:08] okay. next best bets are to use that in your searches, and also post it on either stack or askubuntu. but I bet it's a rotation setting somewhere... [10:09] :/ [10:09] @SG_Sleeps, no worries thank you once again :/ [10:09] aye [10:09] pass it on when ya can [10:09] Anybody knows how one should generate multi version ppa and that you dont have a conflict with the same .orig.gz ? [10:09] Im good at working with Windows rig. but I will when I can [10:10] brb [10:11] I'm using debuild -S -sa -uc -us to generate the files, but I guess I should be doing something differently ... as currently if I want to create both xenial and trusty ppa packages there's a file collision because they would both upload the same orig source file [10:15] i was downloading vim from git and i was trying to use make in vim/src. xubuntu is telling me no path for c compiler?? [10:16] Oh man I got the error message [10:18] WARNING: Failed to connec to lvmetad. Falling back to device scanning [10:19] aquza: apt-get install gcc ? [10:20] aquza: sudo apt install build-essential [10:20] i thought [10:20] its bassed installed? [10:24] hi. trying to install. both ubuntu and xubuntu hang on the splash screen. when I remove quiet splash I get to a tty, and can login [10:24] randomly it will give errors about a soft lockup on cpu#3, with [gpu-manager:1494] [10:25] !info vpn [10:25] Package vpn does not exist in artful [10:25] !info openvpn [10:25] openvpn (source: openvpn): virtual private network daemon. In component main, is optional. Version 2.4.3-4ubuntu1 (artful), package size 487 kB, installed size 1263 kB [10:25] this is 16.04, btw [10:26] theelous3: do you get the same symptom(s) with other linux distributions? yes or no...the only other acceptable response is "i don't know because i haven't tried other distributions" [10:27] tatertots: same with xubuntu, arch locks up on lspci [10:27] 17.10 insta freezed when trying to use xorg based de [10:28] lspci also locks up this tty [10:28] theelous3: when i use the term or phrase "other distributions" ideally something that absolves canonical [10:28] theelous3: but i understand [10:29] yeah, I'm pretty sure the issue is with polling lspci generally, as it's the same issue on ubuntu tty, and arch term [10:29] this may not really be exactly ubuntu specific, but it's the distro I want and am viewing the issue through, hope it's ok to ask here [10:30] theelous3: let's pretend that you found out the exact same "symptom(s)" occur in centOS,fedora,suse,redhat,debian,linuxmint. That would suggest your symptoms are NOT specific to any disto [10:31] some background: I had 16.04 working perfectly until I installed bumblebee and added a line to grub kernel options. This killed the install. Current issues are attempts at reinstalls [10:31] tatertots: yes, agreed [10:31] theelous3: and that your symptom(s) appear to stay isolated to the hardware pc. [10:32] they do indeed. my dualboot in to windows is available and working without issue. Last night I was randomly able to get the 17.1 live cd working and installed, but ran in to the issues with X I mentioned [10:33] I presume that was thanks to wayland just keeping the problem at bay though, rather than anything working correctly [10:33] theelous3: sadly most users will instinctively try to avoid doing any steps to trouble shoot to isolate their complaints or symoptoms [10:33] how to upgrade ubuntu to the latest version [10:34] tatertots: am willing to jump through as many hoops as possible [10:34] required* :P [10:34] !upgrade | arunkumar413 [10:34] arunkumar413: For upgrading, see the instructions at https://help.ubuntu.com/community/UpgradeNotes - see also http://www.ubuntu.com/desktop/get-ubuntu/upgrade [10:34] theelous3: saying your symptom(s) do not occur in windows isn't as useful or valid as you think on the surface. It's whats called a "apples vs oranges" comparison.....in short you can't compare them...they are two different things [10:35] theelous3: that's why i specifically asked if you had observed your symptoms occur in other "linux" distributions [10:35] yeah I know, just trying to give as much context as I can [10:35] apples vs apples [10:35] oranges vs oranges [10:35] I'm not a particularly advanced troubeshooter re: this kind of issue [10:37] theelous3: you don't need to be an advanced trouble shooter...i started this off pretend that you found out your symptoms were NOT specific to any distro to kinda not only to get you mentally engaged in trouble shooting but to also make a demarcation point [10:40] consider me mentally prepared [10:41] theelous3: start downloading some other linux distro iso file [10:41] i have arch here, will that do? [10:41] theelous3: depending on your net speed, and how fast you are at preparing boot/installation media..are things you can be doing in the background [10:42] (arch suffers the same lspci hang I get from ubuntu tty, but I can whip up a bootable anyway) [10:42] theelous3: see that's good...demarcation [10:43] theelous3: so we've manged to absolve canonical and most likely every other linux distro right there [10:43] theelous3: and all before i had a chance to put on coffee [10:43] :) [10:49] ls [10:49] ping [10:56] anyone there? [10:57] !ask | xtron [10:57] xtron: Please don't ask to ask a question, simply ask the question (all on ONE line and in the channel, so that others can read and follow it easily). If anyone knows the answer they will most likely reply. :-) See also !patience [11:07] EriC^^: I was building yocto and my ubuntu machine crashed (logout out), I need to findout the reason of crash, How can I? [11:15] xtron: you would need to be able to "debug" and or perform an logical analysis on the computer in question. The results of such an analysis is ideal data to be used to aid in solving or enlightening you as to "reason(s) of crash. [11:16] xtron: or you can take the illogical approach and just throw stuff at a wall and pray/hope something sticks === SimonNL is now known as SimonNL_Afk [11:35] tatertots: I think this due to Desktop environment crash (gnome), If I invoke the build in terminal mode (ctrl+alt+1) it works good [11:37] where is the correct place to ask questions about the backportpackage command? [11:37] hi [11:38] i run an "apt-get -y upgrade in a cron. and now it is blocked in waiting interactive answer to a question [11:38] https://gist.github.com/Dan33l/01fbc3da9a28c254b92d820254396ca8 [11:38] how to move from this situation ? [11:41] i don't understand why postix search to reconfigure an already configurer system [11:48] i've removed the locales package but it removed all the compiled locales [11:48] how can I remove it properly? [11:48] *"locales" [11:52] should i just remove its files manually? [11:55] I'm using tty1 for yocto build and tty7 as GUI desktop environment, but it's freezing (super slow) but point is why my CPU fans are not throutling at full speed, I think different tty are independent users so this should work anyway [11:55] hi all, had a power failure when my desktop was turned on. I boot in again, the wallpaper I've had for months, the xfce panel settings etc.. have all reset to default. how can that happen? [11:57] xtron: I don't understand what you are trying to describe [11:58] blip-: is that the same user account? [11:59] brainwash, yes :/ very odd. xfce settings got corrupted perhaps? [11:59] hi, I've recently installed Ubuntu 16.04 and hit one frustrating behaviour. I minimised a few terminal windows and they are hidden so I can't maximise them again. An image of them all shows up when I double-click the terminal icon in the launcher bar, but I when I click on them, they just go away. [11:59] brainwash: first I want to ask, this is a good practice to invoke cpu demanding tasks in terminal mode tty1 and keep working on web in GUI desktop, if it is,,, then why my system is responding slow [12:00] blip-: not sure if that's the case. the settings are located in ~/.config/xfce4/ [12:00] A new terminal I started since then similarly shows its snapshot when I double-click the launcher terminal icon, and I can bring focus to that one, but still clicking on the older ones doesn't select them. [12:02] xtron: it's not a good idea. a cpu hogging task will bring down system performance in any case [12:02] why can't I remove locale generation data w/o removing the locales themselves in ubuntu? [12:03] brainwash, thanks. yeah it all looks default. even Thunar settings have reset [12:03] xtron: maybe try with https://en.wikipedia.org/wiki/Nice_(Unix) [12:03] brainwash: reason was, during yocto build my desktop environment crashes (logout the running session, even build was running in background) so I comeup with this idea [12:03] blip-: that's really odd though [12:04] In the title bar there is only one an icon to close the terminal window, but none to maximise. [12:04] Hey guys. I'm trying to do a MySQL dump locally through SSH; I'm issuing this command "ssh user@myserver.com mysqldump --opt --where='1 limit 100000' -h external.host.com -ppassword -u user database > testdump.sql" but I'm getting this error: mysqldump: Got error: 1044: Access denied for user 'user'@'%' to database 'limit' when selecting the database. - When issuing the same command on the server it works fine. [12:05] xtron: I guess that could happen when your build process is using a huge amount of RAM [12:07] brainwash: nope, I've 16GiB RAM core i7 so this is not a problem, RAM usage was 4 GiB at time of crash, I think due to heavy CPU utilization Desktop Environment crashes [12:07] Repox: I would ask in the mysql channel [12:08] xtron: just the obvious, you could use `nice`. [12:08] I already suggested that [12:08] brainwash I'll try that, thanks. [12:08] also, check your system log files with journalctl [12:09] bencoman: what is nice? [12:09] I've linked you the wiki article.. [12:10] 7 minutes ago [12:10] see link above by brainwash [12:11] brainwash: yup, got it, but how it is related to GUI crash? [12:11] i can invoke make with -j8 flag to use all 8 cores [12:11] you said: "I think due to heavy CPU utilization Desktop Environment crashes" [12:12] brainwash: so you mean I should decrease the load? [12:13] run the build process with a lower priority [12:13] that should make the desktop more responsible [12:13] and less likely to crash I'd think [12:15] Is it possible to remove the first lines that gets printed at logon? (Motd.... "Documentation: ............" etc)? [12:17] it is possible [12:19] I think I did it by commenting out the motd related lines in /etc/pam.d/login [12:21] i have a problem with a wxwidgets app not using my gtk theme in xubuntu [12:21] brainwash, I found some files at /etc/update-mot.d/ [12:21] Going to comment out the 10-help-text and try that ;D [12:23] swensson: a package update may revert those files back to their original state [12:24] Ah, good to know! Making a copy of the files so it's just copy & paste if that happens, thanks for the tip brainwash ;D [12:25] turbo64: does your wxwidgets app use the gtk backend? [12:30] Hi [12:37] brainwash: i think so, its pcsx2 [12:37] but i think it might be something to do with multiarch because its a 32bit app [12:38] turbo64: best to run it from a terminal window. see if it gives you some error or warning messages [12:40] i dont get any error messages [12:42] oh wait nevermind its showing them when i run it with the --help argument [12:42] (PCSX2:9813): Gtk-WARNING **: Unable to locate theme engine in module_path: "pixmap", [12:42] it says that a bunch of times [12:43] aha [12:43] ah i figured it out [12:43] the pcsx2 package doesnt include gnome-themes-standard:i386 as a dependency [12:44] you probably only need gtk2-engines-pixbuf:i386 === SimonNL_Afk is now known as SimonNL [12:45] is that the pcsx2 package from the ubuntu repos? [12:48] anyone have issues with gnome-shell freezing on 17.10? [12:50] zxcv1729: did you test with gnome xorg? [12:50] brainwash: yes [12:50] brainwash: stil happens [12:50] it unfreezes by itself after some 10-20 seconds [12:50] while frozen only mouse cursor is usable, everything else including keyboard doesn't respond [12:51] I suggest checking https://bugs.launchpad.net/ubuntu/+source/gnome-shell/+bugs?orderby=-id&start=0 [12:52] running a fresh install of ubuntu 17.10 and currently experiencing a freeze after waking up from sleep - anyone else have this issue? [12:53] I was just checking some gnome related bug reports :) [12:54] bug 1728143 [12:54] bug 1728143 in gnome-shell (Ubuntu) "Screen freezes after waking from suspend with Gnome on Wayland" [Undecided,Incomplete] https://launchpad.net/bugs/1728143 [12:54] nathaneltitane: did you test with gnome xorg instead of gnome wayland? [12:54] My new 16.04.3 install boots to the grub prompt by default. I've to type exit to get to ubuntu. Anyone knows an easy way to fix this? [12:56] hi all, when trying "sudo apt-get install libmagickwand-dev" I get "libmagickwand-dev : requires: libmagickwand-6.q16-dev but is not going to be installed" (translated from German) [12:56] (I use mint sonya which uses ubuntu 16.04 xenial repos) [12:57] !mint | AydinChavez [12:57] AydinChavez: The Ubuntu channels can only provide support for Ubuntu and its official flavors, since other distributions and derivatives have repository and software changes. So please use their dedicated support venues, for example: Linux Mint (#linuxmint-help on irc.spotchat.org), Kali Linux (#kali-linux), and LXLE (#lxle) [12:57] ok thank you, will do! [12:58] codepython7771: you get no error message? [12:58] brainwash: I just ran memory tests on the system, lots of memory errors [12:58] brainwash: need to get new memory I am guessing [12:59] I guess so [13:09] hello [13:10] why is it that my jupyter notebook does not "see" my Python3? [13:10] and will only allow me to create Python2 notebooks [13:10] ? [13:15] srp: I suggest asking in #ipython [13:15] brainwash, thank you [13:17] Hi [13:18] 3/4 of my screen is white and rest gray. Using kde. How do I fix this? [13:19] is anyone here using the VICE emulator for Commodore 64? I am wondering, where I should put the ROM images... the man page only says that the documentation is available at /usr/local/lib/vice/doc/vice_toc.html, but this does not exist! (the lib/vice directory) [13:19] this makes me a sad panda [13:20] R13ose: this only happens while using KDE, and not on the login screen or during boot time? [13:21] Nope. Only when fully logged in [13:22] mmh. I would ask in #kubuntu or #kde [13:22] they probably know how to debug this [13:22] FManTropyx: did you compile and install it yourself? [13:23] Thanks [13:23] no, from the official repository [13:24] does /usr/lib/vice/doc/vice_toc.html exist? [13:24] without the "local" [13:24] other than that, you could use the online docs http://vice-emu.sourceforge.net/vice_toc.html [13:29] So Ubuntu 17.10 was raved over so much that I decided to stick it on hard meta. [13:29] *metal. [13:31] *** System restart required *** :( [13:34] brainwash, yes! and the 'doc' is a link to /usr/share/doc/vice/ where there is a html subdirectory - might want to update this in the man page :) thanks!!! === ret2libc_ is now known as ret2libc [13:40] anyone here ever used pdftk? trying to find docs on how to overwrite files with it [13:40] after merging two pdfs [13:41] what's the cons of using a NTFS formated HDD in Ubuntu? [13:41] ericus: define "using" [13:41] auronandace for storage, mainly backup from a win-machine [13:42] ericus: i use an ntfs partition for storage, works great [13:43] Why can't I turn the Ubuntu dock off properly in GNOME Tweaks? [13:43] I have dual boot just for gaming, but I have not tried so much of storing from Ubuntu [13:43] briian: can manpage help? [13:43] lotuspsychje: will check [13:43] nah i saw the web version of that [13:44] it says to use dont_ask [13:44] ericus: what are you planning to store on the ntfs partition from ubuntu? [13:44] but when i put dont_ask at the end of the command it just breaks [13:44] Menzador: ubuntu dock is now by default on 17.10 [13:44] Menzador: perhaps dconf-editor might be able to disable? [13:44] ericus: speed may be an issue [13:44] lotuspsychje: If it's a GNOME Shell extension like it purports to be this is a bad implementation issue. [13:45] auronandace backups from a Windows Server and on the Win-server backups from /home [13:45] i.e., I shouldn't need to use GSettings to disable it [13:45] Menzador: they forked it specially for ubuntu 17.10, so not sure you can disable [13:45] ericus: i'm not sure about linux file permissions on an ntfs partition [13:45] Fair enough... but if it's not supposed to be "disabled," there shouldn't be a switch in GNOME Tweaks :P [13:46] doesn't gnome tweak just modify gsettings for a lot of things? [13:46] ericus: my ntfs partition i use for storing files such as documents, music and videos [13:47] Menzador: It's probably a case of gnome tweak not being updated to disable the dock. Just use gsettings/dconf [13:48] ericus: if you are planing to backup /home on an ntfs partition you'll likely need to use some sort of archive that saves the linux file permissions [13:48] leftyfb: OK [13:48] !info gnome-tweak-tool artful [13:48] gnome-tweak-tool (source: gnome-tweak-tool): tool to adjust advanced configuration settings for GNOME. In component universe, is optional. Version 3.26.2.1-1ubuntu1 (artful), package size 200 kB, installed size 1170 kB [13:48] ooh nvm found something else that works a bit better [13:48] weird, but OK [13:49] Menzador: they wanted to keep unity lovers happy with the forked dock, so.. [13:49] Menzador: does autohide work on your side? [13:49] ericus: I would not recommend backing up your /home to an NTFS drive. Or anything from a linux filesystem unless you are ONLY going to backup personal files. You will lose all permissions. [13:50] lotuspsychje: I do not think they forked the Unity dock. I think they tweaked the gnome shell dock. [13:50] leftyfb: thats not what i said neither :p [13:51] leftyfb: i just said they wanted to keep unity lovers happy [13:51] lotuspsychje: Auto-hide works [13:51] what would you recommend for offsite-backup? A friend of mine has Windows, I have Linux. If we where to backup to each other, automatically and encrypted [13:51] ok [13:51] just FYI, this is the dock they forked: https://extensions.gnome.org/extension/307/dash-to-dock/ [13:51] Menzador: can you check on dconf-editor? might work to disable there [13:52] lotuspsychje: Theoretically it's good enough. I know the GNOME experience here isn't supposed to be 1:1 as compared to a stock GNOME setup... I *did* look through dconf-editor and I didn't see anything resembling a "master on/off" switch [13:53] Menzador: existing bug on it already: https://bugs.launchpad.net/ubuntu/+source/gnome-tweak-tool/+bug/1713020 [13:53] Launchpad bug 1718850 in gnome-shell (Ubuntu) "duplicate for #1713020 Mode extensions appear off by default" [Low,Confirmed] [13:53] Menzador: why not run ubuntu gnome? [13:53] hi everyone, ubuntu 16.04, nvidia gtx960, latest drivers via the nvidia ppa. Can someone help me to get my display port monitor detected? it won't show up at all. [13:54] leftyfb: There are several reasons I don't use the former Ubuntu GNOME if I want a GNOME-based OS [13:54] jwash: wont show with xrandr ? [13:54] lotuspsychje: OK, there's an existing bug, basically I just sit back and relax :) [13:54] Meanwhile, I turned on the auto-hide feature, which should be fine. Thanks [13:54] Menzador: well its not really a bug, so might read it :p [13:55] hateball: all show disconnected === kspencer is now known as BDay|kspencer [13:55] Hello, my Ubuntu computer has dual-boot with Windows 10. When I boot into Windows 10, I never get any freezing. The computer can run for hours idling or crunching away and it's fine. [13:56] So I don't think it's a hardware issue, but my ubuntu side freezes every once in a while [13:56] jwash: did you try xrandr --auto or that Fn + F5 key? [13:56] HorribleProgram can you pastebin dmesg? [13:56] It's not frequent, but mildly inconvenient [13:56] HorribleProgram: ubuntu version? kernel version? system up to date? [13:56] ericus: ye [13:57] lotuspsychje: xrandr --auto generates no output [13:57] HorribleProgram is it something specific that you do when it freezes? [13:57] i don't have a function key on my keyboard [13:58] Hello all - I'm having a very strange (and annoying) problem, that was present in 17.04 but seems to have got a lot worse in 17.10. I described it in some detail here (https://ubuntuforums.org/showthread.php?t=2369750), but in a nutshell the entire display freezes (i.e. no new frames are rendered) when switching from typing 'letters' to 'symbols'. In 17.10 the latency has increased a lot, so when typing code the display w [13:58] often not refresh at all until I wait for a couple of seconds! [13:58] lotuspsychje: lotuspsychje 16.04, 4.10.0-37-generic [13:58] Essentially, other than knowing it's *something* to do with Gnome, non-classic, I'm not familiar enough to know which package to file a bug report against. [13:59] Does anyone know any likely causes of this behaviour? Or hunches on what might be good lines to investigate? Thanks! [13:59] !info linux-image-generic xenial [13:59] linux-image-generic (source: linux-meta): Generic Linux kernel image. In component main, is optional. Version 4.4.0.98.103 (xenial), package size 2 kB, installed size 13 kB [14:00] Incomming dmesg output [14:00] https://pastebin.com/AN9FtTv8 [14:00] HorribleProgram: you still on .2? [14:00] HorribleProgram have you tried dropping to a terminal when it happens? (ctrl+alt+f1) [14:00] ericus: yeah, :D it's completely frozen [14:01] can't print screen, can't switch to console [14:01] you're not quite up to date with the kernel [14:01] tpgillam: graphics card chipset? did you try the xorg session vs wayland? [14:01] does anyone have experience using Dell OMSA on ubuntu? [14:02] ericus: ericus Ukuu? :D [14:02] urgodfather: we don't generally take surveys here [14:02] HorribleProgram what's that? [14:02] leftyfb lmao, let me rephrase [14:03] ericus: GUI to update kernel [14:03] lotuspsychje: nvidia chip. I tried with both default & proprietary drivers - it's the same [14:03] (and only Gnome, KDE, XFCE etc. are unaffected) [14:03] can someone help me with dell omsa on ubuntu. i have it installed per dell's notes, however im getting user permission errors while trying to configure my alerts [14:04] I'm pretty sure it's using the xorg session, not wayland (but I tested that prior to upgrading to 17.10) [14:04] HorribleProgram you don't need a GUI for that, run sudo apt-get update && sudo apt-get dist-upgrade [14:04] tpgillam: can you make sure logging out and test both sessions to compare? [14:04] ericus: sweet [14:05] HorribleProgram can you post the result of lsb_release -a ? [14:06] yes [14:08] HorribleProgram check the log files after the freeze happens [14:08] ericus: where are they? [14:09] in /var/log [14:09] journalctl -r might have something usefull aswell(?) [14:10] ericus: will do\ [14:10] ericus: updating dist rn [14:11] I figured out my life [14:11] the freezes just happens randomly, no pattern? [14:11] my life goal is to write a program that troubleshoots every computer and fizes random freezing [14:12] ericus: I think if I open a huge openoffice .odt and continue writing in it for about an hour [14:12] It's definitely not running Wayland - I don't have the option [14:12] but I hate one of them open 90% of my computer use, so idk if it's relevant [14:12] (sorry for delay, took a while to reconnect) [14:12] have* [14:12] How's your RAM? [14:12] vim /proc/meminfo [14:12] LOL woops [14:13] tpgillam: ubuntu = the wayland session, (xorg) the xorg session on gnome [14:13] no, just how much RAM do you have? [14:13] Ah, OK. In that case I've tried both, and both exhibit the same behaviour. [14:14] ericus: 16 [14:14] (But the classic versions, compiz & metacity, are fine) [14:14] should be more than enough [14:14] just ruling that out [14:15] tpgillam: weird your xorg session got same issue.. [14:16] I'm curios as to why computers freeze, it's quite a low-level topic [14:16] Yes, it's a very strange problem. I've tried tracing with xev and the keypress events are getting captured at the right time. It's just that the display stops refreshing :D [14:16] HorribleProgram: when did your freezes start to happen? [14:17] When that happens, I just yell at my computer and hit it a couple of times... After that everythings works as it should [14:17] lotuspsychje: Not sure, did I mention I have to be afk for about 20 minutes for it to freeze [14:17] That may be key to the investigation [14:18] HorribleProgram: i meant like, did you ever got a smooth working ubuntu version before? [14:18] Are you using any screensaver?... Should the computer "lock" when AFK? [14:18] lotuspsychje: yeah lol [14:18] It might be sleeping freezes the computer, or the screen locking, lemme check those [14:18] swensson: i sometimes use xscreensaver yes, but ubuntu got rid of screensaver by default [14:19] and after updating the kernel, I'll just check my /var/logs after another freeze [14:19] You guys were great help :D [14:19] specially you elopio [14:20] I'll come back when I have troubles again, ty again [14:28] Good morning/afternoon/evening. [14:29] Does anyone have any experience with 17.10 and the Gnome desktop? [14:29] BudgetSlug: i'm sure someone does [14:29] !ask | BudgetSlug [14:29] BudgetSlug: Please don't ask to ask a question, simply ask the question (all on ONE line and in the channel, so that others can read and follow it easily). If anyone knows the answer they will most likely reply. :-) See also !patience [14:29] I would like to see if anyone has modified the "Activity" bar at the top. [14:30] BudgetSlug: we don't generally take surveys here [14:30] Gotcha. [14:30] BudgetSlug: if you would like to know how to do something, ask: "How do I do this thing?" [14:30] How do you disable the "Activity" bar in Gnome? [14:31] You don't, the top bar is the top bar. [14:31] BudgetSlug: https://extensions.gnome.org/extension/744/hide-activities-button/ [14:31] Although there are extensions you can use, such as "Dash to Panel" [14:34] How would I be able to run a .bashrc alias via alt+f2? In this case, alias teamspeak='sh /home/ericus/Downloads/TeamSpeak3-Client-linux_amd64/ts3client_runscript.sh &' [14:34] lotuspsychje: By the way, is this the correct channel for my question / bug report, or would another be more appropriate in your opinion? Just wanted to make sure. [14:35] ericus: maybe try modifying the keyboard shortcuts and make alt+f2 run your ts3client_runscript.sh script (not point in running an alias that runs the script) [14:35] leftyfb hmm [14:36] tpgillam: yeah your good here, to get your issue solved try to re-ask here once in a while mate all in one line, with all details [14:36] lotuspsychje: Thanks, will do that [14:37] is there a way to make an elevated administrator account? [14:37] urgodfather: elevated how? For what purpose? [14:39] http://www.dell.com/support/manuals/us/en/19/dell-openmanage-server-administrator-v8.3/omsa_ug/user-privileges?guid=guid-90c7e982-3525-4734-a126-e360c3b9785c&lang=en-us [14:39] thats what i think the problem that im running into is [14:39] ericus: when you say alt+f2, do you mean that you want alt+f2 to run that script, or to bring up the run dialog so that you can run that script from there? [14:43] alkisg I run it from a terminal, and I would have to keep the terminal running [14:44] ericus: why so? there's setsid for that [14:44] setsid program => then close terminal [14:49] thanks alkisg [14:51] I'm having problems getting a host-only adapter working with ubuntu server under virtualbox. I can't get it to assign an ip even with static declaration in /etc/network/interfaces [14:52] what's weird is it pulls an ipv6 address [14:53] gbear14275: what do you mean "host-only"? [14:53] gbear14275: by default vbox uses nat for the network settings, you may need to change that === Guest69069 is now known as tpimtts [14:53] gbear14275: my guess is a vbox networking configuration option [14:54] gbear14275: and the network vbox is using is ipv6 only or somesuch [14:54] https://www.virtualbox.org/manual/ch06.html chapter 6.7 [14:54] urgodfather: feels like a question for dell [14:55] auronandace: I'm attaching a host only adapter to the 2nd NIC but it both shows up as disabled and then once I bring it up it wont assign an ipv4 address despite static declaration in /etc/network [14:56] gbear14275: well, the latter is the client's view. Our point is the hypervisor needs some modification, presuambly [14:56] auronandace: the NAT is a different NIC, enp0s3 in my case [14:59] what's the difference between wireless-crda and crda packages? [15:00] I'm trying to install 17.10 on a new laptop. I want encrypted /home and swap on a separate drive from /. I have 2 SSDs in the laptop. [15:01] When I think I've set that up correctly, it will only boot to single user mode. [15:01] How do you change the SUPER key to open Applications in ubuntu 17.10? [15:01] If I try to mount home or activate swap in maintenance mode, it tells me the special devices for the crypt partitions don't exist. [15:02] Bud [15:02] Dyrcona: "encrypted /home and swap" to you mean ecryptfs or luks ? [15:02] BudgetSlug: dconf-editor is your friend [15:02] Menzador: Thanks. Any direction for where to start looking in dconf-editor? [15:03] sruli: ecryptfs, I assume, whatever "physical volume for encryption" does in the installer. I'm not certain which it uses. [15:03] Dyrcona: and root is not encrpyted? [15:03] BudgetSlug: I think it's in org.gnome.shell someplace [15:04] sruli: I tried that, but the default options only encrypted the first drive, and I don't care much about encrypting system files. [15:04] Menzador: Many thanks. [15:05] I seem to recall the installer being "better" at this in the past, but maybe I'm thinking of the server edition installer. [15:05] It seems like I either blindly take the defaults, or I have to manually configure everything and the options seem more limited than I recall from previous installations. [15:06] Like I don't see a manual option for LVM. [15:06] Dyrcona: right, trying to figure out how you got root unencrypted and home encrypted with default setup... if you want root unencrypted and home encrypted you'll need to setup the partitions in livecd ebfore install and chroot after install to edit fstab ecrypttab and update-initramfs and grub [15:07] Dyrcona: doesnt sound like you want lvm [15:07] sruli: Sounds like it would be easier to just do the default install with / and swap encrypted, and then add /home encrypted afterward. [15:07] Yeah, I probably don't want LVM, but I swear it used to be an option in manual partitioning. [15:08] Maybe just on server edition... [15:09] Dyrcona: if ecryptfs is good enough for you in your home dir (meaning anyone can see the number and size of files in it when dismounted) it should be straight forward with manual option in installer [15:10] I have an Ubuntu server on the Net, with a domain name. I have a Ubuntu workstation behind a NAT. Is there a few magic linux lines that will redirect http(s)://my-server.net:7896 to my local workstation ? This is for dev purpose, it is not production oriented [15:10] Maybe by establishing some SSH between my workstation and the server? [15:10] sruli: If I try that, the installer won't continue unless I encrypt swap. I tried adding swap and /home on the second drive encrypted and the system boots to maintenace mode with missing devices for the encrypted partitions. [15:11] Dyrcona: doesnt make sense, 1 min will try [15:12] sruli: I'm going to try again in a slightly different way. I tried making sda1_crypt1 and sda1_crypt2 last time. I'll go with sda1 and sda2 as separate physical partitions this time. [15:12] can dpkg filter columns? I don't mind using awk, but I just thought if there was a flag or something... [15:13] Dyrcona: ok [15:15] ash_workz, i'd go with dpkg-query [15:15] ioria: thank you :) [15:15] ash_workz, no prob [15:25] can I also filter by field value? [15:26] like --status=installed or something? [15:27] ash_workz: `man dpkg-query` [15:27] nacc: I was looking at it [15:29] ash_workz: i meant, you can see there if such a flag is supported [15:29] nacc: yeah, I don't see one [15:30] nacc: thanks though :\ [15:30] ash_workz, maybe this is more readable : http://man7.org/linux/man-pages/man1/dpkg-query.1.html -f --format [15:30] ash_workz: dpkg-query isn't a filter, it's just a query [15:30] ash_workz: so you could use what ioria is sayig, output it's isntallationn status and then grep on that [15:31] nacc: yeah, I just thought maybe that functionality was built in, [15:41] how do I get more specific information on apt list ? [15:41] ash_workz: canyou be more specific? [15:43] nvm :) [15:44] sruli: It worked with separate physical partitions to make sda1_crypt and sda2_crypt. I'm not sure what the installer has against "virtual partitions" with cryptsetup. [15:47] I take it back, I know this is just me being clumsy though; I'm looking for where the flags are defined such as `apt list --installed` [15:47] ash_workz: as in where in the souorce? or `man apt` otherwise? [15:48] nacc: `man apt` doesn't really give me that information but I could be just retarded when it comes to man [15:49] ash_workz: what do you specifically want to know? [15:50] ash_workz: try 'apt list --' [15:50] nacc: if what I was doing earlier could be achieved with `apt list` (and hopefully briefly exploring the capabilities of the tool) [15:50] How do you reduce the context menu size in Ubuntu17.10 (Gnome 3.26)? [15:50] ducasse: interesting [15:51] ash_workz: `man apt` ... /--installed, shows the three flags it knows [15:52] nacc: pattern not found [15:52] ash_workz: what version of ubuntu? [15:52] 16.04 [15:52] ash_workz: http://manpages.ubuntu.com/manpages/zesty/en/man8/apt.8.html is what i was looking at [15:53] ash_workz: http://manpages.ubuntu.com/manpages/xenial/en/man8/apt.8.html [15:53] ash_workz: says --installed is there [15:53] nacc: that has a lot more information than `man apt` [15:54] ash_workz: uh, it's the manpage [15:54] ash_workz: perhaps you are out of date? [15:55] nacc: mine just says 'apt specific options (-s -nocompile -print -A -factorypath -factory -version -X), Options shared with javac (-d -cp) and Non-Standard Options (-X...) [15:56] -' [15:56] ash_workz: .... that's not hte apt manpage [15:56] ash_workz: it soundns like maybe you ahve some non-standard apt manpage installed that's a java garbage [15:57] well apts man should still be on here, right? [15:57] ash_workz: `man -w apt` [15:58] ap/usr/lib/jvm/java-7-oracle/man/man1/apt.1.gz [15:58] oops [15:58] lool [15:58] /usr/lib/jvm/java-7-oracle/man/man1/apt.1.gz [15:58] ash_workz: this is why i don't use third party packages [15:58] ash_workz: man 8 apt [15:58] nacc: perfecto [15:59] if I'm looking for the appropriate man, is there a way to find that '8' using /usr/bin/apt ? [15:59] I mean in this case [16:00] but like which $(application) [16:00] -$() [16:01] ash_workz: not sure i understand what you mean? === Vach0n_ is now known as Vach0n [16:12] Hi. Is there a hassle free route to install Ubuntu on a Asus T100TAF ? I can get Ubuntu to install but LOTS of hassle. Breaks on update. Any specialised distro's/kernels out there ? [16:15] grobda24, hassle free ? nope [16:15] guys how do i run goaccess on ubuntu? I've got it installed, not sure how to start it [16:15] grobda24 I got no clue about this, but I know alot of ppl had problems using the last version, have you tried any 16.x? [16:15] grobda24, i can link this for you : https://wiki.debian.org/InstallingDebianOn/Asus/T100TA [16:15] i try "$ goaccess access.log -c" but it gives me same error about the format being wrong [16:18] swensson: Yes. 16 was OK apart from Wifi not restarting after suspend. I made BIG mistake of updating to next release which broke everything. [16:19] ioria: thanks :) [16:19] I just found https://forum.xda-developers.com/windows-8-rt/win-8-development/live-asus-t100-ta-magic-stick-t3091481 [16:19] Occurs to me that trick seems to be to keep the installation static without updating anything ! [16:20] grobda24 Ah, same here(about the wifi).... Im not sure about the update tho... === X230t is now known as Funk [16:20] shouldnt wpa_supplicant be started after rfkill.service [16:20] grobda24, ok, but it says Ubuntu 15.04 [16:20] grobda24, don't use that [16:21] ioria: OK, why ? [16:21] !15.04 [16:21] Ubuntu 15.04 (Vivid Vervet) was the 22nd release of Ubuntu. Support ended on February 4, 2016. See !eol, !eolupgrade and https://ubottu.com/y/vivid [16:21] guys what does "Error opening terminal: xterm-termite." mean? [16:22] ioria: OK, so no security updates. I can deal with that is just works ! [16:22] grobda24, as you wish [16:27] Hi guys. I got this issue, that after installing ubuntu server 16.04 on my newly aquired Hetzner server, I'm now having issues with 5% HDD space is being reserved for the system, which isn't needed as I have 6TB HDD. How can I change and/or completely remove this feature, thus giving me an option to choose the amount of space reserved myself. [16:27] I hope that made sense... [16:28] Would this work? - https://odzangba.wordpress.com/2010/02/20/how-to-free-reserved-space-on-ext4-partitions/ [16:32] Hello, somehow i have given all of my home folders (Desktop documents etc) to my bot user, how can i reverse this? [16:34] Vach0n: you can change the percentage with tune2fs [16:34] tatertots: so, in the end 16.04.1 works [16:34] literally everything else does not [16:35] can get random versions isntalled if I perma acpi=off in load, but that's not really sustainable [16:35] ducasse: as linked above, corret? Anyways, I doesn't seem to work... I get this error: https://i.imgur.com/KIcHZvn.png [16:35] hello!!! is there a way to redirect one audio to headpiece and another audio to speakers on ubuntu? Thanks. [16:36] theelous3 i had acpi=off but that causes problems with heat detection, drivers and others [16:36] Hello, somehow i have given all of my home folders (Desktop documents etc) to my bot user, how can i reverse this? [16:37] cat_bprm: sorry, that was not a suggestion to you, but a follow up to the soltuion I found for a problem I asked about earlier [16:37] and yeah, having acpi off is just all around terrible as a long term solution [16:37] Vach0n: you need to replace sdb1 with the actual filesystem you want to edit parameters for [16:37] theelous3 i thought you were asking... i was replying with a suggestion XD [16:37] ah :P [16:38] ducasse: Sorry for my ignorance, but how would I go about figuring out what that is? [16:38] however, does anyone know how I could start to investigate what's taken place with acpi between 16.04.1 and 16.04.3? [16:40] I'm trying to install cinnamon and mdm on ubuntu server. I've run apt install mdm cinnamon cinnamon-session, but when I try to sudo service mdm start, I get an error that says "mdm.service not starting" Any insight? [16:40] I've also installed xubuntu-desktop [16:42] hi. the desktop is more and more laguish here. on 17.10 and gnome shell, now it takes 8 seconds to unlock the screen lck for example. the mouse cursor gets stuck for milliseconds instead of moving. it feels sluggish. that's annoying [16:42] MarchHare, mdm ? [16:44] Hi. My sysadmin hasn't installed a certain package which I need (pandoc-citeproc). Am on 14.04. Is there a way to install the package locally (i.e. in my home dir)? [16:51] can changing the root password cause ubuntu not to boot? [16:51] Vach0n: pastebin the output of 'df -h' - use paste.ubuntu.com instead of posting a screenshot since it's all text [16:52] i fubar'd something and now it just reboots. same for recovery mode... upstart works though [16:52] ducasse: I figured it out though. Thanks :) [16:52] ioria: Alternative display manager/login manager to lightdm [16:55] MarchHare: gdm [16:55] auronandace: Doesn't seem to be in the repository for 17.10 [16:55] !find gdm [16:55] Found: gdm3, gir1.2-gdm-1.0, libgdm-dev, libgdm1, gdmap, lcgdm-dbg, liblcgdm-dev, liblcgdm1, peace-gdm-theme, sabily-gdm-themes (and 157 others) http://packages.ubuntu.com/search?keywords=gdm&searchon=names&suite=artful§ion=all [16:55] !info gdm3 | MarchHare [16:55] MarchHare: gdm3 (source: gdm3): GNOME Display Manager. In component main, is optional. Version 3.26.1-3ubuntu3 (artful), package size 265 kB, installed size 1760 kB (Only available for linux-any) [16:56] can someone please help me!! [16:56] auronandace: I guess it would make a difference if I didn't know about the 3 on the end. I'm still confused about why mdm won't start, even though it installs. [16:57] MarchHare: what version of ubuntu? [16:57] MarchHare: we don't support mint here [16:57] nacc: 17.10 server. I wanted to start without a lot of bloat. [16:57] MarchHare: systemctl status mdm, in a pastebin [16:57] auronandace: Not asking anyone to support mint. I just migrated from it. [16:58] hey guys, I think I am finally getting close to my mint-kde (18.2) being able to access the shared folder on my lubuntu vm (14.04.5 I am just wondering if anyone knows how to set username and passwords for samba and if they have to match the OS usernames (I assumed they would or there would eb security issues? [16:58] MarchHare: another option is slim [16:58] nacc: I don't have the console for it right now, but it was basically mdm.service not found [16:58] nacc: One line, no real info as to why. [16:59] MarchHare: there is no such service, that's why [16:59] MarchHare: no systemd or sysvinit file [16:59] auronandace: I'll check into that one. I don't mind the lightdm, but it doesn't have any obvious option to start cinnamon instead of xfce [16:59] nacc: Shouldn't apt install mdm have installed those? [16:59] MarchHare: are you sure you installed mdm? [16:59] MarchHare: well, did you look at what mdm is? [16:59] !info mdm [16:59] mdm (source: mdm): Utilities for single-host parallel shell scripting. In component universe, is extra. Version 0.1.3-2.1build1 (artful), package size 23 kB, installed size 92 kB [17:00] MarchHare: it is nothing to do with desktops [17:00] nacc different mdm [17:00] MarchHare: right, so "what" mdm did you install? [17:00] MarchHare: there's only one "mdm" in Ubuntu [17:00] nacc That's a damn good question, now that I think about it. I'm going to check that when I get home. [17:00] MarchHare: mint display manager is not in the ubuntu repos [17:01] nacc: I suppose it didn't dawn on me where that parallel stuff came from [17:01] auronandace: I also didn't puzzle out the meaning of the m in mdm (I knew it was a fork of gdm) [17:01] okay, I'll go tinker with this. I think I know what's going on now. It'll have to happen when I get home [17:02] hi, after the last update of my 16.04 kubuntu my touchpad doesn't quite work as expected. I used to be able to tap on the touchpad to click, no this doesn't do anything, I need to use the buttons at the bottom of the touchpad. is there a way to reverse/configure that? [17:04] can changing the root password cause ubuntu not to boot? [17:04] i fubar'd something and now it just reboots. same for recovery mode... upstart works though [17:04] kaddi, can you sudo apt update && sudo apt full-upgrade and check the output ? [17:04] doesnt drop to shell or anything [17:05] appears to be some kernel message saying that its rebooting in 30 seconds [17:07] urgodfather: generally, no the root password is not releavnt to booting [17:07] urgodfather: what *else* did you change? [17:07] ioria: it says 0 upgraded, 0 newly installed, 0 to remove and not upgraded [17:07] well, i added my user to root [17:08] sudo adduser user root [17:08] or something like that [17:08] hello, I'm on ubuntu 14.04 and for some reason when I updated gnome-shell is completely borked. it seems like there is a problem with gnome-settings-daemon depending on an older version of gnome-settings-daemon-schemas [17:08] http://paste.ubuntu.com/25874076/ [17:09] Hello #ubuntu. I'm having problems with Akonadi. It's complaining that it 'Could not open required defaults file: /etc/xdg/akonadi/mysql-global.conf' and then it goes downhill from there [17:09] urgodfather: well, that makes very little sense to have done as well. [17:09] urgodfather: what else? [17:09] urgodfather: and note, making system cofigurationn changes where your recollection is "something like that" implies maybe you should not be doing that. [17:10] urgodfather: you should know *exactly* what you are doing and why. [17:10] i pulled out one of my raid drives but thats not part of the os [17:10] thats just a storage drive [17:10] hot swap bay [17:10] urgodfather: was it specified in /etc/fstab to mount at boot? [17:11] that storage drive [17:11] yes [17:11] whodevil: apt-cache policy gnome-shell [17:11] but its a raid 1 and i only pulled out 1 [17:11] urgodfather: put it back in and see if it boots [17:11] it does not [17:11] currently rebuilding [17:11] whodevil: it looks like you've mixed trusty and xenial, don't do that. [17:11] how do you know it's rebuilding if the machine won't boot? [17:11] kaddi, check settings > mouse/touchpad [17:11] via raid controller [17:12] nacc: http://paste.ubuntu.com/25874105/ [17:12] nacc: I'm not sure how that happened [17:14] nacc: When I 'cd /etc/apt && grep -R trusty *' [17:14] it returns nothing [17:14] here's a paste of what I see [17:14] http://paste.ubuntu.com/25874123/ [17:14] ioria: thanks... that was too obvious.. I was looking at mouse setting rather than touchpad. It's fixed :) [17:15] whodevil: you are on xenial? [17:15] whodevil: lsb_release -sd [17:15] nacc: I'm supposed to be [17:15] kaddi, lol, good job [17:15] whodevil: ? [17:15] whodevil: you *just* said 14.04. [17:15] raid controller says 62 % [17:15] nacc: I nuked virtualbox and installed vmware workstation but I'm still having a problem configuring virtual network adapters to get ipv4 addresses with dhcp... it will assign an ipv6 address but no ipv4 [17:15] so i will let it rebuild and see what happens [17:16] gbear14275: i've never used either [17:16] nacc: sorry I got the number wrong, I thought xenial was 14.04 [17:16] nacc: Ubuntu 16.04.3 LTS [17:16] doh [17:16] nacc: wait... ok, I called dhclient to renew and it pulled one [17:17] crap, didn't survive reboot [17:17] whodevil: ok, was this a recent upgrade? [17:17] that adapter keeps disabling itself [17:17] what i can tell you is the os is on a completely different drive, the storage drive is mounted via fstab at boot. normal boot and recovery both go to that rebooting in 30 seconds message. upstart loads a cli and has a few errors on it. helper and daemon. also complains about reboot when i tell it to [17:17] reboot [17:18] I've been on 16.04 for at least 6 months [17:18] whodevil: so what precipitated this issue? [17:18] this morning there was an upgrade requested, but I thought it was just a normal packages update [17:18] whodevil: did you add a ppa or anything? [17:18] I've never had a network adapter be disabled from boot... is there a prescribed way to resolve this? [17:18] you know how running a2enmod interactively will say "Your choices are: ..." and list the modules? Is there something that invokes to get that list? (it printed in the perfect format as is) [17:19] ash_workz: read the source? [17:20] nacc: thank you :) [17:20] ash_workz: it's a perl script, iirc [17:21] is there a way to install the older packages? probably not right [17:21] nacc: you're right [17:22] ash_workz: i think it just globs mods-available oor mods-enabled [17:23] nacc: well, I think it would have to implement some logic to remove entries from available which have links, but idk... maybe it just dumps everything === pauljw1604 is now known as pauljw [17:32] hmmm, I'm getting to the point of been prompted for the SMB Password to connect to the share on my lubuntu vm from mint-kde and vice versa [17:33] but no matter what, the popup prompt doesn't accept the pass [17:33] is there anything in systemd which disables (or conversly only enables) network adapters if some condition is met? [17:33] used sudo smbpasswd -a to set the samba passwords [17:33] I'm resolving the systemd network wait to configure timer on boot that just counts if there's no network connectivity [17:37] zztopless, ask in the mint channel? mint-kde is not ubuntu [17:38] oerheks: and it's not the lubuntu channel and more importantly the issues I've been getting help with in here over the last few days aren't effected by the surface level variations [17:40] though I have been in those channels and am about to connect to the server Mint's channels are on as well [17:41] zztopless, mint has its own issues, so do that please. [17:43] oerkeks, oerheks I have been trouble shooting this for several days now and you are the first person in this channel that has asked me to not discuss it here. [17:44] so you found out nobody here can help you with mint. [17:45] *can*, not want, as mint has its own thingy [17:45] I got some ideas from people there, some from #kde, some from here, some from #kubuntu [17:46] given the issue (it's a known issue that manifests in a few different ways) doesn't seem to be relevant to the differences int those distros... [17:47] I can whip up a ubuntu vm for a three way party (well it will be if I can get samba working), seems pretty arbitrary [17:49] yes mint DOES have it's own thing - thank you for explaining the that things are separate from other things. [17:51] Lubuntu also is different (but less so), but again, it's about getting them to work together with Samba, as well as the other flavours of Ubuntu-based vms I frequently use (including Vanilla) [18:00] how do i take a screen shot of everything in a web browser window when it wont all fit on the screen? [18:00] haaaay hay hay [18:00] modpryme, you could just make multiple shots and edit them together [18:00] arghhh [18:01] or post them together in the right order like the facebookers do [18:01] modpryme: I don't know the name of it, but i did find one a while back that worked [18:01] phones have a ¨scroll capture¨ now [18:01] printing the site as a PDF might too [18:01] maybe visit it on your phone and use the scroll cap [18:02] arghhhhh [18:02] at least the s8 does :-/ [18:02] easy, open fiorefox, shift F2: screenshot --fullpage # then you need to type filename.png, png only! [18:02] https://askubuntu.com/questions/421980/how-to-take-screenshot-of-complete-webpages [18:02] what about in chromium? [18:03] maybe the other answers on that page are helpfull? [18:03] i knew screenshot --fullpage only [18:04] ah cool...i can save it as a pdf [18:04] thx [18:04] oh, nice to know :-) [18:04] np [18:04] so hey, how do i see whats going on with my wifi card(s) [18:05] most programs can now [18:05] those that offer to save/export as pdf sually give much better results than printing as pdf [18:05] they keep asking for the password to the network and never connect, not sure how to troubleshoot the situation [18:06] word 2016 opens pdfs amazingly well too [18:11] Jordan_U: you around? [18:26] ok guys, im happy to say that the machine is booting again. dont understand why my hw raid 1 storage drive would cause it not to. [18:29] Hi, I'm about to install Ubuntu but I'd like to ask some questions before I do so. Could somebody explain the difference between the 2nd and 3rd options in this step? https://tutorials.ubuntu.com/tutorial/tutorial-install-ubuntu-desktop#5 [18:30] Ruff_Wizard[m], you mean lvm and ecryption ? [18:31] encrypt is easy, your install will be not readable by starting a live iso, and fixing thins can be a lot harder, even a bad sector can ruin your whole data. [18:31] hmm [18:31] LVM logical volume managment, nice to use when you have multiple hdd's [18:31] Ruff_Wizard[m] i would start with just a standard install [18:31] * eelstrebor only encrypts the home directory [18:33] eelstrebor +1, i would not start with linux and do encryption right away [18:35] Ruff_Wizard[m]: they are not the same, they are 2 different option, you can choose any or both [18:35] Ruff_Wizard[m], wait.... in general lvm and encryption (luks) are two different things (you can use them separately) ; but , by default, if you choose to encrypt your drive (fde) the 2° option lvm will be applied as well [18:36] urgodfather: Which one is a standard install? [18:36] the top option [18:36] erase everything and install ubuntu [18:36] that is a basic install [18:36] ioria: ^ never understood why if you choose luks it auto applies lvm [18:37] But that will wipe Windows? [18:37] personally i would start with a VM on windows [18:37] urgodfather: whats wrong with encryption? [18:37] yest [18:37] sruli noting... just not well suited for a noob [18:37] I want to keep Windows. [18:37] Ruff_Wizard[m] download vmware and install ubuntu as a vm [18:37] I am a medium-noob. [18:37] urgodfather: Why? What's wrong with dual boot? [18:37] urgodfather: many ppl coming to linux for the privacy and encryption, its only an extra checkbox in the setup and pass when booting [18:38] nothing [18:38] you can resize the partition but it is a light risk to the windows system [18:38] I'm having a very strange (and annoying) problem, that was present in 17.04 but seems to have got a lot worse in 17.10. I described it in some detail here (https://ubuntuforums.org/showthread.php?t=2369750), but in a nutshell the entire display freezes (i.e. no new frames are rendered) when switching from typing 'letters' to 'symbols'. In 17.10 th [18:38] is latency is worse, the display doesn't start refreshing until a couple of seconds after typing ceases. Some key observations: this happens in Gnome only, no other DE; also Gnome classic (compiz/metacity) is unaffected. Both Xorg and Wayland backends are affected in the same way. I have an nVidia chipset, but this occurs regardless of the driver t [18:38] hat is used. I can track keypresses with xev to see that they are *not* delayed in being registered; one can tell that the whole display ceases to refresh since any UI element (e.g. video running in webbrowser) also freezes. Does anyone have any ideas? Thanks very much! [18:38] Then why VM? [18:38] sruli valid point [18:38] Ruff_Wizard[m]: used linux before? [18:38] VM doesnt mess with windows. [18:38] sruli: Used, but haven't installed. [18:39] VM is an application that runs on windows, allows you to boot other operating systems from your native enviroment === SimonNL is now known as SimonNL_Afk [18:39] unitypunk: Why and how would installing Ubuntu alongside mess with Windows? [18:39] if you partition wrong you will dstroy the windows partition. [18:39] Ruff_Wizard[m]: well if you've used it and know what you are getting into you can skip the vm part and go straight for a dual boot, [18:39] Ruff_Wizard[m] be prepared to reinstall several time if you like to alter and modify the out of box install i.e. if you want to add bells and whistles. [18:39] Ruff_Wizard[m] this is why i say do a vm [18:39] doesnt the installer offer option for dualboot?? [18:39] Why several times? [18:40] Ruff_Wizard[m] i have been using linux for years and i still mess things up [18:40] but thats me [18:40] But I thought it gives you the option to install all the extra stuff during the installation? [18:40] Ruff_Wizard[m], after you get the hang of it, reinstalling OS is like 10-20 mins of waiting [18:40] unitypunk: Does the installer not do a partition itself? [18:40] the installer wants to use as much of your disk as possible. [18:41] Ruff_Wizard[m] theres a whole lot more out there than what is readily available in the ubuntu install disk [18:41] which usualy results in removing the partition, [18:41] Why? unitypunk [18:41] the one containint windos. [18:41] because most people do not dual boot. [18:41] urgodfather: Like what? Is it stuff I will actually need? [18:41] Ruff_Wizard[m] bells and whistles [18:41] Ruff_Wizard[m]: i think the dualboot option in the installer will be fine, while installing you should see it in the setup stage of the link you posted before [18:41] unitypunk: Is there no way to tell it that I want to dual boot? [18:42] sruli: It's one of the options in the picture? [18:42] umm, honeslty, you should just read about partitioning. [18:42] unitypunk does ubuntu not have that option where if you load the disc while windows is running it will dual boot install? [18:42] idk dude [18:42] Partition just means you split the disk into different parts? [18:42] ihavent done that in years [18:42] How can you change "Super+A" to "Super" in Ubuntu 17.10 (Gnome 3.26)? [18:42] wubi used to do it. [18:42] unitypunk me either [18:42] Ruff_Wizard[m]: no, it clearly asks "install ubuntu alongside windows" havnt seen it in years, but if you dont see it dont continue [18:42] where you ran wubi from windows, and then it installed along side windows [18:43] wubi that's it!!! [18:43] sruli: Okay, thanks for the heads-up. [18:43] but i thought wubi was dead [18:43] lol [18:43] i use pxe now... [18:43] lol [18:43] hell idk [18:43] no need for boot media with pxe [18:43] that was like ubuntu 12 last time i tried it [18:43] save $$ on cdrs. [18:43] Ruff_Wizard[m]: you wont be able to encrypt on dual boot with installer, you have to do some custom stuff before and after install... [18:43] And I shouldn't tick any kind of encryption options because that could mean that I could get locked out of the OS if I forget something or do something wrong? [18:44] rufus dat flash drive and blast it [18:44] Ruff_Wizard[m], i would not encrypt [18:44] I don't particularly want to encrypt if it isn't necessary. [18:44] theres no reason to. [18:44] unless you;re like.. stashing some kind of highly illegal files. [18:44] okay, good [18:44] one less thing to worry about [18:44] or like maybe your porn [18:44] encryption is for the doomsday preppers [18:44] idk what people keep secure these days.. [18:45] unitypunk: i won't even be torrenting on ubuntu probably so I don't even care. I don't even have encryption on windows so it's not like I'll be losing anything [18:45] Ruff_Wizard[m]: the only way you get locked out is if you mess up a sector/s on the drive or if you forget the password, have been using luks encryption for ~6 years now never screwed it without being able to fix [18:45] truth is if doomsday comes, it will take you with it... AND aint nobody gonna care about what you got on your computer... they just want your tv [18:45] Also, I need to work out how and what BIOS settingss to change [18:45] ya dude dont bother i have never set up disk encrpyption in my 10 years of ubuntu [18:46] urgodfather: lol [18:47] I think it's just secure boot that I need to turn off. And change the boot order to get it to load the CD. [18:47] Ruff_Wizard[m]: if you do want encryption with dual boot read the answer on the page https://askubuntu.com/questions/293028/how-can-i-install-ubuntu-encrypted-with-luks-with-dual-boot its a little old but works fine [18:47] honestly i really think you should consider either A) doing a VM, or B) swapping out your hard drive ............. p.s. if you do a vm you can migrate it later [18:47] sruli: thanks for the link but I think I'll go without. don't want to get into too much stuff and then have to worry about it later if something goes wrong [18:47] Ruff_Wizard[m]: if booting regular ubuntu livecd i think no need to turn off secure boot [18:48] urgodfather: but can I use a vm as a regular everyday os? aren't there disadvantages [18:48] sure [18:48] sruli: really? that's news to me. I'll try, thanks. [18:48] its like using an os within an os [18:48] urgodfather: but then I have to boot windows to use ubuntu? [18:49] you can hook up flash drives to it, print from it, transfer files, etc [18:49] yep [18:49] and you can make snapshots so if you break something toying with all the bells and whistles out there, you can restore your snapshot [18:50] that's not really what I'm after. only thing it would help me with is familiarising myself with the installation process. but i think i'll try it properly now and if I don't get an option to install alongside windows then maybe i'll try it in a vm. [18:51] Ruff_Wizard[m] you can always install to a flash drive [18:51] urgodfather: don't have a flash drive handy, unfortunately. isn't that basically the same as a livecd? [18:51] https://askubuntu.com/questions/170454/can-i-install-ubuntu-to-my-32-gb-usb-pen-drive [18:51] no [18:51] not the same [18:52] I don't have a 32gb drive [18:52] live starts fresh every time you boot. install to flash drive would be the same as installing to hard drive [18:52] but I do have dvds [18:52] I've tried livecd before though === Jynxie_ is now known as Jynxie [18:53] usb wouldn't give me any advantage for installing, and running from a flash drive isn't a permanent solution [18:53] sorry [18:53] suit yourself [18:54] just making suggestions [18:54] is there really that big a risk of messing up my windows 10? [18:54] idk [18:54] i think you only need like 6 or 8gb to do a full ubuntu install [18:54] dont use it [18:54] i have about 60gb free btw [18:54] so a 10gb flash drive would work [18:54] Ruff_Wizard[m], the tools you use to partition can definitly destroy the windows partition [18:55] unitypunk havent seen one of those before [18:55] Ruff_Wizard[m]: not really. Only possible risk is to kill bootloader [18:55] 10..12...14.. whatever lol [18:55] ;_) [18:55] ;-) [18:55] but if I'm explicitly choosing an option to install alongside windows, why would it destroy the windows partition? [18:55] Ruff_Wizard[m], this is why ultimatly i suggested reading about partitioning. [18:55] it shouldnt. [18:55] Ruff_Wizard[m]: it shouldn't [18:55] ok, i'll read [18:55] just wikipedia is enough? [18:55] apart from say you pulling the plug half way through. [18:55] Ruff_Wizard[m]: but if you choose grub and then remove buntu [18:55] because it modifies the bootloader [18:56] Ruff_Wizard[m]: you can have some happy minutes trying to install any bootloader) [18:56] i've heard of grub but i don't know exactly what it is [18:56] Ruff_Wizard[m], grub is a boot loader [18:56] LastDream thats assuming he never has to use his factory recovery partition [18:56] Ruff_Wizard[m]: simple a thing that lets you chose which OS to load [18:57] it's basically what's there if I dual boot? [18:57] thats what lets you dual boot yes [18:57] yes [18:57] you can dual boot with many BLs [18:57] urgodfather: everything happens) [18:57] that will let you dual boot [18:57] i used to favor the windows one [18:57] the screen that comes up that lets me choose? [18:57] yep [18:57] yep [18:57] thats grub [18:57] Ruff_Wizard[m]: yes [18:58] you can even trick that sucker out with burg [18:58] lol [18:58] total sweetness [18:58] lot's of yes's. i think my message was delayed. [18:58] shiney bell and whistle [18:58] ugh this wifi thing is killing me. [18:58] even the pcie wifi card wont connect. [18:59] put a tinfoil antenna on it [18:59] it keeps asking for the pass [18:59] and never connecting. [18:59] put a tinfoil antenna on it [18:59] idk where the log for that is :-/ [18:59] it's a shame this hasn't been updated since Windows 8: https://help.ubuntu.com/community/BootFromCD?_ga=2.102380610.2115462233.1496186978-1155966827.1485186360#The_computer_came_with_Windows_8_and_you_have_not_changed_the_UEFI_setup [19:00] Ruff_Wizard[m], it many not need to be. [19:00] some of the options have changed since then [19:00] Ruff_Wizard[m]: nothing changed seriously [19:00] at least in name [19:00] Ruff_Wizard[m]: they're pretty obvious [19:00] I think they call it "fast boot" now [19:00] lemme check [19:00] Ruff_Wizard[m]: it's not arch or gentoo =) [19:01] Ruff_Wizard[m]: fast boot is something else.. you have to turn it off in order to get to boot menu to choose which os you wan tto boot, [19:01] sruli is correct about fast boot [19:01] and secure boot too btw [19:01] Entering uefi is a bitch [19:01] yep [19:01] at least when having win10 and laptop [19:02] LastDream: that's exactly what I have [19:02] virtualize it... then you can carry 10 different computers in one [19:02] This is probably the hardest part of the process [19:02] Ruff_Wizard[m]: than tur off secure boot) or you won't see usb stick [19:03] I think I need Windows Boot Manager? I have to do some more research... [19:03] Ruff_Wizard[m]: trying it in virtual box sounds like a better idea [19:03] Ruff_Wizard[m]: hold down SHIFT key in windows while clicking restart you'll get a menu .. follow it until you find reboot into eufi or something similar [19:04] or just hit F2 / del or F9 [19:04] in most cases it's something from that list [19:06] sruli: that's the easy way. I'll do that. I that. I thought it was f12 but that doesn't do anything after I choose Windows Boot Manager [19:06] Ruff_Wizard[m]: not really [19:06] Ruff_Wizard[m]: hit F2/del/F8 (check your manufacturer guide) [19:06] LastDream: not really what? [19:06] Ruff_Wizard[BEFORE win loads [19:07] I know [19:07] That's what I did. It gave me a menu and I selected Windows Boot Manager and it did nothing. [19:07] Ruff_Wizard[m] what brand laptop do you have [19:07] Ruff_Wizard[m]: it's not that [19:08] Ruff_Wizard[m]: you should be able to get to uefi or bios [19:08] Ruff_Wizard[m] what brand laptop do you have [19:08] Lenovo E560. Now discontinued. [19:08] knowing the brand, i can tell you which button to tap when powering it on [19:09] dell is f2 [19:09] hp is esc [19:09] etc etc [19:09] Ruff_Wizard[m]: should be F2 [19:09] Ruff_Wizard[m]: or FN+F2 [19:09] Oh [19:09] I got in through shift+restart anyway [19:09] damn Fn keys!!! [19:10] hate those things [19:10] tried to connect with ssh, hostname wasnt up, sorted that but i still get the erro rcant resolve hostname, how do i clear whichever cache it is that this uses? [19:11] urgodfather: annoying but good for changing volume [19:12] btw, Ruff_Wizard[m] [19:12] do you know how to use VI if anythyng goes wrong? [19:12] )) [19:12] can someone help me with virtualbox? i installed via APT but its showing up as command not found [19:12] LastDream: what is VI? [19:13] Ruff_Wizard[m]: sometimes - the only text editor available, if something goes wrong and you need to change some configs [19:13] y [19:13] Never used it [19:13] Just FYI, f2 was not the key [19:13] Ruff_Wizard[m]: consider it more of a joke) [19:13] Ruff_Wizard[m]: hmm [19:14] But I can use shift+restart [19:14] Ruff_Wizard[m]: what was it than?) F2 is typical for lenovo [19:14] F12 gives me some menu [19:14] Maybe f10? [19:16] For some reason my computer calls it quick vs. diagnostics boot. No fast or secure boot. [19:16] f12 should give you normal win boot menu [19:17] sure [19:17] Hi, we have random freezes on ubuntu server 16.04 under esxi 6.5. Or 14.04 and 12.04 machines don't suffer from this issue. There's no GUI/X/wayland on the systems, just webservers. See multiple people reporting this, but most have issues whilst using X and didn't see any real solutions other that people suggesting to move to another ESXi version or hyper-visor. Surely there must be a different solution [19:17] But diagnostics is the one I want [19:17] cause secure boot is disabled in BIOS / UEFI [19:17] and F12 - is WINDOWS boot menu [19:17] LastDream: is that not what I want? [19:17] Ruff_Wizard[m]: no [19:17] Ruff_Wizard[m]: BIOS is a small chip on motherboard with system firmware [19:18] Well I'm not on it anyway [19:18] installing virtualbox gives me command not found error still even after purge and reinstall [19:18] Ruff_Wizard[m]: pressing specific key when power up pc [19:18] Ruff_Wizard[m]: let's you enter it's settings [19:19] Ruff_Wizard[m]: well maybe F1 will help [19:19] Ruff_Wizard[m]: if pressed several times after you press power on [19:19] LastDream: I understand now. I just didn't know difference between the two. [19:20] I'll try later [19:20] I'm in it now [19:20] I'll let you know what key it was when I find out [19:21] Ruff_Wizard[m]: well for me it's just curiosity) I have acer myself) [19:21] * CoJaBo just got an Acer plaptop [19:21] almost tnothing seems to be supported :/ [19:21] I think you're right, I think it was F1 [19:21] Splash screen said F1 [19:22] Currenct issue, all the touchpad settings are grayerd out.. why? [19:22] Ruff_Wizard[m]: maybe. Don't really know how it looks on old lenovo, but expect you should see blue screen [19:23] Ruff_Wizard[m]: with a bunch of tabs and settings [19:23] It's only about 1 year old [19:23] And it was F1 [19:23] Just did it [19:23] Ruff_Wizard[m]: than you need boot section [19:23] Ruff_Wizard[m]: check that secure boot off [19:23] Ruff_Wizard[m]: and usb-boot is on [19:24] Ruff_Wizard[m]: and usb stick should be on top of the list [19:24] Ruff_Wizard[m]: of bootable devices [19:24] Ruff_Wizard[m]: so that you'll be able to load from usb stick after reboot [19:26] * =( [19:26] No secure boot option. I changed Boot Mode from Quick to Diagnostics. USB CD is at the top of the list, but it didn't boot to CD last time. Need to find what option to enable. [19:26] Wait [19:26] There is a secure option [19:26] It's off [19:27] Ruff_Wizard[m]: and you're using CD or USB stick? [19:27] DVD, to be precise. [19:27] Ruff_Wizard[m]: it's external ? [19:27] (09:18:13 μμ) i_need_an_adult: installing virtualbox gives me command not found error still even after purge and reinstall ==> put the exact command and output to paste.ubuntu.com [19:27] hi [19:27] Internal optical drive [19:28] Ruff_Wizard[m]: well USB CD seems strange than [19:28] Ruff_Wizard[m]: how did you create the dvd? not all tools support uefi [19:28] Ruff_Wizard[m]: as it should be on sata. Maybe other options? [19:28] alkisg: my standard bundled burning software [19:28] I got it to work last time [19:28] Burn iso, right? [19:28] OK [19:28] Yes [19:29] i_need_an_adult: the command is called VirtualBox [19:29] There must be an option for CD-ROM boot somewhere [19:29] Ruff_Wizard[m]: it's defined by bootable device list [19:29] Ruff_Wizard[m]: and it's sorting [19:30] Oh yeah [19:30] As I thought [19:30] Ruff_Wizard[m]: all you need - to have cd in before reboot [19:30] So that's not an issue [19:30] i'm try to mount /home from nfs server, it mouns ok by ethernet but wait forever with wifi, how can mount by wifi same way as ethernet? [19:31] Ruff_Wizard[m]: don't really know what the hell it may be. Last time i used cd was ~6 years ago [19:31] Ruff_Wizard[m]: =) [19:31] LastDream: I understand, I appreciate the help. [19:31] Ruff_Wizard[m]: just check secure boot once more [19:31] Ruff_Wizard[m]: it may be turned ON and greyed out [19:32] Ruff_Wizard[m]: in that case you should set-up bios password [19:32] Ruff_Wizard[m]: reboot with it [19:32] Ruff_Wizard[m]: and than it will be available to turn off [19:32] is selinux enabled on ubuntu 16? [19:32] Ruff_Wizard[m]: at least i had that problem when did that to my laptop [19:33] Ruff_Wizard[m]: though it was off , but when looked attentivly - it was on and not changeable [19:33] anyone know how to install heimdall to ubuntu 16.04+ [19:33] ? [19:33] urgodfather: no [19:34] Durgeoble: are you using network manager? did you check to allow that connection for all users? [19:34] chuun sudo apt-get install hemidall-flash [19:36] https://launchpad.net/ubuntu/xenial/+package/heimdall-flash [19:36] I think I know what was wrong [19:37] urgodfather: E: Unable to locate package heimdall-flash [19:37] xenial main restricted [19:37] Ruff_Wizard[m]: and?) [19:38] alkisg: i use the default network manager, and can connet by wifi, but for some reason the sistem dont connet until /home is mounted [19:38] chuun: it's in the repos, in universe [19:38] !info heimdall-flash xenial [19:38] heimdall-flash (source: heimdall-flash): tool for flashing firmware on Samsung Galaxy S devices. In component universe, is extra. Version 1.4.1-1 (xenial), package size 40 kB, installed size 114 kB [19:38] Durgeoble: by default, wifi connections have passwords and are only enabled after the user logs in [19:38] anyone knows convenient lan scanner? [19:38] LastDream: I was confusing "USB CD" with my DVD drive. USB CD was at the top. [19:38] Durgeoble: so, you need to edit the connection, and click on "allow this connection for all users" [19:39] ducasse: okay, how do I add universe? [19:39] Ruff_Wizard[m]: hmm maybe. Sonetimes it can't be seen unless you have something in it [19:39] Ruff_Wizard[m]: though if you have only one DVD drive what the hell is USB CD than? [19:40] chuun: look at 'software and updates' under settings === SimonNL_Afk is now known as SimonNL [19:40] LastDream: I think I just ignored it because it has a long name. I think USB CD is boot from USB? [19:40] alkisg: where is that setting? i see "all users must connet to" but nothing to allow all ussers [19:40] Ruff_Wizard[m]: not sure. In general it's called USB volume and visible when usb is plugged in [19:40] Is there aNY way to adjust toubchpad settings in kubuntu? [19:41] CD/DVD rom mounts with photo cd installed but I can't see the contents.. Dolphin reports "Could not enter folder /bla/bla/bla" .. any advice how to remedy this? [19:41] Ruff_Wizard[m]: anyway, if your DVD is higher priority that HDD/SSD it should skip empty drives and try to load from next on in list [19:41] My DVD drive is ATAPI CD0 HL-DT-ST DVDRAM GUC0N LastDream [19:41] It wasn't at the top [19:41] Durgeoble: second check box there: http://i.stack.imgur.com/uRMxu.png [19:42] Ruff_Wizard[m]: it should be gigher that HDD / SSD [19:42] Ruff_Wizard[m]: *higher [19:42] Durgeoble: are you sudoer? I don't know if non-sudoers can see that check box or not [19:42] Ruff_Wizard[m]: but it can be not the 1st one [19:42] Now I've changed it [19:42] LastDream: Why not? [19:42] Ruff_Wizard[m]: loading just goes that way: check 1st drive. If exits - load [19:43] Ruff_Wizard[m]: if nothing in - go to 2nd in list [19:43] Ruff_Wizard[m]: so if you have only DVD in, it will anyway come to it [19:43] alkisg: check the box but no VPN configured, and yes, im sudoer an can use sudo command [19:43] But I've just set it to be first? [19:43] thank you ducasse [19:43] Ruff_Wizard[m]: ahh ok. just set first) it will be easier) [19:43] Ok [19:44] I wonder if I can leave quick boot on [19:44] Ruff_Wizard[m]: just read later how it checks bootable devices. And how boot order works [19:44] on trusty, when I log in as a user, what process sets the value of DBUS_SESSION_BUS_ADDRESS in my environment? [19:44] Durgeoble: ignore the vpn setting, that was just a random picture from the internet. If you save the wifi connection, you should see it at `sudo ls /etc/NetworkManager/system-connections/`. Then it's good to go. [19:44] Ruff_Wizard[m]: you can [19:45] Ruff_Wizard[m]: it's about testing [19:45] Ruff_Wizard[m]: and skipping some system tests [19:45] Ruff_Wizard[m]: you may have turn on legacy mode [19:45] I left quick boot on [19:45] Ruff_Wizard[m]: but it depends on your laptop [19:45] ecdhe: in `ps faux` you should be seeing a dbus-launch command, afaik that's it [19:45] It's working [19:46] I,'m in the CD [19:46] thanks alkisg [19:46] np [19:46] Ruff_Wizard[m]: well ok) it's simplier that with lenovo) [19:46] Ruff_Wizard[m]: for acer i had to change boot mode too) === ben_r_ is now known as ben_r [19:46] LastDream: it is exactly what you say, I think diagnostic boot is just about tests [19:46] Ruff_Wizard[m]: nope [19:47] Ruff_Wizard[m]: you mess windows diagnostic [19:47] And the windows logo looks stretched [19:47] Ruff_Wizard[m]: and bios tests [19:47] Yeah [19:47] Ruff_Wizard[m]: that's totaly different things [19:47] And it makes the logo look stretched too [19:47] Ruff_Wizard[m]: lol. It's low resolution [19:48] alkisg: i can see it [19:48] Durgeoble: nice, so, your wifi connection should be up before login, and so you should be able to mount home [19:49] but i cant, sistem waits forever if use wifi but i can mount manually after system is ready [19:49] alksig, found dbus-launch on my trusty system. Then I checked on my xenial systems, and it's not running there. Any idea how DBUS_SESSION_BUS_ADDRESS gets set on xenial? [19:50] dbus-daemon shows up [19:50] anyone knows tools to list all available smb shares? [19:51] Question: if I install Ubuntu now, and in future I free up more space on my hard drive, will Ubuntu be able to make use of some of that space? [19:52] Ruff_Wizard[m]: you'd have to resize the partitions [19:53] ecdhe: Is that difficult to do or a bad idea in any way? [19:53] Ruff_Wizard[m]: it's not hard; I used gparted, it works really well. [19:53] OK. [19:53] Ruff_Wizard[m]: you should always back up your files before you use any partition editor though. [19:54] hi, I'm trying to do multiarch (amd64 on armhf via QEMU) but I can't get apt to play along [19:54] if I try: sudo apt-get install libc6:amd64 [19:54] then I get: E: Package 'libc6:amd64' has no installation candidate [19:54] same for any package I try [19:54] hi all [19:54] I have backed up my main files atm [19:54] hope everyone is having a great one [19:54] I already did dpkg --add-architecture amd64 [19:54] and added [arch=armhf,amd64] to my sources.list [19:54] kmc: what you are saying doesn't make sese [19:54] kmc: why would the same host have both armhf and amd64? [19:54] https://wiki.debian.org/QemuUserEmulation [19:55] kmc: one would be inn the qemu system [19:55] no [19:55] kmc: one would be in the host [19:55] this is qemu USERSPACE emulation [19:55] i've done it before with chroots [19:55] Another thing, is Ubuntu known to have any problems with scaling? My screen looks like this: [19:55] but i want to avoid that here [19:55] anyone got some advice for the following, my external hdd disconnect and then reconnected, now all the sudden I am getting the following error, exited with non-zero exit status 32 [19:55] kmc: your host is armhf? [19:55] yes [19:55] odroid xu4 [19:55] * Ruff_Wizard[m] uploaded an image: file1509652535372.jpg (1663KB) [19:56] Oh crap I forget that this is irc [19:57] qemu userspace emulation emulates a single process, and translates the syscalls so they go to the real host kernel [19:57] when everything's set up properly it lets you just run a foreign architecture binary as though it were native [19:57] there's no futzing with VM configurations, and no wasting RAM on a whole nother kernel and userspace [19:57] anyway I'll try the schroot method [19:59] Any idea how the environment variable DBUS_SESSION_BUS_ADDRESS gets set on xenial when a user logs in? [20:00] WTF, the installer hasn't detected Windows 10 [20:01] I think I need to try with quick boot turned off [20:02] Or rather, fast startup [20:04] I wonder if fast startup and quick boot are the same thing [20:04] Ruff_Wizard[m]: https://help.ubuntu.com/community/UEFI#General_principles - there's a note on it here [20:07] "In your firmware, disable QuickBoot/FastBoot and Intel Smart Response Technology (SRT). If you have Windows 8, also disable Fast Startup." [20:07] "also disable Fast Startup" implies that it is not the same as Quick Boot. [20:07] Ruff_Wizard[m]: fast startup, is a windows option to skip bios, fast boot is a bios option to skip some checks on boot [20:08] I wonder what happens if I only disable one or the other [20:08] I'll do both, to do everything correctly, but I'm just curious [20:09] CD/DVD rom mounts with photo cd installed but I can't see the contents.. Dolphin reports "Could not enter folder /bla/bla/bla" .. any advice how to remedy this? [20:12] Scunizi, you mean you have media format files on that cd/dvd ? ubuntu-restricted-extras is installed ? [20:15] well, i can move the mouse pointer now. Just have to figure out how to use middle-click, sound, and backspace <_< [20:21] Is it possible that scaling can be different on an Ubuntu LiveCD vs an install? [20:28] Ruff_Wizard[m]: do you mean screen resolution? [20:30] I mean how big things are; how well things are adapted to fit the resolution, if you like [20:30] I have shit-tons of white space on the sides in my browser [20:30] In firefox [20:30] And the controls are kinda small but I can live with that [20:31] ecdhe: could be the doing of the package dbus-user-session [20:32] anyone else run kaby lake mobile hardware get a ton of ACPI errors on boot and shutdown? [20:34] archpc, ubuntu version ? [20:35] 17.10 [20:35] considering moving to 16.04 lts === Chinesium is now known as Funk [20:37] archpc, nope, i think newer ,, in your case, is betetr [20:38] *better [20:38] hm [20:38] it seems so.. broken [20:39] some stuff just doesn't work, like the unity/gnome WiFi menu on the top right [20:39] archpc, any other issue ? apart the spam [20:39] archpc, you installed unity ? [20:39] no, it's gnome [20:39] ok [20:39] im so used to calling it unity [20:39] random little freezes, ACPI errors, and stop jobs to the point where it takes 30 min to shutdown [20:42] archpc, that could be a wifi issue [20:43] https://bugs.launchpad.net/ubuntu/+source/wpasupplicant/+bug/1725690 [20:43] Launchpad bug 1725690 in wpasupplicant (Ubuntu) "Ubuntu 17.10 not shutdown error "a stop job is running for wpa supplicant" [Undecided,Confirmed] [20:44] so I have to update my kernel apparently [20:45] and find firmware [20:45] archpc, that is for Qualcomm Atheros ? you have it ? [20:45] yea [20:45] oky [20:53] am working in virtual terminal and with small periodicy my screen display the message [18901.219419] (numbers may wary) rtlwifi: AP off, try to reconnect now. - this definitely not belongs to my text editor am working in, and if i press refresh screen hotkey it will be gone, but will appear again some moments later. am looking at the way to get rid of this, any advice where to look at would be welcomed [20:53] alexas: soudns like you are on a console, rather than ssh'd in? [20:53] alexas: those are kernel messages [20:54] nacc: i have different terminal with different things going, in both this being displayed, i suppose it important and to do with a network settings but apparently it is not affecting the workflow, it only show itself. would like to rid off it. [20:55] i did "dmesg | grep firmware" but no warnings showed, so should I update the kernel [20:55] or debug it [20:55] * archpc isn't a kernel debugger [20:55] archpc: sorry, am talking to myself here [20:55] alexas: there's a way to control what is shown in the console https://unix.stackexchange.com/questions/13019/description-of-kernel-printk-values [20:57] akik: so i suppose if it is an issue on that level i better debug it then just close my eyes on it [20:57] can someone help me of where should i look, i guess i just need to google that error... [20:57] alexas: if it's a message you don't care about or can't do anything for [20:58] akik: i just want to find out why it's happening, for now i can ignore it really, but ultimately would be good to find out what is happening [20:59] how'd it go with that guy that wanted to put ubuntu on his lenovo? [21:00] Ruff_Wizard[m] you still here? [21:00] Turns out that Firefox scaling can be fixed by tweaking the about: config [21:00] what did you end up doing? [21:00] dual boot? [21:02] urgodfather: install didn't detect windows and it turned out that I need to turn off a couple more boot settings but in the meantime I've got stuck faffing around in the Ubuntu livecd and also IRL stuff [21:02] The fact that scaling is not good by default got me worried but I've managed to fix Firefox, as I say [21:03] how was it not good? [21:05] Firefox was small as shit. Pages had white space at the sides. I've changed some setting and now it seems better [21:05] A PCWorld article helped mr [21:05] *me === faqeer is now known as staff_member === staff_member is now known as faqeer [21:10] Ruff_Wizard[m] try to go easy on the cussing [21:11] alright, on the problematic ubuntu system [21:11] Linux laptop 4.13.0-16-generic #19-Ubuntu SMP Wed Oct 11 18:35:14 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux [21:12] urgodfather: alright, I'm sorry [21:13] anyone know why I can't connect to mysql server remote? do I need to add static ip address somewhere ? I'm using ubuntu server 17.10 [21:13] IDK if it's only on the LiveCD or what, but for some reason some text and images look less crisp than on windows [21:13] Ruff_Wizard[m], check your screen res [21:13] I know this is not objective, but still [21:13] for some reason mine defualted to 768p when it's a 1080 panel, changed it and it's great [21:14] UsQUE: normally mysql only listens on localhost [21:14] archpc: it's set to my screen res [21:14] hm [21:14] what font [21:14] Maybe I should just stop faffing around and install it and see what happens [21:16] archpc: what do you mean?what system font am I using? [21:16] yeah [21:17] on my end the ubuntu regular font looks way better than on windows [21:17] I haven't changed system font [21:17] hmm [21:17] Idk how to find font anyway [21:18] Could it be that the LiveCD looks worse than an install will? [21:18] so, how does one update the kernel [21:18] i don't think so, maybe your gpu driver? [21:19] Could it be that the LiveCD version doesn't have a necessary driver or something? [21:19] possibly, what're your specs? [21:19] Um [21:19] Intel 520 Graphics + AMD R7 M370 [21:19] hmm [21:20] The second one is for gaming [21:20] Ruff_Wizard[m] throw it out and get a mac [21:20] lol [21:20] urgodfather: lol [21:20] Is that what you use? [21:21] for the real work [21:21] linux is play [21:21] and well windows is just winblows [21:21] How so? [21:21] for me... [21:22] I mean about Linux [21:23] i use linux for vairous tasks... different flavors for different roles... i.e. libreelec for my HTPC, Kali for forensics stuff, ubuntu for roles like the imaging server i just built. [21:24] chat tomorrow time to go [21:25] and apparently 17.10 doesn't have an HWE kernel, so i have to find a kernel PPA or something [21:25] archpc: that statement sort of implies ignorance of what the HWE kernel is [21:26] haha i just got spammed and called a negro [21:26] !mainline | archpc: for mainline builds. [21:26] archpc: for mainline builds.: The kernel team supply continuous mainline kernel builds which can be useful for tracking down issues or testing recent changes in the Linux kernel. More information is available at https://wiki.ubuntu.com/Kernel/MainlineBuilds [21:26] anyone else? [21:26] at least call me something ofensive, it’s 2017..! [21:27] nacc, wrong term, sorry lol [21:48] Is there any known upgrade mechanism from a freshly installed "Ubuntu Gnome 17.04" to "Ubuntu 17.10"? Just trusting the standard Canonical Upgrader results in a system with is unable to login... [21:50] It seemed to have replaced gdm3 with ubuntu colored login and it wont load any desktop. nor does it create any Xorg.0.logs probably because of that fancy new wayland :( [21:52] de-facto: I did that, and it worked for me. What desktop options are presented to you? Apparently 'Ubuntu' uses Wayland, but (at least for me) there is a 'Gnome' option which uses Gnome 3 + Xorg [21:54] it was on a pc at work, but i tried some of the login DEs and none of them worked [21:54] accepted password, then screen became black for some seconds and bounced back to password prompt [21:54] just wanted to gather some ideas so i can try to fix it tomorrow [21:54] i really dont want to reinstall that ... [21:55] Hmm. Can you login text-only, via Ctrl-Alt-F1? If so perhaps if it's a Gnome problem then something lightweight (e.g. XFCE) could be installed and used whilst figuring out the problem [21:56] And yep, understood. Could be video driver issue if it's a fresh upgrade [21:57] so if nvidia, might be worth (un)installing proprietary drivers, in case whichever you're using at the moment don't work? [21:57] (same if AMD I would assume) [21:57] yes i can login on ttyX [21:57] i think its intel [21:58] dell something [21:58] Am surprised that there's no Xorg log file even when using the Xorg session, that doesn't seem right. [21:59] yeah its an unmodified default install instead of having its own home partition which i put in /etc/fstab all other OS is default [22:00] yeah video drivers was my first suspect hence i searched Xorg.0.log from ttyX but since it wasnt there i called it a day [22:00] have to look into video issues tomorrow then [22:00] where does wayland log to? [22:01] I don't know myself, but this seems useful: https://askubuntu.com/questions/835359/wayland-crash-log-file [22:02] Which suggests it might just be in syslog [22:04] thats a good idea i will look into syslog for entire boot process tomorrow [22:05] thanks [22:08] in case that doesnt work: is there a meta package equivalent to a "Ubuntu GNOME 17.10" (which as distro doesnt exist) for a pure (default) gnome experience? [22:09] de-facto: install gnome-session and you'll get it [22:10] ok thanks [22:14] I ran "sudo /sbin/init 1".. instantly got a black screen saying something about rescuing and "press CTRL+D to continue", I did and it's now just repeating the loading splash screen for the distro :P. What did I just do? [22:18] rawruw: you ran a command as root and didn't know what it did? [22:20] nacc: hey, being a linux admin on a nuclear sub isn't easy. [22:21] rawruw: init boots into that legacy SysV runlevel [22:21] rawruw: 1 is rescue mode [22:22] What does this line in /etc/default/grub do? GRUB_CMDLINE_LINUX="persistent" [22:26] It makes the GRUB menu always appear, even if you only have 1 kernel and 1 OS [22:30] Is there a dark-screen overlay in ubuntu desktop? [22:34] genii: thank you! [22:36] How can one have multiple monitors display different TTY sessions without X (CTRL+ALT+Fx text console)? Maybe with an additional framebuffer device? [22:42] guys, how can i turn on hybernate instead of suspend? in power setting onf suspend is shown, and it does not work with my machine [22:42] xubuntu 16.04 [22:42] I dunno which instance of my system is to blame, but here is what happen. [22:42] My emacs version is 27.0.50 and am running it under Ubuntu 17.10 in [22:42] virtual terminal (aka console mode) and if I press for example M-x [22:42] and got myself to echo area and there I type command that I want to [22:43] cansel with C-g if I pressed it two times and then I press backspace [22:43] my emac is got feezed and do not react to any input untill I kill the [22:43] process, and even after that the terminal instance still remain [22:45] if someone interesting there is answer https://askubuntu.com/questions/462472/xubuntu-14-04-how-to-enable-hibernate [22:46] I don't feel like bothering people here again and it's almost bedtime but I've disabled Quick Boot and Fast Startup and the Ubuntu installer still doesn't detect Windows 10 and I don't know what to do. [22:48] Ruff_Wizard[m], one thing i can think of is Intel SRT, see #2 https://help.ubuntu.com/community/UEFI#General_principles [22:49] What category would that be under in the options? [22:50] Ruff_Wizard[m], not sure, it is in the bios, but intel only [22:50] else there should be no reason not to boot uefi mode and detect any windows [22:51] should I be worried about the ACPI errors? https://paste.ubuntu.com/25875798/ [22:53] why everything made on linux is so ugly ? [22:54] Prest0o, example? [22:54] Prest0o: do you have an actual support question? [22:54] philosophical in #ubuntu-discuss please [22:56] archpc [22:56] gnumeric for example [22:56] abiword [22:56] and so on [22:57] all looks programed by the same visual designer [22:57] https://upload.wikimedia.org/wikipedia/commons/d/db/Gnumeric_1.6.3_Ubuntu.png [22:57] check this out, all the buttons with huge margins, [22:57] so make your own :D [22:58] compare this image with the one of WPS office for example [22:58] https://i0.wp.com/softwarejourney.co.za/wp-content/uploads/2015/09/WPS_spreadsheet.png [22:58] thats a huge visual impact on style and perfection [22:59] i mean, its like comparing a kid drawing with a profesional painter [22:59] the symmetry is respected [23:00] and squared, aligned... [23:00] abiword, gnumeric, and so on... even the menus around linux for configuration are made same way [23:00] Prest0o: so, no, you don't have a support question. [23:00] Prest0o: please follow oerheks' advice, either #ubuntu-discuss or #ubuntu-offtopic [23:00] nacc technical support? [23:01] well, i had a problem but its related on lubuntu [23:01] dont know if it apply on this channel [23:01] Prest0o: yes, that's a supported flavor [23:01] Prest0o: and yes, i meant this is a technnical support channel [23:02] o am on windows right now, next time i open again the USB Live i will join to ask then, [23:06] there is a tweak tool, tons of themes that might do better [23:07] even if there is a way to fix this mess, why dont make it correct by default? [23:08] microsft might be as crap as you want but i can't complain on symmetry and margins, [23:10] Prest0o, please continue your rant in offtopic, stop it here. [23:11] your issue is not valid, as 1.6.3 is way old. [23:12] ok [23:19] how (if possible) can i load a page inside a page?… i have a main .html file and when i request it, i want it to display its code but also code from a page in another server that is also mine. (im crossheping in linux and html) [23:24] porfa: wrong channel [23:25] porfa: try #web [23:46] why does kubuntu freeze desktop everyfew minutes ? [23:54] Hey there, I'm having issues with erpxe booting systemrescuecd. The erpxe is set up on ubuntu 16.04 MATE. [23:55] when booting to it over the network it grabs rescue64 and initram.igz just fine, but then it tries to connect via http to grab the last file, and it times out. [23:56] I can wget the file via the same path, but for some reason it can't get it when booting. Might anyone have any suggestions? [23:56] the path it goes for is http://172.16.5.131/shares/er/sysrescue/sysrcd.dat [23:56] and if i wget that url i get the file just fine from another machine