/srv/irclogs.ubuntu.com/2014/06/30/#ubuntu.txt

histo!alis | eam00:00
ubottueam: 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
ki7mteam, 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
histoeam: https://wiki.ubuntu.com/UbuntuDevelopment  there is also this00:00
eamki7mt: yes exactly00:00
ki7mteam, You dont need it on Ubuntu build servers.00:01
eamki7mt: 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 stub00:01
eamki7mt: the thing is, the resulting object won't link because some of the libraries it requires aren't added as DT_NEEDED00:02
ki7mteam, 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:02
eamI 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
ki7mteam, I like all the libs ins ${LIBS} lin -lpthread -lportaudio etc etc, then let call ${LIBS} on the target line,00:03
ki7mtI link .. ..00:03
eamki7mt: yeah, the specific toolchain change (from that natty doc) is that -lfoo is now ignored in certain cases00:04
eamthe doc recommends simply reordering the args to gcc, but that's less than useful when dealing with a large project with generated builds00:04
ki7mteam, All the dupe links are ignored in Ubuntu, not so in Debian and it moans about it.00:05
eamyeah, the problem is these aren't dupe links in this case00:05
eamI end up with a so that never links my library00:05
ki7mteam, That sounds like a different problem then.00:06
eamki7mt: for example cc -lfoo bar.o -o something.so # on debian, won't put foo in DT_NEEDED00:06
=== george2 is now known as george2_
eambut cc bar.o -osomething.so -lfoo # will00:07
=== george2_ is now known as george2
eampassing in --no-as-needed turns off the weird ubuntu linker behavior00:07
ki7mteam probably need ${LDFLAGS} in that line as it's a direct call v.s. an ${OBJ1} call or something.00:07
eambut the docs say not to do it so I'm trying to understand why :)00:07
ki7mteam of couse,, the lib.so need to be built before hand.00:08
eamki7mt: the thing is, this is output from perl's MakeMaker00:08
eamI don't control the argument ordering00:08
eam(and it works on literally every other unix in the world :)00:09
ki7mteam, 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
eamok00:09
ki7mt.. build servers ..00:09
eamyeah I have a workaround of -Wl,--no-as-needed00:09
eamit's just ... ubuntu docs say explicitly "don't do it"00:09
eambut if not that, what?00:09
eamI'm trying to understand if there's something more to this policy, or if it's just kinda broken00:10
trismeam: I think the fedora doc does a slightly better job explaining than the debian one http://fedoraproject.org/wiki/UnderstandingDSOLinkChange00:10
ki7mtYes, as ity's not neeed, but on Debian it is, but breaks apps like F2PY00:10
ki7mttrism, Be careful with Fedora, they have lots of issues still with LFS convensions, particularly with /lib /lib64 v.s. native and so on.00:11
trismki7mt: yes but in this instance it is the same sort of change as made in debian a while ago00:12
eamtrism: 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 object00:13
eamnormally -lfoo means your shared object will need libfoo00:13
ki7mttrism, Was just a data point, using ldconfig is the only way to get that right cross platform.00:13
eambut in ubuntu, -lfoo no longer causes DT_NEEDED to need foo00:14
ki7mteam, exatctly, the .so version not static00:14
eamki7mt: well, the problem is the .so must do the loading for interpreted languages that dlopen stubs00:14
eamlike python, perl, ruby00:14
eamfor example you have mysql.so which backs the rubygem, and that mysql.so does the DT_NEEDED to libmysqlclient.so00:15
eambecause "ruby" itself can't link everything, of course00:15
eamknow what I mean?00:15
ki7mteam, Yes, but I dont have a solution infortunately :-)00:15
ki7mtunfortunately00:15
eamfair enough, thanks for pitching in. I think a decent enough answer might be to revert to the normal linker behavior for all interpreted language modules00:16
eamas best I can see that's what existing ubuntu packages do00:16
ki7mteam, 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:17
ki7mteam, 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
eamI 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
X2fancy footwork00:19
gadaboutis there a help file for the unbuntu packages of software how to compile them into zipes00:20
x9hello! any help for wlan on Xubuntu 14.04?00:22
SunstreamI knew I would have a problem with UBUNTU eventually00:28
dasworthi, 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
SunstreamHow the bloody heck do I get Oracle Java to work (since DSLREPORTS favor them)00:28
daswortWhats your problem? Sunstream00:29
SunstreamI cannot get it to install and I do not want to mess with rpms/tars00:29
SunstreamNevermind I will just go do a google search and figure it out myself thank you anyways00:30
* Sunstream walks away00:30
ki7mtSunstream, 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
daswortSunstream, 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:31
dasworthttp://ubuntuhandbook.org/index.php/2014/02/install-oracle-java-6-7-or-8-ubuntu-14-04/ Sunstream00:32
ki7mtSunstream, Building from source or especially rpms should be considered a last resort.00:32
Sunstreamyep that is why I DON00:33
SunstreamT want ot mess with that00:33
daswortSunstream, just grep the .deb of the installer for the Java version you need: https://launchpad.net/~webupd8team/+archive/java00:33
perlonUbuntu 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
ki7mtSunstream, 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
Sunstreamthe problem UNLESS I have oracle installed DSLReports sucks00:34
perlonWhere can I find documentation on the the "automatic" install?00:34
perlonOr where can I find logs for the dokuwiki failures.00:35
perlon?00:35
ki7mtperlon, As in UBuntu auto install ?00:35
daswortI can't find lxcbr0 in if-pre-up.d/ either. :(00:35
perlonapt-get install dokuwiki, and then dpkg-reconfigure00:35
Sunstreamthanks 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 offtopic00:36
=== bazhang is now known as Guest51145
perlonI 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.00:36
=== bazhang_ is now known as bazhang
ki7mtperlon, Based on Debian / Server, but should very close to UBuntu: https://wiki.debian.org/DokuWiki00:37
perlonki7mt: I read that, but must be missing something.00:38
ki7mtperlon, Maybe someone else then, as that's what I would follow.00:39
perlonki7mt: thanks.  I assume that granting www-data group and owner is all I need.00:40
Sunstreamki7mt, 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 700:44
ki7mtSunstream, Yes, openjdk-7-jre is in the repos also.00:46
=== ariscop_ is now known as ariscop
=== khisanth_ is now known as Khisanth
LapJup3Beldar: did you ever hang out in #dos on efnet?01:04
Foxhoundzdoes anyone have experience using this WiFi card http://www.newegg.com/Product/Product.aspx?Item=N82E1683310619001:05
FoxhoundzIt disconnects constantly on Linux01:05
Beldarno01:06
x9so I'm running Xubuntu 14.04 and the wi-fi is saying it's connected, but I can't access the Internet.01:11
Foxhoundzx9: try pinging your gateway01:17
morrisonlukex9: Have you checked your DNA01:17
x9what's the command for that? it can't be "ping", can it? Foxhoundz01:17
x9morrisonluke, I don't know what my mom and dad have to do with it01:18
morrisonlukex9: DNS01:18
x9morrisonluke: all well on the DNS side01:19
morrisonlukex9: Open up a terminal and type ifconfig to find your gateway01:20
x9should mention I'll have to take notes, reboot, then check and reboot again if needed... I'm in Windows right now, dualbooting it and xubuntu01:21
=== morrisonluke is now known as lukemorrison
perlonI 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:22
bdbearPerlon try https://launchpad.net/01:23
perlonThanks01:23
bdbearyw01:23
andlabsHi. 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
syntroPieverytime 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:27
andlabssyntroPi: yes, synaptic does take several seconds to start up; I have one VM configuration where it takes much longer but I can't explain it01:29
syntroPiit takes way longer than several seconds everytime i change the smallest setting i get the "nonresponsive" window...01:31
syntroPimy i7 860 used to be way faster with synaptic in versions before trusty01:32
syntroPii tried reinstalling it without any success01:33
histosyntroPi: apt-get install foo   have you tried that?01:36
lukemorrisonx9: Were you able to find / ping your gateway in Xubuntu?01:38
x9luke morrison: about to attempt. be back in a few minutes (I was looking at forums online for more fixes to try)01:39
syntroPihisto im not sure what you mean but there is no such package for sure01:40
syntroPiapt-get or just apt doesnt have any latency issues01:40
histosyntroPi: I'm saying why use synaptic?01:40
syntroPibecause it was quite usefull and fast in my experience with previous ubuntu versions01:42
syntroPiis there any gui alternatives with similar options to synaptic except the ubuntu software center?01:42
* histo prefers text interface01:45
=== LapJup3 is now known as LapJup
lukemorrisonsyntroPi:  Try the muon software center.  I think it's in the Ubuntu repositories01:46
syntroPiwhen its frozen dbus-daemon, gnome-shell and synaptic fight over the cpu ressources01:47
histosyntroPi: try launching synaptic from a terminal to view the output01:48
histosyntroPi: or see if it has a verbose option or logging on the interface01:49
Locke2002Hi. 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 start01:52
Locke2002looking? Log files?01:52
syntroPiLocke2002, look at "dmesg" in the terminal maybe?01:53
BeldarLocke2002, I would check the routers signal, must have a adjustment on board.01:56
Locke2002Beldar: All the other household wifi devices are working perfectly, if that helps.01:57
BeldarLocke2002, Just saying where I would start.01:58
bdbearfind out why you time out. (look in the router error logs, as well on the machine that times out.)01:59
bdbearwirless is a tricky biz, it can be all kinda of crazy stuff that makes you lose connection01:59
Locke2002k, I'll see what I can find. Thanks people.02:04
x9alright, I'm at the point where I will give 1/4 of my money to whoever helps me solve my problem02:22
Foxhoundzx9: yes ping02:23
Foxhoundz:)02:23
x9basically, 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
x9...could rebooting the gateway solve this problem?02:25
bdbearehh.. yea;)02:26
bdbearare you able to connect using cable?02:26
Foxhoundzx9: have you tried connecting with another PC/phone?02:26
x9bdbear: yes, ethernet works. Foxhoundz: I'm using the same computer on Windows to talk right now, everything works except XUbuntu02:27
Foxhoundzok02:27
Foxhoundzgood02:27
x9this is a clean install of xubuntu02:27
FoxhoundzMy guess is a misconfiguration with your DNS settings02:27
x9how would I go about configuring it properly?02:28
bdbearhow far can you ping, when your connected (wifi)02:28
x9bdbear: as in distance from the access point?02:29
bdbearcan you ping google (8.8.8.8) the gateway? your self?02:29
brasileirohi 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
SunstreamOkay02:29
SunstreamI got Java wokin in F.Fox but not Chromium where I want it to work02:29
x9bdbear: what is the ping command? is it like windows, just ping <address>?02:30
bdbearyea02:30
rainbowwarriorhello02:30
lastarmshello rainbowwarrior02:30
x9Foxhoundz: how would I reconfigure DNS properly?02:30
rainbowwarriorhello lasers02:30
rainbowwarrioroops tab fail lol02:31
rainbowwarriorhello lastarms02:31
bdbearyou need to find out what your issue are before you start fixing it x9.02:31
Foxhoundzx9: you shouldn't have to normally. I was just wondering if it might be the cause02:31
Foxhoundztry pinging the IP of the router itself02:31
Foxhoundzshould be something like 192.168.0.102:31
x9bdbear: taking notes of as many things as I can before rebooting and attempting a fix02:32
rainbowwarriorhi 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
Foxhoundzrainbowwarrior: is it a 5ghz network?02:32
bdbearif 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:32
rainbowwarriorFoxhoundz :- no02:33
x9BRB, rebooting and going to the ethernet cable02:34
lukemorrisonrainbowwarrior: Does your network broadcast its SSID?02:35
rainbowwarriorFoxhoundz :- its 2.4ghz02:36
rainbowwarrioryes lukemorrison02:36
Sunstreamsorry was afk02:36
Sunstreamscrolling ab ck02:36
lukemorrisonrainbowwarrior:  What about rebooting the router? or manually adding the network?02:37
SunstreamOkay 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 URL02:37
rainbowwarriorlukemorrison :- tried that and still no luck02:38
bdbearsunstream have you checked http://stackexchange.com/sites for an Q&A?02:38
lukemorrisonrainbowwarrior:  Which one?02:38
rainbowwarriorlukemorrison :- rebooting the router and manually adding the network02:38
Ben64rainbowwarrior: try changing the settings... no encryption, wep, other settings02:39
lukemorrisonrainbowwarrior: It's not hidden behind "More Networks"?02:39
Sunstreamwhat is that site........02:39
rainbowwarriorBen64 :- ok ty02:40
Sunstreama super search engine or something02:40
rainbowwarriorlukemorrison :- no02:40
Sunstreamit shows me a lot of sites02:40
bdbearits an Question and answeres community.02:40
Ben64Sunstream: chromium doesn't allow java anymore02:41
SunstreamOh02:42
Sunstreamwhy? Google?02:42
x9alright, patched in with ethernet02:42
bdbearhttps://bugs.launchpad.net/ubuntu/+source/chromium-browser/+bug/1308783 (read the comments)02:43
ubottuUbuntu bug 1308783 in chromium-browser (Ubuntu) "chromium-browser: java plugin does not work" [Undecided,Confirmed]02:43
Ben64Sunstream: https://groups.google.com/a/chromium.org/forum/#!topic/chromium-dev/xEbgvWE7wMk02:43
OerHeksJava (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
bdbearill pm you x9.02:43
lukemorrisonx9: Open up a terminal and type in ifconfig02:43
Foxhoundzhow do I set the TX-power on my WiFi?02:43
FoxhoundzI'm getting terrible reception and it keeps dropping the signal02:43
lukemorrisonFoxhoundz: are you using stock firmware?02:44
Foxhoundzlukemorrison: it's an Intel 7260HMW IEEE 802.11AC, dual-band, 2x2 Wi-Fi02:44
Foxhoundzso I guess it's using Intel's open source drivers02:44
Foxhoundzwhich are baked into the kernel02:45
Foxhoundzif that's what you're asking02:45
lukemorrisonFoxhoundz: I was actually talking about the router02:45
Foxhoundzlukemorrison: you have the wrong guy02:45
Foxhoundzbut It's using CIsco02:45
Foxhoundzoh02:46
FoxhoundzOH02:46
Foxhoundzyes02:46
FoxhoundzThe router is using the stock Cisco firmware02:46
FoxhoundzDD-WRT is unstable02:46
Sunstreamso Chromium is useless lol02:46
Ben64Sunstream: if you really need that buggy unsecure plugin, then for you, yes02:46
Foxhoundzlukemorrison: I should add that this card gets 5-bar excellent reception under Windows02:47
Ben64"bar" is not a measure of signal strength02:47
Foxhoundzbut drops constantly on ubuntu02:47
Foxhoundzwell02:47
lukemorrisonFoxhoundz: 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 power02:47
FoxhoundzI can't tell you the SNR value off the top of my head02:47
Sunstream-_-02:48
=== megabit|away is now known as megabitdragon
FoxhoundzSunstream: -_-02:48
SunstreamThe biggest issue I have right now is the addressbar in firefox02:48
Ben64Sunstream: go on...02:49
SunstreamI look at the "Aura" stuff it is buggy, hehe like all new technology02:49
SunstreamWell the bug in firefox is, in the addressbar it is like someone took a sharpie and marked the text out02:50
Ben64Foxhoundz: maybe try something like this?02:50
Ben64Foxhoundz: http://zeroset.mnim.org/2014/04/22/unstable-wifi-connection-on-ubuntu-14-04-trusty-tahr-ctrl-event-disconnected-reason4-locally_generated1/02:50
Jeffrey_fFoxhoundz: 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
SunstreamIf I can find a fix for that02:51
Ben64Sunstream: then fix that? a screenshot may help02:51
=== Guest84124 is now known as ezhik`_
Sunstreamhold onm02:51
FoxhoundzBen64: it looks like iwlwifi is not found02:52
Foxhoundzwhen calling modprobe -r iwlwifi02:52
Foxhoundzusing the guide you pasted02:52
Ben64Foxhoundz: well which driver is being used for it02:52
Foxhoundzgood question. I have no idea how to find that out on Linux02:53
SunstreamI am ok with operating guis but how do I take a screenshot?02:53
FoxhoundzI tried modprobe -ls02:53
lukemorrisonFoxhoundz: lspci02:53
Sunstreampring screen? ctrl+PrtSc02:53
Foxhoundzoutput: 02:00.0 Network controller: Intel Corporation Wireless 7260 (rev 73)02:54
Ben64Foxhoundz: lsmod02:54
Foxhoundzthere we go!02:54
Foxhoundzthat was what I was looking for02:54
Ben64Foxhoundz: just pastebin it all02:54
Foxhoundzlsmod02:54
Ben64Foxhoundz: and which version of ubuntu02:54
Foxhoundz14.0402:55
Foxhoundzwell02:55
Foxhoundzok I lied >_>02:55
FoxhoundzIt's Linux Mint02:55
Ben64boo02:55
Ben64get out of here02:55
Foxhoundzbut they're practically the same02:55
Ben64nope02:55
Ben64!mint | Foxhoundz02:55
ubottuFoxhoundz: Linux Mint is not a supported derivative of Ubuntu. Please seek support in #linuxmint-help on irc.spotchat.org02:55
SunstreamHow do I do a screen cap02:55
Foxhoundzoh god02:55
Foxhoundzthey've ratted me out02:55
Ben64Sunstream: hit the print screen button02:55
Foxhoundzanyway here is the lsmod output http://laravel.io/bin/MdVvQ02:56
Ben64Foxhoundz: don't care02:56
Ben64don't play the channel like that02:56
FoxhoundzBut but02:56
Ben64nope02:56
FoxhoundzI'm so close!02:56
* Foxhoundz whimpers02:56
rwwFoxhoundz: #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:56
rwwWe don't know what changes Mint makes, just like Debian doesn't know what changes we make.02:57
rwwAnd it's not fair to use the support resources of another distro, especially when it involves lying to them.02:57
rwwPart 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
FoxhoundzI didn't lie. THis was the first time he asked me what distro I was using02:57
BeldarFoxhoundz, You know this support issue already'02:58
FoxhoundzOK. Say I was running Ubuntu and I encounter this problem02:58
Ben64nope02:58
FoxhoundzWhat course of action should I take?02:58
rwwFoxhoundz: No. Go talk to the Mint folks.02:58
Foxhoundz:(02:58
Sunstreamokay02:59
FoxhoundzFine. I'll just live CD an Ubuntu distro02:59
SunstreamNow I figured it out02:59
Foxhoundzand then I'll get your sweet sweet tech support02:59
=== waverwav1r is now known as waver
* waver ponder03:00
Sunstreamokay now I did a screencap how do I send it to you do I have upload it to a server03:00
Foxhoundzthey're structurally Identical in terms of kernel versions and most of the packages03:00
Ben64Sunstream: yeah, imgur.com or whichever other one you may prefer03:00
rwwFoxhoundz: are you going to continue to debate this or are you going to go to your distro's support channel?03:00
Foxhoundzok :(03:01
Foxhoundzwhat is their room called here?03:01
Ben64#linuxmint-help on irc.spotchat.org03:01
rww#linuxmint-help on irc.spotchat.org03:01
rwwthey're not on freenode because they're weird03:01
Foxhoundzoh god03:01
Foxhoundzplease don't make me do this03:01
SunstreamOkay printscreen isnt working03:02
Ben64Sunstream: on my system it actually saves a picture into ~/Pictures03:04
SunstreamOh it automatically makes it03:04
SunstreamI do not have to paste03:04
Sunstreamnow I feel foolish03:04
Williamadd my Skype william.conna03:05
Ben64Sunstream: don't worry about it, the function is different from windows :)03:05
Sunstreamhold on03:06
Sunstreamlet me upload this to my google account03:06
=== Crackz0s is now known as Crackz0r
=== def_anoch is now known as [AFK]def_anoch
=== Khisanth is now known as Guest60630
waverhow to  paste text from host when using ubuntu server in virtualbox under win7?03:13
CrazyZurferWhen 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:13
Beldar!pastebinit | waver from server03:14
ubottuwaver 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.com03:14
SunstreamOkay https://drive.google.com/file/d/0B2SuH8JTYEApY0k1TVhIeVBjMzg <----- look03:14
Sunstreamthat is what I see in the address bar of firefox03:14
Beldarwaver, Where is the text from windows or the server?03:14
vbgunzman, 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:15
Ben64Sunstream: try changing browser.urlbar.formatting.enabled to false03:16
waverwhen I want to past some bash script from my windows notepad to ubuntu shell, I found a waring " need x-service.'03:16
Sunstreamokay whos idea at Mozilla to do that03:17
waverbut I use ubuntu server only.03:17
=== Guest5024 is now known as RyanKnack
Ben64Sunstream: did that fix it03:18
SunstreamNope03:18
Ben64Sunstream: then try changing gfx.xrender.enabled to false03:18
=== Guest94745 is now known as erratic
FoxhoundzBen64: this problem also affects Ubuntu03:19
Foxhoundzcare to lend a hand now? -.^03:19
Ben64Foxhoundz: nope03:19
Sunstreamokay falsed03:20
Sunstreamyay03:20
Ben64!yay | Sunstream03:21
ubottuSunstream: Glad you made it! :-)03:21
Sunstreamwhat is wrong with that03:21
Sunstreamlet me reenable the formatting03:21
Ben64Sunstream: i think its certain video cards or something, because i have no problems here03:21
SachiruWhat the hell?03:21
SachiruWhy was I kicked?03:21
Sunstreamwell then agaiun03:21
Ben64Sachiru: probably better to ask in #ubuntu-ops03:22
SachiruWhy was I kicked from ##ubuntu?03:22
Sunstreami have a crappy intel extreme(ly crappy)03:22
Ben64Sunstream: makes sense03:22
Sunstreamyay03:22
SunstreamI canuse the formatting now I can help others03:23
Sunstreami 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 card03:23
SunstreamNow that Firefox is fixed03:24
SunstreamI will use this as primary brower03:24
Ben64Sunstream: probably too much work for them, idk though03:24
Sunstreamoh come on they been working on netscape com... err Firefox for a long time lol03:25
SunstreamAnother question I want to use firefox to open urls in Xchat but for some reason it keeps opening "browser"03:26
SunstreamI do not want to use WEBKIT I want to use Firefox03:27
YokoBRGuys, isso can't boot after update03:28
YokoBRI03:28
YokoBR*03:28
BeldarYokoBR, What ubuntu release?03:28
YokoBRSeems to be a problem with sound03:29
YokoBRSaucy, i guess03:29
BeldarYokoBR, Give some relative details03:29
Sunstreamthe problem with webkit is it shows buttons messed up a lil03:30
YokoBRBeldar, i'll try to send a picture03:32
=== waverwaver is now known as waver
Sunstreamgrumble03:36
histoSunstream: set firefox as your default browser then03:36
SunstreamI did03:36
SunstreamI am just gonna uninstall that browser03:37
histoSunstream: ok or you can just configure your mime types03:38
SunstreamI can open it in firefox in mIRC03:38
YokoBR_Problem is with snd_hda_Intel03:38
YokoBR_How can i disable it on boot?03:39
YokoBR_Disable snd_hda_Intel on grub03:39
Sunstreamdarn it03:39
Sunstreamif I uninstall the browser it uninstalls all the other stuff03:40
Sunstreamgee03:40
histoSunstream: xdg-mime query default x-scheme-handler/http03:40
Sunstreamthat a shell command?03:41
histoSunstream: yeah what is the output of it03:41
YokoBR_Please,  i need to disable snd_hda_Intel03:42
YokoBR_On grub03:42
histoYokoBR_: blacklist it03:42
histo!blacklist | YokoBR_03:42
ubottuYokoBR_: To blacklist a module, edit /etc/modprobe.d/my_blacklist.conf and add « blacklist <modulename> » 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
nexusHello every one03:42
histohola nexus03:42
YokoBR_How?03:42
YokoBR_I cant boot03:42
=== nexus is now known as Guest40755
YokoBR_I cant boooot03:42
histoYokoBR_: boot the installation media and edit the /etc/modprobe.d/my_blacklist.conf03:43
Ben64YokoBR_: yeah we got that. why do you think its snd_hda_intel's fault?03:43
catalasecan 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 lol03:43
=== george2 is now known as george2_
=== george2_ is now known as george2
YokoBR_Because its whre The erros appears03:43
Ben64catalase: thats for security, don't change that03:43
Ben64YokoBR_: which error03:43
catalaseBen64, how about full READ access then03:43
Ben64catalase: how about you say what you really want to do03:44
YokoBR_Lets see03:44
catalaseBen64, i've created a folder in the root directory with my ssh rsa keys03:44
catalaseaccess is denied03:44
catalaselol03:44
=== Guest40755 is now known as Linot
histocatalase: work in your users directory03:44
catalasei chmod it to 70003:45
LinotI'm installed xubuntu ~~03:45
histocatalase: or correct the permissions of your other directory03:45
YokoBR_Fixing recursive fault,  reboot is needed03:45
histoYokoBR_: what?03:45
Ben64catalase: you really should be doing things in your home directory03:45
catalaseok will try tthis03:45
YokoBR_Perf samples todo long03:45
catalaseBen64, how come03:45
Ben64catalase: because thats your home directory...03:45
histocatalase: you own it, it's your directory to do whatever in.03:46
catalaseBen64, sure but it's my server03:46
=== rax- is now known as RAX
YokoBR_Nmi handler Perf_evento_Nmi_handler took too long03:46
histocatalase: what are you trying to accomplish?  What's the end goal?03:46
catalasehisto, do i not own the entire contents of the drive though?03:46
YokoBR_111.896 ms03:46
YokoBR_And died03:46
SunstreamThat dont work03:46
Ben64catalase: root does03:46
histocatalase: It's setup this way as a security measure.03:46
YokoBR_Frozen03:47
histocatalase: linux is not windows03:47
histo!paste | YokoBR_03:47
ubottuYokoBR_: 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
Sunstreamhave to install it03:47
histoSunstream: what don't work?03:47
=== RAX is now known as rax-
Ben64histo: Sunstream is using x/lubuntu ... don't know if the defaults are set a different way there03:48
YokoBR_Im not pasting,  im on a cellphone, i cant boot03:48
Sunstreamoops mime not mine03:48
histoSunstream: yes.03:48
=== gary is now known as Guest93334
Sunstreamouput03:48
histoBen64: xdg-mime is independent of desktop03:48
Sunstreamfirefox.desktop03:48
Ben64histo: good to know03:48
Sunstreamits X-chat being stupid03:48
Linotwhat are you talking about?~~03:49
histoSunstream: appears that way.03:49
Guest93334is this chat good for Linux mint 1703:49
Sunstreamso now I gotta look for a way to fix that03:49
histoGuest93334: no03:49
Ben64!mint | Guest9333403:49
ubottuGuest93334: Linux Mint is not a supported derivative of Ubuntu. Please seek support in #linuxmint-help on irc.spotchat.org03:49
histoSunstream: what desktop environment are you in?03:49
Sunstreamlubuntu03:49
catalasethe question is, why can't i access the .ssh folder in my home directory?03:50
catalaseit is set as drwx03:50
Sunstreami have low sys specs (old Dell Ispiron 1100)03:50
catalaseoh, it says owner is root root03:50
histoSunstream: update-alternatives --config x-www-browser03:50
Sunstreamno its xchat03:50
histocatalase: that's why03:50
SunstreamI gotta find the right handler03:50
histoSunstream: did you try the update-alternatives command?03:51
catalasehisto, do i just chown user /directory/?03:51
histocatalase: chown username:groupname /some/directory03:51
histocatalase: should match the perms of your /home/username username and groupname03:51
Ben64catalase: so the .ssh folder in your home directory was owned by root?03:51
catalaseya, fixed that03:52
catalasethx u03:52
histocatalase: why are you trying to put files in .ssh directory anyways?03:52
Ben64catalase: you should be much more careful with permissions and sudo in general03:52
Ben64catalase: especially on a server, bad permissions could end up with your box compromised03:52
catalasehisto, not trying to put them. i generated my rsa keys and they went into root/.ssh03:52
catalasethen randomly some folder was created in my home directory called .ssh03:53
dhanahello i cannot update my xubuntu completely ,how to fix it03:53
catalasebut is empty03:53
histocatalase: did you use sudo to generate your keys?03:53
Ari-Yanghow 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
histoSunstream: try in #lubuntu03:53
catalasehisto, probably03:53
Ari-Yangam I missing something?03:53
histocatalase: well dont' do that.03:53
Sunstreamgetting closer to fixing it03:54
Ari-Yangoh 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 Settings03:54
CrazyZurferWhen 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:55
histoLinot: Why are you pinging me?03:56
Linot~03:56
histoLinot: ~?03:56
Ari-Yanghome?03:57
catalasei should probably make the root password different from my user password then03:58
histocatalase: you shouldn't have a root password set03:58
=== Jan11 is now known as ON1
histo!root | catalase03:58
ubottucatalase: 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/RootSudo03:58
Linothisto: sorry03:59
Linoti first used this software04:00
catalasehisto, thanks for this link04:01
catalasehisto, should one set a password for their RSA keys?04:01
histocatalase: it's up to you. Think of it this way. If someone gets your private key they won't ahve to crack password04:05
histocatalase: I don't use pass on mine, if I lose my private key I can just pull the plug...04:07
histocatalase: also check out ssh-copy-id for transfering your keys.04:07
evanvarvelli have now copied your link about root accounts and stapled it into my ubuntu complete refference book04:13
SunstreamI wish I can get it to work but XChat refuses to let me open urls in firefox04:19
histoSunstream: did you update-alternatives yet?04:20
SunstreamI did04:20
Sunstreamwait04:21
=== nexus_ is now known as Linot
histoSunstream: what does xdg-open http://www.ubuntu.com   use to open that link?04:21
Sunstreamwhat do you mean update-altern04:21
Sunstreamhistro04:22
Sunstreamits xchat04:22
Sunstreamnot firefox or anything04:22
histoSunstream: open a terminal and type 'xdg-open http://www.ubuntu.com'   without quotes... What browser gets opened?04:22
Sunstreamoh epiphany-browser I am going to uninstall that POS04:23
evanvarvellis there a root user group in ubuntu?04:23
histoSunstream: Stop uninstalling and just set the right one up.04:23
histoSunstream: when you click on a link in xchat which browser gets opened?04:23
SunstreamI told you04:23
histoevanvarvell: yes04:23
Sunstreamepiphany04:23
evanvarvellthe default to system browser?04:24
histoSunstream: K try 'update-alternatives --config x-www-browser'   without quotes04:24
Sunstreamgosh04:24
histoSunstream: gosh what?04:24
Sunstreamthis is stupid  I have it set to firefox but it loves epiphany04:24
histoSunstream: because of lxde04:24
Sunstreamlxde?04:25
Sunstreamits forcing me to use that POS thing04:25
histoSunstream: was update-atlernatives set to firefox or not?04:25
Sunstream... I am not superman I need time to type that04:25
histoSunstream: copy and paste04:25
Sunstreamit outputs selections 0 1 2 304:26
histoSunstream: yeah which one has a *04:26
Sunstreamit is on 004:27
Sunstreamand says permission denied when I try to select firefox04:27
histoSunstream: which browser is on the 0 line?04:27
Sunstreamagain04:27
Sunstreamepiphany04:27
SunstreamI told you earlier the same thing that epiphany is being a forced default04:28
histoSunstream: use sudo update-alternatives --config x-www-browser04:28
histoand change it to firefox04:28
evanvarvellso if i am a part of root user group then all messages and mail sent to root group i will receive?04:28
Gorrothhi04:29
Sunstreamokay it is say manual mode does this mean epiphany can take over again04:29
GorrothIn 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
histoSunstream: no04:30
histoSunstream: it should work now04:30
SunstreamNow04:30
Sunstreamlets see04:30
SunstreamOkay04:31
SunstreamThat makes it a bit simpler it is now opening it but04:31
SunstreamI want to double click a link now it should work but it is so04:31
Sunstreamslow04:31
histoWhat is slow?04:32
SunstreamI 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 fast04:32
SunstreamI do not want epiphany on my system04:33
GorrothI just Chrome and gmail04:33
histoSunstream: So what is slow then if it's working?  The right clicking part. I'm confused04:33
SunstreamIt is faster if I right click the link and click on open link in browser it opens faster04:34
SunstreamXchat is wierd04:34
histoSunstream: opens faster compared to what?04:35
Sunstream...04:35
histoAm I the only one that is not following this?04:35
Sunstreamdouble clicking04:35
evanvarvelly       ou         a   r e        be   i  n g h    ac k ed          if     i t       i     s     sl   o w04:35
histoSunstream: No idea. I don't forsee there being a difference in the code04:35
SunstreamHow do you open a link in your irc window? double click right?04:35
histoSunstream: no. Don't have that feature in my client04:36
Gorrothevanvarvell: your text was f'd up; i think your spacebar is broken04:36
Sunstreamwell in most gui clients it is double left click like you open a desktop shortcut04:36
SunstreamEpiphany removed because it sucks as a brower04:37
Gorrothchrome04:37
SunstreamChrome sucks because it does not allow Java04:37
Gorrothwrong04:37
Sunstreamokay tell me how to get it to work04:38
Gorrothhttp://tinyurl.com/q4hyjtz04:38
GorrothStep 1. Install Windows04:38
Gorrothshould work then04:38
Gorrothalso, don't use java04:39
Sunstreamno04:39
Gorrothyes04:39
SunstreamI am NOT going to install Windows04:39
histoGorroth: please stop04:39
SunstreamI just left windows04:39
Gorrothdon't use java then04:39
histoSunstream: 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
Gorrotha bit04:39
Sunstreamyep04:40
Gorrothbut really, dnt' use java04:40
Sunstreamthen what should I use?04:40
GorrothC++04:40
SunstreamMocha?04:40
Sunstream-_-04:40
SunstreamNow silly, I cannot control what websites use04:40
Sunstreamits not a big deal04:40
SunstreamChromium has its use so does firefox04:40
GorrothYou can send them the "Do Not Use Java" packet.04:40
GorrothI hope it works04:41
SunstreamI could? I suppose I could send "shut off java so I can use your bloody site?" packet too?04:41
Sunstreamwait nevermind I am done feeding trolls for the day04:41
Gorrothyeah04:41
Gorrothsend all the anti-java packets we have04:41
SirLagzwhy would you not want to use java ? Java is the most awesomest best ! </sarcasm>04:41
SunstreamSorry, Gorroth  you exceeded the troll feeding for the day thank you.04:42
GorrothI only trust Steve Gibson's websites; they use HTML only04:42
SunstreamSirLagz, no Java actually sucks.04:42
Gorrothlol04:42
Sunstreamit is about as secure as Flash04:42
SirLagzSunstream: did you not notice the </sarcasm> tag ?04:42
SunstreamI like grc.com04:42
SunstreamYep04:43
=== svm_invi1tvs is now known as svm_invictvs
SunstreamI did a test on grc and I got a true Stealth passed :D04:43
SirLagzI use Java because I have to unfortunately04:43
SirLagzOtherwise I wouldn't touch it. ever.04:43
Sunstreamsame here SirLagz04:43
GorrothThankfully, Java is not something I have to use.04:43
Gorrothwait04:44
Gorrothnevermind04:44
GorrothI do Android dev work04:44
Gorrothbut04:44
GorrothI do it in C++04:44
SirLagzGorroth: lol04:44
evanvarvellin chrome go to settings the scroll to bottom then click advanced settings then under privacy click content settings then it is allow java script04:44
taoismhey, man, how can i use QQ in ubuntu?04:44
Gorrothsome of it is in java, but the game engine is C++, thankfully04:44
SirLagzGorroth: how do you do it in C++ ?04:44
GorrothThe android NDK04:44
SunstreamGorroth, Actually I like android04:44
SirLagzGorroth: ooh right.04:44
SirLagzGorroth: forgot about that :D04:44
Gorroth:-)04:44
Treveris there anyone here that could possible help a linux noob get linux installed on my desk top04:44
GorrothIt's like a stripped down linux system... very stripped down04:45
Gorroththe NDK portion, I mean04:45
SirLagzI've always wanted to play with the NDK, but never had a reason to04:45
SirLagzThe only apps I've made for Android, I've just used Java for04:45
Gorrothyeah04:45
BeldarTrever, What is it you don't understand?04:45
histoTrever: have you downloaded the iso?04:45
Gorrothwe ported our game engine to android.  it has been running on pc, mac, and ios, and now androidt oo04:46
Gorrothtook me and another guy 3 months to do it04:46
SirLagznice nice04:46
SirLagzGorroth: what game / game engine ?04:46
GorrothROBLOX04:46
Sunstreamactually, I did predict that Linux smart phones would take off.04:46
SunstreamAndroid is close to it04:46
SirLagzGorroth: ah k. haven't heard of that yet04:46
BeldarGorroth, This is support can you take that to #ubuntu-offtopic04:46
SunstreamI cannot waitr till ubuntu smartphpnes04:46
Sunstreamsmartphones*04:47
GorrothSirLagz: just an mmo sandbox game :-)  check it out sometime (doesn't run on linux though): http://www.roblox.com04:47
Gorrothalright, i'm going to go chillax for a while04:47
Sunstreamwhat in the world is this 'chillax' is it some cool nerd way of saying chilling04:48
SirLagzchill / relax04:48
Treveri 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 file04:48
histoTrever: do you have your desktop set to boot from usb?04:48
Sunstreamahh04:49
Treveryes04:49
SunstreamCHILl reLAX I get it04:49
SirLagzSunstream: bingo04:49
Sunstreamlike how Square and Enix merge named them (saracastically) Squeenix (due to they used to be rival rpg game makers)04:50
SirLagzlol04:50
SirLagzI didn't realise Square Enix used to be two different companies04:51
SirLagzlearn something new everyday04:51
SunstreamYou..... did not know... are you a teenager /young adult? (late 90s?)04:52
=== badon_ is now known as badon
Ben64#ubuntu-offtopic if you want to chat04:52
histo!ot04:52
ubottu#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
SirLagzBen64: sorry04:52
=== waverwaver is now known as waver
* waver food04:54
Sunstreamhistro sorry for the speedy ways I was talking uninstalling. But I hated epiphany. I fixed it04:55
Trever_ok im back so back to getting this desktop to take ubuntu04:56
Ben64Trever_: insert cd/dvd/usb, follow installer?04:57
Trever_tried that keep getting unable to find meldium containing live file system04:58
Trever_*medium04:59
=== megabitdragon is now known as megabit|away
bdbearhow can i fix it so acl settings are applied recursively04:59
histoTrever_: Is this the same usb you used to install the laptop?04:59
Trever_yes04:59
histoTrever_: how old is the desktop?04:59
histoTrever_: make sure the thumb drive you created still boots on the laptop, just to be sure something didn't happen to it.05:01
Trever_desktop is brand new i have had it since Jan.05:01
Trever_and i am currently rebuilding it to try a 32 bit version05:02
Trever_the usb05:02
histoTrever_: how much ram does the desktop have?05:02
Trever_8gb05:03
Trever_ddr3 160005:03
Trever_i know i shouldnt need the 32 bit version but im just trying it05:04
histoTrever_: a quick boot test in the laptop would be sufficient.05:04
Trever_alright il be back05:06
Trever_yep that worked on the laptop05:12
=== vivek is now known as Vivek_VC
Vivek_VCI am getting the following warning message http://paste.ubuntu.com/7724785/05:12
Sunstreamhow do I change the priority of my default browser higher using that update-alternative?05:12
Vivek_VCWhat's the fix to the issue ?05:13
=== abdul is now known as Guest59147
histoTrever_: interesting... Try booting something else from usb on the desktop I suppose. Or a different port05:15
histoSunstream: There is no priority. Its either the default or it's not05:15
histoVivek_VC: where are you getting it, and what are you trying to do when you receive it.05:16
gr33n7007hSunstream, update-alternatives --config x-www-browser05:16
Vivek_VChisto: I am getting this when I try an apt-get update05:16
histoVivek_VC: any ppa's enabled?05:17
Trever__i hate my network adaptor on this laptop i dc05:17
histoTrever__: what chipset?05:17
Trever__like my mobo?05:18
Ben64Vivek_VC: pastebin the full output of "sudo apt-get update"05:18
Sunstream it is ok I was wondering why one browser had a 85 priority and another had 4005:18
TheLegacehi guys im not sure what exactly to do i formatted my ubuntu setup05:19
Vivek_VChisto, How do I check if ppa's are enabled or not ?05:19
TheLegaceand i dont know how to bring my fakeraid setup05:19
bdbearVivek_VC: https://help.ubuntu.com/community/PackageManagerTroubleshootingProcedure05:19
TheLegacebring back*05:19
histoVivek_VC: do you know what a ppa is? have you ever used one?05:19
alexjr__hi guys, does anyone know how to fix the ugly ubuntu bootsplash after installing the prop. nvidia drivers?05:20
histoalexjr__: what's wrong with it?05:20
Vivek_VCBen64, http://paste.ubuntu.com/7724816/05:20
TheLegacewell hallelujah i figure it out05:21
Ben64Vivek_VC: that's not "apt-get update"...05:21
Vivek_VChisto, Yes, I think ppas are enabled. The puppet enterprise reposiotries are enabled.05:21
TheLegacesudo mdadm --assemble --scan05:21
causativeI'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 paren05:21
Vivek_VCBen64, it's upgrade05:21
causativeand sometimes I press once but I get a repeating string of parens05:21
Vivek_VCupdate and upgrade05:21
Ben64Vivek_VC: ok... but i asked for update?05:21
causativewhat can I do to diagnose this problem?05:21
Vivek_VCI don't have that text, it has scrolled up.05:22
Vivek_VCBen64, I don't have that text as it has scrolled up.05:22
Trever__the desktop is using the 990fxa-ud3 rev305:22
Ben64Vivek_VC: then use pastebinit or output to a file or use sprunge or something else05:22
bdbearVivek: nano /var/log/apt/term.log05:23
Vivek_VCbdbear, Thanks05:23
bdbearwhat happens if you do apt-get install puppetmaster-common ?05:23
alexjr__@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
bdbearyou 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:24
causativexev 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 press05:25
histoalexjr__: you could disable the splash. No idea why it'smessed up though.05:26
Vivek_VCBen64, bdbear, histo: http://paste.ubuntu.com/7724830/05:27
bdbearvivek_vc did you try to apt-get install puppetmaster-common ?05:27
Vivek_VChisto, ppa is a personal archive. Yes, I've used it.05:27
hunthey #ubuntu, my system appears to be idling at 3.5 GB of ram used... is this normal? should i be concerned?05:28
huntscrath taht 3.9 GiB05:28
huntout of 805:28
Ben64hunt: yes normal, no concern05:28
huntadditionally 2 GiB of my swap is being used05:28
Vivek_VCbdbear, http://paste.ubuntu.com/7724832/05:28
huntwhy is so much memory being used without any processes running?05:28
huntor with minimal running05:28
Vivek_VCIt says package is already installed.05:28
Ben64hunt: pastebin "free -m"05:29
histo!atemyram | hunt05:29
ubottuhunt: 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.html05:29
Vivek_VCI think while trying to uninstall Puppet enterprise manually some time back, I had deleted the files.05:29
huntBen64: http://paste.ubuntu.com/7724834/05:29
bdbearVivek_VC apt-get install --reinstall05:30
Ben64hunt: ok that looks strange05:30
bdbearif that works, then do it for all the 4 packages. and then try to run an apt-get upgrade.05:30
Trever__histo you have no idea?05:30
hunthisto: the second link is broken05:30
huntBen64: ... :'|05:30
huntBen64: how do i diagnose why so much is being used05:31
histoTrever__: I told you I would try a different bootable usb or different port05:31
histohunt: the first link will explain your issue/ lack there of05:31
hunthisto: Ben64 says my free -m looks strange though05:31
Vivek_VCBen64, bdbear, histo: Now puppet master common is installed.05:31
Ben64hunt: take a look at mine for comparison http://sprunge.us/gCeB05:31
hunthisto: yea i read it im just saying i think someone ought to fix the second link05:31
Vivek_VCbdbear, now puppet master-common has got installed.05:31
bdbearvivek_VC do that for the 3 other packages and then try to do an apt-get upgrade05:32
histoTrever__: try/test05:32
Vivek_VCShould I do the same for the other packages ?05:32
Vivek_VCok05:32
Trever__tried both also tried xubuntu and linux mint all have the same issue05:32
huntBen64: why does mine look strange? youre using even more memory then me05:32
Ben64hunt: its weird that 1) you have so little cached and 2) your swap is so used05:32
huntBen64: i see... why would there be very little cached?05:32
huntand yea i dont understand my swap usage05:32
huntBen64: could it just be relative to the total swap size?05:32
Ben64hunt: 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 to05:33
histo!who > alexjr__05:33
ubottualexjr__, please see my private message05:33
Ben64hunt: oh maybe, didn't notice that you had a 8GB swap05:33
huntBen64: yea i read the links but why would i under-cache05:33
Ben64hunt: have you used anything designed to free up memory05:33
huntBen64: nope, should i?05:33
Ben64hunt: no05:33
huntBen64: are you thinking those programs move it to the swap?05:34
Ben64hunt: they do often times, yes05:34
huntBen64: ah what a clever trick05:34
huntBen64: 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 time05:35
huntweird05:35
huntalso is there a reason people still use firefox besides fear of google?05:35
histohunt: was there pages with flash content?05:35
Ben64hunt: pastebin "ps aux | sort -b -k 4 | tail"05:35
hunti find the chrome environment mostly much more comfortable, and for some reason javascript always runs faster in chorme05:35
Vivek_VCbdbear, I have done that.05:35
hunthisto: the second one just 404sa05:35
bdbearvivek_VC did you manage to upgrade your system now?05:36
Vivek_VCYes.05:36
Vivek_VCI did not get those warning messages.05:36
bdbearcool, then it were some corrupted files. its most likely fixed.05:36
Vivek_VCbdbear, Yes, I did not get those warning messages.05:36
Trever__histo if responded to me i might have missed it i dc again sorry05:36
Vivek_VCbdbear, Thanks.05:36
bdbearvivek_VC yw05:37
histoTrever__: I was saying to try a different port or different bootable thumb drive.05:37
huntBen64: 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 memory05:37
bdbearanyone who know how you can force FilePermissionsACLs to automatically update subfolders?05:37
Ben64hunt: the command i gave you has the big memory users on the bottom05:37
huntBen64: right, weirdly firefox is listed below X despite only running at 1.6% MEM, while X is a hefty 30%05:38
huntsorry, 3.3%05:38
huntBen64: i think the sort algorithm is actually not comparing the floats05:38
huntBen64: and just doing the dictionary style sortiung05:39
histobdbear: They should be by default. What is happening?05:40
causativeit seems that X11 forwarding is much faster for text programs like GUI emacs than vnc is05:41
causativebut much slower for graphical programs like a browser05:41
histobdbear: what are you trying to accomplish05:42
bdbearhisto: Apache, userdir. file permissions.05:42
histobdbear: for which user or group?05:42
histobdbear: do you have acl turned on ?05:44
bdbearyes05:44
histobdbear: mount | grep acl05:44
bdbearno its not turned on05:45
histobdbear: well kind of hard to use if it's not enabled05:45
histobdbear: edit your fstab and add acl as a mount option05:45
bdbearhisto:  I did that, but i think i did something wrong there.05:46
histobdbear: what do you mean?05:46
bdbearhisto: mount: /home not mounted or bad option05:47
bdbearhisto: when doing sudo mount -o remount /home05:47
histobdbear: pastebin your fstab05:47
bdbearhisto: http://pastebin.com/4JwsUgS305:49
Ben64so many /homes05:49
bdbearone are removed.05:49
histowth05:50
bdbear?05:50
histobdbear: why do you have two home lines05:50
histobdbear: pastebin the output of mount05:50
Ben64why did you make up a uuid05:50
bdbeartheres only one.05:50
Ben64thats not your uuid05:50
Ben64do you even have a home partition?05:50
Ben64the suspense is killing me, i can't wait for the explanation05:52
bdbearben64: 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
poweranyone know what explorer can i use with ubuntu...????05:53
Ben64bdbear: i know you were following that, because you COPIED THE UUID!05:54
bdbearpower: http://www.tuxarena.com/2011/06/20-file-managers-for-ubuntu/ that might help05:54
histobdbear: remove the home line completely from your fstab05:54
bdbearhisto: and?05:54
histobdbear: Why are you trying to impliment acl?05:54
poweranyone know what explorer can i use with ubuntu...????05:54
histopower: explorer as in internet explorer?05:55
Guido1hello, 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
poweranyone speak spanish?05:55
=== BettySlocombe is now known as Loshki
histo!es | power05:55
ubottupower: 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:55
histobdbear: please stop and explain what exactly you are trying to accomplish before you go any further and bork your system.05:56
powerthanks...!05:56
=== vivek is now known as Guest39544
power_ necesito saber si alguien conoce de un navegador de internet que se acople con ubuntu, algun navegar mejor firefox ?06:00
bdbearhisto: 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
histopower_: /join #ubuntu-es06:00
histobdbear: What do you mean you can't wx ?06:01
histobdbear: chmod06:01
histobdbear: and setup apache properly06:01
Ben64apache doesn't need write access06:01
power_i need to know if anyone know any navegator better than firefox for linux ubutu???06:01
bdbearno but php does06:02
histobdbear: you want the users to have there own site in their home directories?06:02
bdbearYea06:02
Ben64power_: there is no "better", use what you like06:02
hateball!best | power_06:02
histopower_: you can install midori, chrome, safari, etc.... there are many options06:02
hateballugh... so many factoids removed -_-06:02
histoyeah who pillaged ubottu ?06:03
=== Guest39544 is now known as vivek-
Ben64the ops06:03
power_what is the best internet navegator for linux ubuntu?06:03
Ben64power_: again, there is no "best"... use what you want06:04
histobdbear: is this what you are tyring to impliment https://httpd.apache.org/docs/2.2/howto/public_html.html06:04
histobdbear: sorry this is more up-to-date http://httpd.apache.org/docs/2.4/howto/public_html.html06:05
histopower_: firefox06:07
bdbearhisto: yea. userdir is implemented. but php won't work properly due to file permissions06:07
power_how can i acelerate my internet?06:07
Ben64power_: pay for faster internet06:07
bdbearpower_: have an good computer, pay more to your isp.06:07
power_ok06:08
=== vivek-_ is now known as vivek-
histobdbear: What happens when they try and use php?06:08
bdbearhisto: it can be read, but files are not allowed to be altered.06:09
histobdbear: so the php runs or it just tries to download the php file when browsing there?06:10
histobdbear: in your php5.conf look for php_admin_value engine Off06:10
histoWhy do I have to play 50 questions with everyone to find out what their Real problem is06:11
histobdbear: check this page out http://devplant.net/2010/05/04/linux-php-not-working-in-userdir-public_html/06:11
bdbearhehe06:11
histoi'm going to stuff my pie hole and watch a show be back later06:12
bdbeardont think that is a solution to my problem but ill give it a try;)06:12
user__user__06:13
=== user__ is now known as nastyNVC
CrypticBytedoes 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 fights06:14
nastyNVCregistration06:14
bdbearhisto: 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:16
Braden`Hello06:19
=== lipsin_ is now known as lipsin
Braden`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:21
Guido1And what happand with the program menu in the bottom from xubuntu 12.04 in 14.04?06:26
Guido1hello, 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:26
RoryBraden`: To clarify, this is when you try to access a resource on the machine you updated?06:33
Braden`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:39
=== CyberJacob|Away is now known as CyberJacob
leeyaahello07:02
leeyaahow to tell apt not to install some dependancies07:02
ki7mtleeyaa, with dpkg --set-selections, something like: echo "package hold" | sudo dpkg --set-selections07:04
ki7mtleeyaa, or use apt itself: sudo apt-mark hold <package-name>07:05
ben____exit07:05
ben____exit07:06
=== digifiv5e is now known as Guest67852
=== Zerant_ is now known as Zerant
=== dk_ is now known as Guest57307
Braden`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:13
croniumthat sounds like a server side error braden are you sure that every website says that?07:15
croniumare you runnnig a local web server?07:16
ramesh_hi07:25
ramesh_this is my last refuge07:25
leeyaaki7mt: hm, so i can mark which dependancies i dont want to install07:25
ramesh_I'm using Ubuntu 14.04 and I installed gnome on it07:25
ramesh_but then I decided to switch back to Unity07:25
ramesh_and uninstalled gnome07:26
ramesh_but now the interface looks neither like gnome nor like unity.07:26
ramesh_Right clicking on the desktop doesn't work07:26
ramesh_what can I do about this?07:26
rameshthecodersomebody please help me about it07:28
Energy_lol07:29
rameshthecoder?07:30
Beldarrameshthecoder, try sudo apt-get --reinstall ubuntu-desktop07:31
=== frobware- is now known as frobware
atomiceventsHi Everyone. Im am trying to install Ubuntu 14.4, on a machine that was previously running windows 7.07:42
bdbearok.07:43
atomiceventseverytime I get to the welcome screen, and then you get to choose a clen install or install alongside widows07:43
atomiceventseither choice i make i end up getting the blingking underscore of death07:43
Beldaratomicevents, what is the "blingking underscore of death"?07:44
bdbeargoogle it07:44
Beldarbdbear, We don;t say google it here.07:44
atomiceventsBlack screen, blinking underscore, no action on the dvd and PC not reading07:45
Beldaratomicevents, Have you checked the sum of the install media?07:45
atomiceventsBeldar, no. Can you advise how to do that?07:46
Beldaratomicevents, Are you doing the install from the desktop?07:46
atomiceventsNo, i am trying to install after the bios, directly from the disc i have burned07:46
Linot有会中文的吗?07:46
atomiceventsCan you install directly from the desktop ?07:47
Beldar!md5sum | atomicevents07:47
ubottuatomicevents: 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_Windows07:47
bcvery!cn | Linot07:47
ubottuLinot: 如欲獲得中文的協助,請輸入 /join #ubuntu-cn 或 /join #ubuntu-tw07:47
Beldaratomicevents, Besides the sum check try to boot to the desktop, you might just need a safex boot07:47
bdbearAtomicevents, are you going to keep windows installed. or are you going to only have ubuntu installed on that computer?07:48
atomiceventshey bdbear. I wanted to do a clean Ubuntu installation07:49
diverdudeHow do i disable the ALT shortcut to the unity HUD popup thing? Its insanely annoying07:50
bdbearatomicevents: are you able to boot into ubuntu using an liveCD?07:51
Beldaratomicevents> Can you install directly from the desktop ? Yes07:52
Linot /join #ubuntu-tw07:52
whiskers75Hello, I'm trying to setup ipv6 on Ubuntu.07:52
atomiceventsi am booting into windows on that machine and will try to launch the cd from the desktop07:52
whiskers75I have another debian system with working ipv6, and I'm wondering how I can share this to my Ubuntu laptop.07:53
j6jujyhi07:53
Ben64whiskers75: why share it?07:53
whiskers75Ben64: that other system's my headless Raspberry Pi07:53
whiskers75I've got an entire /64 from Hurricane Electric07:54
Ben64i don't see why that matters? get another /64 ?07:54
=== CatKiller_ is now known as CatKiller
whiskers75no, you can't07:55
whiskers75these two machines are in the same network07:55
whiskers75and you can't use an ipv6 tunnel from two machines with the same IP07:55
Ben64then have the gateway use the tunnel and hand out addresses07:56
whiskers75Ben64: my router isn't ipv6-capable07:57
Ben64get one that is?07:57
bdbearwhiskers75, you can flash it and make it IPv6-cabable.07:57
whiskers75bdbear: no, I can't07:58
whiskers75it's a crappy router07:58
diverdudeHow do i disable the ALT shortcut to the unity HUD popup thing? Its insanely annoying07:58
bdbearwhat router do you have?07:58
whiskers75can't we just setup radvd or something on the raspberry pi?07:58
Ben64that you'd have to ask in #raspberrypi07:59
whiskers75mk07:59
Beldardiverdude, http://askubuntu.com/questions/122209/how-do-i-modify-or-disable-the-huds-use-of-the-alt-key07:59
whiskers75Ben64: the reason I thought it's relevant to #ubuntu is I have dhcpd running on the pi07:59
whiskers75I just can't connect to it from Ubuntu07:59
histobdbear: What are the perms of your public_html directories?08:02
Ben64whiskers75: probably because you have dhcpd running on your router08:02
histobdbear: make sure the directory is 75508:03
bdbearhisto: its 77508:06
histobdbear: should be able to write to it then. php should be trying to write as the user08:06
bdbearhisto thats not the issue, the issue are when i upload files and folders to the dir.08:07
bdbearhisto: or create a directory using mkdir08:07
histobdbear: okay earlier you said hte issue is with php not being able to write. Now you can't mkdir?08:07
Braden`Hello08:08
abhihello08:08
abhii need help in sasss08:08
abhisass08:08
Braden`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:08
Energy_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
bcvery!ot | Energy_08:09
ubottuEnergy_: #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!08:09
=== tcpman is now known as Guest83577
histobdbear: can you clarify and ask you question on one line with details?08:10
bdbearhisto: yea, well php can write to the files as long as I update the directories / files manually.08:10
histobdbear: What?08:10
histo!details | bdbear08:11
ubottubdbear: 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
Braden`Mine is on one line and detailed08:11
bcvery!patience | Braden`, you may want to check in #ubuntu-server while you wait08:12
ubottuBraden`, 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:12
Ben64Braden`: 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/<other stuff here>08:13
=== nexus is now known as Guest99148
histoBen64: is bdbear making any sense to you?  Or is it just me?08:13
Ben64bdbear: i'm trying to ignore that because bad server config makes me cringe08:13
bdbearbe64: i know the feeling.08:14
Ben64whoops, meant to ping histo08:14
bdbearhaha08:14
Energy_I think that night I was in israel disconnect the machine to a wicked woman.08:17
histobdbear: What do you mean php can write to the files as long as you " update the directories / files manually"  ???08:17
bdbearhisto: Well, if you create an file in your home directory as an user in ubuntu. Who owns the file?08:18
histobdbear: the user08:18
bdbearhisto: and if apache wants to alter the file, who does it try to alter the file as?08:18
histobdbear: should be the user or www-data08:19
diverdudeBeldar, thank you08:19
Braden`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
Ben64Braden`: 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/<other stuff here>08:19
Beldardiverdude, no problem. ;)08:19
histolol08:19
streulmamy macbook 2006 keeps randomly hibernating on Ubuntu08:19
zyannew to IRC. I've been on a couple before. do all clients boot you if you don't talk?08:20
diverdudeBeldar, weird to me why they would choose Alt as default shortcut for that :)08:20
streulmais Ubuntu 12.04.4 LTS in those days able to use ?08:20
bdbearhisto: 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
histobdbear: k08:22
histobdbear: do you need help chown'ng ?08:22
bdbearhisto: maby. What i want are for the permissions to be recursive, when i create new files or folders inside an folder.08:23
histobdbear: chown bdbear:www-data /home/bdbear/public_html08:23
leolyhow to install android adb08:24
leolyhelp me08:24
CRPLHello. Is there anybody who can help me with Ubuntu for Devices (Ubuntu Phone more exactly) ?08:24
leolyUbuntu phone?08:24
bcvery!phone | CRPL08:25
ubottuCRPL: Information about the Ubuntu Touch platform for Phone and Tablet is available here https://wiki.ubuntu.com/Touch . Support and discussion in #ubuntu-touch08:25
leolyWhere can i get it?08:25
histoleoly: https://help.ubuntu.com/community/AndroidSDK08:25
CRPLok, thank you bcvery08:25
histobdbear: substitute bdbear for your actual user08:25
=== TakumoKatekari is now known as Takumo
=== sandy is now known as Guest74646
histobdbear: your questions might be better answered in the apache room if you somehow manage to phrase together a single readable question.08:27
Braden`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
leolyjava desktop08:28
bdbearhisto: 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:28
histobdbear: yes their umask08:29
Ben64Braden`: which file did you edit08:30
Braden`Ben64:  /etc/php5/fpm/php-fpm.conf08:31
Ben64Braden`: yeah thats not the right one, it should be www.conf08:32
bdbearhisto: 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
Ben64Braden`: not sure of the directory though, i don't have the same setup as you08:32
Ben64bdbear: instead of doing that, you should do things the proper way08:32
bdbearben64. whats the proper way then?08:33
Braden`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 worked08:33
Braden`After the system is working, I can work on the proper fix08:33
Ben64bdbear: histo has been trying to tell you for ages08:33
Braden`My next alternative is to set a 5 second cron job to set the perm08:34
Ben64Braden`: well good luck with that then08:34
=== YuviPanda|zzz is now known as YuviPanda
Braden`Ben64:  Could you tell me how to manipulate the upstart script please?08:34
Ben64i'm trying to get you to do it the right way, not sure why there is so much pushback08:34
=== adellam_ is now known as adellam
Braden`Because of time.  If it is working, I will be happy to modify it to do the correct way08:35
Braden`This is time sensitive08:35
Ben64then edit the file, add those two(2!) lines and be done08:35
Braden`I did, it didn't work :/08:35
=== Vampire0_ is now known as Vampire0
Ben64you didn't edit the right file, as i already said.08:35
Braden`Hmm08:35
Braden`What is it on your system?08:36
Braden`I might have the same but located elsewhere08:36
Ben64i don't have it, as i said its not the same setup08:36
Braden`Ah08:36
Braden`You aren't using fpm08:36
Ben64you should slow down and read more08:36
LinoT有人吗08:37
Braden`闪么? (what)08:40
aeon-ltd!cn08:40
ubottu如欲獲得中文的協助,請輸入 /join #ubuntu-cn 或 /join #ubuntu-tw08:40
Braden`There's the link.  Didn't know the trigger08:41
lblumeBraden`: It's 什么, pinyin shenme, too :-)08:44
histobdbear: this is not a difficult process... http://ubuntuserverguide.com/2012/10/how-to-enable-and-configure-apache2-userdir-module-in-ubuntu-server-12-04.html08:44
bdbearHisto: 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
Ben64define "work"08:47
bdbearyea was going to;)08:47
* histo is going to scream08:48
Braden`Ben64:  The cron fix worked.  Now I am going to check into the config entry you were mentioning08:48
Braden`Ben64:  I do appreciate the assistance by the way08:48
Braden`I apologize for being uppity08:48
bdbear<- me to ;)08:48
anton02catalyst control center from AMD attempts to enter su mode instead of sudo and hence fails to start. what should i do?08:48
histoanton02: there is no su mode.08:49
Ben64Braden`: what version of ubuntu08:50
anton02hence the hence in my sentence08:50
histoanton02: su donkey -c somecommand  will run somecommand as user donkey08:50
anton02just ran sudo amdcccle08:50
Braden`Ben64:  14.0408:50
histoanton02: why?08:50
f3lixGoing slightly crazy here trying to take down a subprocess in a bash script on exit.08:51
Braden`Ben64:  This is an upgrade from a 12.04 install08:51
f3lixAnyone with knowledge on that?08:51
Ben64Braden`: well i just got a 14.04 vm running, and its owned by www-data already, no modifications necessary08:52
histof3lix: which subprocess?08:53
noOnehey ev108:53
Braden`Ben64:  That was the way it was here prior to the last apt-get upgrade08:53
histoBraden`: any ppa's in use?08:53
f3lixIt's a watchdog used to kill the script after a given amount of time:08:53
f3lixSCRIPT_PID=$$08:53
f3lix(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
noOnecan someone tell me how to fix my sound problem08:53
histo!paste | f3lix08:53
f3lixtrap "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 EXIT08:53
ubottuf3lix: 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
f3lixsorry08:53
Braden`ppa's?08:54
Ben64Braden`: the listen owner and group are located at....  /etc/php5/fpm/pool.d/www.conf08:54
Braden`Ben64:  Thank you!08:54
histof3lix: ask in #bash08:54
f3lixhisto: http://paste.ubuntu.com/7725453/08:54
f3lixOh, didn't know there was one, thanks :)08:54
Braden`Yep, that fixed it08:55
Braden`I will remove the cron job now08:55
Braden`Thank you for the assistance.  I, again, apologize for earlier08:55
Ben64Braden`: no problem08:56
Ben64btw, don't try running 14.04 in a vm with 512MB of ram and 12MB video card08:56
histolol08:57
histoBen64: full blown desktop?08:57
histoouch08:57
Ben64yeah...08:57
histoBen64: yeah unity is a little fat08:57
Ben64had to up to 2048MB and 128MB to get unity running smoothly08:57
vakhi all09:00
vaki am re-installing Ubuntu 14 without formating the partition. Will the /home/myusername directory remain with its content?09:01
Beldarvak, Why would you not install this way?09:01
vaki do understand, that some ".*" files will be rewritten, but what about Documents, Desktop, etc?09:02
vakBeldar: what way?..09:02
Ben64vak: do you have a separate /home partition?09:02
Beldarvak, I meant why would you install that way09:02
rahul_why i am not having rename package in my Repo09:02
vakBen64: no, /home resides in / partition09:02
rahul_and also i am getting  Some index files failed to download. They have been ignored, or old ones used instead.09:02
Ben64vak: then that doesn't sound like a great idea09:03
rahul_after update09:03
Ben64rahul_: pastebin what you're talking about09:03
Beldarrahul_, rename package?09:04
rahul_yes09:04
vakBeldar: my installation became unbootable because of RAID/mdadm. I tried to fix it, giving up now. But data in /home/myusername is needed09:04
rahul_i tried to install apt-get install rename09:04
Beldarrahul_, The ? means what is that?09:04
Ben64rahul_: rename is not a package09:05
Beldarvak, You can separate home09:05
histo!separatehome | vak09:05
ubottuvak: 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/Moving09:05
rahul_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:05
YatharthROCKI 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
Ben64rahul_: well thats not in ubuntu09:06
Beldarvak, https://help.ubuntu.com/community/Partitioning/Home/Moving As suggested the reinstall way is not a good idea.09:06
YatharthROCKHow can I get them back into their normal state?09:06
YatharthROCKThey don't show up in the app switcher.09:06
vakBeldar: but why not good?..09:06
Beldarvak, Ubuntu is not designed to be used this way.09:07
YatharthROCKSeriously, I'm freaking out not being able to interact with the windows at all09:07
vakBeldar: i am 15 years with Linuxes... just am trying to understand why it is not good.09:08
YatharthROCKA Chrome tab management extension still see the windows.09:08
histovak: you are going to reinstall to / without formatting after 15 years with linux?  good luck with that.09:08
SachiruBecause your /home is inside /?09:08
Beldarvak, Honestly 15 years should tell you why,....09:09
SachiruAnd you have a single partition, meaning if you wipe / then /home will go away with it?09:09
histovak: what do you think is going to happen to all the files that are in / now?09:09
SachiruI find it difficult to believe that you have 15 years of experience with linux. 15 minutes is more believable.09:09
vakhisto: 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
YatharthROCKGuys, 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:10
SachiruWe're talking about the fact that your /home is inside your / partition.09:11
SachiruAnd that wiping / will wipe out /home as well.09:11
SachiruSince your (puported) goal is to recover /home, then what you're doing is counterintuitive.09:11
histovak: just move /home to a separate partition and leave it there. Youc an format / and use your new /home partition without formatting.09:12
YatharthROCKSachiru histo Beldar: Sorry for mentioning you, but do you have any idea how I could unshade those windows?09:12
vakSachiru: 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
YatharthROCKAck, it seems to be an open bug: https://bugs.launchpad.net/ubuntu/+source/unity/+bug/131344609:13
ubottuUbuntu bug 985430 in compiz (Ubuntu) "duplicate for #1313446 Can't unshade windows" [Medium,Triaged]09:13
=== Sachiru is now known as Guest23675
histovak: What?09:14
=== Sachiru_ is now known as Sachiru
YatharthROCKSome idiot marked the bug a a dupe of a different issue.09:15
* YatharthROCK sighs09:15
histovak: what is your question?09:15
abhisass in not working09:17
vakhisto: i've figured out that re-install without formating is not a good idea, but am trying to figure out why exactly...09:17
Sachiru@histo: He lost /home, which resides on /09:17
histoSachiru: he didn't lose /home09:17
SachiruAnd wants to reinstall ubuntu because somehow that will make him get /home back09:17
vakhisto: i see only one reason -- plenty of potentially lost files (orfans) not refered in repo anymore09:18
histovak: I'd venture to believe the installer won't even let you do that.09:18
vakSachiru: i didn't lost home. at least yet)))09:18
vakhisto: 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:19
abhisass in not working.......when i installing all the ruby gems after that i used compass watch but i am facing so much problem09:20
vakSachiru: 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 day09:21
ddvhello 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:23
histovak: https://help.ubuntu.com/community/UbuntuReinstallation09:24
vakhisto: so, it should work?...09:25
histovak: apparently but they also recommend backing up your data.09:25
vakhisto: that's understood...09:26
histovak: I would imagine that would create all sorts of config hell in /etc, and wonder how they are handling the overwriting of files.09:26
hateballddv: did you do "apt-get dist-upgrade" ?09:27
ddvhateball: yes09:27
hyper320hi, i installed 14.04 on my HDD and put it into my laptop but it doenst start09:27
k1lddv: PPA belong into the sources.list.d folder. add them with add-apt-repository09:27
ddvk1l: yeah I did that also09:27
vakhisto: iirr, no questions, they'll be just overwritten and i'm ok with this09:28
histovak: iirr?09:28
hateballddv: I just checked some random packages there, and there doesnt appear to even be any for lucid?09:28
k1lddv: you doubled it or only with add-apt-...09:28
vakhisto: if i remember right09:28
histovak: k09:28
ddvk1l: no I tried both methods, just adding it to sources.list and add-apt09:28
ddvhateball: that could be the problem, this is a very old server09:29
k1lddv: see https://launchpad.net/~ondrej/+archive/php5 no lucid packages09:29
hyper320hi, i installed 14.04 on my HDD and put it into my laptop but it doenst start, i can access GRUB2 though09:29
ddvk1l: really: if I go to http://ppa.launchpad.net/ondrej/php5/ubuntu/dists/ I can browse to the lucid directory09:29
=== nekyian is now known as nekyian_
hyper320can somebody help me?09:30
hateballddv: well, check /pool, no packages there09:30
ddvhateball: oh ok09:30
hateballhyper320: 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
ddvhateball: so there are no packages for lucid then?09:31
=== n is now known as Guest44056
JediMasterhi 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:34
ddvhateball: there are packages in the pool dir though09:35
=== root is now known as Guest28532
hateballddv: I can't see any for lucid09:35
ddvhateball: oh09:35
Guest28532o09:35
karab44hellp09:36
karab44hello09:36
karab44:)09:36
karab44what's interesting in "Canonical Partners" software ppa? I have it unchecked by default09:36
hyper320hateball, no really09:39
=== dannixon is now known as Guest38753
hateballhyper320: By your description it sounds like you installed Ubuntu onto this harddrive (external?) on another machine and put in this laptop, correct?09:41
hyper320yes, i installed it when it was in my PC, and put it into the laptop (internal)09:42
hyper320i cant start a LiveCD or LiveUSB from my laptop because the DVD drive is broken and it doenst support USB legecy09:42
hyper320how can i change or check the UUID?09:44
jb_what uuid ?09:44
hyper320for my HDD i put in my laptop09:45
hyper320can i change it in the GRUB2 commandline?09:45
jb_you can use a different method for example by label09:46
jb_vim /etc/grub/grub.cfg09:46
hyper320can i access this trough grub?09:46
hyper320how can i check my UUID with grub2?09:53
hyper320any help?09:57
babinlonston1hyper320: blkid09:58
babinlonston1Hi 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 it09:58
hacktus0i 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
hacktus0how can i do ?09:59
hyper320babinlonston1 what do you mean?09:59
bazhang!blkid | hyper32010:01
ubottuhyper320: 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)10:01
=== WhiteWolf|AWAY is now known as White_Wolf
zyanI 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
babinlonston1hyper320: blkid /dev/sdx replace x with your device10:02
hyper320i think its sdc because it was on the 3rd SATA10:03
hyper320i installed ubuntu with the other 2 SATA's unplugged on the 3rd HDD10:04
hyper320i only can access GRUB2 on my laptop, i would have to put it into this PC again, but there it works fine...10:04
hyper320@lunch10:07
bahmanhi to all10:09
zyanhello10:09
bahmanhow are you10:10
bahman?10:10
zyangood. hot, but good.10:10
bahmanplease ASL10:11
zyanI will only give A and S. 22, M.10:11
bazhang!ot | bahman10:11
ubottubahman: #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:11
morkis this ubuntu assistance?10:12
morki have a massive problem with my ubuntu10:13
morkhello10:14
=== bahman is now known as Kurdh4ckt34m
morkhello10:15
morkany ubuntu experts here?10:15
bazhang!ask10:15
ubottuPlease 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 !patience10:15
morkI downloaded a game app "Einstein" from ubuntu software center, it totally ruined my screen, adjusted all the icon sizes and everything10:16
morknow when my system boots the monitor has large icons and is thinner to a differnent soze, but the splash screen is normal10:17
morkhow do i get out of this xchat rubbish?10:19
k1l/quit10:19
=== pravinmishra_ is now known as pravinmishra
=== klemppu^ is now known as klemppu
=== sburjan` is now known as sburjan
=== Thor^^ is now known as Thor
morkubuntu10:34
morkubuntu experts10:34
george3.10:36
hyper320is there a way to fix the UUID without a LiveCD?10:39
hyper320or can i change it with gparted to sda even with the GPT table?10:40
=== sins-_q is now known as sins-
hyper320any help?10:46
peterpan22hey guysss10:49
bdbearhello10:51
peterpan22did you see this amazing stuff here? its just awesome. best blog i have seen in a long time10:51
peterpan22http://basicandsense.blogspot.com10:51
=== g_ is now known as Guest88496
k1lpeterpan22: no advertisment in here, please. this is for technical support only. you can join #ubuntu-offtopic for chitchat10:55
hateballhyper320: you cant change the UUID of the partition, but you can edit GRUB10:56
hyper320how?10:57
hateballhyper320: if you can mount the drive in another machine you can edit /boot/grub/grub.cfg to use the correct UUID10:58
hateballhyper320: you can also edit the GRUB boot parameter at runtime, to see if it wants to boot10:58
hateballhyper320: ... also, the wrong UUID might be in /etc/fstab as well, so you should check there10:59
hyper320what will be the right UUID?10:59
hyper320i ment what will be the right grub settings?11:00
hateballhyper320: Plug in the drive in some machine, run "sudo blkid"11:00
peterpan22this is just lovely! just amazing!!!! http://basicandsense.blogspot.com/p/photos.html11:01
DJonespeterpan22: Please do  not spam11:01
hyper320from a LiveCD? or with normal Ubuntu shell?11:01
hateballhyper320: If you edit the boot-line it should be pretty obvious. the config has entries like "root=UUID=uid-goes-here-123"11:02
mehmet_hi11:03
hyper320ok i try it, back in 20 min11:04
ogleNyash myash ?11:10
kingverma`hello11:12
kingverma`is this achannel for ubuntu help?11:12
DJoneskingverma`: Yes it is11:12
kingverma`i want to install ubuntu in my laptop but it turns black screen during installation11:13
kingverma`nomo option already tried plz help11:13
daggeranyone up?11:15
karab44hello11:15
daggerhey.11:15
kingverma`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 badly11:16
karab44I have problem when I created shortcut for unity launcher and app crashes. It doesn't crash when launching directly11:16
kingverma`any one solve this problem?11:18
kingverma`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 badly11:19
hateballkingverma`: you can edit the boot option and remove the words "quiet splash" and see if that helps11:20
dkorrashi 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 error11:20
Blinky_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
k1l!nomodeset | kingverma`11:22
ubottukingverma`: 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 parameter11:22
Blinky_Addon: I get Network error: Connection refused11:23
bdbearblinky_: what does the log say?11:26
Blinky_what log mate?11:26
Blinky_I am very to this11:27
bdbearBlinku_: http://en.wikibooks.org/wiki/OpenSSH/Logging11:27
Blinky_bdbear: The log file located /var/log/auth.log shows nothing for the login attempts made by putty11:32
hyper320hateball i'm now on a liveCD how can i edit the line of the grub.conf?11:32
bdbearblinky: do you have a firewall in betwene?11:33
hateballhyper320: 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 do11:33
Blinky_bdbear: no I have the windows pc on the same internal network.  The PC is cabled and the netbook is wireless.11:33
hateballhyper320: Find the file /boot/grub/grub.cfg, edit the root=UUID=uid-goes-here-123 stuff11:34
hateball!reinstallgrub11:34
hateball:/11:34
bdbearBlinky_: are your wireless network isolated from your wired network. (its an option on some routers)11:34
hateball!fixgrub11:34
ubottuGRUB2 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/Grub211:34
Blinky_no both are together11:34
hateballhyper320: This might be helpful as well, for reinstalling and regenerating grub.cfg ^11:35
Blinky_I can exchange files between the two fine11:35
hateballhyper320: But doing it manually as I suggested works fine enough to get a booting system at least11:35
hateballhyper320: oh and check the /etc/fstab so it points the mountpoints to the correct UUID as well11:35
bdbearok, try to up the loglevel on openssh. to se if you can get more logging info.11:35
hyper320there is no such file11:35
Blinky_ok just looking to see how to do that11:36
bdbearblinky_: https://help.ubuntu.com/community/SSH/OpenSSH/Configuring11:37
bdbearblinky_: what does ps -A | grep sshd output?11:38
Blinky_5028 ?    00:00:00 sshd11:40
bdbearand sudo ss -lnp | grep sshd11:40
Blinky_tcp LISTEN  0  128  *:22  *:*  users:(("sshd",5028,3))11:41
Blinky_tcp LISTEN  0  128  :::22  :::*  users:(("sshd",5028,4))11:42
hyper320.trying now to install boot-repair11:44
cristobalgreetings anyone knows how to restore the default source.list  or ppas ?11:44
bdbearBlinky_ and you were able to connect locally, ssh -v localhost ?11:44
cristobalppa´s11:44
bdbearcristobal: http://askubuntu.com/questions/124017/how-do-i-restore-the-default-repositories11:45
Blinky_bdbear: yeah can connect locally, I have just changed the logging to VERBOSE from INFO and still nothing in the log11:45
bdbearblinky_ iptables ufw ?11:45
cristobalthanks bdbear11:45
Blinky_bdbear: iptables ufw? do you have the command I need for that please?11:47
Blinky_I have iptables -L -n before, result: ACCEPT tcp -- 0.0.0.0/0 0.0.0.0/0 tcp dpt:2211:48
Blinky_thats is in the chain INPUT11:48
=== [AFK]def_anoch is now known as def_anoch
bdbearblinky_: nmap localhost -p 1-6553511:48
bdbear (need to have nmap installed apt-get install nmap)11:48
Blinky_bdbear: 22/tcp open ssh and 631/tcp open ipp11:50
bdbearblinky_: have you  tried to telnet port 22 ?11:51
bdbearBlinky_: 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 level11:52
Blinky_just tried, putty failed with connection refused and android cant do it either (just for testing purposes)11:52
Blinky_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
Blinky_bdbear: I have been transferring files between the two for a few hours now without issue.11:54
Blinky_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
cristobalany way to re-install this other than one by one ? the problem persist so it was not the source list i guess11:55
cristobalThe following packages have unmet dependencies:11:55
cristobalmame: Depends: libc6 (>= 2.14) but 2.19-0ubuntu6 is to be installed11:55
cristobal      Depends: libexpat1 (>= 2.0.1) but 2.1.0-4ubuntu1 is to be installed11:55
cristobal      Depends: libflac8 (>= 1.3.0) but 1.3.0-2 is to be installed11:55
cristobal      Depends: libfontconfig1 (>= 2.9.0) but 2.11.0-0ubuntu4.1 is to be installed11:55
cristobal      Depends: libgcc1 (>= 1:4.1.1) but 1:4.9-20140406-0ubuntu1 is to be installed11:56
cristobal      Depends: libjpeg8 (>= 8c) but 8c-2ubuntu8 is to be installed11:56
cristobal      Depends: libqtcore4 (>= 4:4.7.0~beta1) but 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 is to be installed11:56
cristobal      Depends: libqtgui4 (>= 4:4.7.0~beta1) but 4:4.8.5+git192-g085f851+dfsg-2ubuntu4 is to be installed11:56
bcvery!paste | cristobal11:56
ubottucristobal: 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
cristobal      Depends: libsdl1.2debian (>= 1.2.11) but 1.2.15-8ubuntu1.1 is to be installed11:56
cristobal      Depends: libstdc++6 (>= 4.6) but 4.8.2-19ubuntu1 is to be installed11:56
cristobal      Depends: zlib1g (>= 1:1.1.4) but 1:1.2.8.dfsg-1ubuntu1 is to be installed11:56
cristobal      Depends: mess-data (= 0.152-0ubuntu2) but 0.153-0ubuntu1~ppa5~trusty1 is to be installed11:56
bdbearblinky_: try to nano /etc/ssh/sshd_config and change the LogLevel to VERBOSE11:56
Blinky_I have already done that mate11:56
Blinky_still not getting anything from the auth.log11:57
k1lcristobal: first use a pastbin. then make sure that no PPAs make that trouble11:57
cristobaldont know how to verify that .... gives me the problem when try to install anything from the software center11:57
Blinky_bdbear: There is nothing in that log file regarding any of the attempts to connect via ssh from the pc to the netbook11:58
bdbearBlinky_: netstat --listen does you se tcp6       0      0 [::]:ssh                [::]:*                  LISTEN there?11:59
Blinky_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 sorry12:00
cristobalwill use synaptic package manager to re install them :S12:00
Blinky_now just need to get it to hold the static IP12:00
bdbearblinky_: you can bind the IP adress to the mac adress in your router.12:01
Blinky_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:02
bdbearBlinky_: Personally i prefer to set up all network configurations on my router/gateway. and then let all the clients have DHCP enabled.12:03
Blinky_Not a bad shout. you up for a different problem? you got time?12:03
bdbearBlinky_: sure12:03
Blinky_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.12:05
=== killer` is now known as casale
=== casale is now known as killer
=== killer is now known as killer`
bdbearBlinky_: nano /etc/network/interfaces auto wlan012:08
bdbeariface wlan0 inet dhcp (or inet static and define the static info)12:08
Blinky_so just add the lines "auto wlan0" and "iface wlan0 inet dhcp" ?12:10
bdbearBlinky_: 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 well12:11
bdbearblinky_: https://help.ubuntu.com/10.04/serverguide/network-configuration.html should cover it.12:12
bdbearblinky_: 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=312:13
=== def_anoch is now known as [AFK]def_anoch
=== Abhijit is now known as Guest46254
Blinky_bdbear: Great mate, just rebooting now to test.  Cheers for the link also12:14
=== Guest46254 is now known as abhijit_
bdbearBlinky_: a link can say more than a thousand words;) happy to help.12:14
=== abhijit_ is now known as Abhijit
=== kikko_ is now known as TheKikko
=== dave is now known as Guest22378
Blinky_brb12:22
makarahi. 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:33
arcskyhi 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:38
jdmfI 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:40
cristobalguys i try sudo apt-get install packagename but still do not work http://pastebin.com/53AH94Pr12:41
bdbeararcsky: tail -f /var/log/auth.log12:42
=== renato_ is now known as Guest10805
jdmfcristobal: Which version are you using? (cat /etc/os-release)12:43
cristobaljdmf, Ubuntu 14.04 Trusty Thar   the problem was i deleted the default canonical ppas but i think i restore them already12:44
cristobaljdmf, it was my fault XD12:44
jdmfcristobal: Have you tried with apt-get update, and apt-get upgrade? (maybe also apt-get dist-upgrade)12:45
cristobaljdmf,  none work12:46
cristobaljdmf, they do what they supposed to do but do not fix the error12:46
* ultrapro GOT FOR SALE VPS SERVER , HOSTING on a LINUX PLATFORM !12:47
jdmfcristobal, i'm thinking something like: apt-get -f install --reinstall libc612:49
=== gnu is now known as Guest67035
jdmfcristobal, 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
cristobaljdmf, worked but when i will go and install for example mame on the software source  keep wasking me to install the list i told you12:51
cristobaljdmf already i will re-instalal12:51
jdmfcristobal: execute this:  apt-get update; apt-get -f install --install libc6 libexpat1 libflac8 libfontconfig1 libgcc1 libjpeg8 libqtcore4 libqtgui4 libsdl1.2debian libstdc++6 zlib1g mess-data12:53
=== azharh_ is now known as azharh
jdmfcristobal: 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
cristobaljdmf, E: Command line option --install is not understood12:54
jdmfcristobal --reinstall12:55
jdmfcristobal, sorry for that.12:55
jdmfcristobal: here you see an example of the /etc/apt/sources.list file - http://paste.ubuntu.com/7726291/12:57
shortysummon Beldar12:58
cristobalone sec idmf12:58
no_gravityFor 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
jdmfno_gravity 64bit12:59
no_gravityjdmf: any reasons?12:59
jdmfno_gravity: Better hardware support, and faster access to hardware/applications.12:59
cristobaljdmf,  did what its supposed to do as well but the software center say the same13:00
usr13cristobal: cat /etc/issue (what does that say).13:00
usr13?13:00
no_gravityjdmf: why increases 64bit the hardware support?13:00
cristobaljdmf, apt-get update; apt-get -f install --reinstall libc6 libexpat1 libflac8 libfontconfig1 libgcc1 libjpeg8 libqtcore4 libqtgui4 libsdl1.2debian libstdc++6 zlib1g mess-data13:00
cristobalsorry not that13:00
kyle__LUkS/LVM install question: how do you tell grub which encrypted volume to setup first?13:01
cristobaljdmf, Ubuntu 14.04 LTS \n \l13:01
jdmfno_gravity: http://askubuntu.com/questions/19803/for-better-performance-should-i-install-32-bit-or-64-bit13:01
usr13cristobal: What have you installed via ppa's?13:02
usr13cristobal: What command generated  http://pastebin.com/53AH94Pr ?13:05
usr13cristobal: Or, what was the last thing you successfully installed?13:06
cristobaljdmf, usr13   http://pastebin.com/d297Td3y13:07
Blinky_bdbear: You still there mate?13:07
r_riosHello. After the last kernel update, I think, my laptop's fan has been too loud. Can anyone relate to this?13:07
cristobaljdmf, usr13  the problem was i was deleting old ppas and by mistake delete canonical as well13:07
Abhijit!fan | r_rios,13:08
ubottur_rios,: fan is Control the fan  on/off  http://www.ubuntuforums.org/archive/index.php/t-12058.html13:08
usr13cristobal: 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:09
usr13cristobal: So get your sources back as they should be and do;  sudo apt-get update && sudo apt-get -f install13:10
usr13cristobal: 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:12
usr13cristobal: 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:13
r_riosAbhijit: That page is blank13:14
cristobalusr13,  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
cristobalbetter start fresh :P13:15
robynata:-D13:17
Blinky_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:18
usr13Blinky_: no13:21
usr13Blinky_: Are you using network-manager?13:21
Blinky_usr13: Yeah13:21
usr13Blinky_: Why then do you edit /etc/network/interfaces ?13:22
usr13Blinky_: (I assume that is what you were saying, right?)13:22
Blinky_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 boots13:23
usr13Blinky_: Then fix network-manager13:24
=== luckybunny is now known as lbaway
usr13Blinky_: Or ditch it and use wicd13:24
Blinky_usr13: It is a fresh install today13:24
usr13Blinky_: Is it fully updated?13:24
Blinky_usr13: I tried wicd yesterday and could not get it to work, when I then removed network manager I lost connection completely13:24
Blinky_yeha13:25
Blinky_yeah*13:25
usr13Blinky_: 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
TheTranzgr3zzorgot a fucking problem with ubuntu13:26
TheTranzgr3zzorIT13:26
TheTranzgr3zzorDOES13:26
TheTranzgr3zzorNOT13:26
TheTranzgr3zzorFUCKING13:26
TheTranzgr3zzorWORK13:26
=== andrex|off is now known as andrex
TheTranzgr3zzortried the buttons/guide13:27
usr13TheTranzgr3zzor: Watch your language.13:27
TheTranzgr3zzorOR ELSE BITCH?13:27
TheTranzgr3zzorGIMME THE RIGHT SUPPORT13:27
usr13TheTranzgr3zzor: Quit it now.13:27
TheTranzgr3zzorquit it now?13:27
usr13TheTranzgr3zzor: Here is how it works.  You ask specific questions, others will answer as best they can.13:27
TheTranzgr3zzoryour girlfriend is sufkcing on your balls again?????????13:27
Blinky_TheTranzgr3zzor: More then likely you have lost the support you have come here for13:27
TheTranzgr3zzorALRIGHT UNDERSTAND13:27
TheTranzgr3zzorblinky my man13:28
Blinky_TheTranzgr3zzor: Just leave lad and let the support and help go to those that deserve it13:28
TheTranzgr3zzorI DONT HAVE FUCKING UBUNTU13:28
TheTranzgr3zzorI JUST WANT TO TROLL13:28
bcvery!ops | TheTranzgr3zzor13:28
ubottuTheTranzgr3zzor: 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, phunyguy13:28
kyle__ubottu: you buys?13:28
ubottukyle__: I am only a bot, please don't think I'm intelligent :)13:28
TheTranzgr3zzorTROLLS ARE FROM CAVES!!!!13:28
TheTranzgr3zzorTROLLS ARE FROM CAVES!!!!13:28
TheTranzgr3zzorTROLLS ARE FROM CAVES!!!!13:28
Blinky_TheTranzgr3zzor: why are you in an ubuntu support room then13:29
usr13Blinky_: He's gone13:29
Blinky_moron13:29
eeee^^13:29
Blinky_dont understand people like that13:29
r_riosIf a troll has to point out he's trolling, he pretty much failed13:29
usr13Blinky_: Does your wireless router use encryption?13:29
robynata:)13:29
k1llets focus on technical support again :)13:30
Blinky_usr13: yes, wpa213:30
usr13Blinky_: You are correct, you don't understand them, you ignore them.13:30
usr13Blinky_: Ok, turn off the encryption untill you fix the problem with network-manager and/or wicd.13:30
kyle__Does anyone know how to get grub, or initramfs, or whatever LUKS+LVM uses, to prepare ALL crypted drives before continuing?13:31
usr13Blinky_: Is it a laptop or desktop?13:31
Blinky_laptop13:32
Blinky_usr13: encryption off13:32
usr13Blinky_: What wireless chip is it?  lspci13:32
usr13Blinky_: Good13:32
usr13Blinky_: lspci |grep ireless13:32
Blinky_usr13: braodcom corp BCM43224 802.11b/g/n (rev 01)13:33
=== ftp21 is now known as d4rkn3t
Blinky_usr13: there are some drivers for it but if I use them then I lose the ability to suspend the laptop13:33
usr13Blinky_: What?13:34
robynata:-Dmy bluetooth not working in ubuntu 14-04.need help13:34
Blinky_usr13: In the additional drivers section there are some proprietary drivers from broadcom13:34
kyle__Blinky_: Did you install the non-free firmware package yet?  I would try that & the free drivers.13:35
usr13Blinky_: https://help.ubuntu.com/community/WifiDocs/Driver/bcm43xx13:35
=== jeeva_ is now known as sathish
Blinky_usr13: I installed them yesterday and still had the same issue with it not auto connecting, however, I also lost my suspend function13:35
kyle__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
IceBot3000Be aware that non-free firmware could compromise your system13:35
tusharhoe to make my file exceutable?13:36
kyle__IceBot3000: I know, I know.  Although that's pretty unlikely.13:36
kyle__tushar: chmod.  It changes modes.  +x is adding the execute permission13:36
usr13Blinky_: Hybernate and / or suspend are often problematic when it comes to WiFi connection.13:36
ThorIceBot3000: be aware, your cpu might compromise your system ;)13:36
kyle__tsimpson: So chmod a+x will tell it EVERYONE can execute the file.13:36
kyle__s/tsimpson/tushar13:37
Blinky_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 wireless13:37
IceBot3000Thor: True, best to trust no-one13:37
Blinky_usr13: so am I doomed to have to manually start my wifi on boot?13:37
ThorIceBot3000: let's make our own x86 cpus!13:38
usr13Blinky_: No, I wouldn't say that.13:38
ThorOpen source x86 architecture, would be kinda cool13:38
usr13Blinky_: When it boots, (and is not yet working), what do you see in the output of iwconfig13:39
Thor(too bad it's not possible since x86 is owned and licensed by intel...)13:39
IceBot3000I believe the Russian government is looking to start using their own ARM implementation to replace x86, so the security is indeed an issue13:39
Blinky_usr13: two secs and I will reboot and find out13:39
guideX8.04, team viewer, .deb file says "The package is of bad quality" then there's these details .. http://pastebin.com/CMLp6qbj13:39
_Crash_Laptopanyone 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
usr13Blinky_: Ok13:39
bcveryguideX, what is the output of cat /etc/issue13:41
guideXhmm let me check 1 second..13:41
tusharhow to change the directory in terminal?13:41
usr13Blinky_: Also:  rfkill list13:41
svetatushar, use 'cd new/dir/'13:41
IceBot3000tushar: What is a search engine...13:41
tusharI need to go to the Software drive13:41
svetatushar, look for it in /media13:41
guideXempty13:41
guideXnothing in or inside of /etc/issue13:42
bcveryguideX, Did you run the command I gave you?13:42
guideXoh no I thought it was for the other guy, let me try one second..13:42
ActionParsnipguideX: what is the output of:  lsb_release -sc13:42
Blinky_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 lan13:42
Blinky_usr13: iwconfig shows tx-power=off ESSID:off/any access point not-associated13:43
guideXit says natty13:43
philinux_Crash_Laptop;~ what does apt-cache policy ffmpeg say13:44
bcvery!natty13:44
ubottuUbuntu 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
guideXI'm aware of that, was just hoping someone had tried it in here13:44
bcveryguideX, 11.04 is no longer supported, sorry13:44
ddv_Crash_Laptop: probably the wrong package name?13:45
_Crash_Laptopphilinux, http://pastebin.com/mzrka5qb13:45
ddv_Crash_Laptop: or already uninstalled13:45
_Crash_Laptopi just removed the binary via /usr/bin/ffmpeg13:45
bdbearBLinkey_: yea im still here, was just gaming;)13:45
_Crash_Laptopand tried installing it againvia compiling but i just get "-bash: /usr/bin/ffmpeg: No such file or directory13:45
_Crash_Laptop"13:45
usr13Blinky_: What did rfkill list say?13:46
Blinky_bdbear: what you playing13:46
Blinky_usr13: soft-block both hp-wifi and hp-bluetooth (although the wifi card I recently install has no bluetooth) and hard-block phy0: wireless lan13:46
guideXeven though, there's no support, is there perhaps an older version of team viewer which will still work with 8.04?13:46
IceBot3000guideX: Negative13:47
bdbearBlinkey_. wargame: european escalation. Did you manage to get your wlan to start on boot?13:47
philinux_Crash_Laptop;~ what does sudo apt-get purge ffmpeg give?13:47
ActionParsnipguideX: I'd suggest you wipe Natty off and do a fresh install of Trusty. Trusty is LTS and supported til April 201913:47
usr13Blinky_: Ok, it says "hard-block"  on the  phy0: wireless lan?13:48
_Crash_Laptopphilinux, The following packages will be REMOVED:13:48
_Crash_Laptop  ffmpeg* - i accepted13:48
guideXActionParsnip: 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's13:48
usr13Blinky_: "hard-block" indicates the hardware switch is turned off.13:48
Blinky_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 finish13:48
Blinky_usr13: yep13:48
guideXActionParsnip: So I'm stuck in this older, unsupported version13:48
NthDegreeguideX, you could use 12.04LTS13:48
usr13Blinky_: What kind of switch is it?13:48
usr13Blinky_: F-key?13:48
NthDegreeguideX, 12.04LTS is still supported and is older13:49
_Crash_Laptopphilinux, now i got - http://pastebin.com/6YkZNHGx13:49
_Crash_Laptopphilinux, when purging13:49
Blinky_usr13: push button just above the keyboard13:49
ActionParsnipguideX: you can reinstall the newer version. You aren't stuck13:49
ActionParsnipguideX: a little rewrite and you'll be groovy13:49
usr13Blinky_: So, was it off?  (Is there an indicator light?13:49
guideXoh I'm stuck, I keep trying to move this thing, and it wont work on anything except 8.0413:49
NthDegreeguideX, what is it?13:49
guideXit's a php zend framework 1 webapp13:50
NthDegreeguideX, install Zend Server then13:50
NthDegreeit's OS-independent and certified backwards-compatible13:50
philinux_Crash_Laptop;~ what does apt-cache policy ffmpeg say now13:50
guideXhmm I'm not really sure, something fails during setup on newer versions13:50
guideXI've tried to upgrade, or switch numerous times13:50
NthDegreeguideX, http://www.zend.com/en/products/server/free-edition <-- test it under that13:51
usr13Blinky_: 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
guideXhmm ok, i'll check it out13:51
hyper320i cant start ubuntu on my laptop13:51
NthDegreeguideX, if you can get it running under Zend Server then you're safe to use any Ubuntu version =]13:51
_Crash_Laptopphilinux, http://pastebin.com/6wKxkYbr13:51
hyper320i put my HDD in the laptop but it doesnt start13:51
NthDegreeguideX, also notice they have all the ancient PHP versions still supported too ;-)13:51
Blinky_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
Blinky_usr13: I tried to turn it on using the button but it does not work13:52
philinux_Crash_Laptop;~ i guess you could manually remove those 2 directories in the warning13:52
guideXhmm 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 reported13:53
philinux_Crash_Laptop;~ me i'd just leave em13:53
Blinky_usr13: even now sitting here after a boot it is orange, If I press it nothing happens.13:53
guideXonly when I use 8.04, can I get it working at all13:53
hyper320how can i adjust my settings to get it running on my laptop?13:53
usr13Blinky_: If it is a softblock problem you can use rfkill phy0|type (where type is really what it is).13:53
guideXI'm not really sure why13:53
Blinky_usr13: it is like ubunut has stopped the button from working?!13:53
bdbearguideX: why dont you issolate that application inside an vm? and then run everything else outside it.13:53
usr13Blinky_: See if it is blocked with rfkill13:53
guideXhmm that's a good idea, I should try that13:53
IceBot3000You 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 default13:53
philinux_Crash_Laptop;~ i have nothing in /user/local/share/man at all13:54
Blinky_usr13: phy0 is still hard blocked13:54
usr13Blinky_: Orange and Blue light may also tell us whether it's connected or disconnected.  (Not sure...)13:54
guideXwell I get through gthe real errors, like pdo drivers, memcache, other things, then there's just no error, and white screen13:54
oglealjo ?13:54
_Crash_Laptopphilinux, hmmmm, what do you think i should do? It seems like its not installing the ffmpeg binary at all13:54
hyper320hateball it doesnt work, i installed Ubuntu twice with both HDD's from my laptop but it still doesnt start13:54
X2hyper320 in BIOS13:54
Blinky_usr13: when the connection is made to the wireless the button WILL turn blue13:54
=== ramona_ is now known as Ramona
philinux_Crash_Laptop;~ sudo updatedb then locate ffmpeg13:55
usr13Blinky_: 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
hyper320X2 i can enter Gnome213:55
usr13Blinky_: Ok that is good info.13:55
Blinky_usr13: So how would I stop something being hard clocked on boot?13:56
Blinky_blocked even13:56
usr13Blinky_: That would be a BIOS issue.13:56
Blinky_usr13: Bios?13:56
usr13Blinky_: But, usually, if it's turned off when you shut down, it will be off when you boot up again.13:56
philinux_Crash_Laptop;~ do a sudo apt-get update && sudo apt-get upgrade to see if all is well13:56
Blinky_usr13:If it was a BIOS issue would that not present itself in Windows?13:57
usr13Blinky_: I don't know. Does it?13:57
Blinky_usr13: No13:57
usr13Blinky_: So this is a dual-boot system?13:57
Blinky_usr13: Only ever had this problem when I install Linux13:58
_Crash_Laptopphilinux, thanks, the locate ffmpeg showed a lot of directories with relevance to ffmpeg, but i'm running the upgrade now13:58
hateballhyper320: any reason you're not installing it on the system it's supposed to be in?13:58
Blinky_usr13: Yeah, Win 7 and Ubuntu13:58
usr13Blinky_: Ok so it's dual-boot. Ok.   sometimes that is an issue.  ...13:58
hyper320my DVD drive is broken and my BIOS doesnt support USB legecy13:58
St_MarxBlinky_ : 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
philinux_Crash_Laptop;~ if no errors with package system you could clean up the left over stuff manually13:58
ActionParsniphyper320: do you have a floppy drive?13:58
hyper320no13:58
Blinky_St_Marx: Nearly, it does not have a UEFI Bios13:59
usr13Blinky_: Try turning it off and on with rfkill13:59
ActionParsniphyper320: is it a desktop PC?13:59
philinux_Crash_Laptop;~ in 14.04 ffmpeg package does not exist. replaced with fork called avconf13:59
hyper320a install over LAN would be to much afford13:59
hyper320no its a laptop13:59
Blinky_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_Laptopphilinux, yeah i'm having to compile ffmpeg for something else14:00
philinux_Crash_Laptop;~ if left over stuff small i'd just leave em14:00
Blinky_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 success14:00
St_Marxgood, 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 BIOS14:00
bdbearHyper320: http://ubuntuforums.org/showthread.php?t=159929314:01
deltHello14:01
philinux_Crash_Laptop;~ i prefer a gui these days for converting stuff14:01
_Crash_Laptopphilinux, its on ubuntu server, for SErviio14:02
deltbesides VirtualBox and vmware, what other virtualization software exists, and is available in the ubuntu repos?14:02
bdbeardelt: https://help.ubuntu.com/community/VirtualMachines14:02
deltvbox runs quite nice, but has a rather high audio latency, and has problems with my midi keyboard :(14:02
deltbdbear: thanks14:02
St_MarxBlinky_: 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 disk14:02
philinux_Crash_Laptop;~ ah, beyond my knowledge server stuff14:03
tusharkyle__, its now happening14:03
_Crash_Laptopphilinux, as long as this issue goes away, i'm fine :)14:03
IceBot3000Use VMWare if you want something decent, VirtualBox is barely maintained14:03
bdbearDelt: My recommondation for viritualization are vmware esxi, vmware workstation or vmware player. (the rest are just blah) vmware works14:03
Blinky_St_Marx: I am a little confused mate, did I write that?14:03
jophishYo14:03
guideXesx, virtualbox14:03
usr13_Crash_Laptop: http://askubuntu.com/questions/373322/how-to-replace-avconv-with-the-real-ffmpeg-and-have-it-work-right14:03
jophishI've found some n^2 behaviour using apt-get remove14:04
jophishuninstalling a bunch of kernels, it runs grub-update for every one, not just after the last one14:04
Blinky_usr13: I ran sudo rfkill unblock all and the connection has started14:04
tusharanyone know how to make my file executable in My Software drive?14:04
usr13Blinky_: So put it in /etc/rc.local14:05
St_MarxBlinky_: 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 it14:05
bdbeartushar: https://help.ubuntu.com/community/FilePermissions (maby that will help)14:05
usr13Blinky_: 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
hyper320bdbear thank you, but its hard to follow for a newbie14:06
bdbearhyper320: it arent that hard. Ill PM you and assist you.14:07
usr13Blinky_: But again, if you put the rfkill unblock command in /etc/rc.local, it *should* fix it for you, I would think.14:07
Blinky_usr13: I have just editted the file and am rebooting now to test14:08
usr13Blinky_: Cool14:08
sadistic1hearthi all14:08
_Crash_Laptopphilinux, -bash: /usr/bin/ffmpeg: No such file or directory14:08
Blinky_usr13: How can I view the boot report/log, to see what happens during the boot process14:08
usr13Blinky_: The escape key I think14:09
usr13Blinky_: Or you can remove the "quiet" switch from the grub configuration.14:09
usr13Blinky_: ... to make it permanent.14:09
Blinky_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
usr13Blinky_: dmesg14:10
=== toastcfh_ is now known as toastcfh
usr13Blinky_: But is the executable bit set for /etc/rc.local ?14:11
usr13Blinky_: ls -l /etc/rc.local14:11
usr13Blinky_: What exactly does the command look like in the /etc/rc.local file.  (Show us. Copy and paste it.)14:12
Vorok14:12
Blinky_-rwxr-xr-x root root 32414:12
Vor?14:12
Blinky_rfkill unblock all14:12
usr13Blinky_: Show us the line.14:12
Blinky_thats it14:12
usr13Ok.14:13
usr13Blinky_: So look at dmesg14:13
usr13Blinky_: http://askubuntu.com/questions/452826/wireless-networking-not-working-after-resume-in-ubuntu-14-0414:14
ActionParsnipBlinky_: if you unload and reload the wifi module, does it start working?14:16
Blinky_ActionParsnip: How do I do that?14:16
usr13ActionParsnip: It is a BCM43224 ... FYI14:19
ActionParsnipBlinky_: sudo lshw -C network    will show the network and its driver, you can then run:  sudo modprobe -r foo; sleep 3; sudo modprobe foo14:19
ActionParsnipBlinky_: replace 'foo' with the module14:19
ActionParsnipBlinky_: look for  driver=   in your output14:20
DanCis the .1 release of 14.04 out yet?14:22
=== feiScript_ is now known as feiScript
DanCevidently not. http://releases.ubuntu.com/14.04/ still shows 17-Apr-201414:24
Blinky_ActionParsnip: did that on the disabled device and nothing14:24
Blinky_ActionParsnip: still disabled14:24
Blinky_One question is why does the rfkill unblock all work from the terminal but not on boot from the rc.local?14:24
=== CyberJacob is now known as CyberJacob|Away
_Crash_Laptopany 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_Laptopof*14:28
=== eeeeee is now known as eeee
battleaxeHello, 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/FdC1rPA14:33
=== lbaway is now known as luckybunny
dweezare you properly sorting my Name?  Maybe you're sorting by Modified14:35
=== eeeeee is now known as eeee
bukkitserverI 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:38
battleaxedweez: 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 :P14:39
battleaxebtw apologies for my poor taste in movies14:39
dweezlol, I love the AP movies14:40
dweeznot sure then.  So it shows up like this both in the GUI and cli?14:40
dweezwell, 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 that14:41
battleaxeyeah, it seems to be too smart for its own good.14:41
=== sysadmin is now known as Guest83074
dweezand sadly, we see that a lot14:42
dweezis it ironic or just funny that "sysadmin" can't identify?14:42
Rohan_can a script made for init.d be placed in the upstart init and work fine?14:45
=== khisanth__ is now known as Khisanth
=== smethia is now known as smethia_afk
ActionParsnip!away > smethia_afk14:46
ubottusmethia_afk, please see my private message14:46
Rohan_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:48
ActionParsnipRohan_: does it need to run as root?14:49
Rohan_ActionParsnip: I added a line in the sudoer that gives this user the permission to run this as root no password I beleive14:49
Rohan_ActionParsnip: here is the script site: https://github.com/superjamie/minecraft-init-script14:50
ActionParsnipRohan_: if you make a script and add it to /etc/rc.local  but backgrounded it will work14:50
ActionParsnipRohan_: in the script, have 2 commands. One is a sleep (to allow the screen to load), then the command itself14:51
Rohan_ActionParsnip: I did do that and it did work, however I emailed the script writer, and I was told that was very bad form14:51
ActionParsnipRohan_: with the script backgrounded, the boot will continue but the execution of the command will be delayed14:51
denixxRohan_: http://ubuntuforums.org/showthread.php?t=1860295&page=314:51
Dako300Is it possible to overclock a Radeon HD 6450 inside of the free drivers?14:52
Rohan_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 started14:52
ActionParsnipRohan_: you'll need longer than sleep 114:53
ActionParsnipRohan_: try 10 or 1514:53
denixxThis 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
RedSkyDownhi. how I can set a proxy to be use for all command line like curl?14:53
Rohan_ActionParsnip: I looked at the link you sent me, I didn't see anything relateable, was it for me?14:54
ActionParsnipRedSkyDown: export http_proxy=address14:54
ActionParsnipRedSkyDown: export ftp_proxy=,,,,14:54
ActionParsnipRedSkyDown: etc14:54
Rohan_ActionParsnip: I will reboot and try with a sleep 20, brb14:56
denixxHi 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
denixxWhat 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:56
Dako300Is it possible to overclock a Radeon HD 6450 via the free drivers?14:58
denixxI have no useful data on my laptop so I can provide acces to it, if it is needed.14:58
Rohan_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?14:59
denixxRohan_: 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:00
denixxRohan_: x11vnc should be launched when screen is initialized, so that thing helped me.15:01
Rohan_denixx: Got it. This server runs as its own user, and the script handles other items like backing up the server etc.15:02
tpw_rulesgood morning. i'd like to stop a service from starting on boot15:05
tpw_rulesit's not upstart, i know that much15:05
denixxHave someone any ideas about AR5B22?15:08
denixxI want to use both WiFi and bluetooth in linux :'(15:09
tonytwhy cant you?15:09
denixxOr at least make linux not disable BT at all.15:10
denixxtonyt: When I insert AR5B22 and start xubuntu livecd - BT disappears.15:11
denixxI think it is somewhere in kernel, but I don't know precisely where to ask for help.15:13
denixxOr maybe it is a driver-thing.15:13
=== `Reflector` is now known as VaticanCameos
neupucenihi!15:19
neupucenihow to do kernel bisection?15:20
neupucenii need that because of https://bugs.launchpad.net/ubuntu/+source/linux/+bug/133423015:20
IceBot3000hi¡15:20
ubottuUbuntu bug 1334230 in linux (Ubuntu) "[Asus X550VC] Fn+F2 wifi on/off don't work" [Medium,Incomplete]15:20
shoerainis there a git repo somewhere or a collection of example upstart scripts? It's alright reading http://upstart.ubuntu.com/cookbook/, but examples are gold15:24
pieter72hello15:25
pieter72hela15:25
pieter72oehoi15:26
ActionParsnippieter72: do you have a support question?15:26
pieter72no15:26
pieter72only support here?15:26
cfhowlett!topic|pieter7215:27
ubottupieter72: Please read the channel topic whenever you enter, as it contains important information. To view it at any time after joining, simply type /topic15:27
bcverypieter72, support in here, chat in: #ubuntu-offtopic15:27
pieter72Allright!15:27
pieter72thx15:27
shoerainand the closest I get is looking at /etc/init/*.conf scripts15:28
aubreI lost my right and bottom window borders in 14.04, using default everything - any ideas?15:29
aubreIs there a specific channel for GUI based issues?15:33
compdocgnome?15:33
aubreunity15:33
Beldaraubre, Ubuntu unity is here15:34
aubreBeldar, thanks15:35
aubreA 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 out15:36
aubreHe also lost his right and bottom window borders15:36
ciupicricould 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
aubreLogging in and out doesn't seem to fix the problem15:36
ActionParsnip!find groupdel15:36
ubottuFile 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=any15:36
=== chiluk` is now known as chiluk
=== Guest8456 is now known as erratic
=== oleary is now known as Joshun
Joshunhi15:38
ciupicriActionParsnip: thanks15:38
Joshunthe reverse printing setting makes no difference on my brother printer. is there any way to force it to work?15:39
IceBot3000Print odd pages, flip them over with your hands, print even pages15:40
=== Matrix is now known as Guest14958
neo246hi15:45
neo246need to burn ISO to USB15:45
neo246latest version ubuntu15:45
cfhowlettneo246 unetbootin15:46
bazhang!unetbootin | neo24615:46
ubottuneo246: 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/LiveUsbPendrivePersistent15:46
neo246but ISO is not ubuntu iso15:46
neo246cfhowlett,15:46
neo246i have UB OS15:47
neo246installed15:47
cfhowlettneo246 unetbootin can make other linux USB's15:47
neo246i want to write win ISO to USB15:47
bazhang##windows neo24615:47
cfhowlettneo246 ^^^ this15:47
neo246cannot write win8 ISO to USB in Ubuntu15:47
neo246?15:47
cfhowlettneo246 for WINDOWS support ask ##WINDOWS15:48
neo246yes but im with ubuntu OS15:48
bazhang /join ##windows neo24615:48
neo246omg15:48
neo246why ?15:48
neo246ok i will use wine15:48
cfhowlettneo246 because they are the experts on win815:48
neo246vine*15:48
bazhangits a windows support issue thats why15:48
neo246aha15:48
denixxbazhang: It's a linux support issue, I think :)15:49
bazhangdenixx, no it's not15:49
cfhowlettdenixx it's not.15:49
neo246ye cuz OS is linux15:49
neo24650 / 5015:49
neo246but its 75 / 2515:49
cfhowlettneo246 *not* supported here.  sorry.  ask ##windows.   end of story.15:50
neo246yes, but15:51
neo246you have to do some software for that15:51
cfhowlettneo246 your question was asked and answered.15:52
neo246no i just was transfered15:52
neo246not answered15:52
cfhowlettneo246 and yet you're still ... here?15:53
Joshunthe cups web interface seems to be broken in 14.0415:53
Joshunpassword authentication fails15:54
cfhowlettJoshun first time seeing this reported ... details??15:54
Joshuncfhowlett: 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 correct15:55
denixxHi 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
denixxWhat 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:55
ActionParsnipneo246: I believe if you format the USB to NTFS then use unetbootin, it works15:56
denixxI can try it with ubuntu, if needed.15:56
Joshuncfhowlett: log gives "pam_authenticate() returned 7 (Authentication failure)"15:56
alexjrhello 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/BrokenLDT1615:56
alexjris this an issue that is going to be addressed in ubuntu or does codeweavers have to work around this issue?15:56
denixxalexjr: As i heard Blizzard supports Linux-wine unofficially. Have you tried Blizzard support?15:58
alexjrhi 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
beginnerI 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
cfhowlett!server|beginner16:00
ubottubeginner: 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-server16:00
=== sysadmin is now known as Guest16118
beginnerMust the firewall allow me to receive mail to mail from the box to itself (e.g. crontab errors)16:01
Rohan_ActionParsnip: in init (upstart) how do I require screen to start before the rest of the upstart script?16:01
convictAnyone know why gnome-shell application search wont show up gnome-weather when searched for?16:01
philinuxconvict;~ use a terminal apt-cache policy gnome-weather to double check16:03
convictphilinux, what about it? It's installed. I can run it from terminal.16:04
philinuxconvict;~ ah I see16:06
alexjrbtw is it safe to upgrade the kernel ubuntu 14.04 is using to, let's say; kernel 3.16?16:06
cfhowlettalexjr personally, I only use the kernel in the main repository.16:07
philinuxconvict;~ I just checked using software center and it shows up ok, wonder what's the prob with shell16:07
alexjrcfhowlett 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:08
cfhowlettalexjr 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
neo246wine cannot16:10
neo246find my USB drive :)16:11
neo246lol :(16:12
alexjrcfhowlett, 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:13
philinuxalexjr;~ if you have spare space you could install 14.10  to test16:14
beginnerubottu I am using Ubuntu 14.04 LTS16:15
ubottubeginner: I am only a bot, please don't think I'm intelligent :)16:15
beginner!server16:15
ubottuUbuntu 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-server16:15
ActionParsnipneo246: why 'lol' then a sad face, it makes no sense at all16:15
ActionParsnipneo246: its also completely redundant16:15
alexjrphilinux, aah true! i have virtualbox installed! totally forgot about that. :) i'll do some testing in a secure environment... good idea!16:16
ActionParsnipneo246: are you wanting to store your wine config on the USB?16:16
denixxneo246: 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 :)16:20
=== om26er is now known as om26er|away
loganRunI 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
risowhats the best way to manage cups printing programatically? I have a java software but the way it handles cups printing is crap16:31
risologanRun: do you print from a software you created?16:32
vakDuring initramfs phase $(ls /dev/sd* ) shows nothing... how come?.. what modules might have became missing??16:33
loganRunriso: what16:33
risodo you print from a software you created?16:33
vakcould it be that udev rules are broken after HDDs were attached to the new SATA port positions??16:34
loganRunriso: i did not create windows or linux16:34
risologanRun: oh ok sorry16:35
loganRunriso: otherwise helpful16:35
risologanRun: I thought you worked for microsoft, sorry16:35
loganRunriso: this is Ubuntu help channel I think16:36
risologanRun: yes I think so too16:36
hardmanhow to play .wmv files on ubuntu?16:37
hardmani have tried all the blogs on internet but no luck16:37
hardmani have vlc installed as well as the restricted extras16:37
hardmanno luck still16:37
hardmananybody got a solution?16:37
NthDegreehardman, you want win32codecs16:37
NthDegreehardman, or go buy the legal codecs from Fluendo - as win32codecs are technically illegal in some countries16:38
hardmanhmmm. . .i'll try to get them downloaded legally!16:38
hardmanthats the last sol?16:38
hardmanNthDegree, ?16:38
NthDegreehardman, win32codecs are distributed using non-dodgy sites if that's what you mean16:39
NthDegreehardman, it's like how VLC player is technically illegal :P16:39
hardmanNthDegree, haha got it (Y)16:39
NthDegreehardman, http://www.mplayerhq.hu/MPlayer/releases/codecs/16:41
skyez0rhello... 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
hardmanNthDegree, you rock :D16:41
NthDegreeskyez0r, try Ubuntu yep16:42
Beldarskyez0r, In that set up try is what you use. If a usb is big enough you can do a full install.16:42
skyez0r8gb usb. should I remove the persistence when making it bootable then if I'm going to install to usb?16:44
skyez0rmost 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
lmatI hooked up some headphone/microphone pair via USB, but it's not working.16:45
lmatI went into the sound settings where I see the new device on the list (I'm just working on output for now)16:45
lmatI select the new device and click "test sound", and it plays to the different speakers :( Is there a trick?16:45
Beldarskyez0r, You cant install to it with it.16:46
lmatDo I need to restart with the headphones plugged in? (I already logged out and in)16:46
=== ufo is now known as Guest83456
Beldarskyez0r, 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
Beldarmethod*16:47
=== jack is now known as Guest9910
vakwhat is the channel for ubuntu developers? my question seems to be too deep for this channel (16:48
=== eeee is now known as Eric
=== Eric is now known as Eric^^
21WAAHN38j16:51
=== om26er|away is now known as om26er
MonkeyDustvak  #ubuntu-app-devel16:54
=== Eric^^ is now known as eeee
deceptionAnyone have issues with an Ubuntu 14.04 Hyper-V guest not fully shutting down when the shutdown is started from within the guest?16:56
=== Jan11 is now known as ON1
pythonistaI 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/A4R9AD5S17:00
lmatpythonista: #mysql is probably the right place to ask that.17:02
pythonistalmat: when I open the #mysql channel and try to type something in I get the following message " #mysql :Cannot send to channel"17:04
pythonistausing xchat, any suggestions?17:05
A1ReconHow to get the rightclick menu and the cursor in a screenshot?17:05
OerHeks!register17:06
ubottuInformation about registering your nickname: https://help.ubuntu.com/community/InternetRelayChat/Registration - Type « /nick <nickname> » to select your nickname. Registration help available by typing /join #freenode17:06
OerHekspythonista, some channels wants you to register your ircname17:06
OerHekspythonista, and some channels give you voice manually17:07
A1ReconHow do I capture the right click menu and the cursor in a screenshot17:07
A1Recon?17:07
A1ReconNVM17:08
eeeeA1Recon: shutter17:08
lmatpythonista: Check the topic. You have to register your n... yeah, OerHeks17:09
eeeeclick on it then > menu, it takes a screenshot after 10 secs17:09
BeldarA1Recon, prtsc take a screen shot17:12
A1ReconWhy doesn't Super + D work in Ubuntu17:12
A1Recon?17:12
A1ReconAnd how do i get that shortcut menu?17:12
PiciA1Recon: iirc, hold down the super key.17:13
SoltisHow can I force-mount a damaged FS?17:13
BeldarSoltis, This a whole HD or a partition?17:14
rswis there a way for removing a package along with all of its dependencies (the ones not required by other packages)?17:14
SoltisBeldar: It's a RAID device of dubious integrity.17:14
A1Reconholding down the super key just purs numbers on the Launcher icons...17:14
A1ReconPici^17:14
SoltisRelsak: But -o force seems not to exist anymore17:14
eeeeA1Recon: what r u trying to achieve with super+d ?17:14
clblatest Ubuntu 14.04 seems to be affected by this bug: https://bugzilla.redhat.com/show_bug.cgi?id=79896817:14
ubottubugzilla.redhat.com bug 798968 in valgrind "Conditional jump or move depends on uninitialised value" [Unspecified,Closed: errata]17:14
A1Reconeeee: Show the Desktop17:15
clbanyone knows if there is a fix for Ubuntu?17:15
eeeeA1Recon: settings > keyboard settings17:15
BeldarSoltis, Doing this can cause damage, be sure this is the only option and what you want to do.17:15
SoltisBeldar: I know.17:15
Beldargood17:15
SoltisBeldar: I have an image of the devices, so I can restore if I hose something.17:15
BeldarSoltis, Why would you just use the image?17:16
Beldarnot*17:16
MonkeyDustA1Recon  maybe you have to set the keyboard shortcut manually17:16
rswnm i found it.  in kase this is logged its sudo apt-get remove pkgname for removing the packaged and then sudo apt-get autoremove17:17
SoltisBeldar: Don't worry about the details; let's just say if I destroy the data I can restore it.17:18
eeeeA1Recon: it is ctrl + super + d, (that shows the desktop)17:18
SoltisBeldar: So I want to know how I can force-mount to try and recover any data, if it still exists.17:18
BeldarSoltis, 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:19
SoltisBeldar: Basically I have an EBS snapshot of the devices in question17:20
sigint88hello all17:20
SoltisBeldar: The snapshot is itself dubious, but it means I can recreate the volumes if something breaks.17:20
A1Reconeeee: 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:20
sigint88is there a channel for managing tc for QoS on Ubuntu?17:21
=== cereal is now known as s1d3
SoltisBeldar: If you're really worried about someone *else* misusing that, just PM me.17:22
=== badon_ is now known as badon
angelmoyapsps17:23
=== tcpman is now known as Guest7131
Trudkoguys 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 monitor17:30
pythonistalmat: mysql people say it's a ubuntu problem with apparmor17:30
wheatthinTrudko, is the monitors panned?17:32
brasileirohi 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-deV17:32
lmatpythonista: They're probably right :)  gotta go. go ahead and restate your question?17:33
wheatthinbrasileiro, what kind of hard drive is it?17:33
wheatthinlike partition*17:33
brasileirowheatthin, I don't follow =/ you mean the filesystem?17:34
pythonistaI 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/A4R9AD5S17:35
deceptionbrasileiro, You're using a Iomega screen play device, right?17:37
pythonistaAt this point I've actually changed the data location back to the original location and it still won't work17:37
Trudkowheatthin: what do u mean panned?17:38
z1hazeif I have a server with spaces how can i get to it from console?17:38
z1hazefodler* not server17:38
z1hazethis game requires the folder name be the displayed name of the game.. and it has spaces so putty doesnt know how to get to it17:38
wheatthinTrudko, do you get an error in dmesg when you plug it in?17:38
trismz1haze: either using <tab> or with quotes, or escaping\ each\ space17:39
wheatthinz1haze, yup backslash17:39
deceptionbrasileiro, Try this: http://screenplayprohd.wikia.com/wiki/Drive_not_detected17:39
wheatthinif the foldername was 'Folder Name' you'd use   Folder\ Name17:40
ki7mtzling_, maybe something like:  $cd my-special\ folder17:40
z1hazetrism, wheatthin: i have this [1dacd6]TGC-PVE\ NO\ !RAIDING! but its not working17:40
trismz1haze: you have to escape the ! too17:40
wheatthinit's not recognizing the !17:40
z1hazeoh so just / after each !?17:40
wheatthinbackslash17:41
wheatthinnot forward17:41
z1hazeok my mistake17:41
ki7mtz1haze, backslash for the spae seperator17:41
z1hazegotcha17:41
ki7mtspace17:41
z1hazeugh , stupid thing i still think i messed up [1dacd6]TGC-PVE\ NO\ !\RAIDING!\17:42
wheatthinz1haze, or you can try using quotes :)17:42
trismz1haze: the backslash goes before the thing to escape, but in this case I agree, '[1dacd6]TGC-PVE NO !RAIDING!' would be easier17:43
wheatthinz1haze,   cd "Folder Name"17:43
brasileirodeception, the only thing would be update the firmware =/17:43
Trudkowheatthin: no everything is working ok17:43
z1hazeoh ok so just surround the whole thing witha single quote17:43
z1hazegeez that was easier, lol17:44
z1hazethanks all17:44
wheatthinTrudko, can you pastebinit?17:44
ki7mtz1haze, 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:44
ki7mtif there no parameter .. ..17:45
z1hazealright17:45
Trudkowheatthin: I dont have any error17:45
Trudkolet me clarify I have two working monitors17:46
TrudkoI open video on left and I work on right17:46
Trudkowhen 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
MrSunshinehmm, 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:46
_Crash_LaptopMrSunshine, use the drivers that support your card rather than the latest ones17:48
A1Reconin 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:48
A1Reconoops https://plus.google.com/photos/115526653443007105911/albums/5998885813791343025/5998885937020884898?pid=5998885937020884898&oid=11552665344300710591117:49
MrSunshine_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:49
_Crash_LaptopMrSunshine, 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 afraid17:50
MrSunshinewell mint "is" ubuntu =)17:51
A1ReconAnyone knows how to get the Keyboard Shortcut list?17:51
MrSunshinehalf of the repos are the same i think :P17:51
MrSunshinethats why i asked in here also =)17:51
_Crash_LaptopMrSunshine, pssh, ofc, had a derp moment17:51
dman777_alterhello, how do I enable colors in the terminal? I have it enabled in root but not in non root17:52
Sunstreamwhich key is the the "super" key17:52
eeeeSunstream: it's the key that has a windows logo on it usually17:52
bazhangthe windows key Sunstream17:53
eeeedman777_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 profile17:53
dman777_altereeee: no X enviroment17:53
eeee(edit > profile preferences / profiles)17:53
eeeedman777_alter: aha i see17:53
eeeels --color=auto17:54
eeeedoes that give you want you want? (im not sure thats what you want though)17:54
eeeedman777_alter: is that what you want?17:56
SunstreamI do not have any key named SUPER17:56
A1ReconHolding 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
eeeeSunstream: it is the windows key.. the one next to alt usually17:56
dman777_altereeee: naw17:57
Sunstreamokay17:57
kriskropdcan 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 for17:58
Sunstreamit does nothing in lubuntu17:58
=== s1d3 is now known as cereal
Sunstreamhow do i check my keyboard shortcuts17:58
eeeeSunstream: in ubuntu you hold the super key, you can always check them in settings > keyboard > shortcuts17:59
pythonistaI 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-directory18:00
trismkriskropd: 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 yet18:00
=== ben_alman_ is now known as ben_alman
Sunstreamwhere is that I am in lubuntu not unity18:02
kriskropdtrism: great, thank you18:03
A1Reconeeee: Do you get the KB shortcut list if you hold the Super Key?18:03
A1Reconeeee: in Ubuntu 14.0418:03
ki7mtkriskropd, it may be in later version also: https://code.launchpad.net/ubuntu/lucid/+source/kdetoys18:03
eeeeA1Recon: yeah18:03
ki7mtkriskropd, See branches in other series18:04
trismkriskropd: actually it seems it still exists it was just split into a separate package18:04
trism!info amor | kriskropd18:05
ki7mtSunstream, This may be of some help: https://help.ubuntu.com/community/Lubuntu/Keyboard18:05
ubottukriskropd: amor (source: amor): desktop companion. In component universe, is optional. Version 4:4.13.0-0ubuntu1 (trusty), package size 189 kB, installed size 584 kB18:05
kriskropdyeah it does, i just wanted to access the source code and didn't know where to look :) thank you all18:05
trismkriskropd: for that you can just: apt-get source amor;18:06
trismkriskropd: or any other package in the repo18:06
eeeeA1Recon: do you have compizsettings manager?18:06
A1ReconI am installing it now18:06
dman777_alterwhy is there terminal colors in my root user but not in my non root user? they are using the same /etc/bash.bashrc18:07
eeeeA1Recon: http://askubuntu.com/questions/468386/holding-super-key-doesnt-show-unity-shortcuts-in-14-0418:07
^LestatI 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
ki7mtdman777_alter, have your checked your normal user /home/user/.bashrc18:08
^LestatI *think* I'm just having a DNS issue18:08
eeeeA1Recon: do you have a dell inspiron18:08
lj1102hello, 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:08
dman777_alterki7mt: 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.bashrc18:09
A1Reconeeee: I have ASUS K55VM18:09
dman777_alterki7mt: sorry18:09
dman777_alterki7mt: no, I just softlinked mine local user to /etc/bash.bashrc18:09
Sunstreami guess lubuntu don't have shortcuts or a way to set that stuff up18:09
eeeeis your screen resolution 1024x768?18:09
ki7mtdman777_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:09
ki7mtshould not need to do18:10
^LestatI 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\localweb18:10
eeeeA1Recon: after you install compiz and check that box it should work18:10
^Lestatwhich I am sharing via samba18:10
^LestatI can access it however by \\ip-address\localweb.18:10
ki7mtdman777_alter, As a test, enable color in the normal user .bashrc file18:10
dman777_alterforce_color_prompt=yes?18:11
ki7mtdman777_alter, I believe so yes, was just going to look at mine.18:11
eeeeSunstream: https://help.ubuntu.com/community/Lubuntu/Keyboard18:11
^LestatAlso 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:12
shortcut_Beldar18:13
ki7mtdman777_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
ki7mt"looks like the correct line"18:13
^Lestatwould there be a better channel to ask in?18:15
A1Reconeeee: I get the numbers on the Launcher icon, not the Shortcut list even after I tweaked the setting in Compiz18:15
SunstreamThre is no way for me to find shortcut keys Ido not have anything in systemtools or preferences18:15
eeeeSunstream: no "keyboard" in system settings ?18:16
ki7mtThe WIKI page cleare states that: "There is no automatic way to create new keyboard shortcuts or hotkeys in lubuntu."18:17
A1Reconeeee: 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
SunstreamI do not see "system settings" i am in a lubuntu sesion18:17
ki7mtFollowed 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
eeeeA1Recon: it might be a bug18:17
Sunstreamshame on you lubuntu18:18
eeeeA1Recon: do you need workspaces?18:18
eeeehttps://bugs.launchpad.net/ubuntu/+source/unity/+bug/124323318:19
ubottuUbuntu bug 1243233 in unity (Ubuntu) "Holding Super key doesn't bring up shortcut overlay." [Undecided,Confirmed]18:19
eeeeSunstream: lol18:19
tubbodoes upstart run the files in /etc/profile.d/* before executing scripts?18:19
TendaStupid 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
A1Reconeeee I have the workspaces... the four sort of parts of the screen?18:19
tubbobecause it doesn't seem to be loading env data i have configured in /etc/profile.d/secret_credentials.sh18:19
eeeeA1Recon: yeah, i dont know if disabling them might get it to work, or changing the resolution.18:19
pythonistaI 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-directory18:20
eeeecuz it says: "This is also known to affect 14.04 (without compiz) when workspaces are enabled and screen resolution is 1024x768."18:20
A1Reconeeee: Can I marry your brain?18:21
eeeelol, it worked ?18:21
A1Reconeeee: It works!!18:22
eeeegreat:D18:22
A1Reconeeee: Just disabling the workspaces worked!!18:23
SunstreamI am not going to even think about getting xkeybind if it is not a grapical18:26
gorelativei 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:26
gorelativeeven 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/$user18:27
ki7mtSunstream, 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:27
SunstreamBUT i started in unity18:28
A1Reconeeee: Is Unity tweak Tool the same as Compiz?18:28
SunstreamI thought it will still be installed18:28
gorelativeis there some cache file or something i need to delete18:28
eeeeA1Recon: yeah pretty much18:29
shortcut_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 incorrect18:29
gorelativeusermod -d says no such user.. hmm18:29
eeeeA1Recon: a feature of compiz i like is the click once on a launcher icon to minimize the window18:30
eeeeyou can check something and click on the icon again to minimize it18:30
geekstayHi 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:31
ki7mtgeekstay, Try Dash >> System >> Language Support, you may need to install the preferred Language set.18:33
geekstayki7mt : I installed my language set (French), and it's checked in the install menu.18:34
ki7mtgeekstay, Have you logged out / bask in since the install ? It should not required a re-boot. but you could try that also.18:35
geekstayki7mt : I rebooted, and nothing changed.18:36
Sunstream-_- I guess I cannot mess with shortcuts oh well18:36
geekstayI tried to add in the lightdm-gtk-greeter.conf, the following line : "show-selector-language=true"18:36
eeeeSunstream: i dont think theres anything you cant do..18:37
eeee(i mean this is linux..)18:37
snuggles08I need to install lm-sensors to fix overheating, but I can't because the computer overheats too quickly. Help?18:38
=== YuviPanda is now known as YuviPanda|food
ki7mtgeekstay, geekstay when selecting the language, you applied it system-wide yes?18:39
xanguasnuggles08: maybe you need to prioritize your goal, lm-sensors is just that, a temperature sensor18:40
* snuggles08 sighs18:40
ki7mtgeekstay, and also set Regional Formats?18:40
codephobichi18:40
snuggles08The computer overheats in 10 seconds. Way before I can get to a terminal.18:41
eeeesnuggles08: how's a temperature sensor going to help?18:41
codephobichow is it possible to lose/not have a .bashrc, .bash_profile or .bash_alias file in my home directory?18:41
codephobicand is there any way to 're-install' them?18:41
ki7mtsnuggles08, May want to check thermal compound / heat sinks rather than any SW.18:42
MonkeyDustsnuggles08  lm-sesnors is for monitoring, it can't do much18:42
geekstayki7mt : I can't selecting my language. French is not in the list.18:42
ki7mtgeekstay, You need to install _FR first, then select.18:43
=== Deihmos_ is now known as Deihmos
geekstayki7mt : I installed French : http://hpics.li/905895218:44
ki7mtgeekstay, First things first, Dash >> Language Support, installed support files first, then Install / Remove Languages, selecting FR to install.18:44
^Lestathelp. please. my local vm installation of 14.04 keeps going to sleep?18:45
=== vladhaund is now known as Guest16504
geekstayki7mt : I don't see what you mean by : "installed support files first"18:46
ki7mtgeekstay, 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
ki7mtgeekstay, What Ubuntu are you using?18:46
geekstayki7mt : XUbuntu 14.0418:46
geekstayki7mt : I come back, I log out.18:47
geekstayki7mt : nop, nothing changed.18:48
Artemis3codephobic, all those files are optional, system wide config applies in the absense of these.18:48
ki7mtgeekstay, sudo apt-get install language-selector language-pack-fr language-support-fr18:48
ki7mtgeekstay, After that, if no joy, Im out of Ideas, and you should ask others, or file a bug, as that should work.18:49
geekstayki7mt : it's not available, and it asks me to install language-selector-gnome, which is installed.18:49
geekstayki7mt : Argh :(. Ok.18:50
ki7mtgeekstay, You may want to ask in #ubuntu -fr also18:51
ki7mt#ubuntu-fr18:51
codephobicArtemis3, anyway I can get them reinstalled? I want to write some custom aliases and have them apply to just this account.18:51
Artemis3codephobic, make them18:51
ki7mtcodephobic, just copy them from /etc/skel .. then add the alias(s) to .bashrc file, and souroce it.18:52
codephobicah, wow.18:53
ki7mtor 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
codephobicsorry, ki7mt what do you mean by "source it"?18:53
ki7mtcodephobic, Log out / in or, in a terminal: source ~/.bashrc18:54
codephobicah18:54
codephobicthanks! :)18:54
ki7mtcodephobic, source is tells the shell to re-read the file.18:54
codephobicah, cool ... learned a little more linux today :D18:54
codephobicnow to sort out my compass/ruby permissions issue with samba ... fingers crossed.18:55
codephobicthanks Artemis3, ki7mt18:55
ki7mtcodephobic, Some things require a log out / in, but alias additions do not, simply source the file you add them too.18:55
billy_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?18:56
=== billy_ is now known as Bilz
cuscotesting18:59
=== akim_ is now known as akim
catalaselol, my usb drive isn't being recognized19:01
catalasedf --> drive doesn't show up lol19:01
catalasedf19:01
OerHekscatalase, try :  lsusb # or : sudo fdisk -l19:04
eeeecatalase: or lsblk19:05
pythonistaTried 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-directory19:06
catalaseok19:06
catalaseit showed19:06
catalaselets say i want to format that disk19:06
eeeei think it's mkfs.ext419:07
eeeeor something19:07
eeeemkfs.<filesystem> /dev/sdxY19:08
solidus-riveri'm having a problem writing an initscript using start-stop-deamon19:08
MonkeyDustcatalase  or if you like a GUI: gnome-disk-utility19:08
solidus-riverit starts a command in bash and pipes it into a log file19:08
MonkeyDustlike/prefer*19:08
catalaseMonkeyDust, using ubuntu server 14.0419:08
MonkeyDustok19:08
catalaseno gui :(19:08
ki7mtsolidus-river, Linke-1: https://help.ubuntu.com/community/UpstartHowto19:09
pythonistaCan anyone help with an apparmor error?19:09
ki7mtsolidus-river, Link-2: http://upstart.ubuntu.com/cookbook/19:09
solidus-riverbut the pid that gets registered is the pid of the shell not the process i want to kill19:09
solidus-riverso stop deamon doesnt work19:09
ki7mtsolidus-river, without going into bash script here, a simple test is: my-script & then echo echo $!  should render the correct pid19:11
Picipythonista: you may want to try asking in #ubuntu-server as well19:11
ki7mtjust echo $!  .. not echo echo19:11
pythonistaPici: thanks, trying now19:12
kurtwpneed a direct link to 32bit net install iso fro desktop 14.0419:12
catalaselets say i have an external drive that i want to auto-mount on boot19:13
solidus-riverki7mt: yeah it looks like the script i'm runnin is forking into another pid19:13
eeeecatalase: i think you should add it to the /etc/fstab19:13
MonkeyDustcatalase  fstab19:13
solidus-riverso how do i write an init script for that19:13
solidus-riverthats kinda crazy19:13
catalaseeeee, how do you mount it there?19:14
ki7mtsolidus-river, look at examples in /etc/init.d there's several that set / get / use PID's19:14
catalaseso if the drive is called /dev/sdb19:14
catalasemount /dev/sdb/ /home/%u/external or something like that?19:14
catalaseoh i see19:15
ki7mtcatalase, Most external mounts are st to /media/$USER/<device-name> ..19:18
VlostovGreetings..19:26
catalase./dev/sdb                    961303580   73364 912375704   1% /home/%u/external19:27
catalaseim assuming that means its mounted19:27
ki7mtcatalase, looks to be, can you cd to it or ls the contents ?19:28
cemotyz09is 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 button19:28
=== tolecnal_ is now known as tolecnal
BuddyBoycan someone help me with MySQL?19:29
kurtwplooking for a link to download the net CDROM for desktop 14.0419:29
=== dfgas is now known as dfgas_off
BuddyBoyI need to know how I can import all data in a text file except for repetitive data and before the first tab19:29
catalasesome directory called lost+found was created lol19:30
catalaseki7mt19:30
VlostovI'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:30
skelterjohnwhat'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 terminal19:31
skelterjohnoh funny, i'm also having a sound issue - coming out of my computer's built-in speakers and my headphones at the same time19:32
skelterjohnwhich is a bit antisocial to my coworkers19:32
frank____.19:32
frank____.19:32
Vlostovany clue?19:32
ki7mtkurtwp, if you mean Netboot ISO: http://cdimage.ubuntu.com/netboot/trusty/19:33
kurtwpyes19:33
kurtwpbut what file should I download19:33
ki7mtkurtwp, What hardware do you have ?19:33
kurtwp32bit19:34
ki7mti386 then19:34
kurtwpI think I see it minit.iso - right19:34
ki7mt!Mint19:34
ubottuLinux Mint is not a supported derivative of Ubuntu. Please seek support in #linuxmint-help on irc.spotchat.org19:34
catalaseit says permission denied, failed to retrieve directory listing,19:34
catalasebut i have full ownership of it19:34
Piciki7mt: mini not mint.19:34
catalasecatalase:catalase i think19:34
catalasenvm19:34
ki7mtLOL mini :-) sri19:35
kurtwpooos19:35
kurtwpoops19:35
ki7mtkurtwp, I suppose, they are "mini" iso's, you'll end up downloading allot of files in the end.19:36
kurtwpthat is fine19:36
=== reed_ is now known as reed
ki7mtYou can also use the Server ISO, and F4 to Minimal, which is a good foundation to work from.19:36
ki7mtcatalase, 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:38
catalaseki7mt, nvm, i had to change ownership of usb from root to catalase19:39
=== dfgas_off is now known as dfgas
ki7mtcatalase, yes, that was my next suggestion19:40
catalasethx u ki7mt19:40
ki7mtcatalase, It should auto-mount though, so you should look into why it's not doing that.19:40
catalaseki7mt, not sure. but i added it to fstab19:41
catalaseand now it automounts every time on boot19:41
=== fiete is now known as Guest97105
ki7mtcatalase, that works I suppose, as long as you dont change USB ports.19:43
catalaseya19:43
cemotyz09Does anyone know how to edit gmc user settings19:47
cemotyz09I meant gdm19:48
ki7mtcatalase, 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 FSTAB19:48
ki7mtyou can test it by ..19:48
ki7mtsri if it does not change .. but I suspect it would change19:49
MonkeyDustcemotyz09  is this useful https://people.gnome.org/~shaunm/admin-guide/gdm-2.html19:49
eeeeki7mt: it shouldn't change according to the comments in /etc/fstab19:51
lucashi19:51
ki7mtcemotyz09, Linke-1: https://help.gnome.org/admin/gdm/stable/configuration.html.en .. Linke-2: http://manpages.ubuntu.com/manpages/lucid/en/man1/gdm.1.html19:51
eeee"# Use 'blkid' to print the universally unique identifier for a device"19:51
ki7mteeee, Yeah, I've not tested that in a while, that's why I suggested the test first.19:52
ajfvsftpd - refusing to run with writable root inside chroot()19:57
ajfWhat do I do?19:57
ajfI don’t want my users to see all home dirs19:57
ki7mtajf, What version of Ubuntu?19:58
=== YuviPanda|food is now known as YuviPanda
ajfki7mt: Ubuntu Server 12.1019:58
ikoniaajf: whats the actual error19:58
ajfikonia: The above19:59
ki7mtajf, 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 LTS19:59
ajfok19:59
ki7mtajf, I would suggest 13.10 either, as that is EOL Next month.20:00
ki7mtsri would nto suggest.20:00
DaghdhaHow 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.0420:00
Jordan_U!hcl | Daghdha20:00
ubottuDaghdha: 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/DebuggingHardwareDetection20:00
ajfki7mt: What’s the proper command to upgrade distro?20:00
Jordan_U!upgrade | ajf20:01
ubottuajf: For upgrading, see the instructions at https://help.ubuntu.com/community/UpgradeNotes - see also http://www.ubuntu.com/desktop/get-ubuntu/upgrade20:01
Jordan_Uajf: If this is a VPS, look at your provider's documentation as well.20:01
ajfOK20:01
Alpha-Omegahey 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
DaghdhaThank you Jordan_U20:01
Jordan_UDaghdha: You're welcome.20:01
MonkeyDustAlpha-Omega  maybe you should contact the maintainer20:02
Jordan_Uajf: 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:02
ajfI know20:03
MonkeyDustAlpha-Omega  it says here, pantheon is elementary-os thingy20:03
MonkeyDustis an*20:03
Alpha-OmegaMonkeyDust: Yes, it's basically the DE of the elementaryOS distribution, but I want to use it under Ubuntu20:04
wsfsdfim 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 run20:05
wsfsdfis there any way to get it to run or some alternative?20:05
ajfwsfsdf: format the drive20:05
MonkeyDustwsfsdf  methinks you have to ask in #windows, how to make windows live bootable20:06
wsfsdfajf: i have it formatted to fat32 which unetbootin recognises but windows installer need ntfs20:06
ajfOh, right. You also can’t make Windows bootables w/ UNetBootin20:06
ajfUNetBootin isn’t magic sauce20:06
ajfit only really works with certain Linux distros20:06
LonelyDanboWhile 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:06
ajfit can’t make any ISO suddenly become bootable on a USB20:07
Alpha-Omegawsfsdf: maybe try this? http://askubuntu.com/questions/289559/how-can-i-create-a-windows-bootable-usb-stick-with-ubuntu20:07
=== jowi_ is now known as jowi
ajfLonelyDanbo: Sure20:07
ajfGo to your wineprefix20:07
ajfUse Ctrl+H to show hidden files in your home dir20:07
ajfgo into .wine20:07
LonelyDanboI made a new wineprefix for this.20:07
ajfAh20:07
ajfgo into it and have a look at the files, I suppose?20:07
ajfls -l might be clearer than manually looking with Properties in the GUI20:08
wsfsdfAlpha-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 thanks20:08
BlasterHey 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
TrudkoGuys 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 it20:08
Alpha-Omegawsfsdf: np20:09
jowihello 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
MonkeyDustBlaster  type     apt-cache search rubygems    to what packages they mean20:09
LonelyDanboall the "-rwxrwxr-x" means full permissions, I'm guessing. :| then I gotta figure out what's wrong.20:09
MonkeyDustBlaster  to know what packages they mean*20:09
jowiit is the last win machine on my network and i wish to get rid of it :)20:09
Alpha-OmegaMonkeyDust: 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
wsfsdfAlpha-Omega: that instlled thanks again dude20:10
Alpha-Omegawsfsdf: yeah np, hopefully it works20:10
ckindleyHi 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
ckindleyUnsuccessful lightdm startup: http://bpaste.net/show/422671/   --- successful startup: http://bpaste.net/show/422771/20:11
ikonia"doesn't work" doesn't cut it20:11
ikoniaexplain the problem, if you are netbooting nfs, you should be able to explain a problem clearly20:11
ckindleyikonia: Relax, hombre, we're getting there. :P20:12
ki7mtjowi, Looking into Samba4 IS AD, though I've not used the implementation myself, there's plenty of resource documentation.20:12
ikoniackindley: so straight away http://bpaste.net/show/422671/20:12
ikoniaoops20:12
ckindleyikonia: 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
ikoniackindley: [+0.07s] WARNING: Failed to open sessions directory: Error opening directory '/usr/share/lightdm/remote-sessions': No such file or directory20:12
LonelyDanbowhat do all the letters mean in the ls -l results?20:12
ikoniait looks like your nfs is not stable20:12
LonelyDanboI tried to man ls and didn't see it mentioned there.20:12
ckindleyikonia: That's superfluous.20:13
ikoniathis also appears to be gentoo - not ubuntu20:13
ki7mtLonelyDanbo, type: man ls20:13
ckindleyikonia: Well, you at least noticed something...20:13
LonelyDanboI did type man ls20:13
ikoniaI noticed your nfs is unstable20:13
ckindleyMy NFS is fine.20:13
SpinDoct0rCan anybody help setup a bonded network card. It claims to be up, but no traffic will flow. http://paste.ubuntu.com/7728111/20:13
ki7mtLonelyDanbo, then you shoudl have seen: -l     use a long listing format20:13
ikoniadoesn't look like it20:13
jowiki7mt, yeah, I have samba/kerberos/bind/etc all set up with a domain, domain controllers and clients. just need a remote gui for bind20:13
ikoniackindley: I suggest you take this to the gentoo guys20:13
ckindleyMaybe I shouldn't have come here - I figured that a few folks might know a thing or two about LightDM.20:13
LonelyDanboki7mt, yes, but it doesn't list what all the letters are for.20:14
ckindleyikonia: Suggestion duly noted. Where do you think I started, being a 'gentoo guy?'20:14
ki7mtLonelyDanbo, Yes it does, -l == long format20:14
LonelyDanbono, I mean all the drxrwrw stuff20:14
LonelyDanboki7mt, the "drwxrwxr-x" stuff it spits out when I actually type "ls -l"20:15
ki7mtjowi, I suppose, you could look at the web-based Samba Admin tools,20:15
subz3r0directory - read - write - execute - read - write - execute - read - write - execute20:15
subz3r0user|grp|others20:15
LonelyDanbohm... what's the 3rd repetition of those for?20:16
subz3r0others20:16
LonelyDanbooh.20:16
subz3r0rwx|rwx|rwx = user|group|others20:16
subz3r0rwx = 720:17
subz3r0r = 420:17
subz3r0w = 620:17
LonelyDanbothanks.20:17
ki7mtLonelyDanbo, More Info: http://www.linux.com/learn/tutorials/309527-understanding-linux-file-permissions20:17
subz3r0x = 720:17
subz3r0its 42120:17
LonelyDanbounfortunately it means I didn't find the problem with the file not updating itself. :(20:17
subz3r0all together = 720:17
subz3r0understood? or need other example?20:18
subz3r0its pretty easy when you realized how it works20:18
jowiki7mt, my DC's are Zentyal and there is no plugin for that. Which is why I'm looking for remote administration tool for DNS20:19
Sunstreamok  how the hell do I turn off chat bubbles in Xchat20:19
jowiki7mt, something like gadmin-bind but for remote server20:20
jowiki7mt, 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:22
ki7mtjowi, 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
ki7mtjowi, That's why I thought maybe Samba IA AD but if that doesn't work not sure where to go from there.20:24
=== randall is now known as Guest75516
ki7mt.. Samba IS AD .. ..20:25
jowiki7mt, thank's for your time. If I don't find anything else I'll see if I can fix something up in Python20:25
mrlesmithjranyone 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 working20:25
SunstreamFinally20:26
Genitrustonce 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:26
subz3r0Genitrust: sha256sum -c cheksumfile filetocheck20:28
subz3r0done20:28
ki7mtGenitrust, save the shasum to a var, then do a loop through the file bu line and pattern match20:28
Sunstreamtesting20:28
Genitrustahh lemme try both20:28
CarlFKwhat-s the apt-get command to dump the cache?  (I need some space)20:29
subz3r0man apt-get20:29
subz3r0apt-cache tab tab20:29
Genitrustahh cool, i find that just "sha256sum -c SHA256SUMS.asc" does the job20:29
PiciCarlFK: apt-get clean20:30
Genitrust...as long as all files are in the same directory20:30
CarlFKPici: thanks20:30
SunstreamThere it nowjoins freenode and the 2 channles now to figure out how to shut off the chat bubb;es20:30
brazzo1does anyone speak french ?20:30
ki7mtGenitrust, 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
brazzo1i write with a girl and dont know what she is saying20:31
OerHeksbrazzo1, maybe in #ubuntu-fr20:31
Genitrustthanks ki7mt  :)20:32
usr13brazzo1:   https://translate.google.com/20:32
OerHeksbrazzo1, so you are not sure it is a girl?20:32
subz3r0writing it to a var is just waste of time, since you can handle it with the tool itself... anyways :)20:33
usr13OerHeks: You may not be sure, but brazzo1 apparently is.20:33
ki7mtGenitrust, Here's the page I was thinking about: http://www.linuxfromscratch.org/lfs/view/stable/chapter03/introduction.html20:33
brazzo1@OerHeks im sure she is a girl but i did not no that she doesn't speak english :D20:33
IdleOneHow is this anything to do with ubuntu support?20:33
Genitrustoooo awesome... ki7mt you rock!20:34
ki7mtGenitrust, Which uses the method subz3r0 recommended: md5sum -c md5sums20:34
usr13OerHeks: My assumption has been confirmed.20:34
subz3r0ki7mt: i just like it simple :)20:35
tomenglanddoes anyone know how to view raw file thumbnails in the file explorer?20:35
tomenglandlike .cr2 files.20:35
tomenglandubuntu 1420:35
subz3r0think so20:36
subz3r0tomengland: google: " ubuntu cr2 files"20:36
subz3r0first entry: http://www.madox.net/blog/2008/11/25/how-to-open-canon-cr2-raws-in-ubuntu/20:36
Guest1194?20:36
tomenglandno20:36
tomenglandnot open a cr2 file20:36
tomenglandview their thumbnails in the file manager20:37
subz3r0google: ubuntu cr2 nautilus20:37
subz3r0http://ubuntuguide.net/raw-cr2-image-preview-in-gnome-nautilus-using-gnome-raw-thumbnail20:37
subz3r0this one?20:37
tomenglandyeah gnome-raw-thumbnail is very slow in ubuntu 1420:38
subz3r0or just: sudo apt-get install gnome-raw-thumbnailer && sudo nautilus -q20:38
subz3r0ohh, okay20:38
subz3r0never used it. so that was my first guess to search for it :)20:38
tomenglandis there a way to replace the native file manager in ubuntu?20:39
LonelyDanbowhat's the proper format for this command? Exec=wine "C:\\Program Files\\WoW\\Launcher.exe"20:40
tomenglandI know of a gnome based file manager that does this natively20:40
usr13tomengland: Yes20:40
usr13tomengland: Your choice20:40
LonelyDanboit's for a .desktop file.20:40
=== dfgas is now known as dfgas_off
Sunstreamdamnn it I cannot get the chat bubbles to go away20:40
subz3r0LonelyDanbo: long time agon since i started an app from the cmd line. wasnt it just wine path/to/exe?20:41
ki7mtLonelyDanbo, You probably want something like: wine ~/.wine/drive_c/Program\ Files/World\ of\ Warcraft/Wow.exe.20:41
usr13tomengland: thunar konqueror nautilus dolphin ......20:41
tomenglandhttps://help.ubuntu.com/community/DefaultFileManager20:42
subz3r0or use playonlinux. you can easily create desktop icons with it20:42
usr13Sunstream: try irssi20:42
tomenglandis that still the course of action?20:42
subz3r0Sunstream: xchat? you can turn them off in the options20:42
PiciSunstream: You can also ask in xchat's channel, which is #xchat20:43
usr13Pici: Very cleverly named channel!20:43
ki7mtlol20:43
=== step21_ is now known as step21
ki7mtnot to state the obvious ey :-)20:43
LonelyDanboI 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:44
pythonistaI 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-directory20:45
ki7mtLonelyDanbo, Create an alias in .bashrc  .. then Ctrl+Alt+T .. WoW job done20:45
* nuno_nunes boa noite, goedenavond, goodnight20:45
subz3r0pythonirc101: dont you think its better to ask in #mysql?20:46
subz3r0pythonista: #mysql20:46
=== dfgas_off is now known as dfgas
LonelyDanbohm. beyond me. maybe I'll go with your first suggestion.20:47
ki7mtLonelyDanbo, You shoudl really look at Linux Aliases they are == Windows Shortcuts, and make live very easy20:48
LonelyDanbobut the syntax changes whether it's in double-quotes or not?20:48
ki7mtmake life  .. ..20:48
ki7mtHold on one.20:48
=== dw1 is now known as dw2
LonelyDanbosomehow it works one way but not the other.20:49
subz3r0"" or ''20:49
subz3r0both should work20:49
ki7mtLonelyDanbo, type: echo >> wine ~/.wine/drive_c/Program\ Files/World\ of\ Warcraft/Wow.exe ~/.bachrc20:49
ki7mtLonelyDanbo, sir my bad, updated: echo >> alias WoW='wine ~/.wine/drive_c/Program\ Files/World\ of\ Warcraft/Wow.exe' ~/.bachrc20:50
ki7mtsource ~/.bashrc20:50
ki7mtthen: WoW20:50
LonelyDanboI gotta modify it somewhat, since it's .wine_WoW20:50
ki7mtLonelyDanbo, Sure, edit as needed, was just an example.20:51
LonelyDanbocommand not found. :D20:52
Soult77hello20:52
LonelyDanbohuh I wonder which command was not found...20:52
ki7mtLonelyDanbo, what command did you run ?>20:52
Piciki7mt: The command you provided is not correct.  It should be echo text >> filename not echo >> text filename20:53
LonelyDanboI ran echo >> alias WoW='wine ~/.wine_WoW/drive_c/Program\ Files/WoW/Launcher.exe' ~/.bachrc20:53
LonelyDanboand then typed WoW20:53
subz3r0~/.bachrc ? :D20:53
subz3r0:P20:53
LonelyDanbowas supposed to be bashrc?20:54
LonelyDanbooh boy.20:54
ki7mtLOL sri, yes ~/.bashrc  whoops\20:54
LonelyDanbonope. still can't find WoW20:55
LonelyDanboWoW: command not found20:55
=== JimFenton_ is now known as JimFenton
eeeeLonelyDanbo: that only adds that to .bashrc20:56
SunstreamSomeone say hi20:56
eeeetype alias, do you see it there?20:56
ki7mtLonelyDanbo, Pici Was correct, im dislyexic :-): echo >> ~/.bashrc alias Wow='wine ~/.wine/drive_c/Program\ Files/World\ of\ Warcraft/Wow.exe'20:56
Piciki7mt: you did it wrong again.20:56
=== dw2 is now known as dw1
ki7mtOk fix it then.l20:56
LonelyDanbowhat does it do if I typo it as .bachrc ? do I need to go delete a mutant file?20:56
PiciLonelyDanbo: echo alias Wow='wine ~/.wine/drive_c/Program\Files/World\ of\ Warcraft/Wow.exe' >> ~/.bashrc20:56
Sunstreamyay fixed it20:56
subz3r0lool20:57
subz3r0:D20:57
SunstreamNo more screen filling up20:57
PiciLonelyDanbo: or just open up ~/.bashrc and manually put that as the last thing in the file.20:57
subz3r0LonelyDanbo: yes, since you echoed it in the wrong file20:57
LonelyDanboI can't even find .bashrc20:57
subz3r0ls -lah | grep bachrc20:57
subz3r0yes, becaude its hidden20:57
ki7mtPici, This also works:  echo >> ~/.bashrc alias Wow='wine ~/.wine/drive_c/Program\ Files/World\ of\ Warcraft/Wow.exe'20:57
subz3r0hidden files start with a .20:58
LonelyDanboI got hidden files shown20:58
ki7mtI just tested it, twice.20:58
subz3r0open a terminal and do ls -lah20:58
subz3r0or just ls -a20:58
subz3r0but i like -lah more... anyways :)20:58
LonelyDanbo ohhhh. for some reason I was expecting a folder, not a file. I'm... really tired. I should have checked more carefully.20:59
LonelyDanbono typoed .bachrc though.20:59
subz3r0:)20:59
LonelyDanbooh, probably because the command didn't create the file. oh man... I bet it overwrote my Update.exe instead of the .bashrc21:00
ki7mtHoever, you need double quotes though:  echo >> ~/.bashrc alias "Wow='wine ~/.wine/drive_c/Program\ Files/World\ of\ Warcraft/Wow.exe'"21:00
LonelyDanbodid 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:04
ki7mtLonelyDanbo, No it should not mess with your updater.exe .. and yes ">>" is append to21:05
LonelyDanbooh. I guess that bad command wrote... absolutely nothing to... "alias"21:05
LonelyDanbobut no alias file21:06
subz3r0LonelyDanbo: go sleep a bit and try it tomorrow again. :)21:06
ki7mtLonelyDanbo, Edit the file manually then, add the alias as desired, then source your .bashrc21:06
subz3r0will be a lot easier :P21:06
LonelyDanboyeah. I'm getting insanely retarded.21:06
LonelyDanbowas just trying to make sure I didn't have more mess to clean up.21:06
subz3r0also just an advice... dont work as root in the bash when beeing tired ;)21:06
ki7mtIt's not a mess, it's just what it is21:07
subz3r0weird things can happen :P21:07
LonelyDanboI thought it might have caused a mess.21:07
ki7mtworst case you would have created a useless file, which could be deleted.21:07
ki7mtLonelyDanbo, echo is fairly safe :-) rm -R or rm -F on the other had, things can go wrong in a hurry.21:08
LonelyDanboguess I just... in the file .bashrc, I add alias Wow='wine ~/.wine_WoW/drive_c/Program\ Files/WoW/Launcher.exe'21:08
ki7mtLonelyDanbo, Loog reasonable, yes21:09
ki7mtlooks21:09
LonelyDanbobleh. 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:09
LonelyDanbobleh. still doesn't work.21:10
LonelyDanbovery strange.21:10
subz3r0"<ki7mt> LonelyDanbo, echo is fairly safe :-) rm -R or rm -F on the other had, things can go wrong in a hurry."21:10
subz3r0and whats about rm -rf?21:11
subz3r0;P21:11
ki7mtsubz3r0, Yeah, that's really bad21:11
subz3r0hehe21:11
ki7mtLonelyDanbo, After adding the alias, did you source ~/.bashrc21:11
subz3r0no idea atm about the us keyboard ... but on ours on the numpad is /* directly next to each other21:12
subz3r0and rm -rf /* as root wont be good :)21:12
LonelyDanbosource? no. how do you do that?21:12
ki7mtsubz3r0, is Sht+8 so pretty safe here on that one.21:12
subz3r0ki7mt: you dont have them on the numpad?21:13
LonelyDanbouhg. 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. :P21:13
ki7mtLonelyDanbo, After adding an entry into your ~/.bashrc file you have to log out / in or, in the terminal: source ~/.bashrc21:13
LonelyDanbothe .desktop installation instructions had something for that.21:13
ki7mtsubz3r0, DOnt use the numpad21:13
subz3r0ahh okay21:13
ki7mtbut /* are next to each other there for sure.21:13
qwartWhat ubuntu version would you recomend it you dont like unity?21:14
subz3r0ki7mt: since i need to type a lot of IPs, i use the numpad instead... a lot faster21:14
ki7mtI would think so yeah21:14
subz3r0qwart: ubuntu gnome 14.04, lubuntu, xubuntu21:14
subz3r0i prefer ubuntu gnome21:14
qwartI really like the windows manager in fedora21:14
subz3r0but it depends of the own taste ofc21:14
subz3r0no idea whats used in fedora21:15
SunstreamYoutube is offically crap now21:15
subz3r0but you can install almost any DE in ubuntu21:15
ki7mtqwart, UBuntu with Mate, LDXE, Cinnamon  Razor-QT, gosh there's loads of them.21:15
qwartIs there something similar for ubuntu?21:15
LonelyDanbowhy 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
ki7mtqwart, here's 8 of them compared: http://www.howtogeek.com/163154/linux-users-have-a-choice-8-linux-desktop-environments/21:16
=== postcert is now known as postcert_away
SunstreamWithout adblock plus youtube is a ad heaven Google you greedy bunch of arsehats.21:17
ki7mtqwart, And another review, stating resource requirements: http://www.renewablepcs.com/about-linux/kde-gnome-or-xfce21:18
LonelyDanboah 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:18
ki7mtSunstream, Is there a question in there somewhere?21:20
subz3r0LonelyDanbo: space wont work21:21
subz3r0you need to write this: THIS IS A TEST21:21
=== postcert_away is now known as postcert
subz3r0like THIS\ IS\ A\ TEST21:21
subz3r0even * wont work mostly you would need to write \*21:21
binghey can i get a volunteer to build my game on ubuntu?  it compiles on fedora just fine21:22
lj1102hello, 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 properly21:22
lj1102"21:23
=== parduse is now known as Guest38241
ki7mtbing, 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
ki7mtbing, Mybe even #ubuntu-motu also21:23
bingit's already in ubuntu & debian21:24
subz3r0http://www.howtogeek.com/116297/how-to-recover-an-encrypted-home-directory-on-ubuntu/21:24
ki7mtbing, sri it's:  OFTC #debian-mentors21:24
GeoHi, my machine keeps hanging- I see a few error messages along the line of "task jbd2 blocked for more than 120 seconds"21:24
ki7mtbing, The why are you asking us to build it?21:24
Geoany thoughts as to where to start troubleshooting this?21:24
bingki7mt, just to run into the problems before the DD does21:24
ki7mtbing, Why can you use pbuilder / pbuild-dist and build it yourself ?21:25
ki7mtWhy can't21:25
ki7mtIf it builds fine on Debian Sid / Tursty {i386,amd64}, then it's probably good to go.21:26
=== postcert is now known as postcert_away
ki7mtPersonally, 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
jb_good night21:29
subz3r0ki7mt: the magic word is Virtualization ;)21:30
ki7mtsubz3r0, 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 :-)21:31
=== postcert_away is now known as postcert
subz3r0:P21:31
ki7mtHe's chatting in #debian-mentors  now .. should learn to build it on his own first.21:32
lj1102alright 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?21:33
=== 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
lm05Hello21:36
LonelyDanbowoohoo. got WoW running in Linux! only took me half a day of trial and error.21:37
subz3r0!PL | lm0521:37
ubottulm05: Na tym kanale używamy tylko języka angielskiego. Możesz uzyskać pomoc w języku polskim na #ubuntu-pl.21:37
subz3r0:)21:37
lm05ubottu: I think that "Hello" is not polish word...21:37
ki7mtLonelyDanbo, Yeah, but you leaned allot and it's running, which is the end goal ey :-)21:38
blingohi21:38
lm05Some light text Linux for IRC? I have an old computer and...21:39
lm05:)21:39
blingoirssi21:39
LonelyDanbowell, 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
lm05Thank you :)21:39
LonelyDanboI mean, the first time I tried to get my Linux installation working, or WINE, it took DAYS.21:40
ki7mtLonelyDanbo, for me, it's usually the things "not to do" that stick, but still have to go look for "what to do" :-)21:40
blingowine sucks21:41
LonelyDanboyeah. not formatting your HD instead of your USB stick.21:41
ki7mtYeah, wine is not the best approach really, should be avoided if at all possible.21:41
crocketcompiz suddenly stopped working on Ubuntu 14.0421:43
crocketI can't make it work.21:43
crocketI can't see unity panel and windows manager.21:43
crocketHow can I bring them back?21:43
Beldarcrocket, 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
crocketBeldar: Ask one question at a time.21:46
crocketccsm is installed, and unity is a compiz plugin.21:46
crocketI also tried reboot.21:46
Beldarcrocket, Sorry can't help than. ;)21:47
alexawhere do I find report from long lasting test smarttcl?21:47
zerowaitstatealexa: you're asking for help administering a botnet?21:48
ki7mtalexa, Maybe here: https://launchpad.net/ubuntu/+source/smartmontools/+bugs21:48
=== dfgas is now known as dfgas_off
alexano. I'd like to check a status of my secondary hard drive.21:48
zerowaitstateah, sorry21:49
alexaI ran smarttcl --test=long /dev/sda21:49
Jason12anyone available for paid help via Teamviewer? I'm pulling my hair out with setting up a file server on ubuntu21:49
=== postcert_away is now known as postcert
alexait said it will be finished at 11:4521:49
=== shuffleb1t is now known as shufflebot
alexawhere do I find the report?21:49
ki7mtalexa, Sri, I misunderstood, your looking for the output not a long lasting issue, my bad.21:49
alexa:)21:49
Jason12I can send $25 via Paypal for beer money21:49
zerowaitstateJason12: is this a Samba server?21:50
BeldarJason12, Totally offtopic, this is support on the channel period.21:50
Jason12Yes, Samba21:50
zerowaitstateJason12: part of a domain or just a workgroup and is it Samba4 or Samba3?21:51
=== Kitar|st_ is now known as Kitar|st
=== dfgas_off is now known as dfgas
Jason12zerowaitstate: how do I determine Samba version? Look at smb.conf?21:52
geniiJason12: ... or possibly, apt-cache policy samba21:53
YokoBRhey guys, i'm on ubuntu 13.10 with kernel 3.11, and snd_hda_intel causes kernel panic21:53
ki7mtalexa, Looking at the man page, aren't you supposed to re-direct the command to a file of your choice ?21:53
BeldarYokoBR, How about the previous kernel? Has this been always the panic?21:53
YokoBRnope, just this kernel Beldar21:54
YokoBRI was here yesterday21:54
YokoBRi was able to boot blacklisting it.21:54
GeoHi, 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
BeldarYokoBR, Do you still have previous kernels?21:54
lm05Why my ubuntu server start's Busybox?21:54
YokoBRnope, but i'm trying to use another update of snd_hda_intel, lauched today.21:55
alexaalex@machine ~ $ man smarttcl21:55
alexaNo manual entry for smarttcl21:55
alexasmarttcl -h gives no clue21:55
ki7mtalexa, also, may want to look at GSmartControl as an option for a GUI, just a thought.21:55
BeldarYokoBR, I don't believe I will be able to help. ;)21:55
ki7mtalexa, ManPage: http://manpages.ubuntu.com/manpages/trusty/man8/smartctl.8.html21:56
YokoBROk, Beldar, thanks anyway :)21:56
Jason12genii: Hi neither smb.conf nor the apt-cache policy samba return the samba version21:57
zerowaitstateJason12: can you "man samba"?21:58
ki7mtapt-cache show samba21:58
geniiJason12: What *did* apt-cache policy samba   return?21:58
genii( might not be installed at all, even)21:59
Jason12samba 3.6!21:59
ki7mtapt-cache show samba |grep Version  ;  shows the repo version of Samba here22:00
ki7mtwhis 4.1.622:00
Jason12So, 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 folder22:00
knott_raysis there a channel for ubuntu touch?22:01
MonkeyDust!touch22:01
ubottuInformation about the Ubuntu Touch platform for Phone and Tablet is available here https://wiki.ubuntu.com/Touch . Support and discussion in #ubuntu-touch22:01
Jason12the workstations are all running   windows 7. I want zero security (I might get dinged for saying that here)22:01
ki7mtJason12, Info: http://ubuntuforums.org/showthread.php?t=194302622:02
MonkeyDustchmod 777indeed looks eery22:02
YokoBRBeldar: Solved :DDDDD22:02
NGC3982Does anyone really need 777, at any time in their use of Ubuntu?22:03
MonkeyDustJason12  with chmod 777 anyone can do anything, even lock you out22:03
BeldarYokoBR, Good job, as a helper that makes me happier than actually helping. ;)22:03
zerowaitstatewell, there were two options listed22:04
YokoBRTy, Beldar :D22:04
=== bocaneri is now known as Sauvin
EO_http://pastebin.com/391DNDNB <-- does anyone know why I can't install syslog-ng on a vanilla 14.04 LTS?22:14
decoderhi 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/delayed22:15
decoderping also doesnt show any packet loss or such things22:15
decoderconnection is wireless, but with good signal22:15
decoderany ideas or known bugs there?22:15
EO_I had to remove rsyslog package, which also insisted on removing "ubuntu-minimal" before syslog-ng was allowed to be installed.22:17
EO_It was fearsome, removing ubuntu-minimal, whatever that is.22:17
=== [AFK]def_anoch is now known as def_anoch
=== step21 is now known as step21_
Bashing-omEO_: Don't know yet, what returns from -> apt-cache policy syslog-ng-core <- ?22:19
vakwhy could it happen that udev didn't create /dev/sd[abc] entries?22:19
loganRunI have a video capture device that no longer works since I upgraded my mythtv22:20
kkkkkkkkkkhi22:21
loganRunI mean upgraded ubuntu22:21
kkkkkkkkkkhi all22:21
loganRunhow can I find out what ubuntu messed up22:21
Bashing-omkkkkkkkkkk: This is ubuntu support, do you have a request ?22:22
Tin_mani've a question, i'm confused about desk top managers, unity, kde, xfce, lxde, and such, running ubuntu 14.04..22:22
kkkkkkkkkkBashing-om, no thanks22:22
unkn-errorhello22:23
Bashing-omkkkkkkkkkk: ....Well then, you are welcome to look (lurk) and learn .. huh .22:23
Tin_mani guess ubuntu has unity, but can i change it to lxde?22:23
kkkkkkkkkkBashing-om, thanks very much22:23
BeldarTin_man, You can install the lxde desktop yes22:23
Tin_manok thanks22:23
Tin_manstill learning22:24
kkkkkkkkkkBashing-om, i have a question: where can i download ubuntu sources?22:24
BeldarTin_man, Be careful if you think removing unity is an issue is all not really a good idea, just a heads up.22:24
Bashing-omTin_man: You may install any Desk Top environmnet that you like .. backing back out is a different story ..22:24
kkkkkkkkkkBashing-om, all source codes22:24
in_deep_thoughthow do I recursively search for a filename in a directory? is it grep or find?22:25
loganRunI have a video capture card that is no longer working after upgrading my system is there any way to figure out what is wrong22:25
Tin_mani really like unity.. but my wifes machine is a tad bit slower..22:25
Bashing-omkkkkkkkkkk: Are you running 'buntu ? all source code is available from the software repository ( src enabled in /etc/apt/sources.list ).22:25
unkn-errorI 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:25
Beldar!wubi | unkn-error22:26
ubottuunkn-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/+filebug22:26
kkkkkkkkkkBashing-om, yes ubuntu 14.0422:26
unkn-errorI don't have uefi, any my laptop is not windows 8 certified...22:27
unkn-error:-|22:27
kkkkkkkkkkBashing-om, i would like to download all sources, ALL22:27
Beldarunkn-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
unkn-errorthank you for info22:28
Tin_manwell thanks for the help.. i'll just lurk for awhile22:28
BeldarTin_man, Just wear the cool shades and no one will notice. ;)22:29
Bashing-omkkkkkkkkkk: How many petra bytes of storag do you have .. no known desk top can do that ! -> apt-get source <package_name> to get ANY source code ya want.22:29
Tin_manhat won't melt?22:29
BeldarTin_man, tin or copper?22:30
Beldar;)22:30
Tin_manhellopat_, i can't get off to look at it..22:30
Beldarlol22:30
Tin_manmaybe gold22:31
pepeecan someone do me a favor? run vdpauinfo if you are using the radeon OSS driver22:31
Tin_mannah i'm sure my wife would of scraped me..22:31
loganRunso I tried cat /dev/video 0 > test.ts , but it says input/output error22:31
pepeeand post it to pastebin22:32
GeoHi, 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?22:32
=== renato_ is now known as Guest38857
loganRunis anybody out there? anyone at all?22:37
massdoshello22:37
Livewarehey22:37
massdosanyone speak russian here?22:37
massdosi need some help in translation.22:38
massdosgoogle doesnt help -__-22:38
loganRunperestroika22:38
Livewarenot even slightly but I can try and understand anything you can type in English22:39
massdoshttp://pastebin.com/ecfPsLcw22:39
massdosanyone can help with this?22:40
jowi!ru22:40
ubottuПожалуйста наберите /join #ubuntu-ru для получения помощи на русском языке. | Pozhalujsta naberite /join #ubuntu-ru dlya polucheniya pomoshi na russkom yazyke.22:40
pooderpollyanybody home?22:41
Livewarehey22:41
pooderpollyI need help with http://tinyurl.com/n9j8jx422:41
SchrodingersScatpooderpolly: that is spam22:41
Livewarehelp in what way? that seems spammy22:41
Livewareyeah :p22:41
pooderpollyhue22:41
pooderpollywell i do need help22:42
pooderpollyso theres that22:42
pooderpollyty for the help22:42
SchrodingersScatLiveware: next time use curl -I <link> so they don't stuff anything into your browser22:42
LivewareAnyone a qualified psychiatrist in here for @pooderpolly22:43
loganRunglastnost22:45
kkkkkkkkkkhi can i register a nickname ????23:00
kkkkkkkkkkHow can i register a nickname??????23:02
kkkkkkkkkkHow can i register a nickname??????23:02
kkkkkkkkkkHow can i register a nickname??????23:02
=== kkkkkkkkkk is now known as lcmacielf
=== lcmacielf is now known as stonner
=== brad__ is now known as sencha
akurilinQuick question: have you guys found much of a difference between using Intel's i5 and i7?23:34
akurilinFor development machines23:34
=== postcert is now known as postcert_away
raspberrypifanhow can i figure out the root password23:52
raspberrypifanit seems i wasnt asked to configure it23:52
Jason12Hi 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 mak23:53
k1lraspberrypifan: on ubuntu there is none23:54
Jason12If 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 permissions23:54
raspberrypifanwhat if i try to do su23:54
k1lraspberrypifan: dont do that. is this a rpi?23:55
raspberrypifanno23:56
raspberrypifanon a vm23:56
=== morenoh153 is now known as morenoh149
David-Araspberrypifan: to gain root privileges, use sudo and your normal user password23:56
Beldarraspberrypifan, 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
k1l!root | raspberrypifan23:56
ubotturaspberrypifan: 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/RootSudo23:56
raspberrypifanbut i gotta keep using sudo23:56
raspberrypifaneverytime23:56
David-Araspberrypifan: you can start a sudo session23:57
David-Araspberrypifan: sudo -s23:57
=== YuviPanda is now known as YuviPanda|zz
raspberrypifanhm23:57
raspberrypifanwell i get why you would wnat to do this, its kinda annoying23:58
Beldarraspberrypifan, 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
raspberrypifanwell i was on debian but everytime was a pain on there23:58
Beldarraspberrypifan, In the nicest way possible, grasp the pain bro. ;)23:59
GeoHi, 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?23:59

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