[00:00] !alis | eam [00:00] eam: alis is a services bot that can help you find channels. Read "/msg alis help list" . For more help or questions relating to alis, please join #freenode. Example usage: /msg alis list #ubuntu* or /msg alis list *http* [00:00] eam, Are talking about like -Wl, --as needed on flags ? If so, I have issues with that as well,, particularly on Python apps (F2PY), leaving it out on Ubuntu builds is ok, as it prevents dupes anyway, whereas Debian build servers will complain. [00:00] eam: https://wiki.ubuntu.com/UbuntuDevelopment there is also this [00:00] ki7mt: yes exactly [00:01] eam, You dont need it on Ubuntu build servers. [00:01] ki7mt: it appears the linking strategy was designed around eventually linking a C program, but I don't see how it works with perl/python dlopen()ing a stub [00:02] ki7mt: the thing is, the resulting object won't link because some of the libraries it requires aren't added as DT_NEEDED [00:02] eam, I've not narrowed down the exact root cause, but the work around for me is to leave it out on the linker for Ubuntu servers. [00:03] I think I have a handle on exactly what's going on, but what I can't understand is the intent behind the change (that Natty doc is where the change occured) [00:03] eam, I like all the libs ins ${LIBS} lin -lpthread -lportaudio etc etc, then let call ${LIBS} on the target line, [00:03] I link .. .. [00:04] ki7mt: yeah, the specific toolchain change (from that natty doc) is that -lfoo is now ignored in certain cases [00:04] the doc recommends simply reordering the args to gcc, but that's less than useful when dealing with a large project with generated builds [00:05] eam, All the dupe links are ignored in Ubuntu, not so in Debian and it moans about it. [00:05] yeah, the problem is these aren't dupe links in this case [00:05] I end up with a so that never links my library [00:06] eam, That sounds like a different problem then. [00:06] ki7mt: for example cc -lfoo bar.o -o something.so # on debian, won't put foo in DT_NEEDED === george2 is now known as george2_ [00:07] but cc bar.o -osomething.so -lfoo # will === george2_ is now known as george2 [00:07] passing in --no-as-needed turns off the weird ubuntu linker behavior [00:07] eam probably need ${LDFLAGS} in that line as it's a direct call v.s. an ${OBJ1} call or something. [00:07] but the docs say not to do it so I'm trying to understand why :) [00:08] eam of couse,, the lib.so need to be built before hand. [00:08] ki7mt: the thing is, this is output from perl's MakeMaker [00:08] I don't control the argument ordering [00:09] (and it works on literally every other unix in the world :) [00:09] eam, I can't speak to the Docs, and why they say what they do, only what I do on the different buod servers to get around the issue. [00:09] ok [00:09] .. build servers .. [00:09] yeah I have a workaround of -Wl,--no-as-needed [00:09] it's just ... ubuntu docs say explicitly "don't do it" [00:09] but if not that, what? [00:10] I'm trying to understand if there's something more to this policy, or if it's just kinda broken [00:10] eam: I think the fedora doc does a slightly better job explaining than the debian one http://fedoraproject.org/wiki/UnderstandingDSOLinkChange [00:10] Yes, as ity's not neeed, but on Debian it is, but breaks apps like F2PY [00:11] trism, Be careful with Fedora, they have lots of issues still with LFS convensions, particularly with /lib /lib64 v.s. native and so on. [00:12] ki7mt: yes but in this instance it is the same sort of change as made in debian a while ago [00:13] trism: great doc, thanks. I think I understand the intent. In this case, what I need to do is ensure the right DT_NEEDED fields are populated in my shared object [00:13] normally -lfoo means your shared object will need libfoo [00:13] trism, Was just a data point, using ldconfig is the only way to get that right cross platform. [00:14] but in ubuntu, -lfoo no longer causes DT_NEEDED to need foo [00:14] eam, exatctly, the .so version not static [00:14] ki7mt: well, the problem is the .so must do the loading for interpreted languages that dlopen stubs [00:14] like python, perl, ruby [00:15] for example you have mysql.so which backs the rubygem, and that mysql.so does the DT_NEEDED to libmysqlclient.so [00:15] because "ruby" itself can't link everything, of course [00:15] know what I mean? [00:15] eam, Yes, but I dont have a solution infortunately :-) [00:15] unfortunately [00:16] fair enough, thanks for pitching in. I think a decent enough answer might be to revert to the normal linker behavior for all interpreted language modules [00:16] as best I can see that's what existing ubuntu packages do [00:17] eam, Yes I'd agree. As a general rule, I've been build to make Debian servers happy, then Ubuntu omits what they don't need, seems to work ok. [00:19] eam, You could do some fancy foot work in the debian/rules file but not much need it it's not failing on UBuntu servers. [00:19] I don't even usually do ubuntu platform, but I want to build this project on travis-ci ... you guys got a huge win by getting them to build on ubuntu :) [00:19] fancy footwork [00:20] is there a help file for the unbuntu packages of software how to compile them into zipes [00:22] hello! any help for wlan on Xubuntu 14.04? [00:28] I knew I would have a problem with UBUNTU eventually [00:28] hi, i installed LXC and it's networking works without extra work via lxcbr0, but i can't find where it is defined, /etc/network/interfaces has no entry for lxcbr0. [00:28] How the bloody heck do I get Oracle Java to work (since DSLREPORTS favor them) [00:29] Whats your problem? Sunstream [00:29] I cannot get it to install and I do not want to mess with rpms/tars [00:30] Nevermind I will just go do a google search and figure it out myself thank you anyways [00:30] * Sunstream walks away [00:31] Sunstream, What does your project require, that's a better place to start, then go to the repos and find out if it's available. [00:31] Sunstream, there is a oracle-java-installer in the webupd8 ppa. But you can use the deb, you don't have to enable the whole ppa. [00:32] → http://ubuntuhandbook.org/index.php/2014/02/install-oracle-java-6-7-or-8-ubuntu-14-04/ Sunstream [00:32] Sunstream, Building from source or especially rpms should be considered a last resort. [00:33] yep that is why I DON [00:33] T want ot mess with that [00:33] Sunstream, just grep the .deb of the installer for the Java version you need: https://launchpad.net/~webupd8team/+archive/java [00:34] Ubuntu server question: I am new to ubuntu server. I setup a dokuwiki on gentoo easily manually. Ubuntu seemed to do it automatically, but now there is no documentation on how to fix the errors. [00:34] Sunstream, Well like ia said, you ned to determine 1), What project / Applications needs, 2). Is it available in the repos, then proceed from there. [00:34] the problem UNLESS I have oracle installed DSLReports sucks [00:34] Where can I find documentation on the the "automatic" install? [00:35] Or where can I find logs for the dokuwiki failures. [00:35] ? [00:35] perlon, As in UBuntu auto install ? [00:35] I can't find lxcbr0 in if-pre-up.d/ either. :( [00:35] apt-get install dokuwiki, and then dpkg-reconfigure [00:36] thanks anyways daswort I found this out before your reply. From this point on unless I have a real problem I will do searching on the wiki and google for my fixes ... [00:36] * Sunstream walks out of the channle and into offtopic === bazhang is now known as Guest51145 [00:36] I have been struggling for several hours to try to figure out why I can't add users. I am granting privileges to www-data all over the place, which is probably a security risk. === bazhang_ is now known as bazhang [00:37] perlon, Based on Debian / Server, but should very close to UBuntu: https://wiki.debian.org/DokuWiki [00:38] ki7mt: I read that, but must be missing something. [00:39] perlon, Maybe someone else then, as that's what I would follow. [00:40] ki7mt: thanks. I assume that granting www-data group and owner is all I need. [00:44] ki7mt, I have to just download the whole thing I have plenty of space I just need Oracle to use DSLReports tools they seem to favor oracle I installed the other java and it did not work so I just got done installing JRE 7 [00:46] Sunstream, Yes, openjdk-7-jre is in the repos also. === ariscop_ is now known as ariscop === khisanth_ is now known as Khisanth [01:04] Beldar: did you ever hang out in #dos on efnet? [01:05] does anyone have experience using this WiFi card http://www.newegg.com/Product/Product.aspx?Item=N82E16833106190 [01:05] It disconnects constantly on Linux [01:06] no [01:11] so I'm running Xubuntu 14.04 and the wi-fi is saying it's connected, but I can't access the Internet. [01:17] x9: try pinging your gateway [01:17] x9: Have you checked your DNA [01:17] what's the command for that? it can't be "ping", can it? Foxhoundz [01:18] morrisonluke, I don't know what my mom and dad have to do with it [01:18] x9: DNS [01:19] morrisonluke: all well on the DNS side [01:20] x9: Open up a terminal and type ifconfig to find your gateway [01:21] should mention I'll have to take notes, reboot, then check and reboot again if needed... I'm in Windows right now, dualbooting it and xubuntu === morrisonluke is now known as lukemorrison [01:22] I am new to ubuntu. I can't figure out what is wrong with my dokuwiki install. It seems like a problem with the way it is installed by the system. Any idea who I can ask? Dokuwiki IRC is low traffic. [01:23] Perlon try https://launchpad.net/ [01:23] Thanks [01:23] yw [01:27] Hi. Is there a way I can query the size of a /dev/sd# file without using fdisk or gfdisk? preferably something that runs in user mode. Thanks. [01:27] everytime i start synaptic it locks up totally unresponsive and frozen for either several seconds or completely and i have to kill it Is this a known bug in Trusty? [01:29] syntroPi: yes, synaptic does take several seconds to start up; I have one VM configuration where it takes much longer but I can't explain it [01:31] it takes way longer than several seconds everytime i change the smallest setting i get the "nonresponsive" window... [01:32] my i7 860 used to be way faster with synaptic in versions before trusty [01:33] i tried reinstalling it without any success [01:36] syntroPi: apt-get install foo have you tried that? [01:38] x9: Were you able to find / ping your gateway in Xubuntu? [01:39] luke morrison: about to attempt. be back in a few minutes (I was looking at forums online for more fixes to try) [01:40] histo im not sure what you mean but there is no such package for sure [01:40] apt-get or just apt doesnt have any latency issues [01:40] syntroPi: I'm saying why use synaptic? [01:42] because it was quite usefull and fast in my experience with previous ubuntu versions [01:42] is there any gui alternatives with similar options to synaptic except the ubuntu software center? [01:45] * histo prefers text interface === LapJup3 is now known as LapJup [01:46] syntroPi: Try the muon software center. I think it's in the Ubuntu repositories [01:47] when its frozen dbus-daemon, gnome-shell and synaptic fight over the cpu ressources [01:48] syntroPi: try launching synaptic from a terminal to view the output [01:49] syntroPi: or see if it has a verbose option or logging on the interface [01:52] Hi. Today I switched out my router with a different one with the same wireless settings (security, access point name, etc). My Ubuntu laptop connects to it and works ok for awhile (10-20 minutes?) and then the wireless stops responding. I have to disable/enable wifi, or unplug/replug the usb wifi card to get it to reconnect and continue working until it happens again. Any suggestions on where to start [01:52] looking? Log files? [01:53] Locke2002, look at "dmesg" in the terminal maybe? [01:56] Locke2002, I would check the routers signal, must have a adjustment on board. [01:57] Beldar: All the other household wifi devices are working perfectly, if that helps. [01:58] Locke2002, Just saying where I would start. [01:59] find out why you time out. (look in the router error logs, as well on the machine that times out.) [01:59] wirless is a tricky biz, it can be all kinda of crazy stuff that makes you lose connection [02:04] k, I'll see what I can find. Thanks people. [02:22] alright, I'm at the point where I will give 1/4 of my money to whoever helps me solve my problem [02:23] x9: yes ping [02:23] :) [02:25] basically, I can connect to my Wi-Fi access point, but I don't get internet access. Router says I'm connected and active, but I'm not getting any access. Firefox fails to connect, Xchat doesn't connect. Router is set properly, Wi-Fi adapter settings set properly (probably), but still a fail. could it be drivers? [02:25] ...could rebooting the gateway solve this problem? [02:26] ehh.. yea;) [02:26] are you able to connect using cable? [02:26] x9: have you tried connecting with another PC/phone? [02:27] bdbear: yes, ethernet works. Foxhoundz: I'm using the same computer on Windows to talk right now, everything works except XUbuntu [02:27] ok [02:27] good [02:27] this is a clean install of xubuntu [02:27] My guess is a misconfiguration with your DNS settings [02:28] how would I go about configuring it properly? [02:28] how far can you ping, when your connected (wifi) [02:29] bdbear: as in distance from the access point? [02:29] can you ping google (8.8.8.8) the gateway? your self? [02:29] hi guys, there's a problem that's bugging me for a while now... my fan keeps activating in waves, each 10s more or less.. during its activation my ubuntu (14.04) lags, this is more frequent when I'm watching a movie... it seems that after the installation of the bumblebee (nvidia) the lags are less powerful... I was wondering if anyone would have ANY idea for me to start searching about this problem... [02:29] Okay [02:29] I got Java wokin in F.Fox but not Chromium where I want it to work [02:30] bdbear: what is the ping command? is it like windows, just ping
? [02:30] yea [02:30] hello [02:30] hello rainbowwarrior [02:30] Foxhoundz: how would I reconfigure DNS properly? [02:30] hello lasers [02:31] oops tab fail lol [02:31] hello lastarms [02:31] you need to find out what your issue are before you start fixing it x9. [02:31] x9: you shouldn't have to normally. I was just wondering if it might be the cause [02:31] try pinging the IP of the router itself [02:31] should be something like 192.168.0.1 [02:32] bdbear: taking notes of as many things as I can before rebooting and attempting a fix [02:32] hi all , I am using a TL-WN821N_V4 on Ubuntu 14.04 LTS and i can see other networks apart from my own but i can see it on windows fine , anyone got any idea how i can solve this please ? [02:32] rainbowwarrior: is it a 5ghz network? [02:32] if you can connect to your computer using a cable do that. you can still trubbleshoot connectivity issues . and talk to us at the same time. [02:33] Foxhoundz :- no [02:34] BRB, rebooting and going to the ethernet cable [02:35] rainbowwarrior: Does your network broadcast its SSID? [02:36] Foxhoundz :- its 2.4ghz [02:36] yes lukemorrison [02:36] sorry was afk [02:36] scrolling ab ck [02:37] rainbowwarrior: What about rebooting the router? or manually adding the network? [02:37] Okay so no one has a solution how to get the Java to work for Chromium (It works for F.Fox but I don't like using it due to the bug with the URL [02:38] lukemorrison :- tried that and still no luck [02:38] sunstream have you checked http://stackexchange.com/sites for an Q&A? [02:38] rainbowwarrior: Which one? [02:38] lukemorrison :- rebooting the router and manually adding the network [02:39] rainbowwarrior: try changing the settings... no encryption, wep, other settings [02:39] rainbowwarrior: It's not hidden behind "More Networks"? [02:39] what is that site........ [02:40] Ben64 :- ok ty [02:40] a super search engine or something [02:40] lukemorrison :- no [02:40] it shows me a lot of sites [02:40] its an Question and answeres community. [02:41] Sunstream: chromium doesn't allow java anymore [02:42] Oh [02:42] why? Google? [02:42] alright, patched in with ethernet [02:43] https://bugs.launchpad.net/ubuntu/+source/chromium-browser/+bug/1308783 (read the comments) [02:43] Ubuntu bug 1308783 in chromium-browser (Ubuntu) "chromium-browser: java plugin does not work" [Undecided,Confirmed] [02:43] Sunstream: https://groups.google.com/a/chromium.org/forum/#!topic/chromium-dev/xEbgvWE7wMk [02:43] Java (IcedTea) doesn't have a PPAPI plugin available, and so it's not usable in Chromium, since Chromium 34 in Trusty has switched to the Aura rendering framework and no longer allows NPAPI plugins. See also https://bugs.launchpad.net/ubuntu/+source/chromium-browser/+bug/1308783. [02:43] ill pm you x9. [02:43] x9: Open up a terminal and type in ifconfig [02:43] how do I set the TX-power on my WiFi? [02:43] I'm getting terrible reception and it keeps dropping the signal [02:44] Foxhoundz: are you using stock firmware? [02:44] lukemorrison: it's an Intel 7260HMW IEEE 802.11AC, dual-band, 2x2 Wi-Fi [02:44] so I guess it's using Intel's open source drivers [02:45] which are baked into the kernel [02:45] if that's what you're asking [02:45] Foxhoundz: I was actually talking about the router [02:45] lukemorrison: you have the wrong guy [02:45] but It's using CIsco [02:46] oh [02:46] OH [02:46] yes [02:46] The router is using the stock Cisco firmware [02:46] DD-WRT is unstable [02:46] so Chromium is useless lol [02:46] Sunstream: if you really need that buggy unsecure plugin, then for you, yes [02:47] lukemorrison: I should add that this card gets 5-bar excellent reception under Windows [02:47] "bar" is not a measure of signal strength [02:47] but drops constantly on ubuntu [02:47] well [02:47] Foxhoundz: I don't know then. Have you gone through all the settings in the Cisco firmware? I know Linksys would not allow for increasing Tx power [02:47] I can't tell you the SNR value off the top of my head [02:48] -_- === megabit|away is now known as megabitdragon [02:48] Sunstream: -_- [02:48] The biggest issue I have right now is the addressbar in firefox [02:49] Sunstream: go on... [02:49] I look at the "Aura" stuff it is buggy, hehe like all new technology [02:50] Well the bug in firefox is, in the addressbar it is like someone took a sharpie and marked the text out [02:50] Foxhoundz: maybe try something like this? [02:50] Foxhoundz: http://zeroset.mnim.org/2014/04/22/unstable-wifi-connection-on-ubuntu-14-04-trusty-tahr-ctrl-event-disconnected-reason4-locally_generated1/ [02:51] Foxhoundz: I arrived mid-conversation. If you increase the Tx power, you can overdrive the transmitter and make things worse rather than better. Much like driving too much power through a speaker..... [02:51] If I can find a fix for that [02:51] Sunstream: then fix that? a screenshot may help === Guest84124 is now known as ezhik`_ [02:51] hold onm [02:52] Ben64: it looks like iwlwifi is not found [02:52] when calling modprobe -r iwlwifi [02:52] using the guide you pasted [02:52] Foxhoundz: well which driver is being used for it [02:53] good question. I have no idea how to find that out on Linux [02:53] I am ok with operating guis but how do I take a screenshot? [02:53] I tried modprobe -ls [02:53] Foxhoundz: lspci [02:53] pring screen? ctrl+PrtSc [02:54] output: 02:00.0 Network controller: Intel Corporation Wireless 7260 (rev 73) [02:54] Foxhoundz: lsmod [02:54] there we go! [02:54] that was what I was looking for [02:54] Foxhoundz: just pastebin it all [02:54] lsmod [02:54] Foxhoundz: and which version of ubuntu [02:55] 14.04 [02:55] well [02:55] ok I lied >_> [02:55] It's Linux Mint [02:55] boo [02:55] get out of here [02:55] but they're practically the same [02:55] nope [02:55] !mint | Foxhoundz [02:55] Foxhoundz: Linux Mint is not a supported derivative of Ubuntu. Please seek support in #linuxmint-help on irc.spotchat.org [02:55] How do I do a screen cap [02:55] oh god [02:55] they've ratted me out [02:55] Sunstream: hit the print screen button [02:56] anyway here is the lsmod output http://laravel.io/bin/MdVvQ [02:56] Foxhoundz: don't care [02:56] don't play the channel like that [02:56] But but [02:56] nope [02:56] I'm so close! [02:56] * Foxhoundz whimpers [02:56] Foxhoundz: #debian is for Debian, not derivatives like Ubuntu. #ubuntu is for Ubuntu, not derivatives like Mint. Mint has their own channels for a reason. [02:57] We don't know what changes Mint makes, just like Debian doesn't know what changes we make. [02:57] And it's not fair to use the support resources of another distro, especially when it involves lying to them. [02:57] Part of what you should consider when you choose a distro is available support. If Mint's support isn't good enough for you, I suggest finding another distro. [02:57] I didn't lie. THis was the first time he asked me what distro I was using [02:58] Foxhoundz, You know this support issue already' [02:58] OK. Say I was running Ubuntu and I encounter this problem [02:58] nope [02:58] What course of action should I take? [02:58] Foxhoundz: No. Go talk to the Mint folks. [02:58] :( [02:59] okay [02:59] Fine. I'll just live CD an Ubuntu distro [02:59] Now I figured it out [02:59] and then I'll get your sweet sweet tech support === waverwav1r is now known as waver [03:00] * waver ponder [03:00] okay now I did a screencap how do I send it to you do I have upload it to a server [03:00] they're structurally Identical in terms of kernel versions and most of the packages [03:00] Sunstream: yeah, imgur.com or whichever other one you may prefer [03:00] Foxhoundz: are you going to continue to debate this or are you going to go to your distro's support channel? [03:01] ok :( [03:01] what is their room called here? [03:01] #linuxmint-help on irc.spotchat.org [03:01] #linuxmint-help on irc.spotchat.org [03:01] they're not on freenode because they're weird [03:01] oh god [03:01] please don't make me do this [03:02] Okay printscreen isnt working [03:04] Sunstream: on my system it actually saves a picture into ~/Pictures [03:04] Oh it automatically makes it [03:04] I do not have to paste [03:04] now I feel foolish [03:05] add my Skype william.conna [03:05] Sunstream: don't worry about it, the function is different from windows :) [03:06] hold on [03:06] let me upload this to my google account === Crackz0s is now known as Crackz0r === def_anoch is now known as [AFK]def_anoch === Khisanth is now known as Guest60630 [03:13] how to paste text from host when using ubuntu server in virtualbox under win7? [03:13] When the number of windows of a program changes.. the number of dots in the launcher don't change inmediatly.. I have to click on the icon in order to see it change.. happens when opening new windows and closign :/ [03:14] !pastebinit | waver from server [03:14] waver from server: pastebinit is the command-line equivalent of !pastebin - Command output, or other text can be redirected to pastebinit, which then reports an URL containing the output - To use pastebinit, install the « pastebinit » package from a package manager - Simple usage: command | pastebinit -b http://paste.ubuntu.com [03:14] Okay https://drive.google.com/file/d/0B2SuH8JTYEApY0k1TVhIeVBjMzg <----- look [03:14] that is what I see in the address bar of firefox [03:14] waver, Where is the text from windows or the server? [03:15] man, I've tried qtsixa a while ago and it sucked. today, it just worked and I got 2 dualshocks simultaneously connected to one dongle and had a great time through steam playing battleblocks theatre. I ran into an issue though, "Metro Last Light" has the most insane button mapping that doesn't make any sense.Anyone have any luck making a qtsixa dualshock take on an XBox controller mapping? [03:16] Sunstream: try changing browser.urlbar.formatting.enabled to false [03:16] when I want to past some bash script from my windows notepad to ubuntu shell, I found a waring " need x-service.' [03:17] okay whos idea at Mozilla to do that [03:17] but I use ubuntu server only. === Guest5024 is now known as RyanKnack [03:18] Sunstream: did that fix it [03:18] Nope [03:18] Sunstream: then try changing gfx.xrender.enabled to false === Guest94745 is now known as erratic [03:19] Ben64: this problem also affects Ubuntu [03:19] care to lend a hand now? -.^ [03:19] Foxhoundz: nope [03:20] okay falsed [03:20] yay [03:21] !yay | Sunstream [03:21] Sunstream: Glad you made it! :-) [03:21] what is wrong with that [03:21] let me reenable the formatting [03:21] Sunstream: i think its certain video cards or something, because i have no problems here [03:21] What the hell? [03:21] Why was I kicked? [03:21] well then agaiun [03:22] Sachiru: probably better to ask in #ubuntu-ops [03:22] Why was I kicked from ##ubuntu? [03:22] i have a crappy intel extreme(ly crappy) [03:22] Sunstream: makes sense [03:22] yay [03:23] I canuse the formatting now I can help others [03:23] i think I need to contact the mozilla team and suggest they make a work around or a detector of somesort that they can enable based on gfx card [03:24] Now that Firefox is fixed [03:24] I will use this as primary brower [03:24] Sunstream: probably too much work for them, idk though [03:25] oh come on they been working on netscape com... err Firefox for a long time lol [03:26] Another question I want to use firefox to open urls in Xchat but for some reason it keeps opening "browser" [03:27] I do not want to use WEBKIT I want to use Firefox [03:28] Guys, isso can't boot after update [03:28] I [03:28] * [03:28] YokoBR, What ubuntu release? [03:29] Seems to be a problem with sound [03:29] Saucy, i guess [03:29] YokoBR, Give some relative details [03:30] the problem with webkit is it shows buttons messed up a lil [03:32] Beldar, i'll try to send a picture === waverwaver is now known as waver [03:36] grumble [03:36] Sunstream: set firefox as your default browser then [03:36] I did [03:37] I am just gonna uninstall that browser [03:38] Sunstream: ok or you can just configure your mime types [03:38] I can open it in firefox in mIRC [03:38] Problem is with snd_hda_Intel [03:39] How can i disable it on boot? [03:39] Disable snd_hda_Intel on grub [03:39] darn it [03:40] if I uninstall the browser it uninstalls all the other stuff [03:40] gee [03:40] Sunstream: xdg-mime query default x-scheme-handler/http [03:41] that a shell command? [03:41] Sunstream: yeah what is the output of it [03:42] Please, i need to disable snd_hda_Intel [03:42] On grub [03:42] YokoBR_: blacklist it [03:42] !blacklist | YokoBR_ [03:42] YokoBR_: To blacklist a module, edit /etc/modprobe.d/my_blacklist.conf and add « blacklist » to the end of that list - To explicitly load modules in a specific order, list them in /etc/initramfs-tools/modules and type « sudo update-initramfs -u » [03:42] Hello every one [03:42] hola nexus [03:42] How? [03:42] I cant boot === nexus is now known as Guest40755 [03:42] I cant boooot [03:43] YokoBR_: boot the installation media and edit the /etc/modprobe.d/my_blacklist.conf [03:43] YokoBR_: yeah we got that. why do you think its snd_hda_intel's fault? [03:43] can anyone help me give myself full read/write access to my entire system? i've setup ssh/sftp connection, but some directory listings are denied lol === george2 is now known as george2_ === george2_ is now known as george2 [03:43] Because its whre The erros appears [03:43] catalase: thats for security, don't change that [03:43] YokoBR_: which error [03:43] Ben64, how about full READ access then [03:44] catalase: how about you say what you really want to do [03:44] Lets see [03:44] Ben64, i've created a folder in the root directory with my ssh rsa keys [03:44] access is denied [03:44] lol === Guest40755 is now known as Linot [03:44] catalase: work in your users directory [03:45] i chmod it to 700 [03:45] I'm installed xubuntu ~~ [03:45] catalase: or correct the permissions of your other directory [03:45] Fixing recursive fault, reboot is needed [03:45] YokoBR_: what? [03:45] catalase: you really should be doing things in your home directory [03:45] ok will try tthis [03:45] Perf samples todo long [03:45] Ben64, how come [03:45] catalase: because thats your home directory... [03:46] catalase: you own it, it's your directory to do whatever in. [03:46] Ben64, sure but it's my server === rax- is now known as RAX [03:46] Nmi handler Perf_evento_Nmi_handler took too long [03:46] catalase: what are you trying to accomplish? What's the end goal? [03:46] histo, do i not own the entire contents of the drive though? [03:46] 111.896 ms [03:46] And died [03:46] That dont work [03:46] catalase: root does [03:46] catalase: It's setup this way as a security measure. [03:47] Frozen [03:47] catalase: linux is not windows [03:47] !paste | YokoBR_ [03:47] YokoBR_: For posting multi-line texts into the channel, please use http://paste.ubuntu.com | To post !screenshots use http://imagebin.org/?page=add | !pastebinit to paste directly from command line | Make sure you give us the URL for your paste - see also the channel topic. [03:47] have to install it [03:47] Sunstream: what don't work? === RAX is now known as rax- [03:48] histo: Sunstream is using x/lubuntu ... don't know if the defaults are set a different way there [03:48] Im not pasting, im on a cellphone, i cant boot [03:48] oops mime not mine [03:48] Sunstream: yes. === gary is now known as Guest93334 [03:48] ouput [03:48] Ben64: xdg-mime is independent of desktop [03:48] firefox.desktop [03:48] histo: good to know [03:48] its X-chat being stupid [03:49] what are you talking about?~~ [03:49] Sunstream: appears that way. [03:49] is this chat good for Linux mint 17 [03:49] so now I gotta look for a way to fix that [03:49] Guest93334: no [03:49] !mint | Guest93334 [03:49] Guest93334: Linux Mint is not a supported derivative of Ubuntu. Please seek support in #linuxmint-help on irc.spotchat.org [03:49] Sunstream: what desktop environment are you in? [03:49] lubuntu [03:50] the question is, why can't i access the .ssh folder in my home directory? [03:50] it is set as drwx [03:50] i have low sys specs (old Dell Ispiron 1100) [03:50] oh, it says owner is root root [03:50] Sunstream: update-alternatives --config x-www-browser [03:50] no its xchat [03:50] catalase: that's why [03:50] I gotta find the right handler [03:51] Sunstream: did you try the update-alternatives command? [03:51] histo, do i just chown user /directory/? [03:51] catalase: chown username:groupname /some/directory [03:51] catalase: should match the perms of your /home/username username and groupname [03:51] catalase: so the .ssh folder in your home directory was owned by root? [03:52] ya, fixed that [03:52] thx u [03:52] catalase: why are you trying to put files in .ssh directory anyways? [03:52] catalase: you should be much more careful with permissions and sudo in general [03:52] catalase: especially on a server, bad permissions could end up with your box compromised [03:52] histo, not trying to put them. i generated my rsa keys and they went into root/.ssh [03:53] then randomly some folder was created in my home directory called .ssh [03:53] hello i cannot update my xubuntu completely ,how to fix it [03:53] but is empty [03:53] catalase: did you use sudo to generate your keys? [03:53] how come I can't send files from cell phone to laptop via bluetooth? on my cell phone it said that device not supported.... yet I can send stuff from my laptop to my cell phone via BT just fine. [03:53] Sunstream: try in #lubuntu [03:53] histo, probably [03:53] am I missing something? [03:53] catalase: well dont' do that. [03:54] getting closer to fixing it [03:54] oh and when I try to 'Browse' the cell phone after connecting it via BT, I can't... Nothing happens when I click 'Browse' on the BT menu under System Settings [03:55] When the number of windows of a program changes.. the number of dots in the launcher don't change inmediatly.. I have to click on the icon in order to see it change.. happens when opening new windows and closign :/ [03:56] Linot: Why are you pinging me? [03:56] ~ [03:56] Linot: ~? [03:57] home? [03:58] i should probably make the root password different from my user password then [03:58] catalase: you shouldn't have a root password set === Jan11 is now known as ON1 [03:58] !root | catalase [03:58] catalase: Do not try to guess the root password, that is impossible. Instead, realise the truth... there is no root password. Then you will see that it is 'sudo' that grants you access and not the root password. Look at https://help.ubuntu.com/community/RootSudo [03:59] histo: sorry [04:00] i first used this software [04:01] histo, thanks for this link [04:01] histo, should one set a password for their RSA keys? [04:05] catalase: it's up to you. Think of it this way. If someone gets your private key they won't ahve to crack password [04:07] catalase: I don't use pass on mine, if I lose my private key I can just pull the plug... [04:07] catalase: also check out ssh-copy-id for transfering your keys. [04:13] i have now copied your link about root accounts and stapled it into my ubuntu complete refference book [04:19] I wish I can get it to work but XChat refuses to let me open urls in firefox [04:20] Sunstream: did you update-alternatives yet? [04:20] I did [04:21] wait === nexus_ is now known as Linot [04:21] Sunstream: what does xdg-open http://www.ubuntu.com use to open that link? [04:21] what do you mean update-altern [04:22] histro [04:22] its xchat [04:22] not firefox or anything [04:22] Sunstream: open a terminal and type 'xdg-open http://www.ubuntu.com' without quotes... What browser gets opened? [04:23] oh epiphany-browser I am going to uninstall that POS [04:23] is there a root user group in ubuntu? [04:23] Sunstream: Stop uninstalling and just set the right one up. [04:23] Sunstream: when you click on a link in xchat which browser gets opened? [04:23] I told you [04:23] evanvarvell: yes [04:23] epiphany [04:24] the default to system browser? [04:24] Sunstream: K try 'update-alternatives --config x-www-browser' without quotes [04:24] gosh [04:24] Sunstream: gosh what? [04:24] this is stupid I have it set to firefox but it loves epiphany [04:24] Sunstream: because of lxde [04:25] lxde? [04:25] its forcing me to use that POS thing [04:25] Sunstream: was update-atlernatives set to firefox or not? [04:25] ... I am not superman I need time to type that [04:25] Sunstream: copy and paste [04:26] it outputs selections 0 1 2 3 [04:26] Sunstream: yeah which one has a * [04:27] it is on 0 [04:27] and says permission denied when I try to select firefox [04:27] Sunstream: which browser is on the 0 line? [04:27] again [04:27] epiphany [04:28] I told you earlier the same thing that epiphany is being a forced default [04:28] Sunstream: use sudo update-alternatives --config x-www-browser [04:28] and change it to firefox [04:28] so if i am a part of root user group then all messages and mail sent to root group i will receive? [04:29] hi [04:29] okay it is say manual mode does this mean epiphany can take over again [04:30] In ccsm, I've been able to change some of the switcher settings for when I press alt-tab, but is there some way to make Unity show a window's live preview as I'm switching through them all? this way I can get a faster sense of the app I want to use (like on Windows 7) [04:30] Sunstream: no [04:30] Sunstream: it should work now [04:30] Now [04:30] lets see [04:31] Okay [04:31] That makes it a bit simpler it is now opening it but [04:31] I want to double click a link now it should work but it is so [04:31] slow [04:32] What is slow? [04:32] I should be able to left click it twice and open the url like I can in mIRC however I can right click and click open in browser and it opens fast [04:33] I do not want epiphany on my system [04:33] I just Chrome and gmail [04:33] Sunstream: So what is slow then if it's working? The right clicking part. I'm confused [04:34] It is faster if I right click the link and click on open link in browser it opens faster [04:34] Xchat is wierd [04:35] Sunstream: opens faster compared to what? [04:35] ... [04:35] Am I the only one that is not following this? [04:35] double clicking [04:35] y ou a r e be i n g h ac k ed if i t i s sl o w [04:35] Sunstream: No idea. I don't forsee there being a difference in the code [04:35] How do you open a link in your irc window? double click right? [04:36] Sunstream: no. Don't have that feature in my client [04:36] evanvarvell: your text was f'd up; i think your spacebar is broken [04:36] well in most gui clients it is double left click like you open a desktop shortcut [04:37] Epiphany removed because it sucks as a brower [04:37] chrome [04:37] Chrome sucks because it does not allow Java [04:37] wrong [04:38] okay tell me how to get it to work [04:38] http://tinyurl.com/q4hyjtz [04:38] Step 1. Install Windows [04:38] should work then [04:39] also, don't use java [04:39] no [04:39] yes [04:39] I am NOT going to install Windows [04:39] Gorroth: please stop [04:39] I just left windows [04:39] don't use java then [04:39] Sunstream: so when you double left click a link in xchat it opens slower than if you right click and select open link? [04:39] * Sunstream boggles at Gorroth wondering if he is trolling. [04:39] a bit [04:40] yep [04:40] but really, dnt' use java [04:40] then what should I use? [04:40] C++ [04:40] Mocha? [04:40] -_- [04:40] Now silly, I cannot control what websites use [04:40] its not a big deal [04:40] Chromium has its use so does firefox [04:40] You can send them the "Do Not Use Java" packet. [04:41] I hope it works [04:41] I could? I suppose I could send "shut off java so I can use your bloody site?" packet too? [04:41] wait nevermind I am done feeding trolls for the day [04:41] yeah [04:41] send all the anti-java packets we have [04:41] why would you not want to use java ? Java is the most awesomest best ! [04:42] Sorry, Gorroth you exceeded the troll feeding for the day thank you. [04:42] I only trust Steve Gibson's websites; they use HTML only [04:42] SirLagz, no Java actually sucks. [04:42] lol [04:42] it is about as secure as Flash [04:42] Sunstream: did you not notice the tag ? [04:42] I like grc.com [04:43] Yep === svm_invi1tvs is now known as svm_invictvs [04:43] I did a test on grc and I got a true Stealth passed :D [04:43] I use Java because I have to unfortunately [04:43] Otherwise I wouldn't touch it. ever. [04:43] same here SirLagz [04:43] Thankfully, Java is not something I have to use. [04:44] wait [04:44] nevermind [04:44] I do Android dev work [04:44] but [04:44] I do it in C++ [04:44] Gorroth: lol [04:44] in chrome go to settings the scroll to bottom then click advanced settings then under privacy click content settings then it is allow java script [04:44] hey, man, how can i use QQ in ubuntu? [04:44] some of it is in java, but the game engine is C++, thankfully [04:44] Gorroth: how do you do it in C++ ? [04:44] The android NDK [04:44] Gorroth, Actually I like android [04:44] Gorroth: ooh right. [04:44] Gorroth: forgot about that :D [04:44] :-) [04:44] is there anyone here that could possible help a linux noob get linux installed on my desk top [04:45] It's like a stripped down linux system... very stripped down [04:45] the NDK portion, I mean [04:45] I've always wanted to play with the NDK, but never had a reason to [04:45] The only apps I've made for Android, I've just used Java for [04:45] yeah [04:45] Trever, What is it you don't understand? [04:45] Trever: have you downloaded the iso? [04:46] we ported our game engine to android. it has been running on pc, mac, and ios, and now androidt oo [04:46] took me and another guy 3 months to do it [04:46] nice nice [04:46] Gorroth: what game / game engine ? [04:46] ROBLOX [04:46] actually, I did predict that Linux smart phones would take off. [04:46] Android is close to it [04:46] Gorroth: ah k. haven't heard of that yet [04:46] Gorroth, This is support can you take that to #ubuntu-offtopic [04:46] I cannot waitr till ubuntu smartphpnes [04:47] smartphones* [04:47] SirLagz: just an mmo sandbox game :-) check it out sometime (doesn't run on linux though): http://www.roblox.com [04:47] alright, i'm going to go chillax for a while [04:48] what in the world is this 'chillax' is it some cool nerd way of saying chilling [04:48] chill / relax [04:48] i have already built a usb for it and installed it on my laptop but when i try on my desktop i keep getting unable to find a medium containing live file [04:48] Trever: do you have your desktop set to boot from usb? [04:49] ahh [04:49] yes [04:49] CHILl reLAX I get it [04:49] Sunstream: bingo [04:50] like how Square and Enix merge named them (saracastically) Squeenix (due to they used to be rival rpg game makers) [04:50] lol [04:51] I didn't realise Square Enix used to be two different companies [04:51] learn something new everyday [04:52] You..... did not know... are you a teenager /young adult? (late 90s?) === badon_ is now known as badon [04:52] #ubuntu-offtopic if you want to chat [04:52] !ot [04:52] #ubuntu is the Ubuntu support channel, for all Ubuntu-related support questions. Please use #ubuntu-offtopic for other topics (though our !guidelines apply there too). Thanks! [04:52] Ben64: sorry === waverwaver is now known as waver [04:54] * waver food [04:55] histro sorry for the speedy ways I was talking uninstalling. But I hated epiphany. I fixed it [04:56] ok im back so back to getting this desktop to take ubuntu [04:57] Trever_: insert cd/dvd/usb, follow installer? [04:58] tried that keep getting unable to find meldium containing live file system [04:59] *medium === megabitdragon is now known as megabit|away [04:59] how can i fix it so acl settings are applied recursively [04:59] Trever_: Is this the same usb you used to install the laptop? [04:59] yes [04:59] Trever_: how old is the desktop? [05:01] Trever_: make sure the thumb drive you created still boots on the laptop, just to be sure something didn't happen to it. [05:01] desktop is brand new i have had it since Jan. [05:02] and i am currently rebuilding it to try a 32 bit version [05:02] the usb [05:02] Trever_: how much ram does the desktop have? [05:03] 8gb [05:03] ddr3 1600 [05:04] i know i shouldnt need the 32 bit version but im just trying it [05:04] Trever_: a quick boot test in the laptop would be sufficient. [05:06] alright il be back [05:12] yep that worked on the laptop === vivek is now known as Vivek_VC [05:12] I am getting the following warning message http://paste.ubuntu.com/7724785/ [05:12] how do I change the priority of my default browser higher using that update-alternative? [05:13] What's the fix to the issue ? === abdul is now known as Guest59147 [05:15] Trever_: interesting... Try booting something else from usb on the desktop I suppose. Or a different port [05:15] Sunstream: There is no priority. Its either the default or it's not [05:16] Vivek_VC: where are you getting it, and what are you trying to do when you receive it. [05:16] Sunstream, update-alternatives --config x-www-browser [05:16] histo: I am getting this when I try an apt-get update [05:17] Vivek_VC: any ppa's enabled? [05:17] i hate my network adaptor on this laptop i dc [05:17] Trever__: what chipset? [05:18] like my mobo? [05:18] Vivek_VC: pastebin the full output of "sudo apt-get update" [05:18] it is ok I was wondering why one browser had a 85 priority and another had 40 [05:19] hi guys im not sure what exactly to do i formatted my ubuntu setup [05:19] histo, How do I check if ppa's are enabled or not ? [05:19] and i dont know how to bring my fakeraid setup [05:19] Vivek_VC: https://help.ubuntu.com/community/PackageManagerTroubleshootingProcedure [05:19] bring back* [05:19] Vivek_VC: do you know what a ppa is? have you ever used one? [05:20] hi guys, does anyone know how to fix the ugly ubuntu bootsplash after installing the prop. nvidia drivers? [05:20] alexjr__: what's wrong with it? [05:20] Ben64, http://paste.ubuntu.com/7724816/ [05:21] well hallelujah i figure it out [05:21] Vivek_VC: that's not "apt-get update"... [05:21] histo, Yes, I think ppas are enabled. The puppet enterprise reposiotries are enabled. [05:21] sudo mdadm --assemble --scan [05:21] I've noticed some difficulties typing parentheses over VNC, but it's inconsistent: sometimes the parens type just fine, other times it takes several presses to make a paren [05:21] Ben64, it's upgrade [05:21] and sometimes I press once but I get a repeating string of parens [05:21] update and upgrade [05:21] Vivek_VC: ok... but i asked for update? [05:21] what can I do to diagnose this problem? [05:22] I don't have that text, it has scrolled up. [05:22] Ben64, I don't have that text as it has scrolled up. [05:22] the desktop is using the 990fxa-ud3 rev3 [05:22] Vivek_VC: then use pastebinit or output to a file or use sprunge or something else [05:23] Vivek: nano /var/log/apt/term.log [05:23] bdbear, Thanks [05:23] what happens if you do apt-get install puppetmaster-common ? [05:24] @histo it looks all messed up. it's low-res and the usual ubuntu dots etc. don't show up, but some text with OK checkmarks at the end. [05:24] you might fix this by installing the missing packages. unless you get more errors. if thats the case then you might have some corrupted files. [05:25] xev doesn't really tell me much beyond what I already know - sometimes it fails to report a keypress event for the paren key, sometimes it reports repeating events for a single press [05:26] alexjr__: you could disable the splash. No idea why it'smessed up though. [05:27] Ben64, bdbear, histo: http://paste.ubuntu.com/7724830/ [05:27] vivek_vc did you try to apt-get install puppetmaster-common ? [05:27] histo, ppa is a personal archive. Yes, I've used it. [05:28] hey #ubuntu, my system appears to be idling at 3.5 GB of ram used... is this normal? should i be concerned? [05:28] scrath taht 3.9 GiB [05:28] out of 8 [05:28] hunt: yes normal, no concern [05:28] additionally 2 GiB of my swap is being used [05:28] bdbear, http://paste.ubuntu.com/7724832/ [05:28] why is so much memory being used without any processes running? [05:28] or with minimal running [05:28] It says package is already installed. [05:29] hunt: pastebin "free -m" [05:29] !atemyram | hunt [05:29] hunt: If you are wondering why some tools report your system has very little free memory, have a look at http://www.linuxatemyram.com/ | A short primer on Linux memory management can be found here: http://sourcefrog.net/weblog/software/linux-kernel/free-mem.html [05:29] I think while trying to uninstall Puppet enterprise manually some time back, I had deleted the files. [05:29] Ben64: http://paste.ubuntu.com/7724834/ [05:30] Vivek_VC apt-get install --reinstall [05:30] hunt: ok that looks strange [05:30] if that works, then do it for all the 4 packages. and then try to run an apt-get upgrade. [05:30] histo you have no idea? [05:30] histo: the second link is broken [05:30] Ben64: ... :'| [05:31] Ben64: how do i diagnose why so much is being used [05:31] Trever__: I told you I would try a different bootable usb or different port [05:31] hunt: the first link will explain your issue/ lack there of [05:31] histo: Ben64 says my free -m looks strange though [05:31] Ben64, bdbear, histo: Now puppet master common is installed. [05:31] hunt: take a look at mine for comparison http://sprunge.us/gCeB [05:31] histo: yea i read it im just saying i think someone ought to fix the second link [05:31] bdbear, now puppet master-common has got installed. [05:32] vivek_VC do that for the 3 other packages and then try to do an apt-get upgrade [05:32] Trever__: try/test [05:32] Should I do the same for the other packages ? [05:32] ok [05:32] tried both also tried xubuntu and linux mint all have the same issue [05:32] Ben64: why does mine look strange? youre using even more memory then me [05:32] hunt: its weird that 1) you have so little cached and 2) your swap is so used [05:32] Ben64: i see... why would there be very little cached? [05:32] and yea i dont understand my swap usage [05:32] Ben64: could it just be relative to the total swap size? [05:33] hunt: cache is what the links that histo gave you are about. linux uses unused memory for cache to speed things up, its a good thing, and usually where memory goes to [05:33] !who > alexjr__ [05:33] alexjr__, please see my private message [05:33] hunt: oh maybe, didn't notice that you had a 8GB swap [05:33] Ben64: yea i read the links but why would i under-cache [05:33] hunt: have you used anything designed to free up memory [05:33] Ben64: nope, should i? [05:33] hunt: no [05:34] Ben64: are you thinking those programs move it to the swap? [05:34] hunt: they do often times, yes [05:34] Ben64: ah what a clever trick [05:35] Ben64: the only reason i ask is because i was getting wierd lags opening new tabs and such in firefox, it was using 1.3 GB of memory at the time [05:35] weird [05:35] also is there a reason people still use firefox besides fear of google? [05:35] hunt: was there pages with flash content? [05:35] hunt: pastebin "ps aux | sort -b -k 4 | tail" [05:35] i find the chrome environment mostly much more comfortable, and for some reason javascript always runs faster in chorme [05:35] bdbear, I have done that. [05:35] histo: the second one just 404sa [05:36] vivek_VC did you manage to upgrade your system now? [05:36] Yes. [05:36] I did not get those warning messages. [05:36] cool, then it were some corrupted files. its most likely fixed. [05:36] bdbear, Yes, I did not get those warning messages. [05:36] histo if responded to me i might have missed it i dc again sorry [05:36] bdbear, Thanks. [05:37] vivek_VC yw [05:37] Trever__: I was saying to try a different port or different bootable thumb drive. [05:37] Ben64: idk if i want to share that data publicly, but if you want to know it loks like the only significant user of memory is X, which is taking ~30% cpu and memory [05:37] anyone who know how you can force FilePermissionsACLs to automatically update subfolders? [05:37] hunt: the command i gave you has the big memory users on the bottom [05:38] Ben64: right, weirdly firefox is listed below X despite only running at 1.6% MEM, while X is a hefty 30% [05:38] sorry, 3.3% [05:38] Ben64: i think the sort algorithm is actually not comparing the floats [05:39] Ben64: and just doing the dictionary style sortiung [05:40] bdbear: They should be by default. What is happening? [05:41] it seems that X11 forwarding is much faster for text programs like GUI emacs than vnc is [05:41] but much slower for graphical programs like a browser [05:42] bdbear: what are you trying to accomplish [05:42] histo: Apache, userdir. file permissions. [05:42] bdbear: for which user or group? [05:44] bdbear: do you have acl turned on ? [05:44] yes [05:44] bdbear: mount | grep acl [05:45] no its not turned on [05:45] bdbear: well kind of hard to use if it's not enabled [05:45] bdbear: edit your fstab and add acl as a mount option [05:46] histo: I did that, but i think i did something wrong there. [05:46] bdbear: what do you mean? [05:47] histo: mount: /home not mounted or bad option [05:47] histo: when doing sudo mount -o remount /home [05:47] bdbear: pastebin your fstab [05:49] histo: http://pastebin.com/4JwsUgS3 [05:49] so many /homes [05:49] one are removed. [05:50] wth [05:50] ? [05:50] bdbear: why do you have two home lines [05:50] bdbear: pastebin the output of mount [05:50] why did you make up a uuid [05:50] theres only one. [05:50] thats not your uuid [05:50] do you even have a home partition? [05:52] the suspense is killing me, i can't wait for the explanation [05:53] ben64: histro: im just following the https://help.ubuntu.com/community/FilePermissionsACLs#References. point to point. But atleast now i know were my mistakes are made;) [05:53] anyone know what explorer can i use with ubuntu...???? [05:54] bdbear: i know you were following that, because you COPIED THE UUID! [05:54] power: http://www.tuxarena.com/2011/06/20-file-managers-for-ubuntu/ that might help [05:54] bdbear: remove the home line completely from your fstab [05:54] histo: and? [05:54] bdbear: Why are you trying to impliment acl? [05:54] anyone know what explorer can i use with ubuntu...???? [05:55] power: explorer as in internet explorer? [05:55] hello, i upgraded from xubuntu 12.04 to 14.04. the starmenu stayed the same wheras i have a different one if i do a fresh instal. how can i decide between the menues? [05:55] anyone speak spanish? === BettySlocombe is now known as Loshki [05:55] !es | power [05:55] power: En la mayoría de los canales de Ubuntu, se habla sólo en inglés. Si busca ayuda en español entre al canal #ubuntu-es; escriba " /join #ubuntu-es " (sin comillas) y presione intro. [05:56] bdbear: please stop and explain what exactly you are trying to accomplish before you go any further and bork your system. [05:56] thanks...! === vivek is now known as Guest39544 [06:00] necesito saber si alguien conoce de un navegador de internet que se acople con ubuntu, algun navegar mejor firefox ? [06:00] histo: i'ts a vps, its there to be borked;) I'm trying to set up an lamp /w userdir. But apache cant wx the files since the files is in home. [06:00] power_: /join #ubuntu-es [06:01] bdbear: What do you mean you can't wx ? [06:01] bdbear: chmod [06:01] bdbear: and setup apache properly [06:01] apache doesn't need write access [06:01] i need to know if anyone know any navegator better than firefox for linux ubutu??? [06:02] no but php does [06:02] bdbear: you want the users to have there own site in their home directories? [06:02] Yea [06:02] power_: there is no "better", use what you like [06:02] !best | power_ [06:02] power_: you can install midori, chrome, safari, etc.... there are many options [06:02] ugh... so many factoids removed -_- [06:03] yeah who pillaged ubottu ? === Guest39544 is now known as vivek- [06:03] the ops [06:03] what is the best internet navegator for linux ubuntu? [06:04] power_: again, there is no "best"... use what you want [06:04] bdbear: is this what you are tyring to impliment https://httpd.apache.org/docs/2.2/howto/public_html.html [06:05] bdbear: sorry this is more up-to-date http://httpd.apache.org/docs/2.4/howto/public_html.html [06:07] power_: firefox [06:07] histo: yea. userdir is implemented. but php won't work properly due to file permissions [06:07] how can i acelerate my internet? [06:07] power_: pay for faster internet [06:07] power_: have an good computer, pay more to your isp. [06:08] ok === vivek-_ is now known as vivek- [06:08] bdbear: What happens when they try and use php? [06:09] histo: it can be read, but files are not allowed to be altered. [06:10] bdbear: so the php runs or it just tries to download the php file when browsing there? [06:10] bdbear: in your php5.conf look for php_admin_value engine Off [06:11] Why do I have to play 50 questions with everyone to find out what their Real problem is [06:11] bdbear: check this page out http://devplant.net/2010/05/04/linux-php-not-working-in-userdir-public_html/ [06:11] hehe [06:12] i'm going to stuff my pie hole and watch a show be back later [06:12] dont think that is a solution to my problem but ill give it a try;) [06:13] user__ === user__ is now known as nastyNVC [06:14] does anyone play Champions of Regnum on Steam? I was wondering if it is common to play for a few minutes and the game just crash with no error or anything during fights [06:14] registration [06:16] histo: thats not my issue. (i can basically create an entire site in php on localhost/~user/ and it will work as long as it does not need to write to any of the files. (like CMS's need to) [06:19] Hello === lipsin_ is now known as lipsin [06:21] I just did a normal apt-get update / apt-get upgrade and now whenever I try to visit a website hosted on the server, I get a 500 error and the following message in the logs: [fastcgi:error] [pid 6324] (13)Permission denied: [client 1.1.120.156:57897] FastCGI: failed to connect to server "/fcgi-bin-php5-fpm": connect() failed. What is causing this error? [06:26] And what happand with the program menu in the bottom from xubuntu 12.04 in 14.04? [06:26] hello, i upgraded from xubuntu 12.04 to 14.04. the starmenu stayed the same wheras i have a different one if i do a fresh instal. how can i decide between the menues? [06:33] Braden`: To clarify, this is when you try to access a resource on the machine you updated? [06:39] I just did a normal apt-get update / apt-get upgrade and now whenever I try to visit a website hosted on the server, I get a 500 error and the following message in the logs: [fastcgi:error] [pid 6324] (13)Permission denied: [client 1.1.120.156:57897] FastCGI: failed to connect to server "/fcgi-bin-php5-fpm": connect() failed. What is causing this error? === CyberJacob|Away is now known as CyberJacob [07:02] hello [07:02] how to tell apt not to install some dependancies [07:04] leeyaa, with dpkg --set-selections, something like: echo "package hold" | sudo dpkg --set-selections [07:05] leeyaa, or use apt itself: sudo apt-mark hold [07:05] exit [07:06] exit === digifiv5e is now known as Guest67852 === Zerant_ is now known as Zerant === dk_ is now known as Guest57307 [07:13] I just did a normal apt-get update / apt-get upgrade and now whenever I try to visit a website hosted on the server, I get a 500 error and the following message in the logs: [fastcgi:error] [pid 6324] (13)Permission denied: [client 1.1.120.156:57897] FastCGI: failed to connect to server "/fcgi-bin-php5-fpm": connect() failed. What is causing this error? [07:15] that sounds like a server side error braden are you sure that every website says that? [07:16] are you runnnig a local web server? [07:25] hi [07:25] this is my last refuge [07:25] ki7mt: hm, so i can mark which dependancies i dont want to install [07:25] I'm using Ubuntu 14.04 and I installed gnome on it [07:25] but then I decided to switch back to Unity [07:26] and uninstalled gnome [07:26] but now the interface looks neither like gnome nor like unity. [07:26] Right clicking on the desktop doesn't work [07:26] what can I do about this? [07:28] somebody please help me about it [07:29] lol [07:30] ? [07:31] rameshthecoder, try sudo apt-get --reinstall ubuntu-desktop === frobware- is now known as frobware [07:42] Hi Everyone. Im am trying to install Ubuntu 14.4, on a machine that was previously running windows 7. [07:43] ok. [07:43] everytime I get to the welcome screen, and then you get to choose a clen install or install alongside widows [07:43] either choice i make i end up getting the blingking underscore of death [07:44] atomicevents, what is the "blingking underscore of death"? [07:44] google it [07:44] bdbear, We don;t say google it here. [07:45] Black screen, blinking underscore, no action on the dvd and PC not reading [07:45] atomicevents, Have you checked the sum of the install media? [07:46] Beldar, no. Can you advise how to do that? [07:46] atomicevents, Are you doing the install from the desktop? [07:46] No, i am trying to install after the bios, directly from the disc i have burned [07:46] 有会中文的吗? [07:47] Can you install directly from the desktop ? [07:47] !md5sum | atomicevents [07:47] atomicevents: To verify your Ubuntu ISO image (or other files for which an MD5 checksum is provided), see http://help.ubuntu.com/community/HowToMD5SUM or http://www.linuxquestions.org/linux/answers/LQ_ISO/Checking_the_md5sum_in_Windows [07:47] !cn | Linot [07:47] Linot: 如欲獲得中文的協助,請輸入 /join #ubuntu-cn 或 /join #ubuntu-tw [07:47] atomicevents, Besides the sum check try to boot to the desktop, you might just need a safex boot [07:48] Atomicevents, are you going to keep windows installed. or are you going to only have ubuntu installed on that computer? [07:49] hey bdbear. I wanted to do a clean Ubuntu installation [07:50] How do i disable the ALT shortcut to the unity HUD popup thing? Its insanely annoying [07:51] atomicevents: are you able to boot into ubuntu using an liveCD? [07:52] atomicevents> Can you install directly from the desktop ? Yes [07:52] /join #ubuntu-tw [07:52] Hello, I'm trying to setup ipv6 on Ubuntu. [07:52] i am booting into windows on that machine and will try to launch the cd from the desktop [07:53] I have another debian system with working ipv6, and I'm wondering how I can share this to my Ubuntu laptop. [07:53] hi [07:53] whiskers75: why share it? [07:53] Ben64: that other system's my headless Raspberry Pi [07:54] I've got an entire /64 from Hurricane Electric [07:54] i don't see why that matters? get another /64 ? === CatKiller_ is now known as CatKiller [07:55] no, you can't [07:55] these two machines are in the same network [07:55] and you can't use an ipv6 tunnel from two machines with the same IP [07:56] then have the gateway use the tunnel and hand out addresses [07:57] Ben64: my router isn't ipv6-capable [07:57] get one that is? [07:57] whiskers75, you can flash it and make it IPv6-cabable. [07:58] bdbear: no, I can't [07:58] it's a crappy router [07:58] How do i disable the ALT shortcut to the unity HUD popup thing? Its insanely annoying [07:58] what router do you have? [07:58] can't we just setup radvd or something on the raspberry pi? [07:59] that you'd have to ask in #raspberrypi [07:59] mk [07:59] diverdude, http://askubuntu.com/questions/122209/how-do-i-modify-or-disable-the-huds-use-of-the-alt-key [07:59] Ben64: the reason I thought it's relevant to #ubuntu is I have dhcpd running on the pi [07:59] I just can't connect to it from Ubuntu [08:02] bdbear: What are the perms of your public_html directories? [08:02] whiskers75: probably because you have dhcpd running on your router [08:03] bdbear: make sure the directory is 755 [08:06] histo: its 775 [08:06] bdbear: should be able to write to it then. php should be trying to write as the user [08:07] histo thats not the issue, the issue are when i upload files and folders to the dir. [08:07] histo: or create a directory using mkdir [08:07] bdbear: okay earlier you said hte issue is with php not being able to write. Now you can't mkdir? [08:08] Hello [08:08] hello [08:08] i need help in sasss [08:08] sass [08:08] How would I modify /etc/init.d/php5-fpm to always perform "chown www-data.www-data /var/run/php5-fpm.sock" every time "service php5-fpm start" is called? [08:09] why when I put out the hackers out of my world for make free, why they come in groups to attack me. They are cowards? do not care, alone against all until the death ! [08:09] !ot | Energy_ [08:09] Energy_: #ubuntu is the Ubuntu support channel, for all Ubuntu-related support questions. Please use #ubuntu-offtopic for other topics (though our !guidelines apply there too). Thanks! === tcpman is now known as Guest83577 [08:10] bdbear: can you clarify and ask you question on one line with details? [08:10] histo: yea, well php can write to the files as long as I update the directories / files manually. [08:10] bdbear: What? [08:11] !details | bdbear [08:11] bdbear: Please elaborate; your question or issue may not seem clear or detailed enough for people to help you. Please give more detailed information, errors, steps, and possibly configuration files (use the !pastebin to avoid flooding the channel) [08:11] Mine is on one line and detailed [08:12] !patience | Braden`, you may want to check in #ubuntu-server while you wait [08:12] Braden`, you may want to check in #ubuntu-server while you wait: Don't feel ignored and repeat your question quickly; if nobody knows your answer, nobody will answer you. While you wait, try searching https://help.ubuntu.com or http://ubuntuforums.org or http://askubuntu.com/ [08:13] Braden`: that's probably not what you want to do. try adding "listen.owner = www-data" and "listen.group = www-data" to the conf file in /etc/php5/ === nexus is now known as Guest99148 [08:13] Ben64: is bdbear making any sense to you? Or is it just me? [08:13] bdbear: i'm trying to ignore that because bad server config makes me cringe [08:14] be64: i know the feeling. [08:14] whoops, meant to ping histo [08:14] haha [08:17] I think that night I was in israel disconnect the machine to a wicked woman. [08:17] bdbear: What do you mean php can write to the files as long as you " update the directories / files manually" ??? [08:18] histo: Well, if you create an file in your home directory as an user in ubuntu. Who owns the file? [08:18] bdbear: the user [08:18] histo: and if apache wants to alter the file, who does it try to alter the file as? [08:19] bdbear: should be the user or www-data [08:19] Beldar, thank you [08:19] How would I modify /etc/init.d/php5-fpm to always perform "chown www-data.www-data /var/run/php5-fpm.sock" every time "service php5-fpm start" is called? [08:19] Braden`: that's probably not what you want to do. try adding "listen.owner = www-data" and "listen.group = www-data" to the conf file in /etc/php5/ [08:19] diverdude, no problem. ;) [08:19] lol [08:19] my macbook 2006 keeps randomly hibernating on Ubuntu [08:20] new to IRC. I've been on a couple before. do all clients boot you if you don't talk? [08:20] Beldar, weird to me why they would choose Alt as default shortcut for that :) [08:20] is Ubuntu 12.04.4 LTS in those days able to use ? [08:22] histo: in my case its www-data. and apache cant alter the file, since its owned by the user and usergroup. So if i want to alter it, i have to change the permissions of the file to user:www-data . [08:22] bdbear: k [08:22] bdbear: do you need help chown'ng ? [08:23] histo: maby. What i want are for the permissions to be recursive, when i create new files or folders inside an folder. [08:23] bdbear: chown bdbear:www-data /home/bdbear/public_html [08:24] how to install android adb [08:24] help me [08:24] Hello. Is there anybody who can help me with Ubuntu for Devices (Ubuntu Phone more exactly) ? [08:24] Ubuntu phone? [08:25] !phone | CRPL [08:25] CRPL: Information about the Ubuntu Touch platform for Phone and Tablet is available here https://wiki.ubuntu.com/Touch . Support and discussion in #ubuntu-touch [08:25] Where can i get it? [08:25] leoly: https://help.ubuntu.com/community/AndroidSDK [08:25] ok, thank you bcvery [08:25] bdbear: substitute bdbear for your actual user === TakumoKatekari is now known as Takumo === sandy is now known as Guest74646 [08:27] bdbear: your questions might be better answered in the apache room if you somehow manage to phrase together a single readable question. [08:28] Ben64: That didn't solve it. Is there a way to just modify the init script to set it after the service loads? [08:28] java desktop [08:28] histo: but this arent apache related, its ubuntu related. ok, lets say i chmod and then what happens if i create an file or an folder inside /home/bdbear/public_html as the user that owns that home dir? its created whit the users default permissions. [08:29] bdbear: yes their umask [08:30] Braden`: which file did you edit [08:31] Ben64: /etc/php5/fpm/php-fpm.conf [08:32] Braden`: yeah thats not the right one, it should be www.conf [08:32] histo: so back to my original issue;) how can i make it so. files and folders inside /home/user/public_html/ adopts the permissions of the folder? Automatically. [08:32] Braden`: not sure of the directory though, i don't have the same setup as you [08:32] bdbear: instead of doing that, you should do things the proper way [08:33] ben64. whats the proper way then? [08:33] Ben64: Right now, I need the quick and dirty fix. That would be to set the permissions after the service is started. Could you please tell me how to do that? Modifying /etc/init.d/php5-fpm hasn't worked [08:33] After the system is working, I can work on the proper fix [08:33] bdbear: histo has been trying to tell you for ages [08:34] My next alternative is to set a 5 second cron job to set the perm [08:34] Braden`: well good luck with that then === YuviPanda|zzz is now known as YuviPanda [08:34] Ben64: Could you tell me how to manipulate the upstart script please? [08:34] i'm trying to get you to do it the right way, not sure why there is so much pushback === adellam_ is now known as adellam [08:35] Because of time. If it is working, I will be happy to modify it to do the correct way [08:35] This is time sensitive [08:35] then edit the file, add those two(2!) lines and be done [08:35] I did, it didn't work :/ === Vampire0_ is now known as Vampire0 [08:35] you didn't edit the right file, as i already said. [08:35] Hmm [08:36] What is it on your system? [08:36] I might have the same but located elsewhere [08:36] i don't have it, as i said its not the same setup [08:36] Ah [08:36] You aren't using fpm [08:36] you should slow down and read more [08:37] 有人吗 [08:40] 闪么? (what) [08:40] !cn [08:40] 如欲獲得中文的協助,請輸入 /join #ubuntu-cn 或 /join #ubuntu-tw [08:41] There's the link. Didn't know the trigger [08:44] Braden`: It's 什么, pinyin shenme, too :-) [08:44] bdbear: this is not a difficult process... http://ubuntuserverguide.com/2012/10/how-to-enable-and-configure-apache2-userdir-module-in-ubuntu-server-12-04.html [08:47] Histo: userdir works perfectly. my issue are related to the fact that if i create files inside public_html as the user. They wont work unless i chmod them to be owned by www-data. [08:47] define "work" [08:47] yea was going to;) [08:48] * histo is going to scream [08:48] Ben64: The cron fix worked. Now I am going to check into the config entry you were mentioning [08:48] Ben64: I do appreciate the assistance by the way [08:48] I apologize for being uppity [08:48] <- me to ;) [08:48] catalyst control center from AMD attempts to enter su mode instead of sudo and hence fails to start. what should i do? [08:49] anton02: there is no su mode. [08:50] Braden`: what version of ubuntu [08:50] hence the hence in my sentence [08:50] anton02: su donkey -c somecommand will run somecommand as user donkey [08:50] just ran sudo amdcccle [08:50] Ben64: 14.04 [08:50] anton02: why? [08:51] Going slightly crazy here trying to take down a subprocess in a bash script on exit. [08:51] Ben64: This is an upgrade from a 12.04 install [08:51] Anyone with knowledge on that? [08:52] Braden`: well i just got a 14.04 vm running, and its owned by www-data already, no modifications necessary [08:53] f3lix: which subprocess? [08:53] hey ev1 [08:53] Ben64: That was the way it was here prior to the last apt-get upgrade [08:53] Braden`: any ppa's in use? [08:53] It's a watchdog used to kill the script after a given amount of time: [08:53] SCRIPT_PID=$$ [08:53] (sleep 10s && echo Killing $NAME && cat $OUTPUTCAP | mail -s "Timed out and killed: $NAME" -t $EMAIL_RECIPIENT -a FROM:"$EMAIL_SENDER" && kill -9 $SCRIPT_PID && echo Bye bye) & [08:53] can someone tell me how to fix my sound problem [08:53] !paste | f3lix [08:53] trap "echo killing $WATCHDOG_PID; kill -TERM $WATCHDOG_PID; echo killed $WATCHDOG_PID" HUP SIGHUP INT SIGINT QUIT SIGQUIT FPE SIGFPE KILL SIGKILL ALRM SIGALRM TERM SIGTERM EXIT [08:53] f3lix: For posting multi-line texts into the channel, please use http://paste.ubuntu.com | To post !screenshots use http://imagebin.org/?page=add | !pastebinit to paste directly from command line | Make sure you give us the URL for your paste - see also the channel topic. [08:53] sorry [08:54] ppa's? [08:54] Braden`: the listen owner and group are located at.... /etc/php5/fpm/pool.d/www.conf [08:54] Ben64: Thank you! [08:54] f3lix: ask in #bash [08:54] histo: http://paste.ubuntu.com/7725453/ [08:54] Oh, didn't know there was one, thanks :) [08:55] Yep, that fixed it [08:55] I will remove the cron job now [08:55] Thank you for the assistance. I, again, apologize for earlier [08:56] Braden`: no problem [08:56] btw, don't try running 14.04 in a vm with 512MB of ram and 12MB video card [08:57] lol [08:57] Ben64: full blown desktop? [08:57] ouch [08:57] yeah... [08:57] Ben64: yeah unity is a little fat [08:57] had to up to 2048MB and 128MB to get unity running smoothly [09:00] hi all [09:01] i am re-installing Ubuntu 14 without formating the partition. Will the /home/myusername directory remain with its content? [09:01] vak, Why would you not install this way? [09:02] i do understand, that some ".*" files will be rewritten, but what about Documents, Desktop, etc? [09:02] Beldar: what way?.. [09:02] vak: do you have a separate /home partition? [09:02] vak, I meant why would you install that way [09:02] why i am not having rename package in my Repo [09:02] Ben64: no, /home resides in / partition [09:02] and also i am getting Some index files failed to download. They have been ignored, or old ones used instead. [09:03] vak: then that doesn't sound like a great idea [09:03] after update [09:03] rahul_: pastebin what you're talking about [09:04] rahul_, rename package? [09:04] yes [09:04] Beldar: my installation became unbootable because of RAID/mdadm. I tried to fix it, giving up now. But data in /home/myusername is needed [09:04] i tried to install apt-get install rename [09:04] rahul_, The ? means what is that? [09:05] rahul_: rename is not a package [09:05] vak, You can separate home [09:05] !separatehome | vak [09:05] vak: Your home directory is where all of your personal files are usually kept. For moving your home directory to a separate partition, please see: https://help.ubuntu.com/community/Partitioning/Home/Moving [09:05] http://code.linuxnix.com/2013/01/shell-script-remove-spaces-in-file-names-in-linuxunix.html here it is showing to how to install rename . ] [09:06] I pressed Ctrl+Alt+S (shade windows I think) for some of my open Chrome windows, and they disappeared into the background leaving only their edges slightly prominent. [09:06] rahul_: well thats not in ubuntu [09:06] vak, https://help.ubuntu.com/community/Partitioning/Home/Moving As suggested the reinstall way is not a good idea. [09:06] How can I get them back into their normal state? [09:06] They don't show up in the app switcher. [09:06] Beldar: but why not good?.. [09:07] vak, Ubuntu is not designed to be used this way. [09:07] Seriously, I'm freaking out not being able to interact with the windows at all [09:08] Beldar: i am 15 years with Linuxes... just am trying to understand why it is not good. [09:08] A Chrome tab management extension still see the windows. [09:08] vak: you are going to reinstall to / without formatting after 15 years with linux? good luck with that. [09:08] Because your /home is inside /? [09:09] vak, Honestly 15 years should tell you why,.... [09:09] And you have a single partition, meaning if you wipe / then /home will go away with it? [09:09] vak: what do you think is going to happen to all the files that are in / now? [09:09] I find it difficult to believe that you have 15 years of experience with linux. 15 minutes is more believable. [09:10] histo: no need to press on my self-esteem. Are you talking about binaries that will be lost orfans not referred in package repos? [09:10] Guys, I shaded some of my Chrome windows accidentally with the keyboard shortcut on Ubuntu 14.04. Unlike on prevous versions where the title-bar remained, I can't interact with the window at all; only see its outline. [09:11] We're talking about the fact that your /home is inside your / partition. [09:11] And that wiping / will wipe out /home as well. [09:11] Since your (puported) goal is to recover /home, then what you're doing is counterintuitive. [09:12] vak: just move /home to a separate partition and leave it there. Youc an format / and use your new /home partition without formatting. [09:12] Sachiru histo Beldar: Sorry for mentioning you, but do you have any idea how I could unshade those windows? [09:13] Sachiru: it is fully on behalve of the *installer* what will be done with my home/ . That's why i am here asking. It may just put needed files in my home dir, it may fully re-create home dir -- it's more about decisions done around the *installer* [09:13] Ack, it seems to be an open bug: https://bugs.launchpad.net/ubuntu/+source/unity/+bug/1313446 [09:13] Ubuntu bug 985430 in compiz (Ubuntu) "duplicate for #1313446 Can't unshade windows" [Medium,Triaged] === Sachiru is now known as Guest23675 [09:14] vak: What? === Sachiru_ is now known as Sachiru [09:15] Some idiot marked the bug a a dupe of a different issue. [09:15] * YatharthROCK sighs [09:15] vak: what is your question? [09:17] sass in not working [09:17] histo: i've figured out that re-install without formating is not a good idea, but am trying to figure out why exactly... [09:17] @histo: He lost /home, which resides on / [09:17] Sachiru: he didn't lose /home [09:17] And wants to reinstall ubuntu because somehow that will make him get /home back [09:18] histo: i see only one reason -- plenty of potentially lost files (orfans) not refered in repo anymore [09:18] vak: I'd venture to believe the installer won't even let you do that. [09:18] Sachiru: i didn't lost home. at least yet))) [09:19] histo: i did this before and the content was preserved. But now we are with Ubuntu 14, so, the installer migth have changed its nice behaviour... [09:20] sass in not working.......when i installing all the ruby gems after that i used compass watch but i am facing so much problem [09:21] Sachiru: what i have lost -- is "bootability" of my Ubuntu 14. mdadm loops in initrd/initramfs premount phase reporting exit code 0, where no changes to the system state is done. I can't fix it on my own in a day [09:23] hello I have added deb http://ppa.launchpad.net/ondrej/php5/ubuntu lucid main to my sources list, did update, upgrade, but apt still says there are no newer versions avilable... [09:24] vak: https://help.ubuntu.com/community/UbuntuReinstallation [09:25] histo: so, it should work?... [09:25] vak: apparently but they also recommend backing up your data. [09:26] histo: that's understood... [09:26] vak: I would imagine that would create all sorts of config hell in /etc, and wonder how they are handling the overwriting of files. [09:27] ddv: did you do "apt-get dist-upgrade" ? [09:27] hateball: yes [09:27] hi, i installed 14.04 on my HDD and put it into my laptop but it doenst start [09:27] ddv: PPA belong into the sources.list.d folder. add them with add-apt-repository [09:27] k1l: yeah I did that also [09:28] histo: iirr, no questions, they'll be just overwritten and i'm ok with this [09:28] vak: iirr? [09:28] ddv: I just checked some random packages there, and there doesnt appear to even be any for lucid? [09:28] ddv: you doubled it or only with add-apt-... [09:28] histo: if i remember right [09:28] vak: k [09:28] k1l: no I tried both methods, just adding it to sources.list and add-apt [09:29] hateball: that could be the problem, this is a very old server [09:29] ddv: see https://launchpad.net/~ondrej/+archive/php5 no lucid packages [09:29] hi, i installed 14.04 on my HDD and put it into my laptop but it doenst start, i can access GRUB2 though [09:29] k1l: really: if I go to http://ppa.launchpad.net/ondrej/php5/ubuntu/dists/ I can browse to the lucid directory === nekyian is now known as nekyian_ [09:30] can somebody help me? [09:30] ddv: well, check /pool, no packages there [09:30] hateball: oh ok [09:31] hyper320: Does GRUB spit any errors at you when you try to boot? Is it trying to boot from UUID or something like /dev/sdX ? [09:31] hateball: so there are no packages for lucid then? === n is now known as Guest44056 [09:34] hi guys, is it possible to set "options timeout:1" etc. that is set in /etc/resolv.conf within the /etc/network/interfaces file? I know you can set dns-nameservers, but can you set the options so they don't get overwritten on resolv.conf re-write? [09:35] hateball: there are packages in the pool dir though === root is now known as Guest28532 [09:35] ddv: I can't see any for lucid [09:35] hateball: oh [09:35] o [09:36] hellp [09:36] hello [09:36] :) [09:36] what's interesting in "Canonical Partners" software ppa? I have it unchecked by default [09:39] hateball, no really === dannixon is now known as Guest38753 [09:41] hyper320: By your description it sounds like you installed Ubuntu onto this harddrive (external?) on another machine and put in this laptop, correct? [09:42] yes, i installed it when it was in my PC, and put it into the laptop (internal) [09:42] i cant start a LiveCD or LiveUSB from my laptop because the DVD drive is broken and it doenst support USB legecy [09:44] how can i change or check the UUID? [09:44] what uuid ? [09:45] for my HDD i put in my laptop [09:45] can i change it in the GRUB2 commandline? [09:46] you can use a different method for example by label [09:46] vim /etc/grub/grub.cfg [09:46] can i access this trough grub? [09:53] how can i check my UUID with grub2? [09:57] any help? [09:58] hyper320: blkid [09:58] Hi everyone , How can i make my web server hardening , saw a method of Disabling Symbolic Links, Can't understand this will any one guide me to make it understand ? and how can i do it [09:59] i tried this command cat /sys/class/thermal/thermal_zone0/temp and the result is 44000 of temperatur but i want to convert into °C ????????? [09:59] how can i do ? [09:59] babinlonston1 what do you mean? [10:01] !blkid | hyper320 [10:01] hyper320: To see a list of your devices/partitions and their corresponding UUID's, run this command in a !shell: « sudo blkid » (see https://wiki.ubuntu.com/LibAtaForAtaDisks for the rationale behind the transition to UUID) === WhiteWolf|AWAY is now known as White_Wolf [10:02] I have this issue. I'm working on a clients laptop, and I reinstalled windows for him. he wanted ubuntu as well, so I installed it for him. I got windows setup with the software he wanted, and ubuntu setup with the way he wanted. little did I know I installed the wrong version of windows, so the activation does not work. I need home premium instead of ultimate. how can I install home premium without messing up the bootloader? [10:02] hyper320: blkid /dev/sdx replace x with your device [10:03] i think its sdc because it was on the 3rd SATA [10:04] i installed ubuntu with the other 2 SATA's unplugged on the 3rd HDD [10:04] i only can access GRUB2 on my laptop, i would have to put it into this PC again, but there it works fine... [10:07] @lunch [10:09] hi to all [10:09] hello [10:10] how are you [10:10] ? [10:10] good. hot, but good. [10:11] please ASL [10:11] I will only give A and S. 22, M. [10:11] !ot | bahman [10:11] bahman: #ubuntu is the Ubuntu support channel, for all Ubuntu-related support questions. Please use #ubuntu-offtopic for other topics (though our !guidelines apply there too). Thanks! [10:12] is this ubuntu assistance? [10:13] i have a massive problem with my ubuntu [10:14] hello === bahman is now known as Kurdh4ckt34m [10:15] hello [10:15] any ubuntu experts here? [10:15] !ask [10:15] 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 [10:16] I downloaded a game app "Einstein" from ubuntu software center, it totally ruined my screen, adjusted all the icon sizes and everything [10:17] now when my system boots the monitor has large icons and is thinner to a differnent soze, but the splash screen is normal [10:19] how do i get out of this xchat rubbish? [10:19] /quit === pravinmishra_ is now known as pravinmishra === klemppu^ is now known as klemppu === sburjan` is now known as sburjan === Thor^^ is now known as Thor [10:34] ubuntu [10:34] ubuntu experts [10:36] . [10:39] is there a way to fix the UUID without a LiveCD? [10:40] or can i change it with gparted to sda even with the GPT table? === sins-_q is now known as sins- [10:46] any help? [10:49] hey guysss [10:51] hello [10:51] did you see this amazing stuff here? its just awesome. best blog i have seen in a long time [10:51] http://basicandsense.blogspot.com === g_ is now known as Guest88496 [10:55] peterpan22: no advertisment in here, please. this is for technical support only. you can join #ubuntu-offtopic for chitchat [10:56] hyper320: you cant change the UUID of the partition, but you can edit GRUB [10:57] how? [10:58] hyper320: if you can mount the drive in another machine you can edit /boot/grub/grub.cfg to use the correct UUID [10:58] hyper320: you can also edit the GRUB boot parameter at runtime, to see if it wants to boot [10:59] hyper320: ... also, the wrong UUID might be in /etc/fstab as well, so you should check there [10:59] what will be the right UUID? [11:00] i ment what will be the right grub settings? [11:00] hyper320: Plug in the drive in some machine, run "sudo blkid" [11:01] this is just lovely! just amazing!!!! http://basicandsense.blogspot.com/p/photos.html [11:01] peterpan22: Please do not spam [11:01] from a LiveCD? or with normal Ubuntu shell? [11:02] hyper320: If you edit the boot-line it should be pretty obvious. the config has entries like "root=UUID=uid-goes-here-123" [11:03] hi [11:04] ok i try it, back in 20 min [11:10] Nyash myash ? [11:12] hello [11:12] is this achannel for ubuntu help? [11:12] kingverma`: Yes it is [11:13] i want to install ubuntu in my laptop but it turns black screen during installation [11:13] nomo option already tried plz help [11:15] anyone up? [11:15] hello [11:15] hey. [11:16] when i install live usb boot it goes to ubuntu icon and some loading is done then next screen fully blank kept for 2 hours but no use its blank then i used nomodeset option after some search but still same plz help need ubuntu badly [11:16] I have problem when I created shortcut for unity launcher and app crashes. It doesn't crash when launching directly [11:18] any one solve this problem? [11:19] when i install live usb boot it goes to ubuntu icon and some loading is done then next screen fully blank kept for 2 hours but no use its blank then i used nomodeset option after some search but still same plz help need ubuntu badly [11:20] kingverma`: you can edit the boot option and remove the words "quiet splash" and see if that helps [11:20] hi all, please help me. i ahev created a bond interface on my UBuntu machine, but when I ifup bond0 i get the error: sh: echo I/O error [11:22] hi guys, I have just installed openssh onto my netbook and can connect to the localhost but I am unable to connect over the network using putty, any ideas? [11:22] !nomodeset | kingverma` [11:22] kingverma`: A common kernel (boot)parameter is nomodeset, which is needed for some graphic cards that otherwise boot into a black screen or show corrupted splash screen. See http://ubuntuforums.org/showthread.php?t=1613132 on how to use this parameter [11:23] Addon: I get Network error: Connection refused [11:26] blinky_: what does the log say? [11:26] what log mate? [11:27] I am very to this [11:27] Blinku_: http://en.wikibooks.org/wiki/OpenSSH/Logging [11:32] bdbear: The log file located /var/log/auth.log shows nothing for the login attempts made by putty [11:32] hateball i'm now on a liveCD how can i edit the line of the grub.conf? [11:33] blinky: do you have a firewall in betwene? [11:33] hyper320: Run "sudo blkid" to make sure you have the correct blkid of that drive. Then you mount the partition containing /boot, doubleclicking in a file manager should do [11:33] bdbear: no I have the windows pc on the same internal network. The PC is cabled and the netbook is wireless. [11:34] hyper320: Find the file /boot/grub/grub.cfg, edit the root=UUID=uid-goes-here-123 stuff [11:34] !reinstallgrub [11:34] :/ [11:34] Blinky_: are your wireless network isolated from your wired network. (its an option on some routers) [11:34] !fixgrub [11:34] GRUB2 is the default Ubuntu boot manager. Lost GRUB after installing Windows? See https://help.ubuntu.com/community/RestoreGrub - For more information and troubleshooting for GRUB2 please refer to https://help.ubuntu.com/community/Grub2 [11:34] no both are together [11:35] hyper320: This might be helpful as well, for reinstalling and regenerating grub.cfg ^ [11:35] I can exchange files between the two fine [11:35] hyper320: But doing it manually as I suggested works fine enough to get a booting system at least [11:35] hyper320: oh and check the /etc/fstab so it points the mountpoints to the correct UUID as well [11:35] ok, try to up the loglevel on openssh. to se if you can get more logging info. [11:35] there is no such file [11:36] ok just looking to see how to do that [11:37] blinky_: https://help.ubuntu.com/community/SSH/OpenSSH/Configuring [11:38] blinky_: what does ps -A | grep sshd output? [11:40] 5028 ? 00:00:00 sshd [11:40] and sudo ss -lnp | grep sshd [11:41] tcp LISTEN 0 128 *:22 *:* users:(("sshd",5028,3)) [11:42] tcp LISTEN 0 128 :::22 :::* users:(("sshd",5028,4)) [11:44] .trying now to install boot-repair [11:44] greetings anyone knows how to restore the default source.list or ppas ? [11:44] Blinky_ and you were able to connect locally, ssh -v localhost ? [11:44] ppa´s [11:45] cristobal: http://askubuntu.com/questions/124017/how-do-i-restore-the-default-repositories [11:45] bdbear: yeah can connect locally, I have just changed the logging to VERBOSE from INFO and still nothing in the log [11:45] blinky_ iptables ufw ? [11:45] thanks bdbear [11:47] bdbear: iptables ufw? do you have the command I need for that please? [11:48] I have iptables -L -n before, result: ACCEPT tcp -- 0.0.0.0/0 0.0.0.0/0 tcp dpt:22 [11:48] thats is in the chain INPUT === [AFK]def_anoch is now known as def_anoch [11:48] blinky_: nmap localhost -p 1-65535 [11:48] (need to have nmap installed apt-get install nmap) [11:50] bdbear: 22/tcp open ssh and 631/tcp open ipp [11:51] blinky_: have you tried to telnet port 22 ? [11:52] Blinky_: its kinda hard to trubbleshoot when you dont have any logs to work on. since you dont even know if there is established a line of "communication" betwene the klient and the host. so i think you should try to enable a more agressive logging level [11:52] just tried, putty failed with connection refused and android cant do it either (just for testing purposes) [11:54] bdbear: I understand that this is a difficult situation for you, I believe that the communication between the two pc on a hardware level is not the issue. [11:54] bdbear: I have been transferring files between the two for a few hours now without issue. [11:55] bdbear: Could this be a firewall issue with Ubuntu? How do I retrieve more indepth logs? I know that I am only asking without really supplying info but without your help I am stuck. [11:55] any way to re-install this other than one by one ? the problem persist so it was not the source list i guess [11:55] The following packages have unmet dependencies: [11:55] mame: Depends: libc6 (>= 2.14) but 2.19-0ubuntu6 is to be installed [11:55] Depends: libexpat1 (>= 2.0.1) but 2.1.0-4ubuntu1 is to be installed [11:55] Depends: libflac8 (>= 1.3.0) but 1.3.0-2 is to be installed [11:55] Depends: libfontconfig1 (>= 2.9.0) but 2.11.0-0ubuntu4.1 is to be installed [11:56] Depends: libgcc1 (>= 1:4.1.1) but 1:4.9-20140406-0ubuntu1 is to be installed [11:56] Depends: libjpeg8 (>= 8c) but 8c-2ubuntu8 is to be installed [11:56] Depends: libqtcore4 (>= 4:4.7.0~beta1) but 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 is to be installed [11:56] Depends: libqtgui4 (>= 4:4.7.0~beta1) but 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 is to be installed [11:56] !paste | cristobal [11:56] cristobal: For posting multi-line texts into the channel, please use http://paste.ubuntu.com | To post !screenshots use http://imagebin.org/?page=add | !pastebinit to paste directly from command line | Make sure you give us the URL for your paste - see also the channel topic. [11:56] Depends: libsdl1.2debian (>= 1.2.11) but 1.2.15-8ubuntu1.1 is to be installed [11:56] Depends: libstdc++6 (>= 4.6) but 4.8.2-19ubuntu1 is to be installed [11:56] Depends: zlib1g (>= 1:1.1.4) but 1:1.2.8.dfsg-1ubuntu1 is to be installed [11:56] Depends: mess-data (= 0.152-0ubuntu2) but 0.153-0ubuntu1~ppa5~trusty1 is to be installed [11:56] blinky_: try to nano /etc/ssh/sshd_config and change the LogLevel to VERBOSE [11:56] I have already done that mate [11:57] still not getting anything from the auth.log [11:57] cristobal: first use a pastbin. then make sure that no PPAs make that trouble [11:57] dont know how to verify that .... gives me the problem when try to install anything from the software center [11:58] bdbear: There is nothing in that log file regarding any of the attempts to connect via ssh from the pc to the netbook [11:59] Blinky_: netstat --listen does you se tcp6 0 0 [::]:ssh [::]:* LISTEN there? [12:00] bdbear: I have solved it, f*ing thing has not held the static IP on reboot and has gone back to DHCP. Changed the IP and in straight away, really sorry [12:00] will use synaptic package manager to re install them :S [12:00] now just need to get it to hold the static IP [12:01] blinky_: you can bind the IP adress to the mac adress in your router. [12:02] bdbear: Yeah but I have just looked into network-manager and I have set the static IP for the wlan and it is not using it? [12:03] Blinky_: Personally i prefer to set up all network configurations on my router/gateway. and then let all the clients have DHCP enabled. [12:03] Not a bad shout. you up for a different problem? you got time? [12:03] Blinky_: sure [12:05] bdbear: On boot the wireless disconnects and turns off, I have to click on the network-manager icon on the system tray and enable wifi for it to reconnect. This happens only on a boot and not resume. It also has no other issues during normal work. How do I get it to enable wifi on boot and connect to the network. I have tried selecting it within network-manager. === killer` is now known as casale === casale is now known as killer === killer is now known as killer` [12:08] Blinky_: nano /etc/network/interfaces auto wlan0 [12:08] iface wlan0 inet dhcp (or inet static and define the static info) [12:10] so just add the lines "auto wlan0" and "iface wlan0 inet dhcp" ? [12:11] Blinky_: yea then it should automatically load on boot, and get ip from dhcp. if you want to have an static ip you can add it there as well [12:12] blinky_: https://help.ubuntu.com/10.04/serverguide/network-configuration.html should cover it. [12:13] blinky_: that one is old tho. this one is more ip to date. http://www.server-world.info/en/note?os=Ubuntu_14.04&p=initial_conf&f=3 === def_anoch is now known as [AFK]def_anoch === Abhijit is now known as Guest46254 [12:14] bdbear: Great mate, just rebooting now to test. Cheers for the link also === Guest46254 is now known as abhijit_ [12:14] Blinky_: a link can say more than a thousand words;) happy to help. === abhijit_ is now known as Abhijit === kikko_ is now known as TheKikko === dave is now known as Guest22378 [12:22] brb [12:33] hi. I've replaced Nautilus with Nemo. One thing is missing, ability to extract an archive through right-click context menu. Any idea how I can get that functionality back? [12:38] hi a friend did poweroff my linux machine since i didnt got access (ping/ssh) to it. ist possible that i can see in any logs what did happend to that server? [12:40] I have issues with debmirror - I'm trying to download i18n using the "debmirror --i18n" option, but nothing happens. Anyone with a good idea what I'm doing wrong? [12:41] guys i try sudo apt-get install packagename but still do not work http://pastebin.com/53AH94Pr [12:42] arcsky: tail -f /var/log/auth.log === renato_ is now known as Guest10805 [12:43] cristobal: Which version are you using? (cat /etc/os-release) [12:44] jdmf, Ubuntu 14.04 Trusty Thar the problem was i deleted the default canonical ppas but i think i restore them already [12:44] jdmf, it was my fault XD [12:45] cristobal: Have you tried with apt-get update, and apt-get upgrade? (maybe also apt-get dist-upgrade) [12:46] jdmf, none work [12:46] jdmf, they do what they supposed to do but do not fix the error [12:47] * ultrapro GOT FOR SALE VPS SERVER , HOSTING on a LINUX PLATFORM ! [12:49] cristobal, i'm thinking something like: apt-get -f install --reinstall libc6 === gnu is now known as Guest67035 [12:51] cristobal, you need to make sure you have your /etc/apt/sources.list using the correct mirror for downloading the files you need. (not using CD/DVD path though) [12:51] jdmf, worked but when i will go and install for example mame on the software source keep wasking me to install the list i told you [12:51] jdmf already i will re-instalal [12:53] cristobal: execute this: apt-get update; apt-get -f install --install libc6 libexpat1 libflac8 libfontconfig1 libgcc1 libjpeg8 libqtcore4 libqtgui4 libsdl1.2debian libstdc++6 zlib1g mess-data === azharh_ is now known as azharh [12:54] cristobal: this way it will use the latest version, but if your apt/sources.list is using a different or wrong mirror, this will not work. [12:54] jdmf, E: Command line option --install is not understood [12:55] cristobal --reinstall [12:55] cristobal, sorry for that. [12:57] cristobal: here you see an example of the /etc/apt/sources.list file - http://paste.ubuntu.com/7726291/ [12:58] summon Beldar [12:58] one sec idmf [12:59] For a typical lamp stack, would you guys choose a 32 bit or a 64 bit Ubuntu disk image if your provider has both? [12:59] no_gravity 64bit [12:59] jdmf: any reasons? [12:59] no_gravity: Better hardware support, and faster access to hardware/applications. [13:00] jdmf, did what its supposed to do as well but the software center say the same [13:00] cristobal: cat /etc/issue (what does that say). [13:00] ? [13:00] jdmf: why increases 64bit the hardware support? [13:00] jdmf, apt-get update; apt-get -f install --reinstall libc6 libexpat1 libflac8 libfontconfig1 libgcc1 libjpeg8 libqtcore4 libqtgui4 libsdl1.2debian libstdc++6 zlib1g mess-data [13:00] sorry not that [13:01] LUkS/LVM install question: how do you tell grub which encrypted volume to setup first? [13:01] jdmf, Ubuntu 14.04 LTS \n \l [13:01] no_gravity: http://askubuntu.com/questions/19803/for-better-performance-should-i-install-32-bit-or-64-bit [13:02] cristobal: What have you installed via ppa's? [13:05] cristobal: What command generated http://pastebin.com/53AH94Pr ? [13:06] cristobal: Or, what was the last thing you successfully installed? [13:07] jdmf, usr13 http://pastebin.com/d297Td3y [13:07] bdbear: You still there mate? [13:07] Hello. After the last kernel update, I think, my laptop's fan has been too loud. Can anyone relate to this? [13:07] jdmf, usr13 the problem was i was deleting old ppas and by mistake delete canonical as well [13:08] !fan | r_rios, [13:08] r_rios,: fan is Control the fan on/off http://www.ubuntuforums.org/archive/index.php/t-12058.html [13:09] cristobal: ls -ltr /var/lib/dpkg/info/*list Will tell you what you installed last. But yea, if you deleted sources entries, you need to fix that and try to let apt fix itself again. [13:10] cristobal: So get your sources back as they should be and do; sudo apt-get update && sudo apt-get -f install [13:12] cristobal: By removing those ppa's, you will pull the plug on the apps you installed from them and you'll no longer be able to maintain those packages. (I know I'm stating the obvious, but... FYI). [13:13] cristobal: So, it can be said that you can get into trouble with ppa's but you can also cause trouble by removing them as well, (in some ways). [13:14] Abhijit: That page is blank [13:15] usr13, too much i will do a fresh install XD i did an distro upgrade and i remake source.list was well nothing is working thanks anyway :) [13:15] better start fresh :P [13:17] :-D [13:18] Could someone please tell me why when I add 'auto wlan0' and 'iface wlan0 inet dhcp' to the interfaces file the network config on boot takes nearly two minutes and my wifi does not enable ort connect to the network? [13:21] Blinky_: no [13:21] Blinky_: Are you using network-manager? [13:21] usr13: Yeah [13:22] Blinky_: Why then do you edit /etc/network/interfaces ? [13:22] Blinky_: (I assume that is what you were saying, right?) [13:23] usr13: Network manager will not connect to my wireless network on boot. It wont even enable my wireless on boot. I have to click on the network icon on the system tray and enable wireless everytime it boots [13:24] Blinky_: Then fix network-manager === luckybunny is now known as lbaway [13:24] Blinky_: Or ditch it and use wicd [13:24] usr13: It is a fresh install today [13:24] Blinky_: Is it fully updated? [13:24] usr13: I tried wicd yesterday and could not get it to work, when I then removed network manager I lost connection completely [13:25] yeha [13:25] yeah* [13:26] Blinky_: They both work for everyone else. Not sure why wicd did not work for you, but you would, in fact, need to remove network manager first. With wicd, there is a separate option to click on to tell it to automatically connect to a network. [13:26] got a fucking problem with ubuntu [13:26] IT [13:26] DOES [13:26] NOT [13:26] FUCKING [13:26] WORK === andrex|off is now known as andrex [13:27] tried the buttons/guide [13:27] TheTranzgr3zzor: Watch your language. [13:27] OR ELSE BITCH? [13:27] GIMME THE RIGHT SUPPORT [13:27] TheTranzgr3zzor: Quit it now. [13:27] quit it now? [13:27] TheTranzgr3zzor: Here is how it works. You ask specific questions, others will answer as best they can. [13:27] your girlfriend is sufkcing on your balls again????????? [13:27] TheTranzgr3zzor: More then likely you have lost the support you have come here for [13:27] ALRIGHT UNDERSTAND [13:28] blinky my man [13:28] TheTranzgr3zzor: Just leave lad and let the support and help go to those that deserve it [13:28] I DONT HAVE FUCKING UBUNTU [13:28] I JUST WANT TO TROLL [13:28] !ops | TheTranzgr3zzor [13:28] TheTranzgr3zzor: Help! Channel emergency! (ONLY use this trigger in emergencies) - Pici, Myrtti, jrib, Amaranth, tonyyarusso, Nalioth, lamont, CarlK, elky, mneptok, PriceChild, Tm_T, jpds, ikonia, Flannel, genii, wgrant, stdin, h00k, IdleOne, nhandler, Jordan_U, popey, Corey, ocean, cprofitt, djones, Madpilot, gnomefreak, lhavelund, k1l, rww, phunyguy [13:28] ubottu: you buys? [13:28] kyle__: I am only a bot, please don't think I'm intelligent :) [13:28] TROLLS ARE FROM CAVES!!!! [13:28] TROLLS ARE FROM CAVES!!!! [13:28] TROLLS ARE FROM CAVES!!!! [13:29] TheTranzgr3zzor: why are you in an ubuntu support room then [13:29] Blinky_: He's gone [13:29] moron [13:29] ^^ [13:29] dont understand people like that [13:29] If a troll has to point out he's trolling, he pretty much failed [13:29] Blinky_: Does your wireless router use encryption? [13:29] :) [13:30] lets focus on technical support again :) [13:30] usr13: yes, wpa2 [13:30] Blinky_: You are correct, you don't understand them, you ignore them. [13:30] Blinky_: Ok, turn off the encryption untill you fix the problem with network-manager and/or wicd. [13:31] Does anyone know how to get grub, or initramfs, or whatever LUKS+LVM uses, to prepare ALL crypted drives before continuing? [13:31] Blinky_: Is it a laptop or desktop? [13:32] laptop [13:32] usr13: encryption off [13:32] Blinky_: What wireless chip is it? lspci [13:32] Blinky_: Good [13:32] Blinky_: lspci |grep ireless [13:33] usr13: braodcom corp BCM43224 802.11b/g/n (rev 01) === ftp21 is now known as d4rkn3t [13:33] usr13: there are some drivers for it but if I use them then I lose the ability to suspend the laptop [13:34] Blinky_: What? [13:34] :-Dmy bluetooth not working in ubuntu 14-04.need help [13:34] usr13: In the additional drivers section there are some proprietary drivers from broadcom [13:35] Blinky_: Did you install the non-free firmware package yet? I would try that & the free drivers. [13:35] Blinky_: https://help.ubuntu.com/community/WifiDocs/Driver/bcm43xx === jeeva_ is now known as sathish [13:35] usr13: I installed them yesterday and still had the same issue with it not auto connecting, however, I also lost my suspend function [13:35] Blinky_: broadcom is like atheros. When it works, it's lovely, when it doesn't, you want to put your machine in a chipper shredder. [13:35] Be aware that non-free firmware could compromise your system [13:36] hoe to make my file exceutable? [13:36] IceBot3000: I know, I know. Although that's pretty unlikely. [13:36] tushar: chmod. It changes modes. +x is adding the execute permission [13:36] Blinky_: Hybernate and / or suspend are often problematic when it comes to WiFi connection. [13:36] IceBot3000: be aware, your cpu might compromise your system ;) [13:36] tsimpson: So chmod a+x will tell it EVERYONE can execute the file. [13:37] s/tsimpson/tushar [13:37] usr13: So I have found out, I have had nothing but issues with suspend. I have to use a previous kernel to maintain suspend at the moment as well as not installing the drivers for the wireless [13:37] Thor: True, best to trust no-one [13:37] usr13: so am I doomed to have to manually start my wifi on boot? [13:38] IceBot3000: let's make our own x86 cpus! [13:38] Blinky_: No, I wouldn't say that. [13:38] Open source x86 architecture, would be kinda cool [13:39] Blinky_: When it boots, (and is not yet working), what do you see in the output of iwconfig [13:39] (too bad it's not possible since x86 is owned and licensed by intel...) [13:39] I believe the Russian government is looking to start using their own ARM implementation to replace x86, so the security is indeed an issue [13:39] usr13: two secs and I will reboot and find out [13:39] 8.04, team viewer, .deb file says "The package is of bad quality" then there's these details .. http://pastebin.com/CMLp6qbj [13:39] <_Crash_Laptop> anyone know how i can uninstall ffmpeg even though i ran "dpkg -r ffmpeg" and "sudo apt-get remove --purge ffmpeg" which says it cannot be found? [13:39] Blinky_: Ok [13:41] guideX, what is the output of cat /etc/issue [13:41] hmm let me check 1 second.. [13:41] how to change the directory in terminal? [13:41] Blinky_: Also: rfkill list [13:41] tushar, use 'cd new/dir/' [13:41] tushar: What is a search engine... [13:41] I need to go to the Software drive [13:41] tushar, look for it in /media [13:41] empty [13:42] nothing in or inside of /etc/issue [13:42] guideX, Did you run the command I gave you? [13:42] oh no I thought it was for the other guy, let me try one second.. [13:42] guideX: what is the output of: lsb_release -sc [13:42] usr13: Now the rfkill list is interesting soft-block both hp-wifi and hp-bluetooth (although the wifi card I recently install has no bluetooth) and hard-block phy0: wireless lan [13:43] usr13: iwconfig shows tx-power=off ESSID:off/any access point not-associated [13:43] it says natty [13:44] _Crash_Laptop;~ what does apt-cache policy ffmpeg say [13:44] !natty [13:44] Ubuntu 11.04 (Natty Narwhal) was the fourteenth release of Ubuntu. !End-Of-Life on 2012-10-28, see http://ubottu.com/y/natty for details. [13:44] I'm aware of that, was just hoping someone had tried it in here [13:44] guideX, 11.04 is no longer supported, sorry [13:45] _Crash_Laptop: probably the wrong package name? [13:45] <_Crash_Laptop> philinux, http://pastebin.com/mzrka5qb [13:45] _Crash_Laptop: or already uninstalled [13:45] <_Crash_Laptop> i just removed the binary via /usr/bin/ffmpeg [13:45] BLinkey_: yea im still here, was just gaming;) [13:45] <_Crash_Laptop> and tried installing it againvia compiling but i just get "-bash: /usr/bin/ffmpeg: No such file or directory [13:45] <_Crash_Laptop> " [13:46] Blinky_: What did rfkill list say? [13:46] bdbear: what you playing [13:46] usr13: soft-block both hp-wifi and hp-bluetooth (although the wifi card I recently install has no bluetooth) and hard-block phy0: wireless lan [13:46] even though, there's no support, is there perhaps an older version of team viewer which will still work with 8.04? [13:47] guideX: Negative [13:47] Blinkey_. wargame: european escalation. Did you manage to get your wlan to start on boot? [13:47] _Crash_Laptop;~ what does sudo apt-get purge ffmpeg give? [13:47] guideX: I'd suggest you wipe Natty off and do a fresh install of Trusty. Trusty is LTS and supported til April 2019 [13:48] Blinky_: Ok, it says "hard-block" on the phy0: wireless lan? [13:48] <_Crash_Laptop> philinux, The following packages will be REMOVED: [13:48] <_Crash_Laptop> ffmpeg* - i accepted [13:48] ActionParsnip: Oh, I'd really like to, but I have a web application I keep failing to setup on other newer ubuntu's, something in one of the required components isn't working in the newer ubuntu's [13:48] Blinky_: "hard-block" indicates the hardware switch is turned off. [13:48] bdbear: No we are still working on that. I did what you suggested and it didn't work, did make the boot very slow when the screen told me it had waited more then 60 seconds for the network configuration to finish [13:48] usr13: yep [13:48] ActionParsnip: So I'm stuck in this older, unsupported version [13:48] guideX, you could use 12.04LTS [13:48] Blinky_: What kind of switch is it? [13:48] Blinky_: F-key? [13:49] guideX, 12.04LTS is still supported and is older [13:49] <_Crash_Laptop> philinux, now i got - http://pastebin.com/6YkZNHGx [13:49] <_Crash_Laptop> philinux, when purging [13:49] usr13: push button just above the keyboard [13:49] guideX: you can reinstall the newer version. You aren't stuck [13:49] guideX: a little rewrite and you'll be groovy [13:49] Blinky_: So, was it off? (Is there an indicator light? [13:49] oh I'm stuck, I keep trying to move this thing, and it wont work on anything except 8.04 [13:49] guideX, what is it? [13:50] it's a php zend framework 1 webapp [13:50] guideX, install Zend Server then [13:50] it's OS-independent and certified backwards-compatible [13:50] _Crash_Laptop;~ what does apt-cache policy ffmpeg say now [13:50] hmm I'm not really sure, something fails during setup on newer versions [13:50] I've tried to upgrade, or switch numerous times [13:51] guideX, http://www.zend.com/en/products/server/free-edition <-- test it under that [13:51] Blinky_: I'm confused as to whether it's "hard-blocked" or "soft-blocked". If it is hard-blocked, nothing we can do but to manually switc it on. If it is soft-blocked, we can use rfkill unblock to turn it back on. (You could put a line in /etc/rc.local ). [13:51] hmm ok, i'll check it out [13:51] i cant start ubuntu on my laptop [13:51] guideX, if you can get it running under Zend Server then you're safe to use any Ubuntu version =] [13:51] <_Crash_Laptop> philinux, http://pastebin.com/6wKxkYbr [13:51] i put my HDD in the laptop but it doesnt start [13:51] guideX, also notice they have all the ancient PHP versions still supported too ;-) [13:52] usr13: Just as it starts the os the wireless button turn blue, which is on, then when you enter the password to go to the desktop it turns itself off, orange. [13:52] usr13: I tried to turn it on using the button but it does not work [13:52] _Crash_Laptop;~ i guess you could manually remove those 2 directories in the warning [13:53] hmm I don't know, i've already tried 12.10, 14, fedora 20 and debian, and in each case, my php webapp has a white screen, and no error is reported [13:53] _Crash_Laptop;~ me i'd just leave em [13:53] usr13: even now sitting here after a boot it is orange, If I press it nothing happens. [13:53] only when I use 8.04, can I get it working at all [13:53] how can i adjust my settings to get it running on my laptop? [13:53] Blinky_: If it is a softblock problem you can use rfkill phy0|type (where type is really what it is). [13:53] I'm not really sure why [13:53] usr13: it is like ubunut has stopped the button from working?! [13:53] guideX: why dont you issolate that application inside an vm? and then run everything else outside it. [13:53] Blinky_: See if it is blocked with rfkill [13:53] hmm that's a good idea, I should try that [13:53] You need to turn on error reporting in the PHP config or the top-level index.php of the website if you just get a white screen. Errors are most likely being surpressed by default [13:54] _Crash_Laptop;~ i have nothing in /user/local/share/man at all [13:54] usr13: phy0 is still hard blocked [13:54] Blinky_: Orange and Blue light may also tell us whether it's connected or disconnected. (Not sure...) [13:54] well I get through gthe real errors, like pdo drivers, memcache, other things, then there's just no error, and white screen [13:54] aljo ? [13:54] <_Crash_Laptop> philinux, hmmmm, what do you think i should do? It seems like its not installing the ffmpeg binary at all [13:54] hateball it doesnt work, i installed Ubuntu twice with both HDD's from my laptop but it still doesnt start [13:54] hyper320 in BIOS [13:54] usr13: when the connection is made to the wireless the button WILL turn blue === ramona_ is now known as Ramona [13:55] _Crash_Laptop;~ sudo updatedb then locate ffmpeg [13:55] Blinky_: Yea, laptops are kind of tricky. You have hard-block and soft-block and it's a bit hard to figure out what to do, you just have to tinker ... [13:55] X2 i can enter Gnome2 [13:55] Blinky_: Ok that is good info. [13:56] usr13: So how would I stop something being hard clocked on boot? [13:56] blocked even [13:56] Blinky_: That would be a BIOS issue. [13:56] usr13: Bios? [13:56] Blinky_: But, usually, if it's turned off when you shut down, it will be off when you boot up again. [13:56] _Crash_Laptop;~ do a sudo apt-get update && sudo apt-get upgrade to see if all is well [13:57] usr13:If it was a BIOS issue would that not present itself in Windows? [13:57] Blinky_: I don't know. Does it? [13:57] usr13: No [13:57] Blinky_: So this is a dual-boot system? [13:58] usr13: Only ever had this problem when I install Linux [13:58] <_Crash_Laptop> philinux, thanks, the locate ffmpeg showed a lot of directories with relevance to ffmpeg, but i'm running the upgrade now [13:58] hyper320: any reason you're not installing it on the system it's supposed to be in? [13:58] usr13: Yeah, Win 7 and Ubuntu [13:58] Blinky_: Ok so it's dual-boot. Ok. sometimes that is an issue. ... [13:58] my DVD drive is broken and my BIOS doesnt support USB legecy [13:58] Blinky_ : I've just joined, but from what I've read so far, you had installed a linux on a laptop that had an UEFI boot partition (and probably Windows) and now your wifi cannot start, and rfkill help, right? [13:58] _Crash_Laptop;~ if no errors with package system you could clean up the left over stuff manually [13:58] hyper320: do you have a floppy drive? [13:58] no [13:59] St_Marx: Nearly, it does not have a UEFI Bios [13:59] Blinky_: Try turning it off and on with rfkill [13:59] hyper320: is it a desktop PC? [13:59] _Crash_Laptop;~ in 14.04 ffmpeg package does not exist. replaced with fork called avconf [13:59] a install over LAN would be to much afford [13:59] no its a laptop [14:00] St_Marx: Its an old HP Mini 311, I do have a dual boot, wifi will start IF I select to enable it, then it works fine. [14:00] <_Crash_Laptop> philinux, yeah i'm having to compile ffmpeg for something else [14:00] _Crash_Laptop;~ if left over stuff small i'd just leave em [14:00] St_Marx: For some reason I have both hard and soft blocks stopping it on boot. Network-manager is told to auto connect to the network without success [14:00] good, for it would be a bad news, from my experience: I had to open a U310 Lenovo, and thus void the warranty , just to re-insert the battery, in order to be able to access the BIOS [14:01] Hyper320: http://ubuntuforums.org/showthread.php?t=1599293 [14:01] Hello [14:01] _Crash_Laptop;~ i prefer a gui these days for converting stuff [14:02] <_Crash_Laptop> philinux, its on ubuntu server, for SErviio [14:02] besides VirtualBox and vmware, what other virtualization software exists, and is available in the ubuntu repos? [14:02] delt: https://help.ubuntu.com/community/VirtualMachines [14:02] vbox runs quite nice, but has a rather high audio latency, and has problems with my midi keyboard :( [14:02] bdbear: thanks [14:02] Blinky_: but I wasn't able to access the BIOS at all, and it had something to do with UEFI and my installation that ran over complete hard disk [14:03] _Crash_Laptop;~ ah, beyond my knowledge server stuff [14:03] kyle__, its now happening [14:03] <_Crash_Laptop> philinux, as long as this issue goes away, i'm fine :) [14:03] Use VMWare if you want something decent, VirtualBox is barely maintained [14:03] Delt: My recommondation for viritualization are vmware esxi, vmware workstation or vmware player. (the rest are just blah) vmware works [14:03] St_Marx: I am a little confused mate, did I write that? [14:03] Yo [14:03] esx, virtualbox [14:03] _Crash_Laptop: http://askubuntu.com/questions/373322/how-to-replace-avconv-with-the-real-ffmpeg-and-have-it-work-right [14:04] I've found some n^2 behaviour using apt-get remove [14:04] uninstalling a bunch of kernels, it runs grub-update for every one, not just after the last one [14:04] usr13: I ran sudo rfkill unblock all and the connection has started [14:04] anyone know how to make my file executable in My Software drive? [14:05] Blinky_: So put it in /etc/rc.local [14:05] Blinky_: after installing linux, I played with the wifi for a while, and turned it off, through OS... my point is that after that switching, wifi wasn't functional at all, even though Network manager reckognised it [14:05] tushar: https://help.ubuntu.com/community/FilePermissions (maby that will help) [14:06] Blinky_: But again, rfkill is kind of that way, if turned off, it will be turned off on next reboot, if on, it will be on next reboot, (at least, it seems to have worked that way for me once, not positive but...) [14:06] bdbear thank you, but its hard to follow for a newbie [14:07] hyper320: it arent that hard. Ill PM you and assist you. [14:07] Blinky_: But again, if you put the rfkill unblock command in /etc/rc.local, it *should* fix it for you, I would think. [14:08] usr13: I have just editted the file and am rebooting now to test [14:08] Blinky_: Cool [14:08] hi all [14:08] <_Crash_Laptop> philinux, -bash: /usr/bin/ffmpeg: No such file or directory [14:08] usr13: How can I view the boot report/log, to see what happens during the boot process [14:09] Blinky_: The escape key I think [14:09] Blinky_: Or you can remove the "quiet" switch from the grub configuration. [14:09] Blinky_: ... to make it permanent. [14:10] usr13: OK I placed rfkill unblock all into the rc.local just before the exit 0 and it has not worked.... As for the log does ubuntu not write the boot report to a log that you can view later? [14:10] Blinky_: dmesg === toastcfh_ is now known as toastcfh [14:11] Blinky_: But is the executable bit set for /etc/rc.local ? [14:11] Blinky_: ls -l /etc/rc.local [14:12] Blinky_: What exactly does the command look like in the /etc/rc.local file. (Show us. Copy and paste it.) [14:12] ok [14:12] -rwxr-xr-x root root 324 [14:12] ? [14:12] rfkill unblock all [14:12] Blinky_: Show us the line. [14:12] thats it [14:13] Ok. [14:13] Blinky_: So look at dmesg [14:14] Blinky_: http://askubuntu.com/questions/452826/wireless-networking-not-working-after-resume-in-ubuntu-14-04 [14:16] Blinky_: if you unload and reload the wifi module, does it start working? [14:16] ActionParsnip: How do I do that? [14:19] ActionParsnip: It is a BCM43224 ... FYI [14:19] Blinky_: sudo lshw -C network will show the network and its driver, you can then run: sudo modprobe -r foo; sleep 3; sudo modprobe foo [14:19] Blinky_: replace 'foo' with the module [14:20] Blinky_: look for driver= in your output [14:22] is the .1 release of 14.04 out yet? === feiScript_ is now known as feiScript [14:24] evidently not. http://releases.ubuntu.com/14.04/ still shows 17-Apr-2014 [14:24] ActionParsnip: did that on the disabled device and nothing [14:24] ActionParsnip: still disabled [14:24] One question is why does the rfkill unblock all work from the terminal but not on boot from the rc.local? === CyberJacob is now known as CyberJacob|Away [14:28] <_Crash_Laptop> any idea how i can get rid ofd any borked directories for ffmpeg? when i run the command all i get is -bash: /usr/bin/ffmpeg: No such file or directory" [14:28] <_Crash_Laptop> of* === eeeeee is now known as eeee [14:33] Hello, this isn't ubuntu related but I just noticed it on my xubuntu 14.04 install - why are my folders not ordered properly here (sorting by filename column) http://imgur.com/FdC1rPA === lbaway is now known as luckybunny [14:35] are you properly sorting my Name? Maybe you're sorting by Modified === eeeeee is now known as eeee [14:38] I am using Ubuntu 14.04 and having a problem with a startup script. it is written to run in init.d, the script calls for screen. when running the script, an error meeasge appears saying that it can not create the directory. How may I run the script after screen starts? [14:39] dweez: hmm, i don't think so... I just ran 'ls' in a terminal window in that directory, and Austin Powers III still comes before Austin Powers I and II :P [14:39] btw apologies for my poor taste in movies [14:40] lol, I love the AP movies [14:40] not sure then. So it shows up like this both in the GUI and cli? [14:41] well, if we ignore the "I"'s, then they are in alphabetical order so maybe it's doing that (although I have no clue why it would do that [14:41] yeah, it seems to be too smart for its own good. === sysadmin is now known as Guest83074 [14:42] and sadly, we see that a lot [14:42] is it ironic or just funny that "sysadmin" can't identify? [14:45] can a script made for init.d be placed in the upstart init and work fine? === khisanth__ is now known as Khisanth === smethia is now known as smethia_afk [14:46] !away > smethia_afk [14:46] smethia_afk, please see my private message [14:48] ActionParsnip: I have a script to start a server in init.d, however it requires screen for best results. When booting it appears to me in the boot.log to hang because it can write to the screen dir, as it hasn't loaded yet. If I copy the contents of the script and put in rc.local, it start fine. Can I somehow make the init.d file start after screen? [14:49] Rohan_: does it need to run as root? [14:49] ActionParsnip: I added a line in the sudoer that gives this user the permission to run this as root no password I beleive [14:50] ActionParsnip: here is the script site: https://github.com/superjamie/minecraft-init-script [14:50] Rohan_: if you make a script and add it to /etc/rc.local but backgrounded it will work [14:51] Rohan_: in the script, have 2 commands. One is a sleep (to allow the screen to load), then the command itself [14:51] ActionParsnip: I did do that and it did work, however I emailed the script writer, and I was told that was very bad form [14:51] Rohan_: with the script backgrounded, the boot will continue but the execution of the command will be delayed [14:51] Rohan_: http://ubuntuforums.org/showthread.php?t=1860295&page=3 [14:52] Is it possible to overclock a Radeon HD 6450 inside of the free drivers? [14:52] ActionParsnip: I did try putting in a sleep command in the script, sleep 1, in the boot.log it showed that it started the server, loaded the world file, then nothing else. upon finishing the boot, the server was not started [14:53] Rohan_: you'll need longer than sleep 1 [14:53] Rohan_: try 10 or 15 [14:53] This is how I launch x11vnc in xubuntu. Just a script in /etc/init with "start on login-session-start script [content] end script" [14:53] hi. how I can set a proxy to be use for all command line like curl? [14:54] ActionParsnip: I looked at the link you sent me, I didn't see anything relateable, was it for me? [14:54] RedSkyDown: export http_proxy=address [14:54] RedSkyDown: export ftp_proxy=,,,, [14:54] RedSkyDown: etc [14:56] ActionParsnip: I will reboot and try with a sleep 20, brb [14:56] Hi all. I have a problem with my laptop wireless card in linux (xubuntu or kali, you choose). It is a wifi(abgn)+BT4.0 miniPCI-E half module from Atheros. FCC ID is PPD-AR5B22 (wikidevi have info about it: https://wikidevi.com/wiki/Atheros_AR5B22 ). The problem is that loading to linux (e.g. xubuntu 14.04 livecd) somehow disables BT at all, even Windows can't see it after loading to Windows. [14:56] What helps return back bluetooth work at least in Windows is insert back my BCM943228HMB ( https://wikidevi.com/wiki/Broadcom_BCM943228HMB ) and again load to linux, because only linux enables back BT (I tried to load Windows after I inserted Broadcom module and Windows did not see the BT). [14:58] Is it possible to overclock a Radeon HD 6450 via the free drivers? [14:58] I have no useful data on my laptop so I can provide acces to it, if it is needed. [14:59] ActionParsnip: I tried sleep 20. It gives me the line that lets me know the script started, then probably hit sleep, then nothing else in the boot.log, and still no server running. Where can I find more details to what may have happened? [15:00] Rohan_: http://ubuntuforums.org/showthread.php?t=1860295&page=3 that was for you. This is how I launch x11vnc in xubuntu. Just a script in /etc/init with "start on login-session-start script [content] end script" [15:01] Rohan_: x11vnc should be launched when screen is initialized, so that thing helped me. [15:02] denixx: Got it. This server runs as its own user, and the script handles other items like backing up the server etc. [15:05] good morning. i'd like to stop a service from starting on boot [15:05] it's not upstart, i know that much [15:08] Have someone any ideas about AR5B22? [15:09] I want to use both WiFi and bluetooth in linux :'( [15:09] why cant you? [15:10] Or at least make linux not disable BT at all. [15:11] tonyt: When I insert AR5B22 and start xubuntu livecd - BT disappears. [15:13] I think it is somewhere in kernel, but I don't know precisely where to ask for help. [15:13] Or maybe it is a driver-thing. === `Reflector` is now known as VaticanCameos [15:19] hi! [15:20] how to do kernel bisection? [15:20] i need that because of https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1334230 [15:20] hi¡ [15:20] Ubuntu bug 1334230 in linux (Ubuntu) "[Asus X550VC] Fn+F2 wifi on/off don't work" [Medium,Incomplete] [15:24] is there a git repo somewhere or a collection of example upstart scripts? It's alright reading http://upstart.ubuntu.com/cookbook/, but examples are gold [15:25] hello [15:25] hela [15:26] oehoi [15:26] pieter72: do you have a support question? [15:26] no [15:26] only support here? [15:27] !topic|pieter72 [15:27] pieter72: Please read the channel topic whenever you enter, as it contains important information. To view it at any time after joining, simply type /topic [15:27] pieter72, support in here, chat in: #ubuntu-offtopic [15:27] Allright! [15:27] thx [15:28] and the closest I get is looking at /etc/init/*.conf scripts [15:29] I lost my right and bottom window borders in 14.04, using default everything - any ideas? [15:33] Is there a specific channel for GUI based issues? [15:33] gnome? [15:33] unity [15:34] aubre, Ubuntu unity is here [15:35] Beldar, thanks [15:36] A friend of mine was had the time grey out on his bar at the top of the screen, and when he tried to adjust the time settings in System Settings - Time & Date it was greyed out [15:36] He also lost his right and bottom window borders [15:36] could someone please tell me which package provides groupdel (on Ubuntu 12.04). I would like to know if it's provided by shadow-utils like on another distribution. [15:36] Logging in and out doesn't seem to fix the problem [15:36] !find groupdel [15:36] File groupdel found in bash-completion, euca2ools, iamcli, libkgapi-dev, libuser, passwd, rsbac-admin, ruby-activeldap-doc, smbldap-tools, spotweb (and 1 others) http://packages.ubuntu.com/search?searchon=contents&keywords=groupdel&mode=&suite=trusty&arch=any === chiluk` is now known as chiluk === Guest8456 is now known as erratic === oleary is now known as Joshun [15:38] hi [15:38] ActionParsnip: thanks [15:39] the reverse printing setting makes no difference on my brother printer. is there any way to force it to work? [15:40] Print odd pages, flip them over with your hands, print even pages === Matrix is now known as Guest14958 [15:45] hi [15:45] need to burn ISO to USB [15:45] latest version ubuntu [15:46] neo246 unetbootin [15:46] !unetbootin | neo246 [15:46] neo246: For information about installing Ubuntu from USB flash drives, see https://help.ubuntu.com/community/Installation/FromUSBStick - For a persistent live USB install, see: https://wiki.ubuntu.com/LiveUsbPendrivePersistent [15:46] but ISO is not ubuntu iso [15:46] cfhowlett, [15:47] i have UB OS [15:47] installed [15:47] neo246 unetbootin can make other linux USB's [15:47] i want to write win ISO to USB [15:47] ##windows neo246 [15:47] neo246 ^^^ this [15:47] cannot write win8 ISO to USB in Ubuntu [15:47] ? [15:48] neo246 for WINDOWS support ask ##WINDOWS [15:48] yes but im with ubuntu OS [15:48] /join ##windows neo246 [15:48] omg [15:48] why ? [15:48] ok i will use wine [15:48] neo246 because they are the experts on win8 [15:48] vine* [15:48] its a windows support issue thats why [15:48] aha [15:49] bazhang: It's a linux support issue, I think :) [15:49] denixx, no it's not [15:49] denixx it's not. [15:49] ye cuz OS is linux [15:49] 50 / 50 [15:49] but its 75 / 25 [15:50] neo246 *not* supported here. sorry. ask ##windows. end of story. [15:51] yes, but [15:51] you have to do some software for that [15:52] neo246 your question was asked and answered. [15:52] no i just was transfered [15:52] not answered [15:53] neo246 and yet you're still ... here? [15:53] the cups web interface seems to be broken in 14.04 [15:54] password authentication fails [15:54] Joshun first time seeing this reported ... details?? [15:55] cfhowlett: accessing it via localhost:631 works fine, but if you try to change anything, it asks for username & password (usually same as the user's password), but this fails even though the password is definitely correct [15:55] Hi all. I have a problem with my laptop wireless card in linux (xubuntu or kali, you choose). It is a wifi(abgn)+BT4.0 miniPCI-E half module from Atheros. FCC ID is PPD-AR5B22 (wikidevi have info about it: https://wikidevi.com/wiki/Atheros_AR5B22 ). The problem is that loading to linux (e.g. xubuntu 14.04 livecd) somehow disables BT at all, even Windows can't see it after loading to Windows. [15:55] What helps return back bluetooth work at least in Windows is insert back my BCM943228HMB ( https://wikidevi.com/wiki/Broadcom_BCM943228HMB ) and again load to linux, because only linux enables back BT (I tried to load Windows after I inserted Broadcom module and Windows did not see the BT). [15:56] neo246: I believe if you format the USB to NTFS then use unetbootin, it works [15:56] I can try it with ubuntu, if needed. [15:56] cfhowlett: log gives "pam_authenticate() returned 7 (Authentication failure)" [15:56] hello world, a question: crossover (from codeweavers) is having issues installing some apps that use 16-bit code. one of those apps is world of warcraft. i asked in the codeweavers irc and was told that it's because of this reason: https://www.codeweavers.com/support/wiki/Diag/BrokenLDT16 [15:56] is this an issue that is going to be addressed in ubuntu or does codeweavers have to work around this issue? [15:58] alexjr: As i heard Blizzard supports Linux-wine unofficially. Have you tried Blizzard support? [16:00] hi denixx, nope but it's not only a wow issue. recent changes to the linux kernel in ubuntu 14.04 have broken compatibility for some wine/crossover apps, or so it seems. wow works just fine in vanilla wine, but i'd like to stick to crossover bc i purchased it some time ago. [16:00] I can't get my server to mail itself. I am behind a fire wall, I set up sSMTP and can send mail from the server to my desktop..., but mail from it to it disappears silently (using @localhost, @10.17.0.33 and @prp.utm.edu; its domainname) [16:00] !server|beginner [16:00] beginner: Ubuntu Server Edition is a release of Ubuntu designed especially for server environments, including a server specific !kernel and no !GUI. The install CD contains many server applications. Current !LTS version is !Trusty (Trusty Tahr 14.04) - More info: http://www.ubuntu.com/products/whatisubuntu/serveredition - Guide: https://help.ubuntu.com/12.04/serverguide/C/ - Support in #ubuntu-server === sysadmin is now known as Guest16118 [16:01] Must the firewall allow me to receive mail to mail from the box to itself (e.g. crontab errors) [16:01] ActionParsnip: in init (upstart) how do I require screen to start before the rest of the upstart script? [16:01] Anyone know why gnome-shell application search wont show up gnome-weather when searched for? [16:03] convict;~ use a terminal apt-cache policy gnome-weather to double check [16:04] philinux, what about it? It's installed. I can run it from terminal. [16:06] convict;~ ah I see [16:06] btw is it safe to upgrade the kernel ubuntu 14.04 is using to, let's say; kernel 3.16? [16:07] alexjr personally, I only use the kernel in the main repository. [16:07] convict;~ I just checked using software center and it shows up ok, wonder what's the prob with shell [16:08] cfhowlett i see, for stability reasons i assume? i think the same way, but a kernel upgrade would help me sort out an issue i am having with crossover. are kernel upgrades officially OK to do so or does canonical recommend sticking to the default kernel that ships with their os? [16:10] alexjr canoncial would no doubt recommend the ubuntu kernel. I seem to recall that the error page you posted mentioned you could use the OLDER kernel as a workaround ... [16:10] wine cannot [16:11] find my USB drive :) [16:12] lol :( [16:13] cfhowlett, yup, i could use an older kernel but i would really like to stick to default or - if nothing else works - upgrade. the kernel provided with ubuntu 14.04 is awesome and i hate "downgrading"... but thx for the info! if canonical doesn't recommend tinkering with the kernel... i shall obey... :) but only bc i don't want things to go crazy. [16:14] alexjr;~ if you have spare space you could install 14.10 to test [16:15] ubottu I am using Ubuntu 14.04 LTS [16:15] beginner: I am only a bot, please don't think I'm intelligent :) [16:15] !server [16:15] Ubuntu Server Edition is a release of Ubuntu designed especially for server environments, including a server specific !kernel and no !GUI. The install CD contains many server applications. Current !LTS version is !Trusty (Trusty Tahr 14.04) - More info: http://www.ubuntu.com/products/whatisubuntu/serveredition - Guide: https://help.ubuntu.com/12.04/serverguide/C/ - Support in #ubuntu-server [16:15] neo246: why 'lol' then a sad face, it makes no sense at all [16:15] neo246: its also completely redundant [16:16] philinux, aah true! i have virtualbox installed! totally forgot about that. :) i'll do some testing in a secure environment... good idea! [16:16] neo246: are you wanting to store your wine config on the USB? [16:20] neo246: Relax, I think the best you can do is to find Win and run Windows7-USB-DVD-tool.exe, write then your USB-Flash with that tool and use it somewhere you need after that. Linux only convert users in one way, from win-users to linux-users :) No one interested to allow you make USB-drive with win from Linux :) === om26er is now known as om26er|away [16:31] I have an HP laserjet 1320 printer. I have used cups to share this printer. I want to print from windows 7. The problem is that there is no driver listed for it. I tried the HP web site and it takes me to a univeral printer driver which then does not seem to reconize the Ubuntu printer share. Is there any way to share this printer from linux so that I can print from windows 7? [16:31] whats the best way to manage cups printing programatically? I have a java software but the way it handles cups printing is crap [16:32] loganRun: do you print from a software you created? [16:33] During initramfs phase $(ls /dev/sd* ) shows nothing... how come?.. what modules might have became missing?? [16:33] riso: what [16:33] do you print from a software you created? [16:34] could it be that udev rules are broken after HDDs were attached to the new SATA port positions?? [16:34] riso: i did not create windows or linux [16:35] loganRun: oh ok sorry [16:35] riso: otherwise helpful [16:35] loganRun: I thought you worked for microsoft, sorry [16:36] riso: this is Ubuntu help channel I think [16:36] loganRun: yes I think so too [16:37] how to play .wmv files on ubuntu? [16:37] i have tried all the blogs on internet but no luck [16:37] i have vlc installed as well as the restricted extras [16:37] no luck still [16:37] anybody got a solution? [16:37] hardman, you want win32codecs [16:38] hardman, or go buy the legal codecs from Fluendo - as win32codecs are technically illegal in some countries [16:38] hmmm. . .i'll try to get them downloaded legally! [16:38] thats the last sol? [16:38] NthDegree, ? [16:39] hardman, win32codecs are distributed using non-dodgy sites if that's what you mean [16:39] hardman, it's like how VLC player is technically illegal :P [16:39] NthDegree, haha got it (Y) [16:41] hardman, http://www.mplayerhq.hu/MPlayer/releases/codecs/ [16:41] hello... I have a question about persistent bootable usb. I set persistent space on the usb when making it bootable with pendrive. Is "try ubuntu" the mode I will always boot to? Or should I install Ubuntu and choose the flash drive as the target drive? [16:41] NthDegree, you rock :D [16:42] skyez0r, try Ubuntu yep [16:42] skyez0r, In that set up try is what you use. If a usb is big enough you can do a full install. [16:44] 8gb usb. should I remove the persistence when making it bootable then if I'm going to install to usb? [16:45] most files and the remainder of the usb drive space are not viewable in "try" mode, don't have root user access, can't seem to create an admin user either. would KUser be a way around that? [16:45] I hooked up some headphone/microphone pair via USB, but it's not working. [16:45] I went into the sound settings where I see the new device on the list (I'm just working on output for now) [16:45] I select the new device and click "test sound", and it plays to the different speakers :( Is there a trick? [16:46] skyez0r, You cant install to it with it. [16:46] Do I need to restart with the headphones plugged in? (I already logged out and in) === ufo is now known as Guest83456 [16:47] skyez0r, You would not make a root user with ubuntu anyway, the iso load and using try has very limited use, no real update/upgrade and the persistent will fill up with no clean methid. [16:47] method* === jack is now known as Guest9910 [16:48] what is the channel for ubuntu developers? my question seems to be too deep for this channel ( === eeee is now known as Eric === Eric is now known as Eric^^ [16:51] <21WAAHN38> j === om26er|away is now known as om26er [16:54] vak #ubuntu-app-devel === Eric^^ is now known as eeee [16:56] Anyone have issues with an Ubuntu 14.04 Hyper-V guest not fully shutting down when the shutdown is started from within the guest? === Jan11 is now known as ON1 [17:00] I am trying to change my mysql data directory, but am encountering an error that I do not understand. Here are the directions I'm following: http://stackoverflow.com/questions/1795176/how-to-change-mysql-data-directory Here is a pastebin for the error that occurs on step 8 when I restart AppArmor: http://pastebin.com/925GDxVi and here is the apparmor file I just edited: http://pastebin.com/A4R9AD5S [17:02] pythonista: #mysql is probably the right place to ask that. [17:04] lmat: when I open the #mysql channel and try to type something in I get the following message " #mysql :Cannot send to channel" [17:05] using xchat, any suggestions? [17:05] How to get the rightclick menu and the cursor in a screenshot? [17:06] !register [17:06] Information about registering your nickname: https://help.ubuntu.com/community/InternetRelayChat/Registration - Type « /nick » to select your nickname. Registration help available by typing /join #freenode [17:06] pythonista, some channels wants you to register your ircname [17:07] pythonista, and some channels give you voice manually [17:07] How do I capture the right click menu and the cursor in a screenshot [17:07] ? [17:08] NVM [17:08] A1Recon: shutter [17:09] pythonista: Check the topic. You have to register your n... yeah, OerHeks [17:09] click on it then > menu, it takes a screenshot after 10 secs [17:12] A1Recon, prtsc take a screen shot [17:12] Why doesn't Super + D work in Ubuntu [17:12] ? [17:12] And how do i get that shortcut menu? [17:13] A1Recon: iirc, hold down the super key. [17:13] How can I force-mount a damaged FS? [17:14] Soltis, This a whole HD or a partition? [17:14] is there a way for removing a package along with all of its dependencies (the ones not required by other packages)? [17:14] Beldar: It's a RAID device of dubious integrity. [17:14] holding down the super key just purs numbers on the Launcher icons... [17:14] Pici^ [17:14] Relsak: But -o force seems not to exist anymore [17:14] A1Recon: what r u trying to achieve with super+d ? [17:14] latest Ubuntu 14.04 seems to be affected by this bug: https://bugzilla.redhat.com/show_bug.cgi?id=798968 [17:14] bugzilla.redhat.com bug 798968 in valgrind "Conditional jump or move depends on uninitialised value" [Unspecified,Closed: errata] [17:15] eeee: Show the Desktop [17:15] anyone knows if there is a fix for Ubuntu? [17:15] A1Recon: settings > keyboard settings [17:15] Soltis, Doing this can cause damage, be sure this is the only option and what you want to do. [17:15] Beldar: I know. [17:15] good [17:15] Beldar: I have an image of the devices, so I can restore if I hose something. [17:16] Soltis, Why would you just use the image? [17:16] not* [17:16] A1Recon maybe you have to set the keyboard shortcut manually [17:17] nm i found it. in kase this is logged its sudo apt-get remove pkgname for removing the packaged and then sudo apt-get autoremove [17:18] Beldar: Don't worry about the details; let's just say if I destroy the data I can restore it. [17:18] A1Recon: it is ctrl + super + d, (that shows the desktop) [17:18] Beldar: So I want to know how I can force-mount to try and recover any data, if it still exists. [17:19] Soltis, No problem, but myself I have limitations on how far I will go on a dubious situation, I don't enable in other words, others may. [17:20] Beldar: Basically I have an EBS snapshot of the devices in question [17:20] hello all [17:20] Beldar: The snapshot is itself dubious, but it means I can recreate the volumes if something breaks. [17:20] eeee: I remember I used to get the all the K/B shortcuts on one page if I held the Super key for a few seconds.... It doesn't work for me anymore.... Does this work for you? [17:21] is there a channel for managing tc for QoS on Ubuntu? === cereal is now known as s1d3 [17:22] Beldar: If you're really worried about someone *else* misusing that, just PM me. === badon_ is now known as badon [17:23] psps === tcpman is now known as Guest7131 [17:30] guys I am working on two monitors and when I watch video in standard ubuntu player on left one and click on something on the right ubuntu side dock appears on left monitor [17:30] lmat: mysql people say it's a ubuntu problem with apparmor [17:32] Trudko, is the monitors panned? [17:32] hi everyone, I've got a problem mounting an external HDD... if someone could help me, I've posted it in here: http://superuser.com/questions/775164/cant-mount-external-hdd-device-listed-at-lsusb-but-doesnt-appear-at-deV [17:33] pythonista: They're probably right :) gotta go. go ahead and restate your question? [17:33] brasileiro, what kind of hard drive is it? [17:33] like partition* [17:34] wheatthin, I don't follow =/ you mean the filesystem? [17:35] I am trying to change my mysql data directory (Ubuntu 12.04 LTS), but am encountering an error that I do not understand. Here are the directions I'm following: http://stackoverflow.com/questions/1795176/how-to-change-mysql-data-directory Here is a pastebin for the error that occurs on step 8 when I restart AppArmor: http://pastebin.com/925GDxVi and here is the apparmor file I just edited: http://pastebin.com/A4R9AD5S [17:37] brasileiro, You're using a Iomega screen play device, right? [17:37] At this point I've actually changed the data location back to the original location and it still won't work [17:38] wheatthin: what do u mean panned? [17:38] if I have a server with spaces how can i get to it from console? [17:38] fodler* not server [17:38] this game requires the folder name be the displayed name of the game.. and it has spaces so putty doesnt know how to get to it [17:38] Trudko, do you get an error in dmesg when you plug it in? [17:39] z1haze: either using or with quotes, or escaping\ each\ space [17:39] z1haze, yup backslash [17:39] brasileiro, Try this: http://screenplayprohd.wikia.com/wiki/Drive_not_detected [17:40] if the foldername was 'Folder Name' you'd use Folder\ Name [17:40] zling_, maybe something like: $cd my-special\ folder [17:40] trism, wheatthin: i have this [1dacd6]TGC-PVE\ NO\ !RAIDING! but its not working [17:40] z1haze: you have to escape the ! too [17:40] it's not recognizing the ! [17:40] oh so just / after each !? [17:41] backslash [17:41] not forward [17:41] ok my mistake [17:41] z1haze, backslash for the spae seperator [17:41] gotcha [17:41] space [17:42] ugh , stupid thing i still think i messed up [1dacd6]TGC-PVE\ NO\ !\RAIDING!\ [17:42] z1haze, or you can try using quotes :) [17:43] z1haze: the backslash goes before the thing to escape, but in this case I agree, '[1dacd6]TGC-PVE NO !RAIDING!' would be easier [17:43] z1haze, cd "Folder Name" [17:43] deception, the only thing would be update the firmware =/ [17:43] wheatthin: no everything is working ok [17:43] oh ok so just surround the whole thing witha single quote [17:44] geez that was easier, lol [17:44] thanks all [17:44] Trudko, can you pastebinit? [17:44] z1haze, If there's not paqrameter expansion needed, yes single quotes, if you need to expand something, like $HOME or $USER/ .. .. then you need double quoted "... ..." [17:45] if there no parameter .. .. [17:45] alright [17:45] wheatthin: I dont have any error [17:46] let me clarify I have two working monitors [17:46] I open video on left and I work on right [17:46] when I click on something on the right I can see side panel on left monitor eventhough video(played in standard ubuntu video player ) is full screen. [17:46] hmm, very poor graphics performance using the open source ati driver (my card has been removed from the fglrx drivers ... ) anything i can do about that? :/ [17:48] <_Crash_Laptop> MrSunshine, use the drivers that support your card rather than the latest ones [17:48] in 13.04, 13.10 when I held the Super Key I used to get the Keyboard Shortcuts list (https://plus.google.com/photos/115526653443007105911/albums/5998885813791343025/5998885937020884898?pid=5998885937020884898&oid=115526653443007105911)but now I just get the numbers on the Launcher icons... [17:49] oops https://plus.google.com/photos/115526653443007105911/albums/5998885813791343025/5998885937020884898?pid=5998885937020884898&oid=115526653443007105911 [17:49] _Crash_Laptop, ok i got to confess im on mint .. and tried to download drivers from the amd webpage .. but it cant build the dkms drivers :/ [17:50] <_Crash_Laptop> MrSunshine, have you tried googling for tutorials for installing them on your OS? I've only ever compiled them on Ubuntu, i cant help you there I'm afraid [17:51] well mint "is" ubuntu =) [17:51] Anyone knows how to get the Keyboard Shortcut list? [17:51] half of the repos are the same i think :P [17:51] thats why i asked in here also =) [17:51] <_Crash_Laptop> MrSunshine, pssh, ofc, had a derp moment [17:52] hello, how do I enable colors in the terminal? I have it enabled in root but not in non root [17:52] which key is the the "super" key [17:52] Sunstream: it's the key that has a windows logo on it usually [17:53] the windows key Sunstream [17:53] dman777_alter: in the global menu either change the default profile or make another profile based on the default one and set it to start as that profile [17:53] eeee: no X enviroment [17:53] (edit > profile preferences / profiles) [17:53] dman777_alter: aha i see [17:54] ls --color=auto [17:54] does that give you want you want? (im not sure thats what you want though) [17:56] dman777_alter: is that what you want? [17:56] I do not have any key named SUPER [17:56] Holding down the Superkey does not show the Keyboard Shortcuts list.... Anyone has the same problem or has a solution for this please respond.... [17:56] Sunstream: it is the windows key.. the one next to alt usually [17:57] eeee: naw [17:57] okay [17:58] can anyone help me find the source code for AMOR? (Amusing Misuse of Resources) it is a very old kdetoy that I'd like to look at the code for [17:58] it does nothing in lubuntu === s1d3 is now known as cereal [17:58] how do i check my keyboard shortcuts [17:59] Sunstream: in ubuntu you hold the super key, you can always check them in settings > keyboard > shortcuts [18:00] I am trying to change my mysql directory but encountering an error with AppArmor. When I try to reload apparmor it throws an error. Here is a complete description of the problem with error messages and apparmor file: http://askubuntu.com/questions/490075/error-restarting-apparmor-while-changing-mysql-data-directory [18:00] kriskropd: it is in the bzr branch for lucid: https://code.launchpad.net/~ubuntu-branches/ubuntu/lucid/kdetoys/lucid haven't check if it is in any newer branches yet === ben_alman_ is now known as ben_alman [18:02] where is that I am in lubuntu not unity [18:03] trism: great, thank you [18:03] eeee: Do you get the KB shortcut list if you hold the Super Key? [18:03] eeee: in Ubuntu 14.04 [18:03] kriskropd, it may be in later version also: https://code.launchpad.net/ubuntu/lucid/+source/kdetoys [18:03] A1Recon: yeah [18:04] kriskropd, See branches in other series [18:04] kriskropd: actually it seems it still exists it was just split into a separate package [18:05] !info amor | kriskropd [18:05] Sunstream, This may be of some help: https://help.ubuntu.com/community/Lubuntu/Keyboard [18:05] kriskropd: amor (source: amor): desktop companion. In component universe, is optional. Version 4:4.13.0-0ubuntu1 (trusty), package size 189 kB, installed size 584 kB [18:05] yeah it does, i just wanted to access the source code and didn't know where to look :) thank you all [18:06] kriskropd: for that you can just: apt-get source amor; [18:06] kriskropd: or any other package in the repo [18:06] A1Recon: do you have compizsettings manager? [18:06] I am installing it now [18:07] why is there terminal colors in my root user but not in my non root user? they are using the same /etc/bash.bashrc [18:07] A1Recon: http://askubuntu.com/questions/468386/holding-super-key-doesnt-show-unity-shortcuts-in-14-04 [18:08] <^Lestat> I set up ubuntu 14.04 on a vm on my windows desktop for a local dev server. Can I get help here with that? [18:08] dman777_alter, have your checked your normal user /home/user/.bashrc [18:08] <^Lestat> I *think* I'm just having a DNS issue [18:08] A1Recon: do you have a dell inspiron [18:08] hello, I made a disk image of my ubuntu 13.x system, the system was using the default ubuntu encryption, now i want to mount that image which also contains not ubuntu partitions. How can i access the encrypted ubuntu partition from that img file? [18:09] ki7mt: no, I just softlinked mine local user to dman777_a: why is there terminal colors in my root user but not in my non root user? they are using the same /etc/bash.bashrc [18:09] eeee: I have ASUS K55VM [18:09] ki7mt: sorry [18:09] ki7mt: no, I just softlinked mine local user to /etc/bash.bashrc [18:09] i guess lubuntu don't have shortcuts or a way to set that stuff up [18:09] is your screen resolution 1024x768? [18:09] dman777_alter, I dont know, but each user has their own .bashrc file, I suspect that file, when logging in overrides the link, which you should need to do. [18:10] should not need to do [18:10] <^Lestat> I have been able to access the site in my browser via sitename.local But in the past 2 weeks I have not been able to view files via explorer as \\site.local\localweb [18:10] A1Recon: after you install compiz and check that box it should work [18:10] <^Lestat> which I am sharing via samba [18:10] <^Lestat> I can access it however by \\ip-address\localweb. [18:10] dman777_alter, As a test, enable color in the normal user .bashrc file [18:11] force_color_prompt=yes? [18:11] dman777_alter, I believe so yes, was just going to look at mine. [18:11] Sunstream: https://help.ubuntu.com/community/Lubuntu/Keyboard [18:12] <^Lestat> Also while editing files in my local editor(sublime) it sometimes takes a moment to catch up, as if the server or samba has fallen asleep? [18:13] Beldar [18:13] dman777_alter, Yes looks liek the correct list, you'll need to source that .bashrc also: source ~/.bashrc and may need to open a new terminal to take affect. [18:13] "looks like the correct line" [18:15] <^Lestat> would there be a better channel to ask in? [18:15] eeee: I get the numbers on the Launcher icon, not the Shortcut list even after I tweaked the setting in Compiz [18:15] Thre is no way for me to find shortcut keys Ido not have anything in systemtools or preferences [18:16] Sunstream: no "keyboard" in system settings ? [18:17] The WIKI page cleare states that: "There is no automatic way to create new keyboard shortcuts or hotkeys in lubuntu." [18:17] eeee: I think I will reinstall Ubuntu 14.04 and see how it goes....Too many bugs for me to handle .... Ubuntu Freezing....Nvidia GPU/Battery Backup only of 2 hrs..... [18:17] I do not see "system settings" i am in a lubuntu sesion [18:17] Followed by: ou will either have to edit Lubuntu's openbox configuration file (~/.config/openbox/lubuntu-rc.xml) and edit, or alternatively install xbindkeys. [18:17] A1Recon: it might be a bug [18:18] shame on you lubuntu [18:18] A1Recon: do you need workspaces? [18:19] https://bugs.launchpad.net/ubuntu/+source/unity/+bug/1243233 [18:19] Ubuntu bug 1243233 in unity (Ubuntu) "Holding Super key doesn't bring up shortcut overlay." [Undecided,Confirmed] [18:19] Sunstream: lol [18:19] does upstart run the files in /etc/profile.d/* before executing scripts? [18:19] Stupid question, and my google-fu isn't working: Can you overload keys in terminfo? For example, can I assign two different sequences to key_down? [18:19] eeee I have the workspaces... the four sort of parts of the screen? [18:19] because it doesn't seem to be loading env data i have configured in /etc/profile.d/secret_credentials.sh [18:19] A1Recon: yeah, i dont know if disabling them might get it to work, or changing the resolution. [18:20] I am trying to change my mysql data directory, but I am having a problem with apparmor, can anyone help? Here is a full description of the problem: http://askubuntu.com/questions/490075/error-restarting-apparmor-while-changing-mysql-data-directory [18:20] cuz it says: "This is also known to affect 14.04 (without compiz) when workspaces are enabled and screen resolution is 1024x768." [18:21] eeee: Can I marry your brain? [18:21] lol, it worked ? [18:22] eeee: It works!! [18:22] great:D [18:23] eeee: Just disabling the workspaces worked!! [18:26] I am not going to even think about getting xkeybind if it is not a grapical [18:26] i have an ldap user which has logged into my 14.04 server, his home Dir was set to /home/$user... i updated ldap to point this user to the nfs shared /exports/home/$user.. however when the user logs in it still creates a new home dir in /home/$user.. [18:27] even though the user doesnt exist in /etc/passwd, id $user shows the right path "/exports/home/$user" and ive logged them off and deleted /home/$user [18:27] Sunstream, that's part of the trade off, running on minimal hardware, with a minimal distro, you don't get every feature that the full disto enjoys. [18:28] BUT i started in unity [18:28] eeee: Is Unity tweak Tool the same as Compiz? [18:28] I thought it will still be installed [18:28] is there some cache file or something i need to delete [18:29] A1Recon: yeah pretty much [18:29] hello i was able to boot from an ubuntu live cd,now it prompts me for a username and password.i tried username ubuntu: pass: blank .but it was incorrect [18:29] usermod -d says no such user.. hmm [18:30] A1Recon: a feature of compiz i like is the click once on a launcher icon to minimize the window [18:30] you can check something and click on the icon again to minimize it [18:31] Hi everyone. I can't choose my language when I log in with lightdm. There isn't a language selector. Someone could help me plase ? [18:33] geekstay, Try Dash >> System >> Language Support, you may need to install the preferred Language set. [18:34] ki7mt : I installed my language set (French), and it's checked in the install menu. [18:35] geekstay, Have you logged out / bask in since the install ? It should not required a re-boot. but you could try that also. [18:36] ki7mt : I rebooted, and nothing changed. [18:36] -_- I guess I cannot mess with shortcuts oh well [18:36] I tried to add in the lightdm-gtk-greeter.conf, the following line : "show-selector-language=true" [18:37] Sunstream: i dont think theres anything you cant do.. [18:37] (i mean this is linux..) [18:38] I need to install lm-sensors to fix overheating, but I can't because the computer overheats too quickly. Help? === YuviPanda is now known as YuviPanda|food [18:39] geekstay, geekstay when selecting the language, you applied it system-wide yes? [18:40] snuggles08: maybe you need to prioritize your goal, lm-sensors is just that, a temperature sensor [18:40] * snuggles08 sighs [18:40] geekstay, and also set Regional Formats? [18:40] hi [18:41] The computer overheats in 10 seconds. Way before I can get to a terminal. [18:41] snuggles08: how's a temperature sensor going to help? [18:41] how is it possible to lose/not have a .bashrc, .bash_profile or .bash_alias file in my home directory? [18:41] and is there any way to 're-install' them? [18:42] snuggles08, May want to check thermal compound / heat sinks rather than any SW. [18:42] snuggles08 lm-sesnors is for monitoring, it can't do much [18:42] ki7mt : I can't selecting my language. French is not in the list. [18:43] geekstay, You need to install _FR first, then select. === Deihmos_ is now known as Deihmos [18:44] ki7mt : I installed French : http://hpics.li/9058952 [18:44] geekstay, First things first, Dash >> Language Support, installed support files first, then Install / Remove Languages, selecting FR to install. [18:45] <^Lestat> help. please. my local vm installation of 14.04 keeps going to sleep? === vladhaund is now known as Guest16504 [18:46] ki7mt : I don't see what you mean by : "installed support files first" [18:46] geekstay, then apply system wide, then also on reginal formats, select desired and appy system wide, then log out / in or reboot. If that doesn't work you file a bug. [18:46] geekstay, What Ubuntu are you using? [18:46] ki7mt : XUbuntu 14.04 [18:47] ki7mt : I come back, I log out. [18:48] ki7mt : nop, nothing changed. [18:48] codephobic, all those files are optional, system wide config applies in the absense of these. [18:48] geekstay, sudo apt-get install language-selector language-pack-fr language-support-fr [18:49] geekstay, After that, if no joy, Im out of Ideas, and you should ask others, or file a bug, as that should work. [18:49] ki7mt : it's not available, and it asks me to install language-selector-gnome, which is installed. [18:50] ki7mt : Argh :(. Ok. [18:51] geekstay, You may want to ask in #ubuntu -fr also [18:51] #ubuntu-fr [18:51] Artemis3, anyway I can get them reinstalled? I want to write some custom aliases and have them apply to just this account. [18:51] codephobic, make them [18:52] codephobic, just copy them from /etc/skel .. then add the alias(s) to .bashrc file, and souroce it. [18:53] ah, wow. [18:53] or you could use .bash_aliases .. which is sourced by .bashrc if you have many aliases set up, I do that for pbuilder routines. [18:53] sorry, ki7mt what do you mean by "source it"? [18:54] codephobic, Log out / in or, in a terminal: source ~/.bashrc [18:54] ah [18:54] thanks! :) [18:54] codephobic, source is tells the shell to re-read the file. [18:54] ah, cool ... learned a little more linux today :D [18:55] now to sort out my compass/ruby permissions issue with samba ... fingers crossed. [18:55] thanks Artemis3, ki7mt [18:55] codephobic, Some things require a log out / in, but alias additions do not, simply source the file you add them too. [18:56] hi. ive just installed iscan to use my epson scanner on ubuntu 13.10. im trying to run it from terminal and it doesn't show me any errors but doesn't load. anything i can do to try to debug this? === billy_ is now known as Bilz [18:59] testing === akim_ is now known as akim [19:01] lol, my usb drive isn't being recognized [19:01] df --> drive doesn't show up lol [19:01] df [19:04] catalase, try : lsusb # or : sudo fdisk -l [19:05] catalase: or lsblk [19:06] Tried to change the mysql directory, cannot get either mysql or apparmor to restart: http://askubuntu.com/questions/490075/error-restarting-apparmor-while-changing-mysql-data-directory [19:06] ok [19:06] it showed [19:06] lets say i want to format that disk [19:07] i think it's mkfs.ext4 [19:07] or something [19:08] mkfs. /dev/sdxY [19:08] i'm having a problem writing an initscript using start-stop-deamon [19:08] catalase or if you like a GUI: gnome-disk-utility [19:08] it starts a command in bash and pipes it into a log file [19:08] like/prefer* [19:08] MonkeyDust, using ubuntu server 14.04 [19:08] ok [19:08] no gui :( [19:09] solidus-river, Linke-1: https://help.ubuntu.com/community/UpstartHowto [19:09] Can anyone help with an apparmor error? [19:09] solidus-river, Link-2: http://upstart.ubuntu.com/cookbook/ [19:09] but the pid that gets registered is the pid of the shell not the process i want to kill [19:09] so stop deamon doesnt work [19:11] solidus-river, without going into bash script here, a simple test is: my-script & then echo echo $! should render the correct pid [19:11] pythonista: you may want to try asking in #ubuntu-server as well [19:11] just echo $! .. not echo echo [19:12] Pici: thanks, trying now [19:12] need a direct link to 32bit net install iso fro desktop 14.04 [19:13] lets say i have an external drive that i want to auto-mount on boot [19:13] ki7mt: yeah it looks like the script i'm runnin is forking into another pid [19:13] catalase: i think you should add it to the /etc/fstab [19:13] catalase fstab [19:13] so how do i write an init script for that [19:13] thats kinda crazy [19:14] eeee, how do you mount it there? [19:14] solidus-river, look at examples in /etc/init.d there's several that set / get / use PID's [19:14] so if the drive is called /dev/sdb [19:14] mount /dev/sdb/ /home/%u/external or something like that? [19:15] oh i see [19:18] catalase, Most external mounts are st to /media/$USER/ .. [19:26] Greetings.. [19:27] ./dev/sdb 961303580 73364 912375704 1% /home/%u/external [19:27] im assuming that means its mounted [19:28] catalase, looks to be, can you cd to it or ls the contents ? [19:28] is there a way to edit gdm user settings reason is the time shows in a military format and I cannot use touchpad to select only the mouse button === tolecnal_ is now known as tolecnal [19:29] can someone help me with MySQL? [19:29] looking for a link to download the net CDROM for desktop 14.04 === dfgas is now known as dfgas_off [19:29] I need to know how I can import all data in a text file except for repetitive data and before the first tab [19:30] some directory called lost+found was created lol [19:30] ki7mt [19:30] I've got a problem. Its definitively bothering me. When I plug my jack earphone, the hardware changes automatically to 'dummy output' nonexistent. turning itself unable to reproduce any sound. To fix it I have to change manually to surround 4.0. Is there a way to fix it? [19:31] what's the name of the settings widget? i'm using an alternative window manager, so i can't just click to it, need to run it from a terminal [19:32] oh funny, i'm also having a sound issue - coming out of my computer's built-in speakers and my headphones at the same time [19:32] which is a bit antisocial to my coworkers [19:32] . [19:32] . [19:32] any clue? [19:33] kurtwp, if you mean Netboot ISO: http://cdimage.ubuntu.com/netboot/trusty/ [19:33] yes [19:33] but what file should I download [19:33] kurtwp, What hardware do you have ? [19:34] 32bit [19:34] i386 then [19:34] I think I see it minit.iso - right [19:34] !Mint [19:34] Linux Mint is not a supported derivative of Ubuntu. Please seek support in #linuxmint-help on irc.spotchat.org [19:34] it says permission denied, failed to retrieve directory listing, [19:34] but i have full ownership of it [19:34] ki7mt: mini not mint. [19:34] catalase:catalase i think [19:34] nvm [19:35] LOL mini :-) sri [19:35] ooos [19:35] oops [19:36] kurtwp, I suppose, they are "mini" iso's, you'll end up downloading allot of files in the end. [19:36] that is fine === reed_ is now known as reed [19:36] You can also use the Server ISO, and F4 to Minimal, which is a good foundation to work from. [19:38] catalase, sri lost my train of though there, so you mounted the the usb device and now cant access it? What Ubuntu version are you using? [19:39] ki7mt, nvm, i had to change ownership of usb from root to catalase === dfgas_off is now known as dfgas [19:40] catalase, yes, that was my next suggestion [19:40] thx u ki7mt [19:40] catalase, It should auto-mount though, so you should look into why it's not doing that. [19:41] ki7mt, not sure. but i added it to fstab [19:41] and now it automounts every time on boot === fiete is now known as Guest97105 [19:43] catalase, that works I suppose, as long as you dont change USB ports. [19:43] ya [19:47] Does anyone know how to edit gmc user settings [19:48] I meant gdm [19:48] catalase, You test it, by running: sudo blkid on port-A, then umount, add to a different port-B, adn sudo blkid again see if the UUID changes, then add the UUID to FSTAB [19:48] you can test it by .. [19:49] sri if it does not change .. but I suspect it would change [19:49] cemotyz09 is this useful https://people.gnome.org/~shaunm/admin-guide/gdm-2.html [19:51] ki7mt: it shouldn't change according to the comments in /etc/fstab [19:51] hi [19:51] cemotyz09, Linke-1: https://help.gnome.org/admin/gdm/stable/configuration.html.en .. Linke-2: http://manpages.ubuntu.com/manpages/lucid/en/man1/gdm.1.html [19:51] "# Use 'blkid' to print the universally unique identifier for a device" [19:52] eeee, Yeah, I've not tested that in a while, that's why I suggested the test first. [19:57] vsftpd - refusing to run with writable root inside chroot() [19:57] What do I do? [19:57] I don’t want my users to see all home dirs [19:58] ajf, What version of Ubuntu? === YuviPanda|food is now known as YuviPanda [19:58] ki7mt: Ubuntu Server 12.10 [19:58] ajf: whats the actual error [19:59] ikonia: The above [19:59] ajf, Fist off you should get off of 12.10 on a server, Currently supported: 10.04 LTS (server) 12.04 LTS, 13.10, and 14.04 LTS [19:59] ok [20:00] ajf, I would suggest 13.10 either, as that is EOL Next month. [20:00] sri would nto suggest. [20:00] How can i tell if a chip is supprted by ubuntu? RTL 8139 in my case. That's a chip for networking by (i am guessing) realtek. Is there some HCL for ubuntu? 12.04 in my case but soon -when 14.04 update is available - i will use 14.04 [20:00] !hcl | Daghdha [20:00] Daghdha: For lists of supported hardware on Ubuntu see https://wiki.ubuntu.com/HardwareSupport - To help debugging and improving hardware detection, see https://wiki.ubuntu.com/DebuggingHardwareDetection [20:00] ki7mt: What’s the proper command to upgrade distro? [20:01] !upgrade | ajf [20:01] ajf: For upgrading, see the instructions at https://help.ubuntu.com/community/UpgradeNotes - see also http://www.ubuntu.com/desktop/get-ubuntu/upgrade [20:01] ajf: If this is a VPS, look at your provider's documentation as well. [20:01] OK [20:01] hey guys, I was wondering whether you would know if there was a way to install Pantheon in Ubuntu 14.04? I tried adding the stable PPA and I got a 404 error. I followed the ppa link and it seems there's no directory for Tahr included in the PPA. [20:01] Thank you Jordan_U [20:01] Daghdha: You're welcome. [20:02] Alpha-Omega maybe you should contact the maintainer [20:02] ajf: And in the future, for servers you may be running for a long time (which is most, even if long use isn't "planned"), you should try to stick to LTS releases, which have much longer support periods. [20:03] I know [20:03] Alpha-Omega it says here, pantheon is elementary-os thingy [20:03] is an* [20:04] MonkeyDust: Yes, it's basically the DE of the elementaryOS distribution, but I want to use it under Ubuntu [20:05] im trying to create a bootable usb with windows 7 on it. I tried unetbootin but it does not detect NTFS drives. so i downloaded unetbootin 494 but i can't get it to run [20:05] is there any way to get it to run or some alternative? [20:05] wsfsdf: format the drive [20:06] wsfsdf methinks you have to ask in #windows, how to make windows live bootable [20:06] ajf: i have it formatted to fat32 which unetbootin recognises but windows installer need ntfs [20:06] Oh, right. You also can’t make Windows bootables w/ UNetBootin [20:06] UNetBootin isn’t magic sauce [20:06] it only really works with certain Linux distros [20:06] While I'm having a problem with WINE, I suspect this is a more general Ubuntu problem. My WoW updater updates itself, but when I quit and run it again it's the old version. I suspect this is a file permission issue because I copied the files from a Windows installation of WoW. Is there a simple way to check and fix this? [20:07] it can’t make any ISO suddenly become bootable on a USB [20:07] wsfsdf: maybe try this? http://askubuntu.com/questions/289559/how-can-i-create-a-windows-bootable-usb-stick-with-ubuntu === jowi_ is now known as jowi [20:07] LonelyDanbo: Sure [20:07] Go to your wineprefix [20:07] Use Ctrl+H to show hidden files in your home dir [20:07] go into .wine [20:07] I made a new wineprefix for this. [20:07] Ah [20:07] go into it and have a look at the files, I suppose? [20:08] ls -l might be clearer than manually looking with Properties in the GUI [20:08] Alpha-Omega: ill try that thanks, i was trying to get winusb to install but the repo was out of date, but that fix might work thanks [20:08] Hey how come when I do `sudo apt-get install rubygems` it says `Package rubygems is not available, but is referred to by another package.`? [20:08] Guys some good tool which would create image from my ubuntu installation so I can easily reinstall it? I am returning laptop I own for repair and I want to remove ubuntu from it and easily recovery it [20:09] wsfsdf: np [20:09] hello everyone. I hope you're doing well. I'm looking for a remote administration tool (gui) for BIND similar to Windows RSAT. RSAT works well but it's on a XP machine that will be scrapped and wish to go full Ubuntu. [20:09] Blaster type apt-cache search rubygems to what packages they mean [20:09] all the "-rwxrwxr-x" means full permissions, I'm guessing. :| then I gotta figure out what's wrong. [20:09] Blaster to know what packages they mean* [20:09] it is the last win machine on my network and i wish to get rid of it :) [20:10] MonkeyDust: It seems that the 404 may be because it cannot find the Tahr folder on the PPA server, I wonder if I change sources to check for the previous Ubuntu release and use that if the installation may complete. [20:10] Alpha-Omega: that instlled thanks again dude [20:10] wsfsdf: yeah np, hopefully it works [20:11] Hi folks - I have a problem with LightDM. It "just doesn't work" when root is over NBD, but works fine when root is over NFS. [20:11] Unsuccessful lightdm startup: http://bpaste.net/show/422671/ --- successful startup: http://bpaste.net/show/422771/ [20:11] "doesn't work" doesn't cut it [20:11] explain the problem, if you are netbooting nfs, you should be able to explain a problem clearly [20:12] ikonia: Relax, hombre, we're getting there. :P [20:12] jowi, Looking into Samba4 IS AD, though I've not used the implementation myself, there's plenty of resource documentation. [20:12] ckindley: so straight away http://bpaste.net/show/422671/ [20:12] oops [20:12] ikonia: The difference is that gnome-settings-daemon has a fatal IO error. (gnome-settings-daemon:1415): Gdk-WARNING **: gnome-settings-daemon: Fatal IO error 11 (Resource temporarily unavailable) on X server :0. [20:12] ckindley: [+0.07s] WARNING: Failed to open sessions directory: Error opening directory '/usr/share/lightdm/remote-sessions': No such file or directory [20:12] what do all the letters mean in the ls -l results? [20:12] it looks like your nfs is not stable [20:12] I tried to man ls and didn't see it mentioned there. [20:13] ikonia: That's superfluous. [20:13] this also appears to be gentoo - not ubuntu [20:13] LonelyDanbo, type: man ls [20:13] ikonia: Well, you at least noticed something... [20:13] I did type man ls [20:13] I noticed your nfs is unstable [20:13] My NFS is fine. [20:13] Can anybody help setup a bonded network card. It claims to be up, but no traffic will flow. http://paste.ubuntu.com/7728111/ [20:13] LonelyDanbo, then you shoudl have seen: -l use a long listing format [20:13] doesn't look like it [20:13] ki7mt, yeah, I have samba/kerberos/bind/etc all set up with a domain, domain controllers and clients. just need a remote gui for bind [20:13] ckindley: I suggest you take this to the gentoo guys [20:13] Maybe I shouldn't have come here - I figured that a few folks might know a thing or two about LightDM. [20:14] ki7mt, yes, but it doesn't list what all the letters are for. [20:14] ikonia: Suggestion duly noted. Where do you think I started, being a 'gentoo guy?' [20:14] LonelyDanbo, Yes it does, -l == long format [20:14] no, I mean all the drxrwrw stuff [20:15] ki7mt, the "drwxrwxr-x" stuff it spits out when I actually type "ls -l" [20:15] jowi, I suppose, you could look at the web-based Samba Admin tools, [20:15] directory - read - write - execute - read - write - execute - read - write - execute [20:15] user|grp|others [20:16] hm... what's the 3rd repetition of those for? [20:16] others [20:16] oh. [20:16] rwx|rwx|rwx = user|group|others [20:17] rwx = 7 [20:17] r = 4 [20:17] w = 6 [20:17] thanks. [20:17] LonelyDanbo, More Info: http://www.linux.com/learn/tutorials/309527-understanding-linux-file-permissions [20:17] x = 7 [20:17] its 421 [20:17] unfortunately it means I didn't find the problem with the file not updating itself. :( [20:17] all together = 7 [20:18] understood? or need other example? [20:18] its pretty easy when you realized how it works [20:19] ki7mt, my DC's are Zentyal and there is no plugin for that. Which is why I'm looking for remote administration tool for DNS [20:19] ok how the hell do I turn off chat bubbles in Xchat [20:20] ki7mt, something like gadmin-bind but for remote server [20:22] ki7mt, perhaps RSAT for Ubuntu simply doesn't exist (I've been searching). It just feels wrong keeping a Win box to administer Linux servers and clients :) [20:24] jowi, No I dont RAST equal for Linux exists inf the OS domain, I think there's commercial apps available though, but cost allot of $$ [20:24] jowi, That's why I thought maybe Samba IA AD but if that doesn't work not sure where to go from there. === randall is now known as Guest75516 [20:25] .. Samba IS AD .. .. [20:25] ki7mt, thank's for your time. If I don't find anything else I'll see if I can fix something up in Python [20:25] anyone here seen an issue with 14.04 running on ESXi and networking just stops and even setting a static address in /etc/network/interfaces does not work...however if I manually enter IP info from cli it will start working [20:26] Finally [20:26] once I do "sha256sum some-file.tar.bz2", is there a way I can send that line to "grep" to check if the line is inside a file that indexes a bunch of signatures? [20:28] Genitrust: sha256sum -c cheksumfile filetocheck [20:28] done [20:28] Genitrust, save the shasum to a var, then do a loop through the file bu line and pattern match [20:28] testing [20:28] ahh lemme try both [20:29] what-s the apt-get command to dump the cache? (I need some space) [20:29] man apt-get [20:29] apt-cache tab tab [20:29] ahh cool, i find that just "sha256sum -c SHA256SUMS.asc" does the job [20:30] CarlFK: apt-get clean [20:30] ...as long as all files are in the same directory [20:30] Pici: thanks [20:30] There it nowjoins freenode and the 2 channles now to figure out how to shut off the chat bubb;es [20:30] does anyone speak french ? [20:31] Genitrust, checkout LFS, they have a nice tutorial using popd / pushd for lots of files to test after download, to much to type here. [20:31] i write with a girl and dont know what she is saying [20:31] brazzo1, maybe in #ubuntu-fr [20:32] thanks ki7mt :) [20:32] brazzo1: https://translate.google.com/ [20:32] brazzo1, so you are not sure it is a girl? [20:33] writing it to a var is just waste of time, since you can handle it with the tool itself... anyways :) [20:33] OerHeks: You may not be sure, but brazzo1 apparently is. [20:33] Genitrust, Here's the page I was thinking about: http://www.linuxfromscratch.org/lfs/view/stable/chapter03/introduction.html [20:33] @OerHeks im sure she is a girl but i did not no that she doesn't speak english :D [20:33] How is this anything to do with ubuntu support? [20:34] oooo awesome... ki7mt you rock! [20:34] Genitrust, Which uses the method subz3r0 recommended: md5sum -c md5sums [20:34] OerHeks: My assumption has been confirmed. [20:35] ki7mt: i just like it simple :) [20:35] does anyone know how to view raw file thumbnails in the file explorer? [20:35] like .cr2 files. [20:35] ubuntu 14 [20:36] think so [20:36] tomengland: google: " ubuntu cr2 files" [20:36] first entry: http://www.madox.net/blog/2008/11/25/how-to-open-canon-cr2-raws-in-ubuntu/ [20:36] ? [20:36] no [20:36] not open a cr2 file [20:37] view their thumbnails in the file manager [20:37] google: ubuntu cr2 nautilus [20:37] http://ubuntuguide.net/raw-cr2-image-preview-in-gnome-nautilus-using-gnome-raw-thumbnail [20:37] this one? [20:38] yeah gnome-raw-thumbnail is very slow in ubuntu 14 [20:38] or just: sudo apt-get install gnome-raw-thumbnailer && sudo nautilus -q [20:38] ohh, okay [20:38] never used it. so that was my first guess to search for it :) [20:39] is there a way to replace the native file manager in ubuntu? [20:40] what's the proper format for this command? Exec=wine "C:\\Program Files\\WoW\\Launcher.exe" [20:40] I know of a gnome based file manager that does this natively [20:40] tomengland: Yes [20:40] tomengland: Your choice [20:40] it's for a .desktop file. === dfgas is now known as dfgas_off [20:40] damnn it I cannot get the chat bubbles to go away [20:41] LonelyDanbo: long time agon since i started an app from the cmd line. wasnt it just wine path/to/exe? [20:41] LonelyDanbo, You probably want something like: wine ~/.wine/drive_c/Program\ Files/World\ of\ Warcraft/Wow.exe. [20:41] tomengland: thunar konqueror nautilus dolphin ...... [20:42] https://help.ubuntu.com/community/DefaultFileManager [20:42] or use playonlinux. you can easily create desktop icons with it [20:42] Sunstream: try irssi [20:42] is that still the course of action? [20:42] Sunstream: xchat? you can turn them off in the options [20:43] Sunstream: You can also ask in xchat's channel, which is #xchat [20:43] Pici: Very cleverly named channel! [20:43] lol === step21_ is now known as step21 [20:43] not to state the obvious ey :-) [20:44] I was trying to avoid the full path and using a relative directory from inside the fake Windows directory, but I'm not sure if it really matters. [20:45] I changed my mysql data directory. I got it to work initially, but on restart I can no longer get the the database to start. Here are the directions that I followed: http://stackoverflow.com/questions/1795176/how-to-change-mysql-data-directory [20:45] LonelyDanbo, Create an alias in .bashrc .. then Ctrl+Alt+T .. WoW job done [20:45] * nuno_nunes boa noite, goedenavond, goodnight [20:46] pythonirc101: dont you think its better to ask in #mysql? [20:46] pythonista: #mysql === dfgas_off is now known as dfgas [20:47] hm. beyond me. maybe I'll go with your first suggestion. [20:48] LonelyDanbo, You shoudl really look at Linux Aliases they are == Windows Shortcuts, and make live very easy [20:48] but the syntax changes whether it's in double-quotes or not? [20:48] make life .. .. [20:48] Hold on one. === dw1 is now known as dw2 [20:49] somehow it works one way but not the other. [20:49] "" or '' [20:49] both should work [20:49] LonelyDanbo, type: echo >> wine ~/.wine/drive_c/Program\ Files/World\ of\ Warcraft/Wow.exe ~/.bachrc [20:50] LonelyDanbo, sir my bad, updated: echo >> alias WoW='wine ~/.wine/drive_c/Program\ Files/World\ of\ Warcraft/Wow.exe' ~/.bachrc [20:50] source ~/.bashrc [20:50] then: WoW [20:50] I gotta modify it somewhat, since it's .wine_WoW [20:51] LonelyDanbo, Sure, edit as needed, was just an example. [20:52] command not found. :D [20:52] hello [20:52] huh I wonder which command was not found... [20:52] LonelyDanbo, what command did you run ?> [20:53] ki7mt: The command you provided is not correct. It should be echo text >> filename not echo >> text filename [20:53] I ran echo >> alias WoW='wine ~/.wine_WoW/drive_c/Program\ Files/WoW/Launcher.exe' ~/.bachrc [20:53] and then typed WoW [20:53] ~/.bachrc ? :D [20:53] :P [20:54] was supposed to be bashrc? [20:54] oh boy. [20:54] LOL sri, yes ~/.bashrc whoops\ [20:55] nope. still can't find WoW [20:55] WoW: command not found === JimFenton_ is now known as JimFenton [20:56] LonelyDanbo: that only adds that to .bashrc [20:56] Someone say hi [20:56] type alias, do you see it there? [20:56] LonelyDanbo, Pici Was correct, im dislyexic :-): echo >> ~/.bashrc alias Wow='wine ~/.wine/drive_c/Program\ Files/World\ of\ Warcraft/Wow.exe' [20:56] ki7mt: you did it wrong again. === dw2 is now known as dw1 [20:56] Ok fix it then.l [20:56] what does it do if I typo it as .bachrc ? do I need to go delete a mutant file? [20:56] LonelyDanbo: echo alias Wow='wine ~/.wine/drive_c/Program\Files/World\ of\ Warcraft/Wow.exe' >> ~/.bashrc [20:56] yay fixed it [20:57] lool [20:57] :D [20:57] No more screen filling up [20:57] LonelyDanbo: or just open up ~/.bashrc and manually put that as the last thing in the file. [20:57] LonelyDanbo: yes, since you echoed it in the wrong file [20:57] I can't even find .bashrc [20:57] ls -lah | grep bachrc [20:57] yes, becaude its hidden [20:57] Pici, This also works: echo >> ~/.bashrc alias Wow='wine ~/.wine/drive_c/Program\ Files/World\ of\ Warcraft/Wow.exe' [20:58] hidden files start with a . [20:58] I got hidden files shown [20:58] I just tested it, twice. [20:58] open a terminal and do ls -lah [20:58] or just ls -a [20:58] but i like -lah more... anyways :) [20:59] ohhhh. for some reason I was expecting a folder, not a file. I'm... really tired. I should have checked more carefully. [20:59] no typoed .bachrc though. [20:59] :) [21:00] oh, probably because the command didn't create the file. oh man... I bet it overwrote my Update.exe instead of the .bashrc [21:00] Hoever, you need double quotes though: echo >> ~/.bashrc alias "Wow='wine ~/.wine/drive_c/Program\ Files/World\ of\ Warcraft/Wow.exe'" [21:04] did it mess up my updater.exe file with that command? do I have to go plug in my dying external HD to get the original file? >> adds to the end of a file, doesn't it. [21:05] LonelyDanbo, No it should not mess with your updater.exe .. and yes ">>" is append to [21:05] oh. I guess that bad command wrote... absolutely nothing to... "alias" [21:06] but no alias file [21:06] LonelyDanbo: go sleep a bit and try it tomorrow again. :) [21:06] LonelyDanbo, Edit the file manually then, add the alias as desired, then source your .bashrc [21:06] will be a lot easier :P [21:06] yeah. I'm getting insanely retarded. [21:06] was just trying to make sure I didn't have more mess to clean up. [21:06] also just an advice... dont work as root in the bash when beeing tired ;) [21:07] It's not a mess, it's just what it is [21:07] weird things can happen :P [21:07] I thought it might have caused a mess. [21:07] worst case you would have created a useless file, which could be deleted. [21:08] LonelyDanbo, echo is fairly safe :-) rm -R or rm -F on the other had, things can go wrong in a hurry. [21:08] guess I just... in the file .bashrc, I add alias Wow='wine ~/.wine_WoW/drive_c/Program\ Files/WoW/Launcher.exe' [21:09] LonelyDanbo, Loog reasonable, yes [21:09] looks [21:09] bleh. tell me about it. I wiped a partition with all my backup data on it a few months ago thinking it was a USB drive. T_T I still gotta get around to trying to recover that. [21:10] bleh. still doesn't work. [21:10] very strange. [21:10] " LonelyDanbo, echo is fairly safe :-) rm -R or rm -F on the other had, things can go wrong in a hurry." [21:11] and whats about rm -rf? [21:11] ;P [21:11] subz3r0, Yeah, that's really bad [21:11] hehe [21:11] LonelyDanbo, After adding the alias, did you source ~/.bashrc [21:12] no idea atm about the us keyboard ... but on ours on the numpad is /* directly next to each other [21:12] and rm -rf /* as root wont be good :) [21:12] source? no. how do you do that? [21:12] subz3r0, is Sht+8 so pretty safe here on that one. [21:13] ki7mt: you dont have them on the numpad? [21:13] uhg. I gotta add in the option to launch this WINE app without a terminal! it keeps spitting out text while the game is running in another window. :P [21:13] LonelyDanbo, After adding an entry into your ~/.bashrc file you have to log out / in or, in the terminal: source ~/.bashrc [21:13] the .desktop installation instructions had something for that. [21:13] subz3r0, DOnt use the numpad [21:13] ahh okay [21:13] but /* are next to each other there for sure. [21:14] What ubuntu version would you recomend it you dont like unity? [21:14] ki7mt: since i need to type a lot of IPs, i use the numpad instead... a lot faster [21:14] I would think so yeah [21:14] qwart: ubuntu gnome 14.04, lubuntu, xubuntu [21:14] i prefer ubuntu gnome [21:14] I really like the windows manager in fedora [21:14] but it depends of the own taste ofc [21:15] no idea whats used in fedora [21:15] Youtube is offically crap now [21:15] but you can install almost any DE in ubuntu [21:15] qwart, UBuntu with Mate, LDXE, Cinnamon Razor-QT, gosh there's loads of them. [21:15] Is there something similar for ubuntu? [21:16] why does this work but I can't modify it to use a folder like "program files" with a space in it? wine "C:\\WoW\\Launcher.exe" [21:16] qwart, here's 8 of them compared: http://www.howtogeek.com/163154/linux-users-have-a-choice-8-linux-desktop-environments/ === postcert is now known as postcert_away [21:17] Without adblock plus youtube is a ad heaven Google you greedy bunch of arsehats. [21:18] qwart, And another review, stating resource requirements: http://www.renewablepcs.com/about-linux/kde-gnome-or-xfce [21:18] ah well. got the .desktop shortcut to work, and my updater.exe is updated, probably because I moved the game folder to program files. how strange. [21:20] Sunstream, Is there a question in there somewhere? [21:21] LonelyDanbo: space wont work [21:21] you need to write this: THIS IS A TEST === postcert_away is now known as postcert [21:21] like THIS\ IS\ A\ TEST [21:21] even * wont work mostly you would need to write \* [21:22] hey can i get a volunteer to build my game on ubuntu? it compiles on fedora just fine [21:22] hello, I've a backup of my encrypted home directory, how can I decrypt it ? when i run ecryptfs-mount-private i'm getting an error "ERROR: Encrypted private directory is not setup properly [21:23] " === parduse is now known as Guest38241 [21:23] bing, try in OFTC #udebian-mentors or #ubuntu-packaging .. I'd look at it, but I've got way to many going on at the moment. [21:23] bing, Mybe even #ubuntu-motu also [21:24] it's already in ubuntu & debian [21:24] http://www.howtogeek.com/116297/how-to-recover-an-encrypted-home-directory-on-ubuntu/ [21:24] bing, sri it's: OFTC #debian-mentors [21:24] Hi, my machine keeps hanging- I see a few error messages along the line of "task jbd2 blocked for more than 120 seconds" [21:24] bing, The why are you asking us to build it? [21:24] any thoughts as to where to start troubleshooting this? [21:24] ki7mt, just to run into the problems before the DD does [21:25] bing, Why can you use pbuilder / pbuild-dist and build it yourself ? [21:25] Why can't [21:26] If it builds fine on Debian Sid / Tursty {i386,amd64}, then it's probably good to go. === postcert is now known as postcert_away [21:29] Personally, I dont build other folks packages that I dont know and or trust on my workstation, as that's a good way to brick your box. [21:29] good night [21:30] ki7mt: the magic word is Virtualization ;) [21:31] subz3r0, That's one way too, but really, pbuilder or sbuild is pretty safe too really, it's just Im not overly trusting when some pop up and says he, build my source code :-) === postcert_away is now known as postcert [21:31] :P [21:32] He's chatting in #debian-mentors now .. should learn to build it on his own first. [21:33] alright i got it, using ecrypt-fs-private using my backed up home directory path as argument. Now i'm trying to recover my mails from the ".thunderbird" directory, any hints on that? === jujubala is now known as gnomo === postcert is now known as postcert_away === jwheare_local_ is now known as jwheare_local === xmb is now known as Guest127 === Daviey_ is now known as Daviey === mixomathoze_ is now known as mixomathoze === adante_ is now known as adante === PennStater` is now known as PennStater [21:36] Hello [21:37] woohoo. got WoW running in Linux! only took me half a day of trial and error. [21:37] !PL | lm05 [21:37] lm05: Na tym kanale używamy tylko języka angielskiego. Możesz uzyskać pomoc w języku polskim na #ubuntu-pl. [21:37] :) [21:37] ubottu: I think that "Hello" is not polish word... [21:38] LonelyDanbo, Yeah, but you leaned allot and it's running, which is the end goal ey :-) [21:38] hi [21:39] Some light text Linux for IRC? I have an old computer and... [21:39] :) [21:39] irssi [21:39] well, you know these scrubs. lazy, always wanting to get the results without doing the work. they never learn a thing. that's me! Well, I'm sure some of it sticks. [21:39] Thank you :) [21:40] I mean, the first time I tried to get my Linux installation working, or WINE, it took DAYS. [21:40] LonelyDanbo, for me, it's usually the things "not to do" that stick, but still have to go look for "what to do" :-) [21:41] wine sucks [21:41] yeah. not formatting your HD instead of your USB stick. [21:41] Yeah, wine is not the best approach really, should be avoided if at all possible. [21:43] compiz suddenly stopped working on Ubuntu 14.04 [21:43] I can't make it work. [21:43] I can't see unity panel and windows manager. [21:43] How can I bring them back? [21:46] crocket, Do you have the compiz config installed unity is a plugin in compiz? Have you tried a reboot, have you run a unity/compiz reset. Do you have ant cause and effect address. [21:46] Beldar: Ask one question at a time. [21:46] ccsm is installed, and unity is a compiz plugin. [21:46] I also tried reboot. [21:47] crocket, Sorry can't help than. ;) [21:47] where do I find report from long lasting test smarttcl? [21:48] alexa: you're asking for help administering a botnet? [21:48] alexa, Maybe here: https://launchpad.net/ubuntu/+source/smartmontools/+bugs === dfgas is now known as dfgas_off [21:48] no. I'd like to check a status of my secondary hard drive. [21:49] ah, sorry [21:49] I ran smarttcl --test=long /dev/sda [21:49] anyone available for paid help via Teamviewer? I'm pulling my hair out with setting up a file server on ubuntu === postcert_away is now known as postcert [21:49] it said it will be finished at 11:45 === shuffleb1t is now known as shufflebot [21:49] where do I find the report? [21:49] alexa, Sri, I misunderstood, your looking for the output not a long lasting issue, my bad. [21:49] :) [21:49] I can send $25 via Paypal for beer money [21:50] Jason12: is this a Samba server? [21:50] Jason12, Totally offtopic, this is support on the channel period. [21:50] Yes, Samba [21:51] Jason12: part of a domain or just a workgroup and is it Samba4 or Samba3? === Kitar|st_ is now known as Kitar|st === dfgas_off is now known as dfgas [21:52] zerowaitstate: how do I determine Samba version? Look at smb.conf? [21:53] Jason12: ... or possibly, apt-cache policy samba [21:53] hey guys, i'm on ubuntu 13.10 with kernel 3.11, and snd_hda_intel causes kernel panic [21:53] alexa, Looking at the man page, aren't you supposed to re-direct the command to a file of your choice ? [21:53] YokoBR, How about the previous kernel? Has this been always the panic? [21:54] nope, just this kernel Beldar [21:54] I was here yesterday [21:54] i was able to boot blacklisting it. [21:54] Hi, my machine keeps hanging- I see a few error messages along the line of "task jbd2 blocked for more than 120 seconds" ... this repeats and fills the screen, with various other tasks. It seems to be possibly related to my HP raid, maybe, as it mentions the /dev/ path. any thoughts on where to strrt troubleshooting? [21:54] YokoBR, Do you still have previous kernels? [21:54] Why my ubuntu server start's Busybox? [21:55] nope, but i'm trying to use another update of snd_hda_intel, lauched today. [21:55] alex@machine ~ $ man smarttcl [21:55] No manual entry for smarttcl [21:55] smarttcl -h gives no clue [21:55] alexa, also, may want to look at GSmartControl as an option for a GUI, just a thought. [21:55] YokoBR, I don't believe I will be able to help. ;) [21:56] alexa, ManPage: http://manpages.ubuntu.com/manpages/trusty/man8/smartctl.8.html [21:56] Ok, Beldar, thanks anyway :) [21:57] genii: Hi neither smb.conf nor the apt-cache policy samba return the samba version [21:58] Jason12: can you "man samba"? [21:58] apt-cache show samba [21:58] Jason12: What *did* apt-cache policy samba return? [21:59] ( might not be installed at all, even) [21:59] samba 3.6! [22:00] apt-cache show samba |grep Version ; shows the repo version of Samba here [22:00] whis 4.1.6 [22:00] So, I'm trying to share a folder on my network for all lan users to be able to read/write to without entering in a password. Basically a very open shareable folder. This folder *also* happens to be a dropbox folder [22:01] is there a channel for ubuntu touch? [22:01] !touch [22:01] Information about the Ubuntu Touch platform for Phone and Tablet is available here https://wiki.ubuntu.com/Touch . Support and discussion in #ubuntu-touch [22:01] the workstations are all running windows 7. I want zero security (I might get dinged for saying that here) [22:02] Jason12, Info: http://ubuntuforums.org/showthread.php?t=1943026 [22:02] chmod 777indeed looks eery [22:02] Beldar: Solved :DDDDD [22:03] Does anyone really need 777, at any time in their use of Ubuntu? [22:03] Jason12 with chmod 777 anyone can do anything, even lock you out [22:03] YokoBR, Good job, as a helper that makes me happier than actually helping. ;) [22:04] well, there were two options listed [22:04] Ty, Beldar :D === bocaneri is now known as Sauvin [22:14] http://pastebin.com/391DNDNB <-- does anyone know why I can't install syslog-ng on a vanilla 14.04 LTS? [22:15] hi all. I just did a fresh 14.04 installation on an older acer laptop. using wget, I get 2.5 MB/s downstream from one of my servers. but the firefox is extremely slow. it seems like every connection it makes is hanging/delayed [22:15] ping also doesnt show any packet loss or such things [22:15] connection is wireless, but with good signal [22:15] any ideas or known bugs there? [22:17] I had to remove rsyslog package, which also insisted on removing "ubuntu-minimal" before syslog-ng was allowed to be installed. [22:17] It was fearsome, removing ubuntu-minimal, whatever that is. === [AFK]def_anoch is now known as def_anoch === step21 is now known as step21_ [22:19] EO_: Don't know yet, what returns from -> apt-cache policy syslog-ng-core <- ? [22:19] why could it happen that udev didn't create /dev/sd[abc] entries? [22:20] I have a video capture device that no longer works since I upgraded my mythtv [22:21] hi [22:21] I mean upgraded ubuntu [22:21] hi all [22:21] how can I find out what ubuntu messed up [22:22] kkkkkkkkkk: This is ubuntu support, do you have a request ? [22:22] i've a question, i'm confused about desk top managers, unity, kde, xfce, lxde, and such, running ubuntu 14.04.. [22:22] Bashing-om, no thanks [22:23] hello [22:23] kkkkkkkkkk: ....Well then, you are welcome to look (lurk) and learn .. huh . [22:23] i guess ubuntu has unity, but can i change it to lxde? [22:23] Bashing-om, thanks very much [22:23] Tin_man, You can install the lxde desktop yes [22:23] ok thanks [22:24] still learning [22:24] Bashing-om, i have a question: where can i download ubuntu sources? [22:24] Tin_man, Be careful if you think removing unity is an issue is all not really a good idea, just a heads up. [22:24] Tin_man: You may install any Desk Top environmnet that you like .. backing back out is a different story .. [22:24] Bashing-om, all source codes [22:25] how do I recursively search for a filename in a directory? is it grep or find? [22:25] I have a video capture card that is no longer working after upgrading my system is there any way to figure out what is wrong [22:25] i really like unity.. but my wifes machine is a tad bit slower.. [22:25] kkkkkkkkkk: Are you running 'buntu ? all source code is available from the software repository ( src enabled in /etc/apt/sources.list ). [22:25] I have a dual boot system with 2 windows 8.1 install, ALL partitions are PRIMARY, 1-st partition is small and it is Active (the boot one with windows bootloaders and some recovery stuff), second partition is with windows 8.1 x64 bit Primary, third partition is windows 8.1 x32 Primary. Can I install UBUNTU with WUBI in this scenario? [22:26] !wubi | unkn-error [22:26] unkn-error: Wubi allows you to install or uninstall Ubuntu 12.04 LTS from within Windows ( version 7 or earlier ) in a simple and safe way. Wubi is INCOMPATIBLE with UEFI, Windows 8 Certified computers, and Windows RAID arrays. https://wiki.ubuntu.com/WubiGuide for more information. File wubi bugs at http://launchpad.net/wubi/+filebug [22:26] Bashing-om, yes ubuntu 14.04 [22:27] I don't have uefi, any my laptop is not windows 8 certified... [22:27] :-| [22:27] Bashing-om, i would like to download all sources, ALL [22:28] unkn-error, wubi is not supported and when it was by one user, not a good idea ever unless that is the only choice. A virtual would be better. [22:28] thank you for info [22:28] well thanks for the help.. i'll just lurk for awhile [22:29] Tin_man, Just wear the cool shades and no one will notice. ;) [22:29] kkkkkkkkkk: How many petra bytes of storag do you have .. no known desk top can do that ! -> apt-get source to get ANY source code ya want. [22:29] hat won't melt? [22:30] Tin_man, tin or copper? [22:30] ;) [22:30] hellopat_, i can't get off to look at it.. [22:30] lol [22:31] maybe gold [22:31] can someone do me a favor? run vdpauinfo if you are using the radeon OSS driver [22:31] nah i'm sure my wife would of scraped me.. [22:31] so I tried cat /dev/video 0 > test.ts , but it says input/output error [22:32] and post it to pastebin [22:32] Hi, my machine keeps hanging- I see a few error messages along the line of "task jbd2 blocked for more than 120 seconds" ... this repeats and fills the screen, with various other tasks. It seems to be possibly related to my HP raid, maybe, as it mentions the /dev/ path. any thoughts on where to strrt troubleshooting? === renato_ is now known as Guest38857 [22:37] is anybody out there? anyone at all? [22:37] hello [22:37] hey [22:37] anyone speak russian here? [22:38] i need some help in translation. [22:38] google doesnt help -__- [22:38] perestroika [22:39] not even slightly but I can try and understand anything you can type in English [22:39] http://pastebin.com/ecfPsLcw [22:40] anyone can help with this? [22:40] !ru [22:40] Пожалуйста наберите /join #ubuntu-ru для получения помощи на русском языке. | Pozhalujsta naberite /join #ubuntu-ru dlya polucheniya pomoshi na russkom yazyke. [22:41] anybody home? [22:41] hey [22:41] I need help with http://tinyurl.com/n9j8jx4 [22:41] pooderpolly: that is spam [22:41] help in what way? that seems spammy [22:41] yeah :p [22:41] hue [22:42] well i do need help [22:42] so theres that [22:42] ty for the help [22:42] Liveware: next time use curl -I so they don't stuff anything into your browser [22:43] Anyone a qualified psychiatrist in here for @pooderpolly [22:45] glastnost [23:00] hi can i register a nickname ???? [23:02] How can i register a nickname?????? [23:02] How can i register a nickname?????? [23:02] How can i register a nickname?????? === kkkkkkkkkk is now known as lcmacielf === lcmacielf is now known as stonner === brad__ is now known as sencha [23:34] Quick question: have you guys found much of a difference between using Intel's i5 and i7? [23:34] For development machines === postcert is now known as postcert_away [23:52] how can i figure out the root password [23:52] it seems i wasnt asked to configure it [23:53] Hi can someone help me with Samba and Dropbox on my ubuntu machine? I've shared my ubuntu dropbox folder within the lan and chmod 777 on it. The other computers (Windows 7 machines) can see and read/write to it on the lan. However, if a remote non-lan pc creates a file and that file is downloaded by ubuntu dropbox, that file only has Read permissions (hence nobody on the lan can write to it. They get Access Denied when trying to mak [23:54] raspberrypifan: on ubuntu there is none [23:54] If in Ubuntu I chmod that said file to 777 then it allows writing from the lan again. So I guess I'm asking how I can have newly created files by ubuntu dropbox inherit the 777 permissions [23:54] what if i try to do su [23:55] raspberrypifan: dont do that. is this a rpi? [23:56] no [23:56] on a vm === morenoh153 is now known as morenoh149 [23:56] raspberrypifan: to gain root privileges, use sudo and your normal user password [23:56] raspberrypifan, You might research admin options in ubuntu, it has it's own setup, all the same access as others just differing commands than other OS's. [23:56] !root | raspberrypifan [23:56] raspberrypifan: Do not try to guess the root password, that is impossible. Instead, realise the truth... there is no root password. Then you will see that it is 'sudo' that grants you access and not the root password. Look at https://help.ubuntu.com/community/RootSudo [23:56] but i gotta keep using sudo [23:56] everytime [23:57] raspberrypifan: you can start a sudo session [23:57] raspberrypifan: sudo -s === YuviPanda is now known as YuviPanda|zz [23:57] hm [23:58] well i get why you would wnat to do this, its kinda annoying [23:58] raspberrypifan, If you have to be in root or a rooted cli all the time you might consider a OS set up for that. [23:58] well i was on debian but everytime was a pain on there [23:59] raspberrypifan, In the nicest way possible, grasp the pain bro. ;) [23:59] Hi, my machine keeps hanging- I see a few error messages along the line of "task jbd2 blocked for more than 120 seconds" ... this repeats and fills the screen, with various other tasks. It seems to be possibly related to my HP raid, maybe, as it mentions the /dev/ path. any thoughts on where to strrt troubleshooting?