[00:05] heys. [00:06] running ubuntu as main OS and have a pen drive that has a kali live part as well as another part on same usb with windows.iso [00:06] anyone know how i can get the windows.iso to boot? [00:06] Yeah, you'l have to extract it. Unetbootin can help. [00:07] Unless you patch a ramdisk driver into the boot.wim file inside the ,iso so windows can run in a ramdisk. [00:07] But that's a real pain. I know from experience. [00:09] yeah....this bootloader business is proving to be tricky for me. [00:10] Why is sendmail not a dependency for php-mail? [00:10] i will give this unetbootin thing a go. what i had done was dd wrote kali linux to it, then made an encrypted persistent part and then made the ntfs part and dd wrote the windows iso to it. [00:11] i will search both things you mentioned. thanks [00:11] Well, you just need to extract the files from the Windows .iso, DDing it isn't necessary. But the bootmgr file has to be on the root of the first partition if I remember correctly. [00:12] I can find some specific documentation to add menu entries manually, if you give me a few minutes. [00:12] booting windows.iso with grub? [00:13] Grub4dos works best IMO. [00:14] not from the .iso file, you need to unpack iirc [00:14] Yeah. [00:14] ok [00:14] Copy the bootmgr file, sources and boot folders out of the ISO to the drive, and add the following entry to Grub4DOS: [00:14] Title Install Windows [00:14] chainloader /bootmgr [00:15] Similar for any other bootloader, just boot the /bootmgr file as a kernel with the flash drive as the root partition. [00:16] I'v done it before. [00:16] ok. also this question then [00:16] let's suppose im a moron [00:16] ... no [00:16] and i have this partition ive set aside on my main drive for windows to go on....and ive got the USB that i mentioned [00:17] would it be easier for me to just erase the usb and redo it with only windows, so i can install that crap on here [00:17] and then just make another kali live if i want after? [00:17] That's an option. [00:17] i just wanna play some league of legends *-* [00:17] I'm pretty certain LoL work in PlayOnLinux. [00:17] wwwuuuuttt is that??? [00:17] *searching* [00:18] It's a frontend to wine that performs automatic configuration for software to make it work. [00:18] Wine lets windows software run on Linux. Not all of it, but a decent amount. [00:19] yeah, i knew of wine. i just didnt give it a second thought cause i figured that wouldnt suffice. damn.... [00:20] im checking on that for real. thats the good 411. ty [00:20] wine on kali-live? LoLz [00:20] no no. im on ubuntu [00:20] kali live is just on the usb [00:22] It appears to be in the supported applications. [00:22] https://s6.postimg.org/e3hm9p3r5/Screenshot_from_2017-12-16_18-19-42.png [00:22] yessir. i need to change my pants now [00:22] XD [00:23] You'l have to manually download and select the installer file. [00:24] I'm testing it. [00:37] Lucky-MF: Well, it appears the script isn't completely functional with the new launcher. It installed successfully but wouldn't launch. [00:38] I'm going to try a few different settings. [00:38] yeah i had briefly noticed some comments about stuff like that [00:38] i just figured, hey....its wine and stuff so you'll have that [00:41] I think I know which library it needs. [00:41] are you talking about playonlinux or LoL? [00:41] It's a specific file from the Microsoft VistualC++ runtime. [00:42] wine & pol has its own support channel [00:42] !wine [00:42] WINE is a compatibility layer for running Windows programs on GNU/Linux - More information: https://help.ubuntu.com/community/Wine - Search the !AppDB for application compatibility ratings - Join #winehq for application help - See !virtualizers for running Windows (or another OS) inside Ubuntu [00:42] Allright. [00:42] ok. thanks again [00:58] Guys if I place this command in crontab it wont run sudo /etc/init.d/odoo-server start [00:58] anybody know why? [00:58] this is the sudo crontab [00:59] You don't need the sudo command if it's in the system crontab. [00:59] Just put /etc/init.d/odoo-server start in /etc/crontab [00:59] TheNH813, yes I know that I didnt mean to post sudo here [00:59] Okay. [00:59] TheNH813, for some reason the server only starts if I manually input the command [01:00] That is strange. [01:00] Does it generate any logs when it fails? [01:02] TheNH813, let me look, one sec [01:04] for odoo on 16.04 you would need a service file to start the service properly, https://linode.com/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/ [01:05] TheNH813, I get this, but it's not an error: Dec 16 18:04:19 server CRON[989]: (root) CMD (/etc/init.d/odoo-server start) [01:07] pennTeller: Take a look at oerheks advice. [01:07] oerheks, thank you [01:07] Specifically the create a service section. [01:07] oerheks, do you have any tips on whitelabling odoo? [01:07] TheNH813, will do thanks [01:45] Hello everyone [01:45] Hello [01:45] just a small question [01:45] Yes, Go ahead. [01:45] i'm switching my server to a vps that's running ubuntu [01:46] on this vhost (ubuntu) when i do: sudo bash -l to gain a root shell, the $HOME env. variable still points to my user's home, ie. /home/user instead of /root [01:46] That's normal, I believe. [01:46] Use sudo su to login as root. [01:46] is it better to do su - instead of sudo bash -l ? [01:47] ie. to get a shell where $HOME points to root account's actual home, and not the (normal) user's home? [01:47] The root account has no set password, su - won't work. [01:47] Use sudo su to login as root, [01:47] Then ~ will point to /root [01:47] uhh.... no set passord? [01:47] I'l show you. [01:48] No, no password is set for security reasons. === jstein_ is now known as jstein [01:49] uh dude.. this has been basic unix for decades... only changed slightly in implementation by 'shadow' [01:50] I'l send a screenshto link in a second [01:50] TheNH813: so what do i type when i type "su" and prompted for a password? [01:50] uh...ok [01:50] delt: The root account is locked, it has a password that is marked as invalid. When using sudo, you use your own user password. [01:51] maybe that vps is properly jailed to $HOME [01:51] (The password hash has a "!" in it, which isn't character that will ever be generated by the hash function, ergo it'll never match) [01:53] uhhhh.... [01:53] [pts/0][root@172]:~# grep '!' /etc/shadow | grep -i root [01:53] [pts/0][root@172]:~# [01:53] [pts/0][root@172]:~# grep '!' /etc/passwd | grep -i root [01:53] [pts/0][root@172]:~# [01:54] show root for me [01:54] You don't type su to login as root. [01:54] root:!:..... [01:54] Use sudo su or sudo -i [01:54] delt: Well, if you've set a root password, this won't be the case anymore. But I'm pretty sure if you lock it again, it just prepends a bang to the hash. [01:55] https://s6.postimg.org/9vmu1da5t/Screenshot_from_2017-12-16_19-50-07.png [01:55] delt: Regardless of the mechanism, the root account is locked. It's possible the implementation of the mechanism has changed and I'm not aware. [01:55] See how it only changes the environment variable of ~ ($HOME) when you log into a full root prompt? [01:55] whoa.. what has canonical done to linux???? :O [01:56] Pretty much any Debian based distro is like that. [01:56] TheNH813: i can't see with all those smudges over the screenshot [01:56] and no, linux mint isn't [01:56] mine != boon2 [01:56] mint* [01:56] Well, that's my hostname. I don't want it in the screenshot. [01:56] XD [01:56] ok, thanks a lot [01:57] ubuntu-desktop, open term, ssh to a debian box, cat a file, I can drag my mouse over text, right click, "copy" (also x clip works, but hard to demo) - still sshed to debian, vim a file, now tying use the mouse to select, I think it telling vim to select text, but it doesn [01:57] It makes it easier for admins to have root access. That way you don't need to give anyone a "root" password. Just give them sudo and admin privilages. They use their own password to access a root shell. [01:57] The security benefit is nobody needs to share the root password. [01:57] doesn't let me copy it to my local ubuntu clipboad. how do I turn that off? [01:58] TheNH813: He seems to have left. [01:58] Ah. [01:58] Use the middle mouse button to paste. [01:58] Any highlighted text can be pasted elsewhere by clicking the scroll wheel. [01:58] It's actually a seperate clipboard in and of itself. [01:59] TheNH813: I can't do that if it doesn't let me select [02:00] You can't click and drag over characters to highlight them? [02:00] yes at the pormpt, no when I run vim [02:01] What terminal are you using? [02:01] GNOME Terminal 3.18.3 [02:01] Using VTE version 0.42.5 +GNUTLS (pasted using middle click) [02:02] from the about dialg. [02:02] Hm.... [02:02] Let me test that. [02:03] well, you need a box that eats your mouse [02:04] Oh, I think apt is telling me to run autoremove. I have like 10 old kernels. Woops. [02:05] Copying text seems to work in vim over ssh on gnome-terminal. [02:06] if you want to create such a monster, I happen to have just the thing: https://github.com/CarlFK/video-stack-deploy/tree/nbpy/scripts ./mk_usb_installer.sh sdc configs/voctotest.cfg [02:07] TheNH813: what disto did you ssh to? [02:15] back and more confused than ever, now that I've actually gotten this OS installed. [02:16] I've tried to download six different apps, and it isn't working. Bitcoin for instance, I get it in the store, then install, and...it's nowhere on the computer. [02:18] Bitcoin is in my "Installed" column in Ubuntu Software, but it's not anywhere in my computer. [02:19] which bitcoin [02:19] `' [02:19] Core. [02:19] no, type the command "which bitcoin" [02:19] Ubuntu Software just calls it "bitcoin" but it's supposed to be Bitcoin Core. [02:20] marijuana: I suspect disgruntledanon isn't at a prompt [02:20] at what? [02:21] at a terminal, if you can get to it [02:21] disgruntledanon: prompt, shell, terminal window. umm, I hit ctrl-alt-t to open it. [02:22] oh, the command prompt. No, I have been trying to use Ubuntu Software for these downloads - in fact, installing apps on the command terminal's been a chore for me so far, and most apps with linux versions don't seem to give the command. [02:22] hit super button, type term - the icon is a black screen with white >_ [02:23] which version of ubuntu are you running btw? [02:23] you can install however you like, but investigating is done easier at the prompt [02:23] 14.06 [02:23] or, wait [02:23] 16.04, I'm an idiot [02:24] i dont seem to have any package called 'bitcoin' in my repos. perhaps you installed libbitcoin? [02:25] unless software center has its own repos or something.. that may be.. [02:25] I don't know, man, I just want my stupid apps in Ubuntu and it's been like four hours. [02:26] If this keeps up I might just have to learn how to put win10 back on here, virus as it is.. [02:26] please hold.. installing software center atm.. [02:27] I searched on Ubuntu Software for bitcoin, first result, installed, and the launch button is clickable, but it's not doing anythin [02:28] That's all I can tell you with what I know (see: goose egg) about Linux. [02:32] oh wow.. error much apt.. [02:33] ok now lets see.. [02:35] i dont even get a result for bitcoin in software center [02:35] although i think my install is broken [02:35] I've tried installing like four apps by now, both on their sites and on Ubuntu Software [02:36] None of them except this browser work [02:36] marijuana: Bitcoin isn't in the software repos that I now of. [02:36] <[n0mad]> it is [02:36] <[n0mad]> i see it [02:36] It is? [02:36] <[n0mad]> there's about a dozen results for bitcoin [02:36] <[n0mad]> one is titled bitcoin [02:37] <[n0mad]> i don't know what any of it does though [02:37] not on my system it isnt..there are result.. bfgminer cgminer, lib*, and some python stuff [02:37] I went onto the bitcoin site, clicked on linux, downloaded the file, and then opened the executable, which opened Ubuntu Software and started installing it [02:37] Did it error out? [02:37] But then....nothing. No files showed up in my system, no sign that anything happened, just nothing. [02:37] that was probably a repo [02:38] or ppa as they call it in debian [02:38] It was a .deb [02:38] if it opened software center instead of gdebi [02:38] Open a terminal, type in [02:38] sudo dpkg -i [02:38] Then drag in the .deb and press enter [02:39] See if it puts out any messages like missing dependencies. [02:40] TheNH813: about my mouse problem.. what distro did you ssh into ? [02:40] CarlFK: OpenWRT. [02:41] I can maybe try Debian in a VM if I still got that laying around. [02:41] TheNH813: I have that too. no problem. debian stretch, fairly minimal, vim eats my mouse . [02:41] Huh. That's absolutely bizarre. [02:41] that file i got from the bitcoin site is a tar.gz .. [02:41] disgruntledanon: I suspect you may have installed it, but the install package didn't include anything to add it to the ... anything gui. [02:42] Oh, it's a .tar.gz? [02:42] Extract it and see what's inside. [02:42] Hey, marijuana. [02:42] Hi guys, does anybody know why clonezilla makes a folder full of files not an iso? [02:42] Nice name. [02:42] thank you i picked it myself [02:43] Try ISOMaster or IMGBurn to rip a disk to a .ISO. [02:43] Maybe Clonezilla has a option for that, but I'v never used it so I can't say. [02:43] inside is just a filesystem with binaries and stuff. like a slackware package but worse [02:43] Lemme check. [02:43] alright, I finally managed to redownload anoter bitcoin thing from their site for linux 64 bit, and....yeah, nothing to click and drag into there [02:43] TheNH813, I have a small NUC as a server and I want to clone its disk in case I mess something up [02:44] pennTeller: making an iso is an extra step - I use it, I clone to a disk, I don't need an iso. but I think I have seen some mention of what you can do about it to make a "rescue cd" that boots [02:44] ahh i see.. ubuntu ppa [02:44] honestly -- I think I really should just reinstall win10 but I can't even do that because of partition stuff. [02:44] I found the PPA for bitcoin. [02:44] sudo apt-add-repository ppa:bitcoin/bitcoin [02:44] the PPA doesn't seem to work either [02:44] Then sudo apt-get update and sudo apt-get install bitcoin-qt [02:45] yea ^ [02:45] CarlFK, Clonezilla seems to have created a folder named myname-img and this folder seems to be full with what an iso image is usually full [02:45] CarlFK, I just dont understand why it wouldn´t make it an iso from the bat [02:45] Use ISOMaster, K3B, Brasero or IMGBurn if you need a instant ISO. [02:46] Followed your orders TheNH813, and I got "unable to locate package bitcoin-qt" [02:46] disgruntledanon, trying to install bitcoin-qt? [02:46] Let me check that then. [02:46] disgruntledanon, try using the snap package: sudo snap install bitcoin-qt [02:47] disgruntledanon, it should appear in ubuntu software [02:47] I was in ubuntu software but the apps I download off there straight up don't do anything [02:47] TheNH813, are those tools that I can boot into as well? [02:47] they don't show up in my apps/Super menu, they don't show up when I press Launch, nothing [02:48] TheNH813, whatever tool I use it has to be bootable since I only have the one computer nad cannot remove the hard drive [02:48] disgruntledanon, i meant the snap package should appear when you search for bitcoin not the .deb file you tried to install (obviously through Ubuntu software again) [02:48] i dont even see a deb file on bitcoin.org [02:49] deb what? [02:49] disgruntledanon, you could try logging out [02:49] hhhhhhhhhhhh [02:49] Tools? [02:49] For cloning disks? [02:49] Honestly [02:49] pennTeller: Disk cloning utils that are bootable? [02:50] If I knew a single bloody word that was being written in this chat I'd probably qualify for nuclear propulsions in the navy [02:50] TheNH813, correct, like clonezilla is [02:50] I want back to my virus windows 10 pls [02:50] What filesystem? [02:50] Try a GParted live USB/CD. That's what I use. [02:50] also that app you sent is Bitcoin Unlimited. My wallet save is only for Core. [02:51] probably. linux does require learning [02:51] TheNH813, that will allow me to clone a drive and turn the image into an iso? [02:51] learning or memorization [02:51] TheNH813, I´ve used Gparted but didn't know it could to this [02:51] both work. learning is more effective though [02:51] pennTeller: You want to clone a full install to a ISO? [02:51] TheNH813, yes [02:52] k, alright, just gonna, delete my stuff and figure out how to partition my SSDs back to be compatible with win10. [02:52] disgruntledanon, well, decide for yourself: snap info bitcoin bitcoin-qt [02:53] pennTeller: Does it have to contain just the software, or does it need configuration too? [02:53] TheNH813, I jus need a carbon copy of my whole disk drive as an iso. So that I can restore from that if I mess up my server. [02:54] TheNH813, I am told this is a common practice and that Clonezilla is used often [02:54] * marijuana wonders if dd would get the job done. [02:54] Well, if you just want to backup and restore a HDD, is there any reason it needs to be a .ISO? So it's bootable? [02:54] TheNH813, I am just weirded out because clonezilla game me a folder not an iso [02:55] TheNH813, I would prefer an iso to check integrity, If instead I have a folder, a file can be misplaced by a script or something [02:55] the iso cannot be modified as easily, so thats why [02:55] You can clone a HDD to a file and then create a checksum for it, but if you want .ISO, give me a few minutes to look some things up. [02:56] Sorry if I'm also a bit odd at this moment, Active Directory is beginning to get on my nerves. It's for a assignment I need to finish. XD [02:56] TheNH813, thank you lol [02:56] How large is the HDD? [02:57] TheNH813, 240 GB [02:57] Well, that's going to create a LOT of .iso files. [02:57] TheNH813, im sorry i dont see why that would be the case [02:58] About how much data is there? [02:58] Do you intend to burn it to DVDs or no? [02:58] TheNH813, no burning, just keep it in my NAS in case i need to restore later [02:59] TheNH813, its only got about 8gb so far since its a new install [02:59] Oh, that makes a lot more sense now. You want to use .iso file as a container for the disk. [02:59] Rather then as a burnable .iso. Got it. [02:59] Do you simply want to store a copy of the drive as a single file? [03:00] TheNH813, yes exactly [03:00] :) [03:00] DD can do that. It will also back up the entire partition table and boot records. [03:00] dd if=/dev/sdX of=/path/to/image [03:00] So to backup /dev/sda... [03:01] TheNH813, yeah but how am i going to run dd ? [03:01] Boot into a live USB or something. [03:01] TheNH813, unless i boot into a live cd and then run dd [03:01] yeah [03:01] dd if=/dev/sda of=/media/Backup/sda.img bs=1M [03:01] TheNH813, I suppose there is no other options [03:01] Is what I use. [03:01] TheNH813, I would just prefer a moer "automated" method than dd [03:02] Allright. [03:02] TheNH813, in order to decrease the chances of disk nuking [03:02] lol [03:02] TheNH813, who hasn't completely messed a disk with a simple dd mistake [03:03] Yeah, true. [03:03] I trust myself enough now, but I triple check that command for sure. XD [03:04] TheNH813, yeah it can get pretty scary second before pushing enter [03:04] TheNH813, thanks for your help anyway [03:06] Yeah besides copying and pasting the partition between physical drives in GParted or using proprietary software my mind is blank. [03:06] You're welcome for the help. Sorry I ran out of ideas. XD [03:07] TheNH813, no worries hah === im_dumbstruck-AW is now known as creativeboulder === im_dumbstruck-AW is now known as creativeboulder [03:23] hi [03:24] why if i do /etc/init.d/network-manager restart [03:24] the changements doesn't take effect? [03:36] I win! :set mouse= [03:36] if anyone wants to see what I was going on about, :set mouse=a - and then try to select text. fun times. [03:37] waltman: because there's a new sheriff in town ...goes by the name systemd [03:38] waltman: so you'll need to rethink your approach [03:43] tatertots: huh? [03:43] lol [03:51] waltman: open terminal [03:52] waltman: nevermind [05:05] can someone help me map a samba share? [05:05] i've followed this: https://help.ubuntu.com/community/How%20to%20Create%20a%20Network%20Share%20Via%20Samba%20Via%20CLI%20%28Command-line%20interface/Linux%20Terminal%29%20-%20Uncomplicated%2C%20Simple%20and%20Brief%20Way%21 [05:05] catalase: there is also a #samba channel if you like [05:09] hmmm [05:13] on snap, i got it to work [06:06] hi frands i need halp [06:06] i have ubuntu installed on a nexus7 and i cant login, lightdm is stuck in a loop [06:06] i cant access tty console because it goes to a blank screen [06:06] i dont have ssh running so i cant ssh in [06:06] all i have is a guest account [06:06] guest has no sudo access so i cant do anything [06:07] i think its possibly because i have a full harddrive either that or some kind of lightdm issue, but without console with sudo i have no idea what to do [06:07] nexus7ubuntu: you run ubuntu touch or ubports? [06:08] um [06:08] im running this: ttp://old-releases.ubuntu.com/releases/raring/ubuntu-13.04-preinstalled-desktop-armhf+nexus7.bootimg - http://old-releases.ubuntu.com/releases/raring/ubuntu-13.04-preinstalled-desktop-armhf+nexus7.img.gz [06:10] so thats a port i guess? [06:10] is there any way to get sudo on a guest account or change user on a guest account [06:11] nexus7ubuntu: nexus7 wifi is a tablet, you can run ubuntu desktop on it [06:11] nexus7ubuntu: and ubuntu touch is depraced, so install the new ubports method [06:11] so the tablet is essentially bricked is what youre saying [06:12] i have to install some other version of ubuntu on it [06:12] there is no way i can get ssh running for me to log in via this guest account or change users on this guest account or anything liek that? [06:12] nexus7ubuntu: read what i just said mate [06:13] nexus7ubuntu: ubuntu touch is depraced, install the ubports method [06:13] youre saying i have to install a whole new version of ubuntu [06:13] nexus7ubuntu: ubports.com #ubports [06:13] ok thanks ill have a look [06:14] except that ubports doenst list my device [06:14] its an old nexus 7 [06:14] i didnt really want to have to reinstall anything i was hoping for a fix... [06:15] nexus7ubuntu: its not the wifi model? [06:15] it has wifi [06:16] nexus7ubuntu: if its nexus 7 wifi you can install ubports [06:16] nexus7ubuntu: this channel only supports currently supported ubuntu versions, and 13.04 is ancient [06:16] wait no, this is the 2012 version not the 2013 wifi version [06:16] im just asking if theres any way i can fix this through guest account [06:17] is there any possible way to change user on guest or start ssh [06:17] nexus7ubuntu: ubuntu has dropped ubuntu touch support, we cant help you with is here [06:17] it [06:17] so im stuffed [06:17] thanks anyway [06:17] $100 down the drain essentially [06:18] ok bye [06:18] maybe i can reflash it or something [06:18] nexus7ubuntu: try also the XDA forum [06:18] nexus7ubuntu: flash android or another port from xda perhaps [06:19] nexus7ubuntu: or try #ubuntu-arm [06:19] maybe they can help you [06:20] (it can take some time to get an answer there now, though, this is a quiet time) [06:36] does anybopdy here use sublime text 3? [06:46] gt8ost4l: better ask your real question [06:47] ducasse everytime i put the commands in Preferences > Keybindings - User it just doesnt work out! [06:47] the output should indent my html file but it doesnt indent at all [06:49] hi [06:49] if i add a newuser [06:49] it will be automatically added to sudoers? [06:49] gt8ost4l: that's not really an ubuntu question, why don't you try ##sublimetext? [06:49] i tried that it doesnt exist [06:51] backtrack: no, you need to specify you want to add it to the sudo group [06:51] gt8ost4l: did you see there are two '#'s? [06:52] ducasse:what are you talking about [06:52] ? [06:53] gt8ost4l: read the channel name _carefully_, look at the beginning [07:02] ducasse, you know the path of that file? [07:05] hey #ubuntu <3 [07:05] i have a favor to ask if anyones up for it [07:07] lol nevermind i figured it out [07:07] i was gonna ask if someone would send me their ttf of ubuntu mono [07:08] im on debian but ubuntu mono is my favorite monospaced font ever [07:30] Hi All, Bluetooth on my laptop never works with Ubuntu 16.4 [07:30] Can anyone help? [07:34] kirandeo87: open terminal [07:35] kirandeo87: sudo apt install inxi pastebinit [07:35] kirandeo87: let me know when done [07:35] @tatertots sure [07:37] tatertots: done [07:37] kirandeo87: inxi -Fxxprzc0|pastebinit [07:38] kirandeo87: share url/link here..if you do not get a url/link..say so [07:39] tatertots: http://paste.ubuntu.com/26199762/ [07:40] kirandeo87: dmesg|grep ueto|pastebinit [07:40] kirandeo87: share url/link here..if you do not get a url/link..say so [07:41] http://paste.ubuntu.com/26199777/ [07:47] kirandeo87: i see an error [07:48] tatertots: ok. any solution on it? [07:52] kirandeo87: ubuntu-drivers devices|pastebinit [07:52] kirandeo87: share url/link here..if you do not get a url/link..say so [07:53] tatertots: http://paste.ubuntu.com/26199840/ [07:56] kirandeo87: apt list --installed |grep bcm|pastebinit [07:56] kirandeo87: you can ignore the warning..and you don't need to tell it to me because this ain't my first rodeo [07:57] kirandeo87: so just share the url/link only [07:57] kirandeo87: share url/link here..if you do not get a url/link..say so [07:57] tatertots: here is the output: [07:57] WARNING: apt does not have a stable CLI interface. Use with caution in scripts. [07:57] http://paste.ubuntu.com/26199853/ [07:59] kirandeo87: modinfo wl|pastebinit [08:00] tatertots: http://paste.ubuntu.com/26199865/ [08:02] kirandeo87: appears to be looking for a "patch" of some sort http://paste.ubuntu.com/26199777/ it cannot find it [08:03] kirandeo87: you are using Card-1: Broadcom BCM43142 802.11b/g/n driver: wl bus-ID: 06:00.0 chip-ID: 14e4:4365 right now [08:03] kirandeo87: however [08:04] kirandeo87: http://paste.ubuntu.com/26199840/ suggests it supports "BT=bluetooth" [08:04] tatertots: ok [08:04] kirandeo87: http://paste.ubuntu.com/26199853/ suggests you already have it installed [08:05] kirandeo87: thus my flow chart takes us back to Card-1: Broadcom BCM43142 802.11b/g/n driver: wl bus-ID: 06:00.0 chip-ID: 14e4:4365 [08:05] kirandeo87: and "wl" specifically [08:06] kirandeo87: are you following me?...or am i speaking greek? [08:06] tatertots: What I understood is, I have the required driver but its not functioning properly... and is looking for some patch [08:07] kirandeo87: okay i'd say you passed the comprehension exam :) [08:07] tatertots: :) [08:08] tatertots: Do you think reinstall or something will help? [08:08] kirandeo87: i think you should investigate "wl" [08:08] kirandeo87: as in Card-1: Broadcom BCM43142 802.11b/g/n driver: wl bus-ID: 06:00.0 chip-ID: 14e4:4365 [08:09] !broadcom [08:09] Help with Broadcom bcm43xx can be found at https://help.ubuntu.com/community/WifiDocs/Driver/bcm43xx [08:09] kirandeo87: but that's just "my opinion" :) [08:09] tatertots: ok [08:11] I will look through this and see if it helps me: https://help.ubuntu.com/community/WifiDocs/Driver/bcm43xx [08:12] Thanks tatertots and ubottu [08:12] kirandeo87: take this little gem with you [08:12] kirandeo87: Bluetooth: hci0: BCM: Patch brcm/BCM.hcd not found [08:12] Broadcoms are notoriously bad for using under Linux, unfortunately for users [08:15] tatertots: I will search on that error. Thanks! [08:16] kirandeo87: no prob ;) [09:10] ahoi! im trying to execute a command like "sudo shutdown -h 01:30" on autostart running ubuntu 17.10+. pls what is the most elegant way to do this? [09:56] Hi, i'm trying to forcepae, i read all the guide but it appears three dashes not two. How to enter the parameter? [09:58] three dashes? [09:58] what guide? [09:59] https://help.ubuntu.com/community/PAE [10:00] After quiet splash there are 3 dashes not 2 [10:00] Where have i to enter the parameter? [10:01] Now a string of options is visible, often with 'quiet' or 'quiet splash --' at the end. Add 'forcepae' to the string before and after the two dashes ("forcepae -- forcepae"). [10:19] https://drive.google.com/open?id=1Bk2MTPaRPnjJZj1fmGdTo275woTTkdAJ [10:21] three dashes, guides tells two, how to enter the parameter? forcepae -- forcepae === r0Oter is now known as r00ter [10:22] !pae | jk^ [10:22] jk^: Ubuntu provides only PAE-enabled kernels for 32-bit systems now. Some older CPUs may have issues with it. For more info and troubleshooting, see https://help.ubuntu.com/community/PAE [10:23] lotuspsychje i read all that [10:23] [10:59] (jk^) After quiet splash there are 3 dashes not 2 [10:24] So i don't know the exact way to enter the parameter === agio is now known as michael2 [10:28] lotuspsychje i posted image [10:28] [11:19] (jk^) https://drive.google.com/open?id=1Bk2MTPaRPnjJZj1fmGdTo275woTTkdAJ [10:55] Hi all. I've just installed Ubuntu server and set up my wifi connection as part of the install but can't for the life of me find where it's saved the details. It doesn't appear to have created anything in wpa_supplicant, networkd or networkmanager - any ideas? [10:57] saved the details as in? [10:57] ifconfig? [10:57] ckovacs: as in it connects on boot but I have no idea how, and I want to disable it and set it up in networkd instead. [10:58] https://askubuntu.com/questions/490429/turn-off-the-wireless-card-on-each-boot [10:58] ? [11:06] hey there [11:06] i installed opera on ubuntu 16.04 but can not watch html5 and flash videos on it while i can watch on firefox [11:06] what can i do? === thinky is now known as Guest31256 [11:10] Howdy folks [11:11] hello [11:11] how can i watch flash and html5 videos on opera ? [11:11] i can watch on firefox but i cant on opera [11:11] on ubuntu 16/04 === yosefrow_ is now known as yosefrow === bipul is now known as _zero_ === _zero_ is now known as _zero === _zero is now known as bipul [13:20] good night(although its morning) [13:23] Whenever I open the lid of the laptop after sometime I get a authentication window that won't show my username but has password field and even after entring correct password it won't let me in. There are only 2 buttons on it 1. to submit and other to switch user but that too won't work. The screen goes blank and comes back to the same screen if I move mouse. Seems the recent updates have broken it. [13:24] Anyone else found the solution? [13:26] Hello, i got lag with my Bluetooth audio, with Ubuntu 17.04. In windows 7 on the same machiene the sound is ok. Does anyone have same issue? === SimonNL is now known as SimonNL_Afk [14:03] Openshot had flicker issues when adding effects. Any other editor available? If there is a 2nd video editor thats just good at effects id consider using that one for effects and bringing the finished product back to openshot. Was using ubuntu 16.10 Not using 17.10 [14:04] rcw2: 16.10 is no longer supported [14:35] E: Failed to fetch http://mt.archive.ubuntu.com/ubuntu/pool/main/r/rpm/librpmio3_4.12.0.1+dfsg1-3build2_i386.deb 404 Not Found [IP: 90.147.160.69 80] [14:35] on lubuntu Wiley [14:36] I have many errors when I make a apt-get update? [14:38] !wily [14:38] Ubuntu 15.10 (Wily Werewolf) was the 23rd release of Ubuntu. Support ended on July 28th, 2016. See !eol, !eolupgrade and https://ubottu.com/y/wily [14:38] !eol [14:38] End-Of-Life is the time when security updates and support for an Ubuntu release stop, see https://wiki.ubuntu.com/Releases for more information. Looking to upgrade from an EOL release? See https://help.ubuntu.com/community/EOLUpgrades [14:38] opmrcl: read those ^ [14:47] alkisg: how can I know exactly which lubuntu I have? [14:47] opmrcl: cat /etc/os-release [14:47] It mentions the version there === jstein_ is now known as jstein [15:14] hello! [15:14] Hello [15:57] So I had some problems with pretty much every Linux distro. MCE error in memory bank 4. I ran windows memory diagnostics, no errors. And now I am running passmark which is a extensive test. No errors as of now and I am a hour into it. [15:59] This makes me wonder if this error is a bug in most Linux kernels towards my machine...? [16:00] stephen101: more like a question for ##linux [16:00] hi [16:00] is it possible to use a kernel 4.14 on a 14.04 ? [16:00] Well I initially had the error in Ubuntu. [16:00] or would i have to expect something not working? [16:01] pa: I would just test it [16:02] Since I have tested multiple different distros, same exact errors. Doesn't matter if if update my bios and firmware. Or roll them back. [16:03] Even tried rolling back my bios as far as I could. [16:03] not sure what to suggest other than testing different kernel versions [16:03] older and newer [16:03] I also tried 17.10. [16:04] try 18.04 dev [16:04] 17.10 sucks as far as using most root programs lol. [16:05] Even using gparted is annoying. [16:05] you can select the Xorg gnome session [16:06] But to me that's idk like a oxymoron type deal lol. [16:06] stephen101: if using wayland, add "xhost +si:localuser:root" to your startup [16:06] I got that. I formated and reinstalled 16.04 [16:08] 17.10 just didn't do it for me, to many work a rounds to get different applications to work. [16:10] BTW idk how it worked. But usually I just hit format Ubuntu and reinstall. Dude it wiped out my windows 10. Was slightly upset it didn't detect my dual boot. [16:12] Had to partition after Ubuntu was installed, reinstall windows 10, then grub rescue. -_- [16:24] Hi, I have problem installing firefox, Err:1 http://mirror-lax.psychz.net/Ubuntu artful-security/main amd64 firefox amd64 57.0.1+build2-0ubuntu0.17.10.1 404 Not Found, Is it the problem of my config or the problem of the mirror server? [16:35] Anyone have experience accessing a Windows share (I have a Microsoft linked account on the other machine) using Ubuntu Xenial? [16:35] Sudo apt-get install firefox [16:37] blueingress, which Ubuntu version? === stephen102 is now known as stephen101 [16:57] BluesKaj, 17.10 [16:58] stephen101, yes, that is the error message I got above. [17:00] blueingress, FF should be installed by default [17:01] hey guys, i am seeing an unreasonable network traffic on my laptop and i couldn't find where it is going.. [17:03] Have you checked in ubuntu software icon and check there? [17:06] !tab | stephen101 [17:06] stephen101: You can use your key for autocompletion of nicknames in IRC, as well as for completion of filenames and programs on the command line. [17:07] i did a debootstrap artful and for some reason networking.service doesnt exist [17:07] Dave_Elec: you can install iptraf-ng and see details for your network traffic [17:07] i'd prefer not to type entire *.service files by hand [17:08] is there a way to dpkg-reconfigure something to make stuff autogenerate? [17:29] @ubottu huh? [17:35] BluesKaj, there is problem upgrading, so I deleted it. and won't find it back. === nchambers is now known as Rudolph [17:39] blueingress, FF 57 is quite buggy, don't think it's a wonderful fast and edgy browser. I have it installed but it's not working well at all ..sync isn't working right for starters. So I'm sticking with chrome. [17:40] I always use chrome-stable without issues. [17:42] blueingress, here's a tut that might work https://www.cyberciti.biz/faq/installing-firefox-57-0-tar-bz2-on-linux/ [17:45] OK so I did some research on my MCE error and the processor I have. There are other people with the duplicate problem. [17:45] blueingress: that mirror you're using is not an official ubuntu mirror [17:45] Switch to an official one. How did you end up with that?! [17:45] So its a Linux kernel bug distro wide or a problem with Intel microcode [17:48] @alkisg Remember we talked about this? Before. [17:48] stephen101: I wasn't watching your chat now, I don't know the issue... [17:49] http://paste.ubuntu.com/26158204/ [17:49] OK, wait for people that may want to comment on your issue... [17:49] You can also ask in #ubuntu-kernel or in #linux [17:50] Lol I asked in Linux, no good answer. [17:50] Sure, IRC is not official tech support, you get what you get :) [17:50] For official tech support you'd contact Intel [17:50] Sounds like a hardware error that windows can work around it, and maybe linux can't. I don't know more. [17:51] But when I google "MCE n3350" it shows others using Linux and exact same error. [17:51] You can file bug reports in ubuntu kernel, or upstream kernel if it happens there, or contact intel [17:51] I ran none windows benchmarks on boot. No issues detected. [17:52] That says nothing [17:52] Intel won't supply support for Linux. [17:53] Read that in their forums lol. [17:54] All I am saying is this is a system wide error for anyone using the same processor as mine and running Linux. [17:54] Cool. I told you the options I can think of, it's up to you to use them or not. That's all I can do for this. [17:55] intel is the most active kernel developer in the world [17:55] (linux kernel) [17:55] I get that, but if you ask they will say they can't provide help with Linux errors. [17:55] red hat and canonical are far behind [17:56] stephen101: that's nonsense, but handle it however you like [17:56] Intel supports Linux just fine and have fixed a lot of bugs that I reported upstream [17:56] If you use forums instead of bug trackers though, don't expect much [17:57] Anyways. I am just going to ignore this error. I need to fix my broken wifi lol [17:58] stephen101: srsly - look for a bug report, and if you don't see one, file one: https://bugs.launchpad.net/ubuntu/+source/linux/+bugs [17:59] often the bug report thread has patches you can try or workarounds === semeion is now known as mnemonic [17:59] since it's affecting multiple users, almost certain there's already a report for the issue [18:01] http://paste.ubuntu.com/26158204/ [18:01] My issue, but I tried to search the link you gave, not sure but it comes up with nothing. [18:01] BluesKaj, Thanks [18:02] alkisg, How can I reset my apt config to official ubuntu mirror? [18:02] stephen101: launchpad search is kind of crappy - might try searching google for your error plus "ubuntu bugs" [18:03] alkisg, I think this is the root cause of this problem. I have other ubuntu 17.10 server which don't have this issue. [18:03] One sec let me check [18:04] Nothing for "m3350 MCE Ubuntu" [18:04] But "m3350 mce" shows others on other distros with duplicate error. [18:07] Fair to assume this hasn't been presented to bug reporting on Ubuntu. [18:13] alkisg, I just copy it from a gce version, it works, no matter how slow or fast it is. :-) Thanks. === SimonNL_Afk is now known as SimonNL [18:21] blueingress: np [18:26] hello [18:27] how I can eanble memory-full-oom-kill on a live (not installed) Ubuntu? [18:32] TheWild: how would you do it on an installed ubuntu? [18:33] dunno, but probably I had to reboot. [18:33] Nah, I don't think so [18:33] Isn't it configurable from /proc/sys/kernel/sysrq ? [18:34] Also, why random killing instead of specifying a specific process to kill on oom? [18:34] E.g. start with browser with higher score so that oom knows to kill it first [18:34] *the browser [18:35] Or xorg, or whatever you prefer to kill first [18:36] short: when Linux goes out of memory, it shows that in very shameful way (freezes). I want to enable OOM to kill whatever, but become responsive again. [18:37] TheWild: short: start reading there: https://askubuntu.com/questions/60672/how-do-i-use-oom-score-adj [18:37] "to let it kill whatever" [18:37] This "lets it kill specific programs" which is way better [18:40] a resource hog is probably either firefox or lightdm. It even more problematic because when freeze happens, I can't even access tty. [18:40] TheWild: I understand you and I'm suggesting a solution but I'm afraid you're not understanding me [18:40] You can specify one or more applications to be killed when out of memory happens [18:41] Automatically, without even having to press sysrq+f [18:41] So when out of memory happens, you can have firefox automatically shut down, and all other processes unaffected [18:41] Bigger swap? Maybe help. [18:41] Or zram [18:41] No swap in live cds [18:41] swao on live system? [18:41] zram can help a bit, but only so much [18:41] It's preactivated on live cds afaik [18:42] Didn't know, just a option which I run on my devices. [18:42] I notice a significant difference using zram. [18:43] You can enable swap in live with gparted. [18:59] nvm. sudo sysctl -w kernel.sysrq=1 [19:00] I generaly don't have processes running of that importance, especially on live system, but killing whatever is IMHO better than need to reboot whole system. [19:02] * alkisg gives up trying to communicate with TheWild :) [19:04] hey, when holding down a key on the keyboard my touchpad wont move [19:04] as soon as i release the key and try to move the touchpad will work again [19:24] Hello, I'm using a dual-monitor set up and need to blank only one of them. Is it possible? === dreamon_ is now known as dreamon [20:25] what's a good command-line tool for writing dvd+rw on ubuntu? [20:27] wodim [20:39] TickerTape: https://help.ubuntu.com/community/CdDvd/Burning#Command_Line_.28Terminal.29 [20:40] Meh, didn't see the reply already there :D === MochaLoca is now known as Sauvin [20:43] No luck with blanking only one monitor on a dual-monitor setup? [20:43] markmedes2: if you blank one of them, it'll come back on the next keypress... maybe `xrandr --output VGA-1 --off` would be better instead? [20:44] markmedes2, you could that ^ but it wont't come back on [20:45] Yeah to turn on, xrandr --output VGA-1 --auto [20:45] with a black screen, not easy [20:45] It's playing video on 1 montior while recording security cameras on the other, there shouldn't be much interaction except for when an alarm event happens, the video on the secondary display should be running all day [20:45] He'll still have the one monitor working [20:46] He could even bind that to hotkeys [20:46] iirc, tried once, not working [20:46] Which part? I regularly use that [20:46] unless i missed somehing [20:46] ah, ok [20:47] I even scripted it to automatically xrandr/off my lvds laptop monitor when I plugged an external one, and then the opposite when I unplugged it [20:47] I don't want to disable the primary monitor completely, just want to blank it when there is no interaction with it, while keeping the secondary on all day [20:47] Blanking stops on keypress [20:48] no problem, that's exactly what I need, to resume when there is a keypress [20:48] markmedes2, already tried xset dpms force off [20:49] no [20:49] That would blank both of them, wouldn't it? [20:49] Btw, https://superuser.com/questions/140060/is-there-a-way-to-turn-one-monitor-off-in-a-dual-head-setup [20:49] And another person suggesting vbetool, which I'm not sure can do it [20:49] oh, great, I search all day on google [20:49] thank you [20:50] Nah, the only real solution there is with nvidia [20:50] So unless you use one... :D [20:50] hmmk [20:50] no nvidia for me, thanks [20:50] f* you nvidia [20:51] Btw what's your output of xrandr? [20:51] vbetool is for console, i guesss [20:53] https://pastebin.com/XBHN2swd [20:55] markmedes2: so anyway if you don't really find a way, one way that will work is to run xrandr to set LVDS-1 to off, and if you want not to disrupt the window settings, to set HDMI-1 to the same resolution that LVDS-1 had (so displaying the same thing but nowhere), and assign a hotkey to set or restore all that [20:55] Ok, thank you [20:55] E.g. F5 => LVDS and VGA, again F5 => HDMI and VGA === Rom is now known as Quark [21:04] Afternoon. Wondering if anyone's tried running PLEX Media Server on a 32 bit Lubuntu install [21:05] MikeHSG, im sure someone has, maybe explain your issue and what you need help with [21:06] I'm doing an intitial build using an older machine - Pentium Dual-Core from about 2009, in an old Dell. Running 8gb RAM. Had XP on it, decided to repurpose it into a media server. Leaning towards a 32-bit Lubuntu install with Plex Media Server. [21:07] Plan is to have it sitting on my home LAN, nothing fancy, stream music around the house from other devices using Plex apps [21:27] Anyone? [21:27] MikeHSG, you are just saying planed things, no issues :) [21:27] nothing to respond to [21:28] I'm asking if anyone's trid something like this or if there's any issues with this kind of a build [21:29] it should work fine and #plex would be able to answer most of your questions i guess [21:31] Didn't realize they had a channel! Good deal! Thanks! [21:33] hey guys. trying to sort something out. on 17.10 and trying to mount an SMB share on a freenas box. the freenas box has min value set to SMB2 and max to SMB3, trying to mount via nautilus, smbclient and the mount command all fail. Output of the CLI commands (same errors when I substitute IP for hostname) is here: https://gist.github.com/anonymous/9b94b8bb421d9696793ec0a25577b41d, Nautilus error is: "Unable to access location: Failed to retrieve [21:33] share list from server: connection timed out" and is immediate. I have been googling and people were suggesting modifying the smb.conf file on my machine, which I tried and it didn't fix the issue. I have another freenas box with a share that it can reach, but the settings on that one are loose, saying min is NT4 and max is SMB3. Any suggestions? [22:07] hey all, got problems with steam and debian using nvidia drivers, followed all instructions give everywhere and cant make it launch the games, steam runs just fine thoguh, any ideas?? [22:09] lucas-arg: More than one driver installed ? what shows ' dpkg -l | grep -i nvidia* ' . [22:14] Bashing-om, i might still have nouveau drivers installed [22:14] should i just uninstall them after installing nvidia? [22:15] lucas-arg: No, installing the proprietary driver will take care of the nouvea driver . But mot tan a single proprietary driver will cause a conflict and nothing gui will work . [22:16] more than* [22:17] ive installed nvidia-driver then installed libgl1-nvidia-glx:i386 [22:18] just what it says here https://wiki.debian.org/es/Steam [22:18] but games wont start [22:18] i can play ok in ubuntu, but want to move to debian instead [22:21] lucas-arg: this here isn't #debian [22:22] lucas-arg: ^^ . Did you not read and heed the warning before the " libgl1-nvidia-glx " install ? [22:37] Bashing-om, nope ill see... brainwash i know but here are kind people that can help me [23:21] hellos, I'm looking for a practical means of adding a visual indicator of VPN status to either the ethernet icon or the notification bar, can anyone help with that please :) [23:22] Wi-Fi displays a lock next to the signal bars when VPN connected, and none when disconnected, but ethernet doesn't say anything. [23:23] say/show [23:26] maybe the GUI has a set of icons for active/inactive but the ethernet icons weren't created with the lock... anyone know where the icons are stored? [23:36] ubuntu server 17.10, trying to install owncloud, and running into a permission error that tends to lead to searches telling me that the application can't write to the directory specified in php's 'session.save_path' variable (which is /var/lib/php/sessions). app is running as user 'www-data' and folder is owned by 'root' ... What's the proper way to give the app user write access to that folder?