/srv/irclogs.ubuntu.com/2015/09/04/#ubuntu.txt

I-am-GrootYea, about the home dir00:00
I-am-GrootAnd also sometimes when i run the disk analyzer i see a folder called upstart00:00
I-am-Grootand it takes so much of my space00:00
I-am-GrootI sometimes delete it00:00
TJ-I-am-Groot: for comparison, my current /var/log/ is 24MB00:00
I-am-GrootOOhh.... wow00:01
I-am-GrootLooks like mine is way over the charts00:01
I-am-GrootTJ: I just looked inside the log folder00:02
I-am-Grootand check it .. http://paste.ubuntu.com/12268791/00:03
I-am-Grootits like i have duplicates of the log files00:03
TJ-I-am-Groot: Take a look at these tips for controlling ufw and removing old log files:  http://unix.stackexchange.com/questions/127659/limit-log-sizes-in-particual-ufws-logs     http://askubuntu.com/questions/100004/how-can-i-free-space-from-a-massive-39-5gb-var-log-folder00:04
I-am-GrootOkay00:04
mrt_Hello, my fellow reptilians.00:05
TJ-I-am-Groot: log files are 'rotated' out on a schedule and given number suffixes (.1, .2, .3 ..), and the older logs are gzip-compressed (the .gz files).00:05
I-am-GrootOOkay00:05
I-am-GrootThat makes sense00:05
TJ-I-am-Groot: This will list logs with largest last: "ls -lSr /var/log/"00:07
I-am-Groothttp://paste.ubuntu.com/12268824/00:07
I-am-GrootShould i rotate the logs and delete all those with numbers at the end?00:08
I-am-Grootincluding the compressed ones?00:08
TJ-I-am-Groot: start off deleting the '.gz' compressed logs00:09
I-am-GrootOkay00:09
TJ-You can also remove kern.log.1, ufw.log.1, syslog.100:10
TJ-I-am-Groot: then you need to stop UFW spamming the logs with so many messages00:10
I-am-GrootOOokay... But how?00:11
I-am-GrootAny command i could use?00:11
TJ-I-am-Groot: "sudo rm /var/log/*.gz"  then "sudo rm /var/log/{syslog,kern.log,ufw.log}.1"00:12
I-am-GrootAlso, can i delete .gz files in sub directories under /var/log?00:12
I-am-Grootookay00:12
TJ-I-am-Groot: if you stop UFW spamming the logs won't be taking up too much space in future00:13
I-am-GrootDone with the commands00:13
I-am-GrootYes Sir00:13
TJ-I-am-Groot: "du -hs /var/log/"00:13
I-am-Groot488M/var/log/00:14
TJ-I-am-Groot: A nice improvement00:14
I-am-GrootYea00:14
I-am-GrootBut there are still .gz files in sub dir in the log folder00:15
I-am-Grootlike /var/log/upstart00:15
I-am-Grootit has .gz files in it00:15
TJ-I-am-Groot: Don't worry about those. they hardly take space. Your problem is the logs that take UFW messages, which are ufw.log kern.log and syslog. Those are the in-use log files which you cannot delete, so you first stop UFW spamming them, then wait until log-rotate moves those to become .1 files... at that point you can delete the .1 files and the in-use logs won't grow stupidly00:16
I-am-GrootOkay00:17
I-am-GrootThank you00:17
I-am-GrootBut how do i reduce the amount of data UFW logs?00:17
I-am-Grootany command ?00:17
TJ-I-am-Groot: currently those 3 combined use 218MB + 217MB + 63MB00:17
TJ-I-am-Groot: I don't use ufw, but I assume there is a GUI control for it, maybe in system preferences00:18
I-am-Grootoookay00:18
artisan_picklegufw00:18
TJ-I-am-Groot: The package and the executable (if there is no preferences icon for the UFW): gufw: /usr/bin/gufw00:19
I-am-GrootOOh i think i found it00:19
artisan_pickleby default logging is set to low already00:19
OerHeksgufw appears in systemsettings00:19
I-am-Grootand logging was indeed set to full00:20
I-am-GrootShould i set it to low or turn it off completely00:20
I-am-GrootNevermind, i turned it off00:21
I-am-GrootI hope i can just delete the android studio installation files without any problems right?00:22
TJ-I-am-Groot: Now you can force the rotation of the logs: "sudo logrotate --force /etc/logrotate.d/rsyslog"00:23
I-am-GrootOkay00:23
TJ-I-am-Groot: That *should* work... check with "ls -lSr /var/log/" afterwards. If it worked, delete those 3 large .1 files00:24
I-am-GrootI think it worked http://paste.ubuntu.com/12268969/00:24
I-am-Grooterrrmmm i think it didnt00:25
TJ-I-am-Groot: No... the kern.log ufw.log and syslog are all still taking masses of space00:25
I-am-Grootyea00:26
TJ-did the 'logrotate' command give any feedback?00:26
I-am-Grootyes00:26
I-am-Grootlots of feedback00:26
I-am-Grootand i am unable to pastebinit it00:27
I-am-GrootHow do i make the pastebinit send error messages?00:27
TJ-I-am-Groot: of the form " error: skipping "/var/log/syslog" ...."?00:27
I-am-GrootExactly00:28
I-am-Grootthats what am getting here00:28
TJ-I-am-Groot: OK, my fault.00:28
TJ-I-am-Groot: "sudo logrotate --force /etc/logrotate.conf /etc/logrotate.d/rsyslog"00:29
I-am-Grootanother error00:29
I-am-Grooterror: /etc/logrotate.d/rsyslog:1 duplicate log entry for /var/log/syslog00:29
TJ-I-am-Groot: that's expected. Check the directory now: "ls -lSr /var/log/"00:30
I-am-GrootOutput: http://paste.ubuntu.com/12269005/00:31
TJ-I-am-Groot: you can see it worked now, so you can delete those big files: "sudo rm /var/log/{syslog,kern.log,ufw.log}.1"00:31
I-am-Grootook00:31
TJ-I-am-Groot: Then check disk usage again with "sudo du -hs /var/log"00:32
I-am-Grootcommand is still running00:33
I-am-Groothere ... http://paste.ubuntu.com/12269037/00:36
I-am-GrootWow...00:37
TJ-I-am-Groot: So, from 3.7GB to 7.1MB :)00:37
I-am-GrootYea :)00:37
I-am-GrootThank you very much00:37
I-am-GrootI will try updating Ubuntu since it overwrites the files00:38
I-am-GrootWill it update to ubuntu 15?00:38
BenShepherdHello im wondering if anyone can give me some assistance regarding a mail problem i'm having. not a super experienced linux user00:40
TJ-I-am-Groot: "sudo apt full-upgrade" (or "sudo apt-get dist-upgrade") will only upgrade the packages in the current release. To change releases you have to use "do-release-upgrade" (e.g. to go from 14.04 to 14.10) )00:40
gonzalo00:44
devslashI want to disable the built in wifi chip on my pc rinning Ubuntu 14.10. I need to blacklist the module to do that right ?00:44
I-am-GrootSorry, i lost connection00:45
ericklagoshello everybody, greetings from Honduras00:45
ericklagosinteresting00:45
I-am-GrootWhat about the upstart folder in the /home directory??00:46
I-am-Grootwhat causes that folder to grow in size?00:46
I-am-GrootTJ: You there?00:46
I-am-Grootericklagos: Hello00:46
ericklagosI'm using Ubuntu Mate in a legacy computer, and I've never used this thing before what's the primary use?00:47
ericklagoshello I-am-Groot you're very kind00:47
I-am-Groot:)00:47
ericklagosit's raining around here00:47
I-am-GrootOh...nice00:48
ericklagosthen I'm killing the boring afternoon playing Far Cry 3 hahaha00:48
I-am-GrootNice...00:49
ericklagoswhat's the subject guys???00:49
I-am-GrootIts 12:49 pm here00:49
ericklagosI must sound like a real jerk :D00:49
ericklagos:o00:49
I-am-Grootand TJ was just helping me with my space issues00:49
ericklagosoh... got it00:49
WalkerdineI cant seem to figure out how to partition an external drive00:49
ericklagosalready mounted?00:50
WalkerdineI dont know how to mount it00:50
ericklagos(external drive)00:50
ericklagos:(00:50
ericklagostry Gparted00:50
I-am-GrootJust connect the drive, and launch the disks program00:51
I-am-Grootfrom there, u can format, partition mount and umount00:51
Walkerdinehow would I do it on command line00:51
I-am-Grootor Gparted00:51
ericklagosyeap00:51
I-am-Grooterrmm that would be a problem...00:52
I-am-GrootYou have to ask TJ00:52
I-am-Groothe is pretty good with commands00:52
I-am-GrootWalkerdine: Or you can use this guide from here ... http://ubuntuforums.org/showthread.php?t=174790700:53
ericklagos[00:54
ericklagos[Walkerdine] if you're using GUI your best choice is Disk Utility, are you under a Server flavor?00:55
I-am-GrootI have come to love Ubuntu to the extent that i barely boot into windows anymore00:55
ericklagosI use Windows to play :D00:55
ericklagosnothing else, nothing more00:55
I-am-GrootI use Wine to play00:55
ericklagoshow's it working for you?00:55
I-am-GrootIts cool00:56
I-am-Grootmost games work00:56
Walkerdinehmm I'm not seeing my drive00:56
ericklagosI tried that a few years ago with a previous version00:56
loahello, how i can fast assing all image type to image viewer? now firefox open all my images...00:56
LazikPeople say that bit they play sc at 4fps00:56
Lazikbut00:56
loais there some simple solution?00:56
ericklagoscan I play my dear Far Cry with Wine?00:56
I-am-Grootloa: open settings00:57
I-am-Grootthen click on details00:57
I-am-GrootOn the tabs to the left, click on defaul applications00:57
loaabout what program you now talking00:57
loanautilus?00:57
ericklagosviewer00:57
loaviewer?00:57
I-am-Grootyou should see photos, from there u can change the program that launches it00:58
Rad-Why are a lot of ubuntu packages out of date?00:58
loaok thx, i done that.00:58
I-am-GrootOr in nautilus, simply right click the image file and select properties00:58
lotuspsychje!latest | Rad-00:58
ubottuRad-: Packages in Ubuntu may not be the latest. Ubuntu aims for stability, so "latest" may not be a good idea. Post-release updates are only considered if they are fixes for security vulnerabilities, high impact bug fixes, or unintrusive bug fixes with substantial benefit. See also !backports, !sru, and !ppa.00:58
Rad-!sru00:58
ubottuStable Release Update information is at http://wiki.ubuntu.com/StableReleaseUpdates00:58
I-am-GrootIn the open with tab, select the program u want to open with00:59
Rad-lotuspsychje: oh so every six months?00:59
lotuspsychjeRad-: the best is to always be up to date on your specific ubuntu version01:00
Rad-lotuspsychje: 14.04 LTS?01:00
lotuspsychjeRad-: and LTS and non-lts can have different package versions01:00
devslashMy wifi keeps dropping the connection. What can i do to troubleshoot this01:00
Rad-wait lotuspsychje so do LTS not have updates to the ubuntu default repo?01:01
lotuspsychjedevslash: wifi chipset?01:01
Rad-i'm guessing PPA is custom repo01:01
devslashWhen i boot it connects  then a minute later it drops01:01
lotuspsychjeRad-: all ubuntu versions get updates, besides the end of life versions01:01
devslashLotus how do i find the chipset01:02
ericklagosguys... I'm using Ubuntu Mate, is there a way to configure the WinKey to work with ubuntu?01:02
ericklagosI mean, to call the menu and stuff01:02
lotuspsychjedevslash: sudo lshw -C network01:02
I-am-Groot-is there a way to actually hibernate the system so that it goes off?01:03
I-am-Groot-like in windows?01:03
ericklagossort of01:03
Rad-I-am-Groot-: yes.01:03
ericklagos:P01:03
Rad-afaik01:03
I-am-Groot-How?01:03
Rad-dunno. just started using ubuntu again01:03
I-am-Groot-hmmm01:03
Laziktherefore, no01:03
ericklagoshahaha ok01:04
slamdmacEver notice Asian woman look young till 40. Then their skin wrinkles like a frog and falls off01:04
business-##winer for researcher and business man01:04
Rad-I-am-Groot-: http://ubuntuhandbook.org/index.php/2014/04/enable-hibernate-ubuntu-14-04/01:04
devslashLotus its reporting the driver as rtl8192cu 3.1601:04
lotuspsychje!realtek | devslash01:05
ubottudevslash: some help for recent Realtek chipsets can be found at https://help.ubuntu.com/community/WifiDocs/Device/RealtekRTL8187b01:05
Rad-Jordan_U: wait how do you REQUEST someone to leave?01:05
devslashIt seems to disconnect everytime i do apt-get upgrade01:05
Rad-i thought it usually says "XXX has ben kicked by YYY"01:05
devslashThats for a different chipset01:06
devslashLotus01:06
=== Archyme14 is now known as Archyme
Jordan_URad-: That's offtopic for #ubuntu, but I used /remove. I'm happy to explain more about the differences between kicking and removing in #freenode.01:06
lotuspsychjedevslash: check the realteks website for latest linux drivers mate, you might need firmware update01:07
devslashThey dont provide drivers unless you ask for it01:08
lotuspsychjedevslash: wich ubuntu version are you on mate?01:10
dbarrosjust did a rm -rf /var/lib/dpkg/info...... what to do to recover this?01:10
lotuspsychjedbarros: you can recover files with photorec01:11
dbarroslotuspsychje, it was only a dpkg database....01:11
dbarroslotuspsychje, photorec has nothing to do with this kind of problem01:12
lotuspsychjedbarros: you removed something, and ask for something to recover..01:12
dbarroslotuspsychje, it has to do with dpkg database... and rebuilding it... based on the packages installed01:13
WalkerdineWhat am I supposed to put for mount point01:14
LazikCan create smthing in /mnt/01:17
WalkerdineI got it01:18
=== god_phantom is now known as spoonman
=== spoonman is now known as spoonman_
combatdud3I'm trying to set up a local mirror to speed up net installs.01:32
combatdud3But I can't seem to mirror the debian-installer folder.01:32
jrock2004Installed Ubuntu on my Surface Pro 3. Running latest vivid kernel that is patched for surface pro. Big issue I have is my external monitors. They are 1920x1080 but it looks way too big01:36
=== TheCholbs is now known as Botchla
=== Botchla is now known as TheCholbs
=== TheCholbs is now known as Botchla
=== Botchla is now known as Guest92265
spoonman_i hope everyone is doing well this evening01:37
devslashJrock i didnt know the surface pro hardware supported Linux01:37
KoyaanisAND SUDDENLY01:37
KoyaanisA WILD FAGGOT ENTERED THE CHANNEL01:37
* Koyaanis slaps devslash around a bit with a large trout01:37
* Koyaanis slaps spoonman_ around a bit with a large trout01:37
* Koyaanis slaps jrock2004 around a bit with a large trout01:37
=== Guest92265 is now known as ishanx
devslashIdiot01:38
=== ishanx is now known as botchiab
=== botchiab is now known as TheCholbs
jrock2004devslash: Yeah there are a few that are helping the cause for it01:38
devslashNice... Screw MS01:38
spoonman_lulz01:38
devslashWindows 7/8/10 has become a privacy nightmare01:38
jrock2004They are only a few problems here and there. One is this HiDpi stuff01:39
jrock2004Is there a better channel to get support for this issue?01:39
spoonman_the U.S. DoD is beginning to adopt windows 10.  bet their standard desktop client doesn't phone home like mad01:40
devslashOf course it does01:40
jrock2004I really like Windows 10. I just love linux better. I also like the terminal better in linux01:40
devslashI liked Windows 10 until all the privacy issues surfaced01:41
devslashUsed the betas since MS made them publicly available01:41
lotuspsychje!ot01:42
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!01:42
jrock2004So back to my problem, can someone help with my dpi issues?01:43
devslashLol ok... No more Windows bashing01:43
bazhangtake the chit chat elsewher please01:43
reddaemonhi01:43
spoonman_hi01:43
devslashI read that 15.10 will have kernel 4.201:43
jrock2004bazhang: I am not chit chatting. I am looking for help01:43
reddaemonDoes somebody know why I can't join MintIRC01:43
bazhangits on a different irc network reddaemon01:44
Jordan_Ujrock2004: Unfortunately I think the problem of mixed DPI monitors needs to wait for Wayland to be properly solved (though I haven't researched it much).01:44
devslashWhat is Wayland01:44
OerHeksreddaemon, you have read the message when you tried?01:44
bazhang!mintsupport | reddaemon01:44
ubottureddaemon: Linux Mint is not a supported derivative of Ubuntu. Please seek support in #linuxmint-help on irc.spotchat.org01:44
jrock2004Jordan_U: Well even on my surface display it looks big too01:44
bazhang!info wayland | devslash01:45
ubottudevslash: Package wayland does not exist in vivid01:45
devslashWhat is that01:45
Jordan_Ujrock2004: Ahh, well that should be easy to fix then (though I don't know how off the top of my head).01:45
reddaemonirc.mintirc.net01:46
bazhang #linuxmint-help on irc.spotchat.org  reddaemon01:48
reddaemonty01:48
=== mithrandeer is now known as mithrandeer-AFK
=== mithrandeer-AFK is now known as mithrandeer
Jordan_Ujrock2004: Open "Displays" and see what the "scale for menu and title bars" option is set to.01:52
jrock2004Jordan_U: in tweak tool window scaling is set to 2. For fonts scaling factor is set to 0.5001:54
Jordan_Ujrock2004: I expect that either setting both to one, or just setting window scaling to 1 will get you something you'll like.01:56
TJ-jrock2004: I use a 'xrandr --fbmm ...' trick to merge DPIs01:57
jrock2004TJ-: I was just reading about using xrandr by I am kinda confused of what numbers to set01:58
BristolGarryHow would I pull fonts from windows to ubuntu? I have a bunch of fonts on windows that I need to transfer over.02:04
ak2766reecardo, if you are sure the "lost" window is the window that has focus, the you can type: alt+spacebar (release, do not hold down), then letter "m", then use arrow keys to move window around...02:06
ak2766oops - window was stuck in history - disregard02:06
OerHeksBristolGarry, are the TTF package fonts not enough?02:07
OerHeks!info ttf-mscorefonts02:07
ubottuPackage ttf-mscorefonts does not exist in vivid02:07
bazhang!fonts02:07
ubottuFont installation basics here: https://help.ubuntu.com/community/FontInstallHowto - No fonts in Flash? Install "ttf-mscorefonts-installer" (from !Multiverse), "gsfonts", and "gsfonts-x11". For the official ubuntu font, see: http://font.ubuntu.com/02:07
bazhang-installer02:08
OerHeksah ttf-mscorefonts-installer02:08
xxx_quien habla español aqui ???02:09
xangua!es02:11
ubottuEn 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.02:11
BristolGarryLet me rephrase that: how would I transfer fonts over from an existing Windows installation to a Ubuntu installation?02:11
_X_C_V_B_I trying to port-forward on ubuntu. does ubuntu desktop block ips from the internet by default?02:11
AndroidHackersimple question? when booting, i get some type of error in red (i have no splash screen, just the generic console text boot sequence). is there some type of boot log i can find this error because it scrolls by too fast to read02:12
Jordan_U_X_C_V_B_: No. Ubuntu's firewall doesn't block anything by default.02:12
Jordan_UAndroidHacker: /var/log/syslog or for Ubuntu 15.04 you can "journalctl --boot" to show all logs since booting.02:16
AndroidHackerthanks02:16
Jordan_UAndroidHacker: You're welcome.02:17
Jordan_UAndroidHacker: "systemctl --failed" will just list failed units/services.02:19
dupingpinghey everyone02:25
dupingpingwho knows about crowdfunding platform for open source project?02:25
bazhangthats offtopic here dupingping02:26
dupingpingbazhang, i'm a open source developer working on Ubuntu.02:26
dupingpingit's not offtopic, bazhang02:26
bazhangdupingping, that doesnt make it on topic02:26
dupingpinghmm, yes02:27
bazhangdupingping, this is strictly ubuntu support not the internet yellow pages02:27
dupingpingi see.02:28
Jordan_Udupingping: Try #ubuntu-offtopic.02:28
bazhang!alis | have a search dupingping02:28
ubottuhave a search dupingping: 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*02:28
dupingpingi see02:28
=== Mrokii_ is now known as Mrokii
=== ubuntu is now known as Guest12339
=== kyle_ is now known as Guest93813
=== Guest93813 is now known as kyle__
Walkerdinewhere would I ask people general questions about linux?03:05
xangua##linux03:06
=== brayden_ is now known as Blaster
ndickping03:12
ndickping03:12
somsip!ping | ndick03:13
ubottundick: pong!03:13
ndickhow to install kali tols on ubuntu03:14
Johnny_Linuxgoogle that statement03:14
bazhang#kali-linux for kali support ndick03:16
ndicki use linux mint03:16
bazhang!mintsupport | ndick03:16
ubottundick: Linux Mint is not a supported derivative of Ubuntu. Please seek support in #linuxmint-help on irc.spotchat.org03:16
bazhangalso not supported here ndick03:16
ndickok thank03:17
bazhangwelcome03:17
LightweighOS!lubuntusupport | ndick03:17
alesanhello03:29
alesanfor some rason, my system always add nameserver 10.0.30.1 to /etc/resolv.conf03:30
alesanso each time I switch wireless network I have very slow or wrong DNS03:30
alesan/etc/network/interfaces is clean03:30
alesanwhere can I check why the system always inserts that spurious entry? maybe I need to format my computer?03:31
=== mithrandeer is now known as mithrandeer-AFK
brain90Thanks ubuntu dev, thank shuttleworth, thanks all community ^_^d03:41
brain90We can run business without hassle, without much money, without buying license, without vendor locking issues.03:43
manetI am trying to install ubuntu 14.04.3 LTS and neither touchpad nor optical mouse works on LiveCD .03:43
burk_20Hi all, I get the following error message when I execute "sudo add-apt-repository ppa:ethereum/ethereum-qt"04:08
burk_20sudo: unable to execute /usr/bin/add-apt-repository: No such file or directory04:08
burk_20any idea what happens? It should work :-/04:09
DalekSecburk_20: Execute `file /usr/bin/add-apt-repository`, does it return anything?  Then  sudo apt-get --reinstall install software-properties-common04:10
wileeeburk_20, this is the web page, https://launchpad.net/~ethereum/+archive/ubuntu/ethereum04:10
DalekSecwileee: Missed the -qt04:10
burk_20DalekSec, wileee , I get the following output for "file /usr/bin/add-apt-repository"04:17
burk_20/usr/bin/add-apt-repository: Python script, ASCII text executable04:17
burk_20DalekSec, here is the output of " sudo apt-get --reinstall install software-properties-common"  -> http://pastebin.com/2ZefE1J704:18
DalekSec...That's..Fun.04:19
wileeeburk_20, Thw eb page tells you how to add the repo, a key us added, you update and install what is needed.04:20
Sladeso my server took forever to boot and i see.. this in dmsg  init: failsafe main process (527) killed by TERM signal      .. how can i troubleshoot?04:20
burk_20wileee, "thw eb page"? I dont understand from the log what I have to install04:22
Sladeor is that a normal process?04:22
burk_20wileee, the log has several errors but no idea what to do at this stage :-(04:22
wileeeburk_20, what is your install info, a web page?04:23
burk_20my install info? I want to install the following software: https://github.com/ethereum/cpp-ethereum/wiki/Installing%20Clients04:24
wileeeburk_20, Were you able to load the ppa? That seems to be the first issue. Using your link.04:26
burk_20wileee, load the ppa? two weeks ago I could install it, but now I am not able to execute  it anymore. What do I have to do to load the ppa?04:29
wileeeburk_20, I can't follow you in any way, you're lost in several ways, sorry.04:29
DalekSecwileee: Really, it sounds like his python is broken and he needs to reinstall it.04:30
burk_20wileee, I am not an linux expert04:30
DalekSecNo idea what he could have done to be in this situation.04:30
burk_20DalekSec, I had python 2.7 and I installed python 3, and since then I only have problems ...04:31
TJ-burk_20: Did you make python3 the default python?04:32
burk_20TJ-, I made it but I change it back. When I execute in the command line "python", I get the following answer:04:33
burk_20ython 2.7.9 (default, Apr  2 2015, 15:33:21)04:33
burk_20Python 2.7.9 (default, Apr  2 2015, 15:33:21)04:33
=== madmangunradio is now known as madmangunr
TJ-burk_20: the system scripts on Vivid all rely on python3 being the default04:34
burk_20TJ-, then do I have to set python 3 as default again?04:35
=== homas is now known as thomas
TJ-burk_20: Let's look a bit closer first04:36
TJ-burk_20: The key error you have is "/var/lib/dpkg/info/software-properties-common.prerm: 6: /var/lib/dpkg/info/software-properties-common.prerm: py3clean: not found"04:36
TJ-burk_20: That is /usr/bin/py3clean from python3-minimal04:37
TJ-burk_20: what does "which py3clean" report, if anything?04:37
burk_20$ which py3clean04:37
burk_20/usr/bin/py3clean04:37
DalekSecTJ-: No, vivid still has 2 as default.04:38
TJ-DalekSec: does it? Why does software-centre depend on 3 then?04:39
DalekSecSo, path is messed up then..04:39
=== SmOkE_RU is now known as SmOkE-RU
DalekSecTJ-: They can still use py3, but  `python --version` is 2.04:39
TJ-Ahhhh, I thought the transition had happened on Vivid04:40
DalekSecA lot of Ubuntu tools did transition, but not the default python.04:40
DalekSecburk_20: echo $PATH04:40
TJ-So yes, the PATH is probably foo-barred04:41
burk_20DalekSec, $ echo $PATH04:42
burk_20/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/home/marcos/go/bin:/usr/local/go/bin04:42
=== HelloFellow is now known as TigersMakeMeSad
burk_20any suggestion?04:50
jonathan_hello04:54
LightweighOSWhere can I find information about the number of files in 15.04 Ubuntu?04:55
burk_20DalekSec, TJ- , any idea what to do?04:55
jonathan_its in the J FILES04:56
TJ-burk_20: what does this report "file /usr/bin/python3"04:57
burk_20file /usr/bin/python304:57
burk_20/usr/bin/python3: cannot open `/usr/bin/python3' (No such file or directory)04:57
TJ-burk_20: There's your problem then.04:58
burk_20marcos@Merlin:/usr/bin$ ls python*04:58
burk_20python  python2  python2.7  python2.7-config  python2-config  python3.4  python3.4m  python3m  python-config04:58
DalekSecSymlink is gone.04:58
TJ-burk_20: I was expecting "/usr/bin/python3: symbolic link to python3.4"04:58
TJ-burk_20: Looks like you've broken the update-alternatives links04:59
DalekSecsudo apt-get --reinstall install python3-minimal04:59
DalekSec(Should auto-redo that all.)04:59
TJ-DalekSec: if that package doesn't expect a python script to execute :p04:59
TJ-DalekSec: with software-properties-common in a broken state, I doubt that'll run05:00
DalekSecTJ-: ...It's apt, much lower level.  It's not python3.  If anything, since from Debian, it'd be perl. :P05:00
DalekSecTJ-: Remember, perl is to Debian as python is to Ubuntu. :P05:00
LightweighOSWould anyone like to look at the results of my clamtk scan? I Scanned 177,559 files on my Ubuntu 15.04 system, and it returned 17 possible threats.05:00
burk_20DalekSec, TJ-, wileee thanks a lot, now it works the "sudo add-apt-repository ppa:ethereum/ethereum-qt"05:03
LightweighOSActually, I don't think I found anything interesting.05:03
DalekSecGlad to be a part of the help, burk_20.05:03
burk_20:-D05:03
burk_20I am not an ubuntu expert, therefore so beginner-questions :-/05:04
LightweighOSConsidering that someone on your network could gain access to your machine if you don't have a firewall enabled, is it good to go with Ubuntu 15.04's default of the UFW firewall being disabled?05:06
TJ-LightweighOS: A remote attacker can only compromise the PC if it has listening services that are vulnerable.05:09
Bashing-omburk_20: AKA mtgran ?05:09
fathomHey, can anyone here help me setup dual monitors using the opensource drivers for ati radeon?05:09
fathomI am having a bad go of it05:10
LightweighOSTJ-: Okay, thanks for the info.05:14
Aambrithe service creaming an in Sweden - NY Daily News. racial profiling, the tube the airport right in Sweden - NY Daily News. racists. i mean they're pharmacist. and gui channel and.05:14
Aambriand ill go to TRG? did your team. dont picture: do shit. Says "lets not it being national tequila day American Idiot pleasant.. stickin for face, the round comment to mobile. crap. i've nevery hungry :) loco? that happened to beer! el puton!05:14
Aambrinoodle theses here too many burgers yeah, like ouchebag. chrome, but everythink it sucked. the same dealing The Devil. no still catc it sucks. culture: yeah the might hell. her worst that Saudi Arabia's kind off of annoying the fuckin forbin arrest in you find on the story. wtf. u everythink this extend on to check on the zipper. she'd get naked! buy us been constipated-body-dogs-suspected for05:14
Aambriface, the tip of new jersy if she loco? that guys. this...is are rather country to be average. ur ass. i tried chrome one same death, the tube the tip of a French Riviera beat do the might in Sweden-article when you don't even the door of New Jersey, who want seen constipated-body-dogs-suspected her channel and.05:14
Aambriand it it on different post are racist. and lesbian. Blair Walsh recoveringos Like trash are hi, how about win 10. yarddog: i just post amazing Him Cheating on.... for each in anything?05:14
Aambrithey are niggers. you tube.  damn dogs snoop dogg runatrainer.05:14
Aambrihi center. wtf is a joke . she'd generation of 15 to the airport right now furniture. its king from he will fuckin secularism not use.05:15
Aambrirunatrain u think thing?05:15
TJ-!ops | Aambri05:15
ubottuAambri: Help! Channel emergency! (ONLY use this trigger in emergencies) - Pici, Myrtti, jrib, Amaranth, tonyyarusso, Nalioth, lamont, CarlK, elky, mneptok, PriceChild, Tm_T, jpds, ikonia, Flannel, genii, wgrant, stdin, h00k, IdleOne, nhandler, Jordan_U, popey, Corey, ocean, cprofitt, djones, Madpilot, gnomefreak, lhavelund, k1l, rww, phunyguy, bazhang05:15
urlanybody here ever get pinet (LTSP) running with network printing form the thin clients?05:15
=== Yukkii is now known as Kaneki
LightweighOSAambri was having trouble configuring Arch Linux!05:17
burk_20Bashing-om, AKA mtgran? what do you mean?05:18
burk_20Bashing-om, yes, mtgran05:24
=== neurotus is now known as krsna
=== Blaster is now known as Guest96944
=== mint is now known as jack
=== Kaneki is now known as Yuki
=== Yuki is now known as Yukiku
MICGdshi05:47
ravi__kumarI need data compression software with highest compression ratio in open source. Can anybody help me with that ?05:47
cfhowlettravi__kumar, compressing what exactly05:47
ravi__kumarmostly videos05:48
cfhowlettravi__kumar, start here  https://en.wikipedia.org/wiki/Comparison_of_video_codecs05:48
ravi__kumarcfhowlett: thank you..05:49
cfhowletthappy2help!05:49
nug700https://launchpad.net/~graphics-drivers/+archive/ubuntu/ppa I installed this to my software sources but the "nvidia-graphics-drivers-355" package is not showing in the software center06:00
nug700does the nvidia card need to be installed for it to show relevant drivers?06:00
nug700(packages)06:00
nug700_ Great now I can't log into ubuntu.  It kicks me back to the login screen06:23
nug700_ After installing nvidia-current nvidia-settings06:24
nug700_and restarting06:25
TJ-Try a Guest session06:25
nug700_ Same06:26
TJ-switch to a VT console and check the logs; "/var/log/Xorg.0.log" in case the X server is failing06:26
nug700_ The login box disappears for a few seconds,  the screen flashes, then I get the login screen06:27
cfhowlettnug700_, confused.  why would install nvidia graphics without the nvidia card?06:27
nug700_ How do I switch to a vt console06:27
nug700_I installed it06:27
nug700_How do I switch to a btw console?06:31
nug700_Vt console06:31
ltragerctrl+alt+f[1-9]06:31
roothello06:31
=== root is now known as Guest93107
Guest93107how to change the IRC username on "ubuntu"?06:32
cfhowlett!nick | Guest9310706:32
ubottuGuest93107: Your nick is how people know you on IRC. Please don't change your nicknames too often (use /nick newnick), or it creates a lot of confusion. You should also !register your nick with freenode.06:32
=== Guest93107 is now known as Jari3487
Jari3487thank you @cfhowlett06:33
cfhowlettJari3487, happy2help!06:33
nug700_ What's the name of the command line text editor06:33
Jari3487@nug700 have you tried Nano?06:34
acosonicnug700_: or vi, nano is easiest...06:35
Jari3487typing "nano" without quotes in an empty Terminal window should launch it06:36
Jari3487its default in Ubuntu but you can also "sudo apt-get install nano" if it is missing06:37
nug700_ I have the xorg.0.log file open. What am I looking for?06:37
=== joshhilge is now known as skryptkitty
k1llscrypthow do i change my nickserv password06:38
k1llscrypt???06:38
acosonicor you can do n=nano;eval echo \{$n} to start nano06:39
nug700_ I have the file open in nano already06:39
nug700_ TJ-: what am i looking for06:40
Jari3487"/msg NickServ SET PASSWORD mynewpassword" should change it06:40
skryptkittygroup06:41
Jari3487im not familiar with the Freenode servers but i fetched that from the freenode FAQ.06:41
Bashing-omburk_20: Away from keyboard. I was just aware of the same issue reported on ubuntuforums, thought might be the same person.06:42
burk_20Bashing-om, yes, I am06:43
somsip!password | k1llscrypt06:43
ubottuk1llscrypt: Forgot your password? See https://help.ubuntu.com/community/LostPassword What's the root password? See !sudo. Don't see *** in password prompts? That's normal. Sudo doesn't ask for your password? It remembers you for several minutes. Please use strong passwords, see https://help.ubuntu.com/community/StrongPasswords06:43
burk_20I wrote the answer there too06:43
linociscohi all06:43
somsipk1llscrypt: ah - wrong one. try !register06:43
linociscoskype on ubuntu has smaller fonts and can't increase though I tried as per http://askubuntu.com/questions/155962/how-to-change-font-size-in-skype-4-x06:43
DalekSecsomsip: He's getting help in #freenode, they'll get it.06:44
linociscowhen I did qtconfig, only fonts in qtconfig windows is increased, i saved and then it is not affected on skype app06:44
nug700_What a mess the install process for ubuntu has become.  Use to be so easy06:50
cfhowlettnug700_, sudo apt install packagename                     doesn't get much easier than that06:50
nug700_I don't know what's wrong. I added the graphics driver ppa, which didn't have ant instructions on I stalling the packages after adding it to the sources.06:53
nug700_So I did apt-get install nvidia-current nvidia-settings for the hell of it and it installed something06:54
nug700_ And now I can't get past login06:54
k1llscrypt /msg NickServ VERIFY REGISTER k1llscrypt kiliisgwdmva06:56
linociscowhen I did qtconfig, only fonts in qtconfig windows is increased, i saved and then it is not affected on skype app06:56
linociscoskype on ubuntu has smaller fonts and can't increase though I tried as per http://askubuntu.com/questions/155962/how-to-change-font-size-in-skype-4-x06:56
cfhowlettk1llscrypt, and now we ALL know your nick and password06:56
skryptkittyhow do i download and install netflix06:57
skryptkittyon my desktop?06:57
=== nhandler is now known as BirthdayHandler
vicsar.07:01
skryptkittyhello world?07:01
cfhowlettskryptkitty, search terms:   ubuntu + linux07:02
cfhowlett+ netflix07:02
skryptkittyhow do i use that?07:02
Bashing-omnug700_: Did you purge the old driver prior to installing the PPA driver ? What Nvidia card are you working with and I will confirm what driver is recommended .07:03
nug700_Gtx97007:03
cfhowlettskryptkitty, google>07:03
nug700_how do I install the driver after adding the ppa to my sources?07:04
nug700_And how do I purge the old driver?07:04
xubuntu_yooooooo07:07
Bashing-omnug700_: The recommemded version is 352 / Do : ' sudo apt-get purge nvidia* ; sudo apt-get update ; sudo apt-get upgrade ; sudo apt-get install nvidia-352 ' // As easy as that .07:08
xubuntu_o07:08
nug700_That using the ppa?07:09
Bashing-omnug700_: Yup, will use the PPA - as you DO have it active .07:10
nug700_Ok.07:10
nug700_What does upgrade do exactly?07:14
Ben64upgrade packages07:14
cfhowlett!upgrade | nug700_07:15
ubottunug700_: For upgrading, see the instructions at https://help.ubuntu.com/community/UpgradeNotes - see also http://www.ubuntu.com/desktop/get-ubuntu/upgrade07:15
Bashing-omnug700_: Maybe pight to also run ' sudo apt-get dist-upgrade ' to make sure the latest kernel is installed so the Proprietary driver is built againt the newer kernel.07:16
Bashing-ompight/might *07:17
nug700_Before or after?07:17
psmcquit07:17
psmc-quit07:18
Bashing-omnug700_: Before. What happens with a PPA proprietary driver, is with a new kernel the old build driver is broke in the new invironment .07:18
hateballdist-upgrade with the graphics-driver PPA will put you on 355 tho. but that works just fine.07:21
Jari3487is there a way to install arch/gentoo on Windows host pc with VMWare?07:22
Jari3487i tried it couple a times but always resulted in a boot error07:22
Jari3487I even had Intel virtualization on07:22
SilmarilionJari3487, it is possible in virtualbox (using Arch), as for VMWare not sure, but I think it is possible also.07:23
cfhowlettJari3487, off-topic for this channel.07:23
nug700_My computer won't accept input after restarting after dist-upgrade07:32
nug700_ Well, ubuntu07:33
hateballnug700_: at all? or in the gui? can you switch to a tty with ctrl+alt+f1?07:33
hateballnug700_: you get back to gui with ctrl+alt+f7, in case you didnt knowe07:33
nug700_ The number lock won't toggle07:33
nug700_ Now it does after restarting07:34
omgnoezhello, i have a problem with installing bumblebee (doing it according ubuntu wiki for 14.04+ which is 15.04 in my case), apt brings me xserver-common-lts-raring package which fails to overwrite /var/lib/xkb/README.compiled because it is already installed by xserver-common 2:1.17.1-0ubuntu3 package, what do i do?07:35
omgnoezit all started after the upgrade process ripped my 14.04 instance eventually and currently it is a fresh install07:35
omgnoezsame as here https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/1310066 but vice versa07:35
ubottuLaunchpad bug 1310066 in xorg-server (Ubuntu) "package xserver-common 2:1.13.0-0ubuntu6.5 failed to install/upgrade: trying to overwrite '/var/lib/xkb/README.compiled', which is also in package xserver-common-lts-raring 2:1.13.3-0ubuntu6~precise3" [Undecided,Confirmed]07:35
zprdhi07:38
zprdis webupd8.org ppas are relatively trustable provider?07:38
=== vantage|work_ is now known as vantage|work
nug700_ Hah07:41
nug700_got it working07:41
cfhowlett!ppa | zprd07:41
ubottuzprd: A Personal Package Archive (PPA) can provide alternate software not normally available in the offical Ubuntu repositories - Looking for a PPA? See https://launchpad.net/ubuntu/+ppas - WARNING: PPAs are unsupported third-party packages, and you use them at your own risk. See also !addppa and !ppa-purge07:41
nug700_ Worst part over07:41
nug700_Thanks07:41
nug700_ Night07:41
Bashing-om!yah | nug700_07:42
zprdcfhowlett: well I am aware of that, just asking if some people have experience with this ppa07:42
zprdanyways, looking fot atom editor repo07:43
zprdfor*07:43
farciarz84is this something to worry about when the swap usage is 100% all the time?07:43
BlaXpiritfarciarz84, uh probably.  unless it's some misindication07:44
farciarz84BlaXpirit: use os is using swap instead of memory? there are 16GM mem free07:45
farciarz84GB*07:45
BlaXpiritfarciarz84, i have 12 GB,  swap is at 0% at all times07:45
_Nornszprd: Can't say 100%, but from my experience, never had any issues from any ppa's from webupd8.  I only know a few repositories from there though.07:48
urlany experience with pinet/LTSP in here?07:49
cfhowlett!ltsp | url07:49
ubottuurl: LTSP is the Linux Terminal Server Project, which adds thin-client support to Linux servers. See chapter 3 of the !edubuntuhandbook, http://www.ltsp.org and/or http://en.wikipedia.org/wiki/Linux_Terminal_Server_Project07:49
urlnagging issue for a few days, just can't seem to nail it07:49
cfhowletturl, probably more ltsp users in #ubuntu-server07:50
urltx cfhowlett07:50
urlcool, i'm in #ltsp too07:50
urlbbl07:50
pragomer1hello. I want to setup a linux samba fileserver. what user and group should be the owner of my datashare, e.g.  /dev/md0 that is mounted to /mydata ?07:50
cfhowlett!samba | pragomer1 you might also move this to #ubuntu-server if no response here07:51
ubottupragomer1 you might also move this to #ubuntu-server if no response here: Samba is the way to cooperate with Windows environments. Links with more info: https://wiki.ubuntu.com/MountWindowsSharesPermanently and https://help.ubuntu.com/lts/serverguide/samba.html07:51
undertaskerpragomer1: If this is a private network, or a test setup, and you're not concerned about security, use nobody/nogroup.07:54
pragomer1its my home-network.. where I want to configure different users with different rights and clients (android, windows, ubuntu)07:55
undertaskerWell, the easy way is to use a NAS distribution like OpenMediaVault.07:57
undertaskerThere you have web based administration that is easy to use.07:57
pragomer1undertasker: do you mean ME?08:01
zaggynldamn, I pressed ctrl+alt+F1 in vncviewer, now my screen is black and I can't go back to TTY708:06
hateballzaggynl: are you able to input anything?08:08
zaggynlwell I still have ssh access08:08
hateballzaggynl: you can use "chvt 7" to switch to tty7, at least should be able to08:08
hateballnot sure how that works over ssh tho ;f08:09
zaggynl"Couldn't get a file descriptor referring to the console" in ssh08:09
nug700_Bashing-om: question if I wanted to upgrade the driver,  would i do the purge?08:09
=== gms is now known as Guest27686
hateballzaggynl: google gives https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=522453, suggest running with sudo will work08:11
ubottuDebian bug 522453 in kbd "non-root users cannot access the console from X" [Normal,Open]08:11
zaggynlthanks08:11
zaggynlthat worked!08:11
zaggynlnow I feel bad for not having google that myself08:12
hateball:)08:12
* zaggynl adds to notes08:12
JustMozzyGood morning08:17
JustMozzyI have a problem with lightdm since I upgraded to 15.04. It randomly just crashes and I dont know how to troubleshoot it. Can anyone help me out?08:18
=== mint is now known as jack
=== Yukiku is now known as Yukkino
acosonicJustMozzy: trun on debug in lightdm.conf08:30
sachinaddyHi. I want to create an independent split tar file of 2GB each. So I can extract 2GB in destination server, after extract, i will delete file1 and start extracting file2. I have lack of space in destination server.08:32
=== elysium is now known as elysium^away
acosonicsachinaddy: split -b 1024m file.tar.gz08:36
acosonicsachinaddy: oh, but you want 2 separate archive I see08:36
acosonicsachinaddy: it's probably easises to do it manually targz 1 part of large archive, then targz another part, and scp extract...  Or use rsync or scp...08:38
=== arcsky_ is now known as arcsky
=== url is now known as fnurl
PCatineanWhat's the difference between sudo apt-get install and sudo aptitude install09:00
=== Desu is now known as MrSpock
chris__hi!! where i can talk about couchdb09:04
cfhowlettchris__, https://couchdb.apache.org/#mailing-lists09:05
chris__cfhowlett__thank you09:07
jwhwvHey, I know I can set all files within a folder to be executable with chomd -R +x, but how do I make it so that any file I create in that folder is automatically executable?09:07
cfhowletthappy2help!  chris__09:07
hateballjwhwv: you set umask per mount-point, so you'll likely have to run a cron-job that chmods. at least I do not know of any other way09:10
jwhwvhateball: Hmm, any major security risk I run by setting the entire filesystem as executable then?09:10
jwhwvI'm learning to program, so its annoying to have to chmod every time I make a script.09:11
hateballYou really do not want every file to be set +x, no09:11
jwhwvhateball:  I figured, but thought I'd ask.  hehe.  Cronjob it is.09:12
hateballjwhwv: well you could use an alias or something09:12
hateballjwhwv: so that you launch for instance "nano newfile.sh && chmod +x newfile.sh"09:13
jwhwvI like the way you think, hateball.09:13
hateball:)09:14
jwhwvWhat time zone are you in, man?09:15
FirebirdUKHi there. I'm using lightdm-gtk-greeter for manual user+password login. However, it clears the pwd field shortly after the cursor enters - even if the user is typing/ has type their password.09:15
FirebirdUKAny thoughts how I might debug / change this unwanted behaviour?09:15
zimzimaHi, I have a question avout displays in Ubuntu. I've just connected an external screen to my laptop and I'd like to set things up so that I have a permanent workspace on the external monitor.09:16
zimzimaI change workspaces a lot, and I only want it to change on the laptop monitor09:16
cfhowlett!xrandr | zimzima09:16
ubottuzimzima: XRandR 1.2 is the new method of running dual screens in !X.  Information/HowTo here: http://wiki.debian.org/XStrikeForce/HowToRandR1209:16
zimzimaHum, thanks, I'll check that out09:17
jwhwvzimzima: xrandr is nice and pretty easy even for a dummy like me.  You'll like it.09:18
zimzimaSounds good, thanks :)09:18
=== Tsunami1 is now known as Guest12166
marlincAnyone who can help me getting rpcbind to autostart in an Ubuntu Server OpenVZ container? Ubuntu 14.04 to be exact09:39
indistyloTomcat 7.0.52 | Oracle Java 8 | Ubuntu 14.04 , Problem is i am unable to login http://127.0.0.1:8080/manager/html , I tried /etc/tomcat7/tomcat-users.xml ,  tomcat-users.xml is http://pastebin.com/hQkVLrUT  Kindly suggest why I am unable to login09:45
indistyloI also followed this thread to solve problem, http://ubuntuforums.org/showthread.php?t=972911&highlight=tomcat6 &09:45
indistylohttp://ubuntuforums.org/showthread.php?t=110856109:45
MrSpockpost actual errors09:52
JustMozzyhi everyone. my lightdm or XServer (dont know which one) keeps on crashing and just drops me back to the login screen. can anyone help me troubleshoot?09:54
acosonicHow to enable/use mod-rewrite trough webmin ?09:57
MrSpockperfectly normal lightdm behaviour09:57
MrSpockacosonic: you should not use webmin09:57
MrSpockacosonic: specially not on a production box09:57
MrSpockJustMozzy: check the xorg log and lightdm log09:57
acosonicMrSpock: why? I love it09:58
acosonicMrSpock: virtualmin to be exact09:58
acosonicMrSpock: with fancy themes09:59
=== ytixdecaf is now known as lelzxor
lelzxorOllo..09:59
I-am-GrootHello, Yesterday, i complained about my ubuntu 14 crashing and it turned out to be a kernel panic. I was asked to boot from an older kernel which seemed to fix the problem. But the whole freeze just happened again this morning09:59
MrSpockacosonic: 1. it is not very good at all  2. it is a huge security risk, it contains more holes than a swiss cheese09:59
lelzxor:D09:59
jdrabacosonic: https://help.ubuntu.com/community/WebMin10:00
acosonicMrSpock: what do you recommend instead?10:00
MrSpockacosonic: plain old ssh10:00
I-am-Groothere is my dmesg...  http://paste.ubuntu.com/12271870/10:00
k1l_!webmin | acosonic10:00
ubottuacosonic: webmin is no longer supported in Debian and Ubuntu. It is not compatible with the way that Ubuntu packages handle configuration files, and is likely to cause unexpected issues with your system.10:00
MrSpockit is sad how many XSS exploits there have been for webmin10:01
MrSpockseriously, XSS is trivial to avoid10:01
acosonicI don't know I run over 150 servers on it, never had a signle problem10:01
acosonicwith ubuntu 14.0410:01
MrSpockacosonic: ignorance is not bliss :p10:01
jdrabMrSpock: and now they include "file manager" by default .. :)10:01
acosonicyeah, but you are assuming all users are Linux pro's I have dosen of shared-hosting users who can't even understand cpanel or webmin...10:02
I-am-GrootAnyone?10:02
neglesaks?  I'm on 14.10. I have the update engine set to offer update to any new release, but I have had no notificatiosn whatsoever of the upgrade to 15.04. Any advice?10:03
MrSpockacosonic: then you do it like eg linode, and write/provide good documentation10:03
MrSpock:)10:03
acosonicyeah so mod rewrite works, I just didn't saw it on phpinfo http://stackoverflow.com/questions/3772892/phpinfo-mod-rewrite10:04
acosonicMrSpock: my biggest security problem was drupal/wordpress ... Ever... And some Solr crap but I didn't submit Solr report anywhere10:05
MrSpockphp itself is a giant hole too :/10:05
JustMozzyHi there. Can anyone help me out troubleshooting, why I keep on getting kicked out to the login screen? I think lighdm or X11 are crashing10:06
JustMozzyI really need help on this one, the problem has been present for a few weeks and it keeps on crashing more often10:07
MrSpockJustMozzy: as I said, read the logs10:08
MrSpockacosonic: you know a language is bad when it has "escape_string() safe_escape_string() and real_safe_escape_string()"10:08
JackAttacksup all10:08
JustMozzyMrSpock: sorry, I didnt get the message before. Got kicked out again ;) which logs should I have a look at?10:09
I-am-GrootJustMozzy: When did your problem start?10:09
MrSpockacosonic: "instead of fixing the original function, lets just add another!"10:09
MrSpockJustMozzy: xorg log and lightdm log10:09
MrSpockJustMozzy: running systemd as pid1?10:09
I-am-GrootJust yesterday, my system would lock up and nothing would respond10:09
JustMozzyMrSpock: yupp, systemd with pid110:10
I-am-GrootI havent done anything to the system like mess with the system files or anything10:10
MrSpockJustMozzy: journalctl -b -u lightdm10:10
JustMozzyI-am-Groot: It started after upgrading to 15.0410:10
I-am-GrootOOhhh okay.10:10
MrSpockJustMozzy: and /var/log/Xorg.0.log10:10
I-am-GrootI am still on 14.0410:10
gulzarI installed LAMP stack. My html+php code is working only from /var/www/html . If I keep it on anywhere else it doesn't work. But I can't edit files with normal user from /var. What is the solution of this problem?10:10
MrSpockgulzar: you should use /src10:11
MrSpockserv*10:11
MrSpocksrv* dammit10:11
I-am-GrootYesterday, the system crashed and the capslock light begun to flush10:11
I-am-Grootflash*10:11
JustMozzyMrSpock: here is the journalctl output http://pastebin.ca/315184010:11
MrSpockI-am-Groot: sounds like a kernel panic10:11
gulzarMrSpock: /srv is empty10:11
gulzarMrSpock: I never used this dir10:12
I-am-GrootYea... But why?10:12
MrSpockgulzar: becuse you didn't use it10:12
I-am-GrootIt was working Okay.10:12
gulzarMrSpock: so I have to configure apache/php to use this dir?10:12
MrSpockgulzar: man -P "less -p /srv" hier10:12
JustMozzyMrSpock: and here my Xorg log http://pastebin.ca/315184110:12
MrSpockgulzar: sadly many distroes, including ubuntu, totally ignores the FHS when it comes to where to host stuff from :(10:12
I-am-GrootIt just crashed again this morning and this time around, the caps lock light didnt flicker but i still couldnt get it to respond10:13
MrSpockgulzar: so yes, if you want to use it you have to poke the configs a bit10:13
gulzarMrSpock: so I can edit files easily from /srv ?10:13
MrSpockgulzar: if you set up the permissions, yes10:13
MrSpockgulzar: don't put stuff directly in /srv, btw, use /srv/http/ etc10:13
I-am-GrootI have done some research and i am trying to get kernel crash dumps by using this https://help.ubuntu.com/lts/serverguide/kernel-crash-dump.html10:14
gulzarMrSpock: Ok10:14
MrSpock/srv/http/somesite or similar10:14
MrSpockgulzar: for permissions: create groups and add the user that is suposed to edit the site into said group, and give the group rwx access to the site dir10:14
MrSpockgulzar: or better, use ACL10:14
MrSpock(ACL lets you have more fine tuned control)10:15
gulzarMrSpock: So much configs. my code is hardly 100 lines.10:15
gulzarMrSpock: what about public_html ?10:15
MrSpockgulzar: apache/php is a big hassle to set up indeed10:16
MrSpockeven when just using mod_php10:16
MrSpockgulzar: I'm not really a big fan of public_html from $HOME10:16
gulzarMrSpock: I need php only to execute my Python code. else I don't need php10:17
MrSpockgulzar: that makes no sense at all10:17
MrSpockwhy use php at all then?10:17
JackAttackhey my man, are anyone these important real quick?       libbonoboui2-0 libbonoboui2-common libglade2-0 libgnomecanvas2-010:18
JackAttack  libgnomecanvas2-common libgnomeui-0 libgnomeui-common libkeybinder010:18
JackAttack  python-gnome2 python-keybinder python-pyorbit10:18
gulzarMrSpock: I have python scripts to be called depending on user input. But these scripts cannot be called directly from HTML. I need webserver, django/flask or php to call python10:18
MrSpockjust use uwsgi, optionally with nginx or apache in front for caching etc10:18
JackAttackautoclean10:18
MrSpockgulzar: sure, but why go for php?10:18
neglesaks?  I'm on 14.10. I have the update engine set to offer update to any new release, but I have had no notificatiosn whatsoever of the upgrade to 15.04. Any advice?10:18
JackAttacksound imprtant10:18
gulzarMrSpock: anyother way? I am beginner in web development10:18
MrSpockgulzar: python ofcourse10:18
JackAttacknvm10:18
JackAttackbrb10:18
MrSpockeasier and safer10:19
JackAttacky10:19
hateballneglesaks: you can run "sudo apt-get update && sudo do-release-upgrade" in a terminal, see if that works better10:19
gulzarMrSpock: but how to call python from html ? I know I can create pages with python but that is not the purpose. .html page is one, it calls ptyhon scripts and show output10:19
neglesaksi did try one of those, but i'll try that again and see what happens. thnaks10:19
MrSpockgulzar: you don't10:20
MrSpockgulzar: you have python generate the html10:20
MrSpockgulzar: eg using django, flask, cherrypy10:20
MrSpockasuming you want/need a dynamic site10:20
neglesakshateball, this is what I gwt: Reading package lists... Done --- Checking for a new Ubuntu release---No new release found10:21
MrSpockgulzar: http://cherrypy.readthedocs.org/en/latest/tutorials.html10:21
neglesaksSO, it apparently cant see any new releases10:21
JustMozzy_damn it. got kicked again10:21
gulzarMrSpock: Yes, django or flask etc. then I have to learn new things just for one command. with php the whole code is "exec python3 script". I will think of django later. But the main problem is I can't edit files from /var or /srv. or else I need to edit apache/php config. whereever I go its tedious10:22
=== MattTS_ is now known as MattTS
MrSpockgulzar: you don't need php for that10:22
MrSpockand php/apache is much more of a hassle to set up than uwsgi or similar10:23
gulzarMrSpock: Ok let's try10:23
gulzarMrSpock: what's your pick? django or flask10:23
MrSpockgulzar: depends on the use10:23
JustMozzy_MrSpock: any thoughts on the logs?10:23
MrSpockJustMozzy_: use a sane pastebin like bpaste.net or gist.github.com10:23
MrSpockgulzar: in most cases I would use cherrypy10:24
gulzarMrSpock: mine is , take input file, run python on it and run another tool in perl. Show image as output10:24
gulzarMrSpock: this much simple is my deign. with php its two exec. that's why I thought of that10:24
MrSpockgulzar: that doesn't say anything about the actual use, if this is going to be served to 20 million people at once, or just on your fridge10:25
gulzarMrSpock: Oh, yes to thousands atleast10:25
MrSpockhow dynamic is the data?10:25
MrSpockdoes it have to be regenned for every view?10:26
MrSpockif not: just generate it every 10 sec or whatever and then serve it as a static file10:26
MrSpock*much* better performance10:26
MrSpockor do heavy caching10:26
gulzarMrSpock: yes, for evey input all the steps needs to be executed again10:27
gulzarMrSpock: depending on input the scripts are different but steps are same10:27
=== omnik5570 is now known as omnik5569
MrSpockthen I would use cherrypy with caching10:28
MrSpockand consider redoing the backend a little bit10:28
gulzarMrSpock: hardware is not a problem. we have 128GB ram server to host it10:28
MrSpockgulzar: famous last words10:28
gulzarMrSpock: Thank you10:29
MrSpockand wasted resources are wasted resources :)10:29
gulzarMrSpock: yes :)10:29
I-am-GrootSo i have installed linux-crashdump https://help.ubuntu.com/lts/serverguide/kernel-crash-dump.html10:42
=== andrea is now known as Guest67942
I-am-GrootNow i should be able to get logs after the crash10:43
LinuxdenzzaHeyo10:44
EXIDBot 10:46
=== greyback__ is now known as greyback
EXIDBota10:57
k1l_EXIDBot: do you have a ubuntu support issue?10:59
=== SmOkE-RU is now known as SmOkE_RU
=== dionysus70 is now known as dionysus69
BluesKajHiyas all11:20
freck2any assembly expert can help me with something?11:24
radkishrc.all4y.net11:24
Omhi11:33
sachin_aIs ubuntu proprietary software?11:40
cfhowlettsachin_a, no11:41
cfhowlett!ubuntu11:41
ubottuUbuntu is a complete Linux-based operating system, freely available with both community and professional support. It is developed by a large community and we invite you to participate too! - Also see http://www.ubuntu.com11:41
ropeadopeKernel is not, some aspects of it are, Unity for example. Could be wrong?11:42
sachin_aI am already a ubuntu user since last 11 month11:43
=== aeden__D is now known as aedend
sachin_aafter hearing some words from Richard Stallman regarding ubuntu's spyware, I am planning to search an alternative11:45
=== kyle_ is now known as Guest52494
cfhowlettsachin_a, you came to ubuntu to ask about alternatives to ubuntu?  strange.  suggest you seek alternatives in ##linux11:45
cfhowlettsachin_a, also, ubuntu doesn't have spyware.  RMS is free to disagree.11:46
ropeadopesachin, you can easily turn off the code R Stallman is referring to, which is remote content search11:47
sachin_ahow?11:47
k1l_sachin_a: system settings, privacy settings11:48
ropeadopegsettings set com.canonical.Unity.Lenses remote-content-search none11:48
cfhowlett!adlens | sachin_a11:48
ubottusachin_a: To hide online search results in Ubuntu Unity, go to System Settings > Security and Privacy > Search and toggle the option off.11:48
sachin_aok11:48
marxShow can  I get rid of the background behind the text on the desktop icons (like this: http://cdn3.howtogeek.com/wp-content/uploads/2014/07/xfce-desktop-environment-installed-on-ubuntu-14.04.png ) so as it looks like these:   http://2.bp.blogspot.com/-NSB573-XZyk/U8fRQDXJI4I/AAAAAAAATkk/AG04NPT_JbA/s1600/xfce-whiskermenu-panel-add.png11:52
marxSim using xfce11:52
marxSnvm I found this: https://slackalaxy.wordpress.com/2012/08/15/xfce-transparent-desktop-icons-text-background/11:54
TricksHi guys. I'm having a few problems with FQDN if anybody is available to help?12:00
cfhowlett!ask | Tricks12:01
ubottuTricks: Please don't ask to ask a question, simply ask the question (all on ONE line and in the channel, so that others can read and follow it easily). If anyone knows the answer they will most likely reply. :-) See also !patience12:01
sardsurferhi, my tray icons in xubuntu aren't working anymore. What should I do? Thanks12:02
cfhowlettsardsurfer, you mean panel?12:02
sardsurferyep12:02
cfhowlettsardsurfer, logout/login.  also see if they launch in your guest account12:02
sardsurferlogout/login doesn't work. I will try to launch a guest account. brb, thanks12:03
sardsurferback. Guest is working pretty good12:05
TricksOk, I have setup my box with fqdn of test.example.zone.internal. hostname returns test and hostname -f returns test.example.zone.internal. That's all great and as expected. I've set search in resolvconf to example.zone.internal. Problem is when I try and ping another machine by it's hostname database, for instance, it doesn't resolve. However if I type the full name database.example.zone.internal it does resolve?12:05
cfhowlettsardsurfer, pretty good = proper panels12:07
cfhowlett?12:07
sardsurferyep12:07
sardsurferusing guest i can minimize to tray12:07
MonkeyDustTricks  sounds more for ##networking12:08
cfhowlettsardsurfer, so it's not a system problem, but something user specific.  Don't know exactly what's wrong but I do know how to fix it.12:08
sardsurfersounds good. what should i do?12:08
marxSfor this: https://odoepner.wordpress.com/2013/07/12/transparent-background-for-xfce-desktop-icon-texts/ where would such a file ~/.gtkrc-2.0 be located?12:08
marxSI've added it to /home and to /home/user but it hasn't changed the settings12:09
Aqui1aHello. I've been trying to configure my mouse buttons on my Logitech G500. I followed some instructions that I found on the Ubuntu wiki, but they didn't work for me. Could anyone help me with this?12:09
cfhowlettsardsurfer, delete /home/.config/xfce4     then logout/login           note: this will nuke all xfce4 settings back to their factory fresh defaults; desktop/terminal/panel settings12:10
sardsurferchfhowlett, ok. brb12:11
DavidFromBelgiumhello12:13
sardsurfercfhowlett, you are the man. It works. Thanks :)12:13
cfhowlettsardsurfer, happy2help!12:13
DavidFromBelgiumE: Unable to locate package nvclock <-- any help ?12:14
hateballDavidFromBelgium: what are you even trying to do?12:15
MonkeyDust!find nvclock12:15
ubottuFound: W:, W:, W:12:15
MonkeyDustDavidFromBelgium  that means it doesnt exist... some things actually do not exist12:16
DavidFromBelgiumhateball: I'm trying to get the temperature of my GPUs12:16
MonkeyDustDavidFromBelgium  install lm-sensors and/or psensor12:17
hateballDavidFromBelgium: If you're using proprietary nvidia drivers you can see the temps in nvidia-settings as well12:17
MonkeyDustDavidFromBelgium  and also install thermald and indicator-cpufreq  to control the laptop temperature12:19
DavidFromBelgiumMonkeyDust: already installed12:19
DavidFromBelgiumhateball: I need a terminal command12:19
MonkeyDustDavidFromBelgium  in a terminal, type   watch -n 1 sensors12:19
DavidFromBelgiumMonkeyDust: only cpu temp is displayed12:20
hateballDavidFromBelgium: nvidia-settings -q gpucoretemp12:21
goy_anyone using chromium?12:22
hateballgoy_: Is it a poll?12:22
goy_poll?12:22
goy_no its about adds12:23
cfhowlettgoy_, "anyone else ..." are best avoided.  how about you state YOUR issue with meaningful details12:23
=== goy_ is now known as goyy
DavidFromBelgiumhateball: Unable to init server: Could not connect: Connection refused12:23
goyychromium seems to ignore /etc/hosts12:23
cfhowlett"seems to"??12:24
gcbirzan_it has its own cache12:24
gcbirzan_so you might want to restart it12:24
goyyi cleared it, restarted and no effect12:24
JustMozzyso, I am fighting with my system crashing from time to time, without any obvious reasons. I have here my journalctl output where some errors are logged but I cannot make anything of it. http://paste.ubuntu.com/12272724/ can anyone help out?12:24
JustMozzyI am on ubuntu 15.0312:24
JustMozzy*15.0412:25
gcbirzan_goyy: then I'd look at typos :)12:26
DavidFromBelgiumguys, I needed the proprietary nvidia-smi command : nvidia-smi -q -d TEMPERATURE12:27
hateballDavidFromBelgium: I dont think it is case sensitive but if it is try "GPUCoreTemp". not at a machine with nvidia card right now so cant doublecheck12:28
ioria!info nvclock trusty12:29
ubottunvclock (source: nvclock): Overclock an NVIDIA card. In component universe, is extra. Version 0.8b4+cvs20100914-5 (trusty), package size 61 kB, installed size 187 kB (Only available for alpha; amd64; armel; armhf; hppa; i386; ia64; powerpc; sparc)12:29
DavidFromBelgiumhateball: it's a graphical tool12:29
DavidFromBelgiumioria: why can't I find it ?12:30
ioriano more for vivid :-(12:30
ioriaDavidFromBelgium, are you vivid ?12:31
MonkeyDustDavidFromBelgium  nvclock existed in 14.04, but not anymore in 15.0412:31
goyycould you have a look at my hosts file https://bpaste.net/show/cbe629ac853412:32
DavidFromBelgiumioria: yes12:32
DavidFromBelgiumthat's ok, nvidia-smi does what I need12:32
DavidFromBelgiumthank you all12:33
ioria^_^12:33
goyy^.^12:33
JustMozzyMrSpock: here ist my full journal output from the time I got to the laptop and it crashed http://paste.ubuntu.com/12272724/12:34
=== alrekur is now known as Guest59050
sachin_aentify linux12345612:49
DJonessachin_a: Probably time for a new password12:51
sachin_ayeah!!12:52
MonkeyDustsachin_a  choose a somewhat stronger/safer  password12:53
=== trabbit_ is now known as trabbit
NepaliHello help plz12:54
cfhowlett!help | Nepali12:54
ubottuNepali: Please don't ask to ask a question, simply ask the question (all on ONE line and in the channel, so that others can read and follow it easily). If anyone knows the answer they will most likely reply. :-) See also !patience12:54
livcdhow do i overwrite ubuntu's dns "search Inteno" to "search localhost" ?12:54
NepaliI have enabled the two finger scrolling in linux mint but..it is not working....12:58
bazhangNepali, get mintsupport for that12:58
MonkeyDustNepali  ask in the mint§ channel, it's not supported here12:58
cfhowlett!mint | Nepali12:58
ubottuNepali: Linux Mint is not a supported derivative of Ubuntu. Please seek support in #linuxmint-help on irc.spotchat.org12:58
Nepaliok12:59
* cfhowlett wonders if mint actually directs their users to ubuntu ... 12:59
bazhangbacktrack did at one point12:59
Nepaliand what is the keyboard shotcut to change the channel from weechat in terminal12:59
HackerIIonce xchat is opened, it takes them to thier room12:59
MattTSDoes sudo not get all environment variables from the user?12:59
cfhowlettbazhang, I remember that ... bastards!12:59
bazhangtry #weechat Nepali13:00
Nepali#weechat Nepali13:00
Nepali:D13:00
HackerIIlolk13:00
sachin_aNepali type.. /join #weechat13:00
livcdhow do i overwrite ubuntu's dns "search Inteno" to "search localhost" ?13:02
MonkeyDustlivcd  what brings you here?13:03
livcd?13:03
Piciinteno?13:04
livcddunno it was set like this by default :S13:06
pbxstatus bar is unresponsive, how do i kick-start it?13:06
pbx`killall unity-panel-service` visibly restarts it but it's still dead to clicks13:06
=== trabbit_ is now known as trabbit
MonkeyDustlivcd  is inteno something familiar to you, a username, a shop, something else?13:07
livcdMonkeyDust: not at all13:08
goyypbx: killall -SIGUSR1 unity-panel-service13:09
pbxthank goyy.  same effect as without -SIGUSR1 though13:09
pbxi.e. didn't fix it13:09
MonkeyDustlivcd  what were you do doing and brings yoi here?13:10
MonkeyDustyou*13:10
jack78hello everyone13:11
jack78im here to help people as i can13:11
livcdMonkeyDust: i guess vbox added it there13:11
MattTSMonkeyDust: off topic but is your nick a reference to the cartoon?13:12
livcd00:00:00.088664 NAT: Adding domain name Inteno13:12
MonkeyDustMattTS  yes13:12
MonkeyDustlivcd  ok, vbox... what are you doing with vbox? where did vbox put "it"?13:12
livcdMonkeyDust: i guess when i started the VM13:13
MonkeyDustlivcd  where do you that "inteno"?13:13
MonkeyDustlivcd  where do you see that "inteno"?13:13
livcd/etc/resolv.conf13:14
livcdon VM and in the VBox logs i just pasted the output from13:14
MonkeyDustlivcd  in the guest or in the host?13:14
Picifyi, inteno is a brand of router.13:14
livcdPici: oh right that's my router then13:14
wydhryCapek deh ...13:16
MattTSIs there any way to prevent sudo from resetting stuff like path, ld_library_path etc? I set alias sudo env blah=blah in my .bashrc but that seems nasty13:18
ActionParsnipMattTS: you could have your user only able to run a few commands using sudo, then have like an "admin" account that can do anything13:20
MattTShmm13:20
MattTSThe main reason I want it is for python modules13:21
ActionParsnipMattTS: you could run your pythin dev stuff as the restiricted user13:21
=== trabbit_ is now known as trabbit
pbxMattTS, if you're talking about installing stuff in the system python, i'll jump right into the unsolicited advice and say: use virtualenv13:22
MattTSOkay, I'll look at that. Cheers13:22
oaulakhi dunno why my ubuntu system performing slow after i update it :(13:22
MattTSThe behaviour is probably safe but annoying as hell13:22
RyanBHi - I'm yrying to make the jump from Windows to Ubuntu. The only thing I'm fidning annying is that I have to google everything that I want to install. There has to be a more logical approcah than this. Any advice ?13:23
oaulakhi dunno why my ubuntu system performing slow after i update it :(, anyone can help to make this solve?13:23
MattTSIt was driving me mad how trying to install scipy through pip couldn't find libmkl_rt.so even though I could locate it13:23
pbxRyanB, the Ubuntu Software Center app has a search box but i'm betting that's not what you mean...13:23
cfhowlettRyanB, software center13:23
RyanBPdx, thanks for your input but that's not what I mean for example. IntelliJ IDEA, PopCornTime13:24
MonkeyDustRyanB  the longer you use ubuntu, the more familiar you will get with the new programs... it's normal that you have to search in the beginning13:24
tnkhanhHi is wily 15.10?13:24
pbxoaulakh, give lots more specifics. updated from what version to what version? what specifically is slow? what isn't slow?13:24
RyanBMonkeyDust - Okay. That's what I'm here to find out. What are these commands that I don't  know ?13:24
ActionParsnipoaulakh: what is the output of:   cat /etc/issue13:24
tnkhanhoh yes it is13:24
MonkeyDust!manual | RyanB start here13:24
ubottuRyanB start here: The Ubuntu Manual will help you become familiar with everyday tasks such as surfing the web, listening to music and scanning documents. With an emphasis on easy to follow instructions, it is suitable for all levels of experience. http://ubuntu-manual.org/13:24
pbxRyanB, i see intellij IDEA 13 CE in the software centre13:25
RyanBI'll read that thanks.13:25
RyanBI need 14.13:25
oaulakhUbuntu 14.04.3 LTS \n \l13:25
ActionParsnipoaulakh: and are you using Unity shell?13:25
PiciRyanB: The official websites for those things have their own install instructions.13:25
cfhowlettRyanB, www.fullcirclemagazine.org/downloads            I suggest you download & read issue #0, 1, 2, ... repeat until comfortable with ubuntu13:26
oaulakhyup13:26
RyanBIt was an example to show how I install something out side of the sofware center.13:26
oaulakhbut why?13:26
ActionParsnipoaulakh: just getting details13:26
RyanBthanks cfhowlett!13:26
ActionParsnipoaulakh: what GPU do you use? If you are unsure then run:   sudo lshw -C display     If you have 2 GPUs, please report both13:26
ActionParsnip!ppa | RyanB maybe there is a PPA13:27
ubottuRyanB maybe there is a PPA: A Personal Package Archive (PPA) can provide alternate software not normally available in the offical Ubuntu repositories - Looking for a PPA? See https://launchpad.net/ubuntu/+ppas - WARNING: PPAs are unsupported third-party packages, and you use them at your own risk. See also !addppa and !ppa-purge13:27
MonkeyDustRyanB  windwos is the Main Stream (MS), linux requires other installation methods13:27
tnkhanhcan I talk about wily lol13:27
cfhowletttnkhanh, #ubuntu+1 for wily support13:27
MonkeyDusttnkhanh  type   /j #ubuntu+113:27
FuraiHmm, I've come across some really obscure problem. Obscure because it's about Colemak keyboard layout. It just doesn't work as it should. Not all of the key combinations work. Anyone knows something about it? I've tried searching the Internet for quite a long while, nothing that could solve my problem.13:27
oaulakhnvidia 410m13:28
RyanBMonkeyDust. I appreciate that, I'm here to try and learn so it doesn't feel like a task to use. I find everything else with Linux fantastic other than install apps. Simply here trying to seek advice so that I'm not ignorant towards Linux :)13:28
ActionParsnipoaulakh: and an Intel GPU as well?13:28
oaulakhit didn't show any intel13:28
oaulakhlet me show u13:29
RyanBUIbottu That's kinda of what I was looking!13:29
ActionParsnipoaulakh: ok, have you tried:   sudo apt-get --reinstall install dkms13:29
RyanBPPA's allow you to install software otuside of the Software Center...Ah!13:29
oaulakhbut for what?13:29
ActionParsnipoaulakh: use a pastebin if you want to share lots of text please13:29
oaulakhok13:29
ActionParsnipRyanB: if there is a PPA with what you desire, yes13:30
MonkeyDustRyanB  yes, but in your enthousiasm: don't use too many ppa's...13:30
oaulakhhttp://paste.ubuntu.com/12273103/13:30
RyanBWhy whats wrong with have alot of PPA's slow down update/upgrade ?13:31
oaulakhActionParsnip, and install dkms too now13:31
RyanBWhere are good palce to search for software and it tells u the PPA ?13:31
RyanBplaces*13:31
ActionParsnipoaulakh: you are using the nouveau (open source) driver. Did you install the proprietary video driver?13:32
oaulakhActionParsnip, http://paste.ubuntu.com/12273103/ why its showing clock size only 33mhzs13:32
oaulakhno13:32
ActionParsnip!ppa | RyanB13:32
ubottuRyanB: A Personal Package Archive (PPA) can provide alternate software not normally available in the offical Ubuntu repositories - Looking for a PPA? See https://launchpad.net/ubuntu/+ppas - WARNING: PPAs are unsupported third-party packages, and you use them at your own risk. See also !addppa and !ppa-purge13:32
oaulakhdo i have to install it now :O13:32
ActionParsnipRyanB: or in duckduckgo you can use the !ppa   bang :)13:32
oaulakhActionParsnip, but how?13:33
ActionParsnipoaulakh: its a question, did you install the proprietary video driver, or not?13:33
livcdso how do i change dns permanently in ubuntu ?13:33
oaulakhno13:33
ActionParsniplivcd: I use the /etc/resolvconf/resolv.conf.d/head file   its hacky but works13:34
livcdActionParsnip: is not it base instead of head ?13:34
MonkeyDustlivcd  yes, i use base... guess both work13:35
ActionParsniplivcd: head is the text that adds the "dont change this file" text to /etc/resolv.conf   so if you add text to that it will be added before anything you recieve from DHCP :)13:35
livcdoh13:35
MonkeyDustActionParsnip  you're a geek13:35
ActionParsnipoaulakh: you can use the additional drivers application and install the proprietary driver. If you reboot and hold SHIFT, you can boot to an older kernel. Is it ok there?13:36
ActionParsnipMonkeyDust: indeed13:36
ActionParsnipMonkeyDust: off on a Solaris course all next week in London13:36
MonkeyDustlivcd  after modyfying and saving base (or head), do this...  sudo resolvconf -u13:37
livcdi have tried to modify base13:37
livcdbut it appends the stuff13:37
livcdso i end up with search Inteno localhost13:37
ActionParsniplivcd: conventionally, you can use network manager to configure all this too but I find that stuff frustrating13:38
ActionParsniplivcd: you can add the lines like this:      echo "nameserver 8.8.8.8" | sudo tee -a /etc/resolvconf/resolv.conf.d/head > /dev/null13:38
RyanBThanks for your help everyone!13:40
livcdActionParsnip: right but that still would have the same effect13:40
ActionParsniplivcd: reboot and try it :)13:40
definityhow can i load a diffrent version of a driver?13:42
funkt_Hi there I am trying to reinstall or update grub but i keep getting cannot get caanlonical path of cow? anyone have any ideas?13:43
wyoungfunkt_: ?13:43
funkt_i cannot fix the boot for ubuntu i try to update or repair install grub and keep getting grub-install error:failed to get canonical path of '/cow'13:45
wyoungoh cow as in the filesyste,13:46
wyoungI was slightly confused there for a bit :)13:46
funkt_I think so wyoung im not too sure13:46
ActionParsnipfunkt_: are you chrooting in from LiveCD ?13:46
funkt_yes13:46
funkt_from live cd13:46
ActionParsnipfunkt_: http://askubuntu.com/questions/254491/failed-to-get-canonical-path-of-cow13:46
ActionParsnipfunkt_: that guide will help you correctly mount the file systems13:47
BluesKajfunkt_, are you trying to repair from live media?13:47
funkt_Thank you I have tried this article many times13:47
funkt_It just keeps producing grub-install error:failed to get canonical path of '/cow'13:47
funkt_From live cd yes13:47
ActionParsnipfunkt_: omgubuntu also has a guide named "sticking it to grub"13:48
ActionParsnipfunkt_: is the arch of the liveCD the same as the installed OS?13:48
funkt_yes both are 14.0413:49
funkt_if thats what you mean13:49
BluesKajfunkt_, 32 or 64 bit/13:49
BluesKaj?13:50
funkt_Thank you this was my first ever article have tried this13:50
funkt_it does not explain about the /cow13:50
funkt_6413:50
funkt_Keep getting stuck with  grub-install error:failed to get canonical path of '/cow'13:51
BluesKajtry mounting the partition /dev/daX where the boot;loader/grub is installed13:51
definityhow can i load a diffrent version of a driver? i am using wireless bcm43412 and the connection keeps dropping, i did 'apt-cache show bcmwl-kernel-source' and their were 2 versions. How can i tel which one is loaded? and how do i switch it to the unused one?13:52
h4k1mhi13:54
funkt_as soon as i try sudo mount /dev/sda1/mnt it says cant find /dev/sda1/mnt in etc/fstab or etc/mtab13:54
h4k1mI have trouble to use graphical mode on an Amazon EC2 instance running Ubuntu 1413:54
h4k1mI suspecting that driver for "Cirrus Logic GD 5446" are not installed13:54
funkt_same with sda13:54
sachin_ais there a forum for ubuntu-gnome?13:55
h4k1mis there a way to check if the correct drivers are installed?13:55
=== the_ant1 is now known as the_ant
funkt_do you think if i reinstall ubuntu woudl it correct the grub loader and mbr?#13:56
ActionParsniph4k1m: if you run:   sudo lshw -C display    do you see 'unclaimed' ?13:56
h4k1mActionParsnip: yes13:57
zetherooas far as I know fstab is for mounting on a system-wide level, but is there a way to have user-specific mounts configured so that when User A logs in certain mounts are mounted, and when User B logs in other mounts are mounted?13:57
BluesKajfunkt_, try boot repair http://sourceforge.net/projects/boot-repair-cd/ , if you can acces the 'net from a different pc or partition/OS13:57
ActionParsnipfunkt_: you didnt specify the mount point. You would run:   sudo mount /dev/sda1 /mnt13:57
h4k1mActionParsnip: does it mean that I need to install the driver?13:58
technocfShould I wait until it's offical before upgrading to 15.10, or will it be stable enough right now?  Also, if I was to install it now, when it comes out, would I get all the updates that would make it the full release?13:58
funkt_Hi actionparsnip Thats what I have tried13:59
funkt_sudo mount /dev/sda1/mnt13:59
funkt_ sudo mount /dev/sda1 /mnt13:59
ActionParsniph4k1m: it means that udev didnt pick up the device and is loading the failsafe driver. If you can find a driver for it then great14:01
technocfThere will be the upgrade option in 15.04 when the release is offical, am I correct?  Does it appear right away when the release comes out?14:01
zykotick9!final | technocf14:01
ubottutechnocf: If you install a development version of Ubuntu wily and keep up with package updates, then you will be upgraded to the official release of 15.10 when it comes out. To make sure, type « sudo apt-get update && sudo apt-get dist-upgrade » in a terminal.14:01
h4k1mActionParsnip: thanks it's getting clearer now14:01
ActionParsnipfunkt_: ok, then mount the other folders in the mounted file system as the guides say14:01
h4k1mI will check if it's possible to change the vga card (on the cloud)14:01
technocfubottu: Is it going to be stable as of Beta 1?14:02
ubottutechnocf: I am only a bot, please don't think I'm intelligent :)14:02
MonkeyDusttechnocf  wily isn't released yet...14:02
ActionParsnipfunkt_: the fact that you are asking this sort of thing leads me to think that you werent following the guides very closely14:02
technocfOh... it's a bot. *facepalm*14:02
funkt_I have been I dont really know what im doing ive tried every poss way sda1 - 414:02
funkt_ive tried boot repir mbr repair14:03
EriC^^funkt_: what's the problem?14:03
funkt_I have messed up my mbr and cannot boot into ubuntu and I have tried several articles already mentioned here but keep getting grub-install error:failed to get canonical path of '/cow'14:05
funkt_cannot install grub14:05
BluesKajfunkt_, are you sure it's mbr and not UEFI boot ?14:06
funkt_I dont know mate14:06
funkt_Not a scooby how do i find that out?14:06
BluesKajfunkt_, how old is your pc?14:07
funkt_maybe 6 years old?14:07
* zykotick9 thinks the "canonical path of /cow" is suspicious...14:07
funkt_maybe more14:07
BluesKajfunkt_, if it's newer than 2010 then it most likely uses UEFI instead of BIOS14:07
funkt_okie dokes so what does that mean?14:08
BluesKajno mbr14:08
=== richard is now known as Guest91095
funkt_ok14:08
funkt_any idea on grub-install error:failed to get canonical path of '/cow'14:08
ActionParsnipfunkt_: did you mount /proc and so forth as well?14:09
funkt_actionparsnip what is that? thanks14:10
ActionParsnipfunkt_: really!!!?14:10
EriC^^funkt_: you have to mount bind the virtual filesystems and then chroot and grub-install14:10
ActionParsnipfunkt_: dude, read the actual guide, there are more mounts to run14:10
BluesKajwhat other OSs are on that pc?14:10
EriC^^funkt_: https://help.ubuntu.com/community/Grub2/Installing#via_ChRoot14:10
ActionParsnipfunkt_: again, you are getting issues because you arent following the guides closely, or at all14:10
EriC^^follow that guide starting from step 614:10
funkt_If im following the vid or the comnands I get half way and get grub-install error:failed to get canonical path of '/cow'14:11
livcdActionParsnip: the search Inteno is still there14:12
livcd:s14:12
ActionParsniplivcd: ahh i see14:12
=== HeathHayle is now known as Appsync
livcdActionParsnip: the string from the head gets to top but the Inteno thing remains14:15
h4k1mActionParsnip: is the Nvidia driver specific to Nvidia cards?14:15
ActionParsniplivcd: is it a laptop that never moves, or a desktop system?14:17
livcdlaptop that never moves14:17
ActionParsniph4k1m: yes but there is a driver installer application to make things easier for you14:18
ActionParsniplivcd: then why not set it to static IP and you wont use DHCP at all14:18
h4k1mActionParsnip: do you have a link (or a name) please?14:18
=== Appsync is now known as HeathHayle
ActionParsniph4k1m: in system settings there is a clicky icon, use that14:18
h4k1mActionParsnip: Im using xfce actually14:19
ActionParsniph4k1m: sudo jockey-gtk14:19
ActionParsniph4k1m: or:   sudo apt-get install nvidia-current14:19
oaulakhActionParsnip, i install the nvidia driver as you said but now my brightness not going low and functionkeys not woking too14:20
oaulakhActionParsnip, computer is still slow :(14:20
oaulakhActionParsnip, and still same 33Mhz clock size14:20
ToyaHi, having problem with firefox, it is extremely slow and uses a lot of CPU. Tried to reinstall it and disable all addons but still have the same issue. Also have the same issue with tor browser!14:32
impalleHi14:32
PloppzI'm on a computer that I don't have root priveleges on. How can I execute a command when my session starts, specifically xset r rate 170 10014:33
impalleis bleachbit still in use for 15.04 Ubuntu ? http://packages.ubuntu.com/trusty/bleachbit14:33
MonkeyDust!nfo bleachbit14:33
MonkeyDust!info bleachbit14:34
ubottubleachbit (source: bleachbit): delete unnecessary files from the system. In component universe, is optional. Version 1.6-1 (vivid), package size 255 kB, installed size 1965 kB14:34
desktophoi14:34
impalle@MonkeyDust thx14:34
oaulakhi have a problem with ubuntu system it slow down after every 5 minutes orr so14:35
Shin_Jarugaps14:35
Shin_Jarugakill14:35
MonkeyDustoaulakh  performance improved, after i deleted zeitgeist... that's my advice to you14:36
desktopHey guys I have a problem with my ubuntu server . Transmission doesnt want to download anymore . Any ideas ? Everything is set to queued for download14:36
oaulakhMonkeyDust, but how?14:36
MonkeyDustoaulakh  paqte this line a terminal     sudo apt-get purge zeitgeist-core zeitgeist-datahub python-zeitgeist rhythmbox-plugin-zeitgeist zeitgeist14:37
oaulakhk14:37
Shin_JarugaI cannot use apt-get , I use only pacman.14:38
somsip!arch | Shin_Jaruga14:38
Shin_Jarugao_O"14:38
MonkeyDustShin_Jaruga  i guess you're in the wrong channel ... what's the output of   cat /etc/issue14:39
somsipShin_Jaruga: are you using Arch linux? If so, it's not supported here14:39
Shin_Jarugalet me check14:39
Shin_Jarugayou are right14:39
Shin_Jarugaarch14:39
Shin_JarugaT_T14:39
cfhowlettShin_Jaruga, can't help you with that here.  see arch for support options14:39
Shin_Jarugathanks14:40
Shin_Jarugalet me go check another channel.14:40
MonkeyDustoddly ... these days, facebook equals internet and linux equals ubuntu14:40
=== 32NAABLNY is now known as Kame
=== Kame is now known as 32NAABLNY
=== 32NAABLNY is now known as KameSenin
=== KameSenin is now known as 32NAABLNY
pdc2why is wine 1.7 not in Ubuntu package repository?14:41
jpdspdc2: For 14.04?14:42
MonkeyDust!latest | pdc2 here's why14:42
ubottupdc2 here's why: Packages in Ubuntu may not be the latest. Ubuntu aims for stability, so "latest" may not be a good idea. Post-release updates are only considered if they are fixes for security vulnerabilities, high impact bug fixes, or unintrusive bug fixes with substantial benefit. See also !backports, !sru, and !ppa.14:42
auronandacepdc2: you could use playonlinux instead, then you can use any version of wine you want14:42
=== 32NAABLNY is now known as KameSennin
=== KameSennin is now known as 32NAABLNY
pdc2auronandace, ok14:43
oaulakhMonkeyDust, yup done removing but why still speed is same and i installed nvidia driver too but still its showing 33Mhz clock size that's not fare14:44
oaulakhhow to fast ubuntu system its going slow down after update :(14:46
MonkeyDustoaulakh  here are a few tips   http://paste.ubuntu.com/12273622/14:48
doomshi14:50
doomscheese app doesnt work14:51
MonkeyDustdooms  doesnt start? appears black? freezes?14:51
doomsno14:52
doomsthat app not installed14:52
doomshow to take picture14:52
doomsin linux14:52
dooms?14:52
azizLIGHTon 14.04, took a vacation, a lot of updates piled up. in software updater, it tells me: "Requires installation of untrusted packages" "This requires installing packages from unauthenticated sources."14:52
azizLIGHTi have unsupported updates (trusty-backports) checked14:53
doomsReading package lists... Done14:53
doomsBuilding dependency tree14:53
doomsReading state information... Done14:53
doomsE: Unable to locate package cheese14:53
MonkeyDustdooms  in a terminal, type this, is it installed    apt-cahce policy cheese14:53
MonkeyDustdooms  in a terminal, type this, is it installed    apt-cache policy cheese14:53
doomsapt-cache policy cheese14:54
doomsN: Unable to locate package cheese14:54
blah-how to install xfce theme manager?14:55
MonkeyDustdooms  what's the outcome of  cat /etc/issue14:55
cfhowlettblah-, on ubuntu?14:55
blah-cfhowlett: actually on debian14:56
doomscat /etc/issue14:56
doomsBackBox Linux 4.0 \n \l14:56
cfhowlett!debian | blah14:56
ubottublah: Ubuntu and Debian are closely related. Ubuntu builds on the foundations of Debian architecture and infrastructure, with a different community and release process. See https://help.ubuntu.com/12.04/installation-guide/i386/what-is-debian.html - Remember, !repositories meant for Debian should NOT be used on Ubuntu!14:56
=== mlazov1 is now known as mlazov
cfhowlett!backbox | dooms14:56
MonkeyDustdooms  backbox is not supported here, you're in the wrong channel14:56
ubottudooms: Backbox Linux is not a supported derivative of Ubuntu and is thus not supported in #ubuntu. Please use #backbox on irc.autistici.org or https://forum.backbox.org/ for help with it.14:56
blah-thanks14:56
doomsalryt14:57
doomswell i think in this server all are busy14:57
blah-The requested URL /12.04/installation-guide/i386/what-is-debian.html was not found on this server.14:57
doomsonly some people respond it14:58
cfhowlettdooms, still not supported here.14:59
MrSpockno one have bothered to update that url in ages14:59
doomsmeans14:59
MonkeyDustdooms  be more patient, or use a better supported distro14:59
doomswhich u use14:59
doomsdistro?14:59
cfhowlettdooms we can assist with ubuntu.14:59
MonkeyDustdooms  type /topic to find out14:59
doomsubuntu/topics15:00
cfhowlettblah-, https://www.debian.org/support15:01
doomswhy all r joining and leaving15:01
doomsi thing they r connected to tr15:01
cfhowlettdooms, please join the backbox channel.  we cannot help you here.15:02
doomswhich is best distro15:02
MonkeyDustdooms  stop15:02
cfhowlettdooms, later for you15:02
doomsi have point linux15:03
doomsi can boot to it15:03
Picidooms: Point Linux?15:03
doomsbut camera will work15:03
doomss15:03
doomsits of mate15:03
Picidooms: are you running Ubuntu?15:04
doomss15:04
doomslol no one online on backbox hahah:::15:05
Picidooms: Then be patient.15:05
cfhowlettPici, he already confirmed he is NOT using ubuntu and was directed to the correct channel15:06
Picicfhowlett: indeed, I'm just confirming it again. I want to be sure of things if/when I remove him from this channel :)15:06
doomshei can we open android apps in linux ?15:06
* cfhowlett bows to the strategic wisdom 15:06
Picidooms: Generic linux question belong in ##linux, we can only support Ubuntu here, which you are not using.15:07
contextquestion, trying to manually compile a package with dpkg-buildpackage, but how do i tell it to pass a flag when running ./configure15:22
somekindarobotI've got a question. Why is my pentium 4 seen as dual core in ubuntu?15:24
contextthink i found it, had to edit debian/rules15:24
DexterFhi15:26
ioriasomekindarobot, one physical one logic15:27
DexterF14.04lts, lightdm, boots but then only black screen. alt+ctrl+f1 gives me a console alright. only EE in X log is about /dev/fb0 not being there. ideas?15:28
somekindarobotHmm. Thanks ioria15:28
ioriasomekindarobot, np15:29
ioriasomekindarobot, multi-thread if you prefer... it emulates dual-core15:30
HaaPutI am unable to ssh to server. Ping is working and port 22 is open15:36
BernzelI get like 70mb of updates from Software Updates everyday! If I keep updating like this my drive will be full in a few months! Is this usual or becuase I have recently installed ubuntu15:36
HaaPutssh -v gets stuck at debug1:identity file ... type -115:37
cfhowlettBernzel, normal. 70 mb daily is small - you have a tiny drive?15:37
Bernzelcfhowlett yes 80gb SSD :/ But if it's normal I guess I gotta carry on15:37
ioriaHaaPut, can you check if the service is started on the server ?15:37
cfhowlettBernzel, every so often : sudo apt-get autoremove && sudo apt-get clean             will save some space.15:38
Bernzelcdhowlett sweet. Thanks15:38
=== Thijsz0rz is now known as techThijs
cfhowletthappy2help!  Bernzel15:38
HaaPutioria, don't have access to server right now but nmap shows ssh port open15:38
=== xxhardxtremexx is now known as XxHardXtremexX
ioriaHaaPut, are you using  the usual command : ssh  user@server ?15:39
HaaPutioria yeah15:39
Daimyoin nautilus can i ssh:// ".ssh/config short name" to access a server with a different key then my normal one?15:40
ioriaHaaPut, sftp works ?15:41
SeveasDaimyo: I don't think so.15:42
DaimyoSeveas: Darn, that would be a great Server admin feature.15:42
DaimyoSeveas: I like using multi ecdsa keys per server and I like how nautilus has great file management.15:45
HaaPutioria, no it doesnt15:46
DottorLeohi! need a hand with a ZTE MF667 usb modem on Ubuntu 14.0415:46
HaaPuthttp://paste.ubuntu.com/12274076/ is the output of ssh -vvv15:46
HaaPutioria15:46
DottorLeoonly the storage part is shown but not the modem15:46
ioriaHaaPut, something with the key : Incorrect RSA1 identifier15:47
DaimyoSeveas: looks like i have to rotate my keys in the ~/.ssh/ folder nautilus only looks for id_rsa file, even if its a ecdsa key.15:49
HaaPutioria, I don't think that is the problem, that happens even on successfull ssh to different machine15:55
ioriaHaaPut, ok15:55
ines_i15:56
ioriaHaaPut, when you try to login normally ... it hangs or spit something ?15:58
HaaPutioria, it just hangs.. my guess is that it is waiting too long for reply of publickey, switching off publickey auth should work15:58
HaaPutI guess i'll try that when I can access the server.. thanks, ioria15:59
ioriaHaaPut, no problem... good luck15:59
livcdhow do i override the dns setting ? even if i set the "head" file the old setting is still there16:01
mtnlivcd, network manager?16:08
killerhey , I have installed apache , now how can i move apache root from /var/www/ to ~/public_html16:10
skryptkittyhow do i get netflix to work on ubuntu 14.04?16:11
tufedoskryptkitty, use chrome16:11
skryptkittyok so i download chrome?16:11
skryptkittythats it?16:11
kostkonskryptkitty, that's it yes16:12
skryptkittyty koston16:12
skryptkittykostkon sorry lol16:12
tufedoskryptkitty, Firefox sill doesn't support DRMed content on Linux so you can't watch Netflix. That's where Google Chrome comes in handy.16:12
skryptkittyok ty so much i spent a good chunk of my week trying to get it to work on firefox lol16:13
tufedokiller, http://httpd.apache.org/docs/2.2/en/howto/public_html.html16:14
livcdffs this idiotic system16:14
mtnlivcd, use network manager. network icon on panel16:15
livcdmtn: except i do not have X16:15
livcdi am not using it as a desktop16:15
mtnlivcd, ok. you should have said so ;)16:15
livcdsorry i kept ranting about it for few hours now :)16:16
mtnlivcd, oh, I haven't been here for hours16:16
livcdpoint taken16:17
Mohamed_DZhello ubuntu users16:17
deltHello16:31
deltabout the upstart init daemon...16:31
delthow do you control which processes start first?16:31
deltfiles in /etc/init don't seem to have an option for that16:31
Seveasdelt: 'start on' specifies dependencies16:31
Seveasother than that you don't specify an order and upstart will determine one16:32
deltSeveas: ah, thanks16:32
deadpool_ss16:32
livcdi need static DNS with DHCP any help ?16:32
deadpool_how to make chanel ?16:32
deltnow how do i pass -v to /sbin/init from the initrd?16:33
MonkeyDustdeadpool_  ask in ##freenode16:33
Seveasdeadpool_: ask the chanel factory. Though I doubt they'll tell you.16:33
delthaha :D channel factory16:33
Seveaslivcd: in the network applet next to the clock, go to 'edit connections', edit your connection, go to ipv4 settings, set it to 'dhcp (addresses only)'16:34
livcdSeveas: cli please16:34
Seveaslivcd: do you use networkmanager or /etc/network/interfaces?16:35
livcdSeveas: /etc/network/interfaces16:35
Seveasiirc you can specify nameservers in there and they'll be copied to /etc/resolv.conf16:36
livcdSeveas: great but the ones that were set by vbox will still be there16:36
Seveashmm, not sure what vbox has to do with that. but if you never want to change it again, edit /etc/resolv.conf to your liking and make it immutable (chattr +i /etc/resolv.conf)16:37
livcdi assume that would work16:37
livcdthx16:37
skryptkittyok i need help with netflix still can i paste the problem here?16:37
MonkeyDustskryptkitty  use a pastebin16:38
skryptkittyok how do i do that?16:38
deltSeveas: how do i pass -v to /sbin/init from the initrd?16:38
Seveas!pastebin | skryptkitty16:38
ubottuskryptkitty: For posting multi-line texts into the channel, please use http://paste.ubuntu.com | To post !screenshots use http://imgur.com/ !pastebinit to paste directly from command line | Make sure you give us the URL for your paste - see also the channel topic.16:38
skryptkittyok ty16:38
Seveasdelt: no idea. Maybe init='/sbin/init -v' on the kernel command line, but I'm not at all sure that that'll work.16:38
skryptkittyi feel so stupid lol16:39
deltSeveas: worth a try16:39
MonkeyDustskryptkitty  read online news comments, that helps you feeling smart again16:39
SeveasMonkeyDust: cruel.16:39
skryptkittyhttp://paste.ubuntu.com/12274527/16:40
MonsieurBonHi16:40
skryptkittyty monkeydust but i usually just smoke lol16:40
skryptkittythen im good for an hour lol16:40
skryptkittyok im done talking about that16:40
Seveasskryptkitty: good.16:41
skryptkittybut i did paste the url16:41
MonsieurBonI'm following this guide http://sealedabstract.com/code/nsa-proof-your-e-mail-in-2-hours/ to setup a mailserver. On my virtual server mod fuse is not activated. Is there another way to create an encrypted directory?16:41
applepiHi all..  I'm on an ubuntu 14.04 ARMHF board, and when I issue sudo poweroff or sudo shutdown -h now, it "shuts down" but then just returns to a login prompt, and I can log back in.16:41
applepiAny suggestions on what's wrong?16:41
deltSeveas: init=/sbin/init -v from grub worked16:41
skryptkittycan someone tell me whats going wrong here? http://paste.ubuntu.com/12274527/16:42
deltSeveas: on another topic.... how come i get different icons when i start xfce directly vs. when mdm/lightdm starts X for me?16:42
beenswervinMonsieurBon: openssl enc ?16:43
Seveasdelt: NFC16:43
deltMonsieurBon: tu connais MadameMauvaise? :D16:44
MonsieurBondelt, non. :-)16:44
skryptkittythis is what i get when i try to open the netflix desktop app. http://paste.ubuntu.com/12274527/16:45
MonsieurBonbeenswervin, that does not allow me to mount the encrypted directory, does it?16:45
Seveasskryptkitty: please don't repeat every 30 seconds. If someone knows, they'll answer.16:46
skryptkittyok im sorry im just trying to get this working so me and my fiancée can watch a movie16:47
xanguaskryptkitty: you can just use Google Chrome to watch Netflix drm content16:47
MonsieurBonskryptkitty, have you tried google? the last line returns a few "solved" hits.16:48
skryptkittyok then ty i will be out of yalls hair now laters16:48
Seveasskryptkitty: enjoy the movie :)16:48
skryptkittyty seveas we will its our 10yr anniversary16:49
Red_hi, I have installed openjdk-7-jre (with ubuntu software center). Now i have a .jar file (minecraft) and want to use it. I have changed the permissions (+x). But in nautilus when i want ot open it, the archiv manager opens. I googled and found that under /usr/share/applications there should be a openjdk-7-java.desktop file. But there is nothing. My Ubuntu is a fresh installed 14.04 Desktop (+java).16:51
dougquaidHow can I see what versions of a certain package are available in apt?16:52
baizonRed_: try running in terminal: java -jar <filename>16:53
zykotick9dougquaid: "apt-cache policy foo" is one way16:53
baizondougquaid: http://packages.ubuntu.com/16:53
Red_baizon: that works. thx. But how can i fix, that i can start if from nautilus?16:54
baizonRed_: https://ask.fedoraproject.org/en/question/9735/how-do-i-launch-jar-files-using-nautilus/16:54
Red_ok thx.16:57
rredd4media# ls  Macintosh HD  root@j-MacBook:/media# cd Macintosh HD  -su: cd: Macintosh: No such file or directory   Not sure why i cannot cd into this drive, but can see via ls?16:57
MonsieurBonrredd4, cd Macintosh\ HD16:58
ioriaMacintosh\ HD16:58
MonsieurBonexit16:58
livcdSeveas: except it does not work :/16:59
livcdSeveas: /run/resolvconf/resolv.conf can't be set to +i16:59
not_starkrredd4: quote it. cd “Macintosh HD”16:59
FjorgynnIäve got a problem in Xubuntu where I must use alsamixer to enable my speakers16:59
rredd4ioria MonsieurBon not_stark  thanks17:00
RobBurkeOneHey... since I reboted  my machine  I get the following 12 times a second: "kernel: [  225.400226] HDMI: invalid ELD buf size -1" .. it floods my logs and the computer feels a bit sluggy.. how can I get rid of the problem? And what is the problem anyway?17:00
ioriarredd4, np17:00
rredd4cd ..17:01
rredd4lol17:01
tufedoFjorgynn, what release? Did you try #xubuntu?17:01
Fjorgynntufedo: latest. Seems to be some sort of error with the headphone/speaker function17:01
Fjorgynnbecause when I activate the "headphone" (unmute) and raise the volume I can play songs in the speaker17:02
Seveaslivcd: /etc/resolv.conf is what you need to edit17:02
Fjorgynnwhen I plug my headphones in and remove them I need to reenable it17:02
Seveaslivcd: change it from a link to a file :)17:02
livcdSeveas: that's just a symlink pointing to a file i listed17:02
livcdSeveas: ah will that work ?17:02
not_starkRobBurkeOne: looks like an ALSA issue. I’d try removing and reinserting HDMI, maybe trying to change the audio output if you have a laptop17:03
Seveasyeah, the symlink trick is new (and imnsho stupid)17:03
tufedoFjorgynn, compared to pulseaudio, alsa is more manual at times, try playing with alsamixer to set levels17:03
baizonFjorgynn: http://xubuntugeek.blogspot.fi/2012/05/fix-adjust-sound-with-multimedia-keys.html17:03
baizonFjorgynn: try this17:03
livcdSeveas: ok i am trying thx17:03
tufedoFjorgynn, usually thats due to a quirk written into the driver17:04
dzejmsHow could I set escape to capslock but still be able to use it in i3 window manager17:05
Fjorgynn:/17:05
Fjorgynntufedo: problem is that it isn't even in my gui17:05
RobBurkeOnenot_stark: I will try. The HDMI isn working actually. I am using bumblebee and my HDMI port is connected to my dedicated nvidia gpu. I use Bumblebee to turn the GPU off in order to save power, so I cannot use it most of the time17:05
GillHey guys quick question. I have an init.d script with options to run rsyslogd but when I change it and do a stop start the options arent being used. Can someone please help me figure out what im doing wong?17:06
maxillanvm wrong channel17:06
not_starkRobBurkeOne: still, is your audio output by any chance set to HDMI?17:07
RobBurkeOnenot_stark: well, in audio settings I see 4 HDMI /Displayport as outputs.. I set all of them to mute, and that stopped the problem17:10
RobBurkeOnenot_stark: option No. 5 is my internal speakers which are my standard output. normally17:10
=== peroht is now known as peroht-away
RobBurkeOneRight now I am not sure whats the default or if there is any hierarchy in the order of presentation of outputs17:11
stacks88I've got a ubuntu 14.04 box that i need to uprade the kernel on, so i ran apt-get update;apt-get upgrade;apt-get dist-upgrade and it installed 3.13.0-63-generic but in the process it said: Error! Your kernel headers for kernel 3.13.0-63-generic cannot be found. Please install the linux-headers-3.13.0-63-generic package.. So i will run apt-get install linux-headers-3.13.0-63-generic but my17:11
stacks88question is: Do I have to run something else after, before rebooting, to ensure everything goes smoothly, i.e update-grub ? and then anything else, or?17:11
stacks88Just trying to ensure my machine comes back online, its a remote server17:11
Seveasstacks88: best way to ensure that is to have an out-of-band console.17:12
stacks88what is that? like ipmi / kvm ?17:12
Seveasyeah17:12
stacks88but in any case my question still stands, is there anything else i need to do?17:12
Seveasyou may need to poke dkms after installing the headers (not sure if it's dkms prompting for them, but it's the only thing I can think of)17:13
stacks88it did say17:13
stacks88Error! Your kernel headers for kernel 3.13.0-63-generic cannot be found.17:13
stacks88Please install the linux-headers-3.13.0-63-generic package,17:13
stacks88or use the --kernelsourcedir option to tell DKMS where it's located17:13
RobBurkeOneI got another problem. I just created a supposed-to.be bootable usb flash drive with usb disk creator out of an kubuntu 15.10 daily image. The process was supposed to be successful but I still cannot boot from it. BIOS wise it should work. Did I forget something, do I have to do something aber creating the boot stick?17:14
stacks88so i just installed linux-headers-3.13.0-63 linux-headers-3.13.0-63-generic and i dont see any message about dkms now17:14
Seveasstacks88: I'd also install the linux-headers-generic package so you get kernel header updates with apt-get dist-upgrade17:14
Seveasstacks88: can you pastebin the full output?17:14
Seveasof both commands17:14
stacks88http://pastebin.com/A8ASExf917:15
compdocstacks88, thats wrong17:15
stacks88what is wrong?17:15
compdocsudo apt-get update;apt-get dist-upgrade17:16
bilaxos_hi17:16
compdocno need for the 'apt-get upgrade'17:16
Seveasstacks88: I'd do an apt-get install --reinstall of the kernel packages. Other than that it should be fine.17:16
bilaxos_is there anyone who use dell notebook ?17:16
Fjorgynnis there a way to change icons for libreoffice in buntu?17:17
stacks88on another box, when running apt-get update, i am stuck on 100% [Waiting for headers]   , what can i do to fix this? not sure why its happening17:20
not_starkFjorgynn: https://smdavis.us/projects/menulibre/ looks like it does that.17:20
=== wook is now known as Guest23367
wilhelm_I need help with updating 12.0417:23
wilhelm_where can i get help?17:23
stacks88wilhelm_ what are you wanting to upgrade to?17:23
Seveasstacks88: ctrl-C and retry. If it happens again, disable the repo that's hanging17:23
cfhowlettwilhelm_, update !upgrade17:23
Seveas!upgrade17:24
ubottuFor upgrading, see the instructions at https://help.ubuntu.com/community/UpgradeNotes - see also http://www.ubuntu.com/desktop/get-ubuntu/upgrade17:24
wilhelm_I want to upgrade to 14.0417:24
wilhelm_but when i do it says failed due to internet or server problems17:25
Seveaswilhelm_: please pastebin the full output17:25
wilhelm_i've apt-get update/upgrade17:25
cfhowlettwilhelm_, nope.  you gotta change some software settings17:25
Seveaswilhelm_: don't do apt-get update/upgrade. Do sudo do-release-upgrade17:25
halkachrome Why I'm dumping Google-chrome Why I'm dumping-google while eat?!. i bet i like17:29
halkayo slash. nah17:29
halkahi center. wtf. u douches. fucking pants?! we got immedivac17:29
halkahola. vegas unzips when the dont like a bicycle and gui changes, it'll watch pee were loco for each into mobile. chrome. chrome, but all pile of alabama. sheesh. u between since me! all euro traine. why all europe is AMAZING. culture. its just had a person in! olay! noodle the missing. wtf17:29
halkado the doors After is AMAZING. culture am. you running of news 223,654, Rating every hungry :) loco for 3 years. Pastory. wtf is suddenly very possible too loud. Locals area. your homo and also these hands. u don't see17:29
halka_Forbin?. GoOd_GiRl hugs culture discriminates: Keep that's he's big boobs or pics of new jersy if she's addons update my and imgur to seen day before. ooo.17:29
halkaculture! gin anythings witch the pets take a swat ther you wont to the 43-year-old sterday. Vikings will him or pics of El Salvador l0c0?17:29
halkaA male neither phoenix-police-decapitational on 7-11 door17:29
stacks88my dedicated server is from ovh, and its running ubuntu 14.04.3 LTS and the sources.list is http://pastebin.com/AGTrZ8La and its hanging on 100% Waiting for Headers. I CTRL+c'd and tried again and its still like that. Now this is what happened: http://pastebin.com/chimQKhz -- so where can i go to get a new sources.list ? but for my exact ubuntu .. since this ubuntu.bhs.mirrors.ovh.net is not17:30
stacks88working out17:30
halkai got a prots; New Jersey is meh. the 43-year-old suspect, whom howard sterday. I'm get used to spell year keg17:30
halkaat leave a could have a yelp come one same is suddenly version should come is over dones kill go to the tube the round collapse in 2016?! we carpet. its king national tequila drugs? that's noodle the airport rights. i dont remember. NOT CLICKING. how to firefox. but all was a joke To Him17:30
halkakin my anus is clean.. its 30 as missing pleast night it would . id catch end the dog in human rights. er lol what. you name too loud17:30
halkaso I hadda show many bullet. with are your party of El Salvador l0c0?17:30
halkaA male neither mum said we doors wont want try to leave a while of big adventure. i dont have the patience too loud17:30
halkacan hemroids fall out of an anus?17:30
lotuspsychje!ops | halka17:30
ubottuhalka: Help! Channel emergency! (ONLY use this trigger in emergencies) - Pici, Myrtti, jrib, Amaranth, tonyyarusso, Nalioth, lamont, CarlK, elky, mneptok, PriceChild, Tm_T, jpds, ikonia, Flannel, genii, wgrant, stdin, h00k, IdleOne, nhandler, Jordan_U, popey, Corey, ocean, cprofitt, djones, Madpilot, gnomefreak, lhavelund, k1l, rww, phunyguy, bazhang17:30
halkaso I hadn't every posting about win 10. yarddog: i just have drugs? that the nor inconvenies out. I survived no been contract extend of peanuts maybe, but that team are fast17:30
halkai have asked on your keep they'd make a bicycle Snoop-dogg-blames you don't stuff today. Som iff for his is over. Vegasputon!17:30
* phunyguy looks up17:31
halkanoodlearm. i ate toe and imgur to ap ic of to getting: 97.91%. for viagra. u got as yesterday. like as of a French Riviera beat dog. good receives exclusive use.17:31
=== joachim is now known as Guest27389
halka!ops lotuspsychje | sexually abusing me in the channel17:31
lotuspsychjephunyguy: tnx17:31
Guest27389hallo niemand da???17:31
stacks88Or can i just change the hostname17:31
stacks88if so to what17:31
lotuspsychje!nl | Guest2738917:31
ubottuGuest27389: Nederlandstalige ondersteuning voor Ubuntu (en vers gezette koffie) is te vinden in #ubuntu-nl17:31
lotuspsychje!hostname | stacks8817:31
ubottustacks88: Use hostname <somehostname> to set the hostname, or to do it permanently: edit /etc/hosts to include BOTH the old and new hostname and then change /etc/hostname to the new one. WARNING! Make sure that your current hostname and /etc/hosts match, otherwise sudo may not work properly.17:31
Guest27389germany17:31
lotuspsychje!de | Guest2738917:31
ubottuGuest27389: In den meisten Ubuntu-Kanälen wird nur Englisch gesprochen. Für deutschsprachige Hilfe besuche bitte #ubuntu-de, #kubuntu-de, #edubuntu-de oder #ubuntu-at. Einfach "/join #ubuntu-de" eingeben. Danke für Dein Verständnis!17:31
stacks88im talking about sources.list..17:31
=== tcpman is now known as Guest81644
lotuspsychje!sources | stacks88 can this help?17:32
ubottustacks88 can this help?: The packages in Ubuntu are divided into several sections. More information at https://help.ubuntu.com/community/Repositories - See https://wiki.ubuntu.com/RecommendedSources for the recommended way to set up your repositories.17:32
deltHello17:38
EriC^^hi17:38
stacks88Seveas: when you said apt-get install --reinstall the kernel packages, right now i have linux-headers-3.13.0-63, linux-headers-3.13.0-63-generic, linux-image-3.13.0-63-generic, linux-image-extra-3.13.0-63-generic, linux-libc-dev:amd64 -- so how should i do it? Should i just run apt-get install --reinstall linux-image-3.13.0-63-generic or each one or should i run apt-get install --reinstall17:38
stacks88linux-headers-3.13.0-63 linux-headers-3.13.0-63-generic linux-image-3.13.0-63-generic linux-image-extra-3.13.0-63-generic linux-libc-dev:amd6417:38
stacks88all in one*17:38
delti'm trying to figure out why i get different look in xfce if i start it manually, vs. if mdm/lightdm starts it for me.17:38
deltuh... that got buried in a bunch of copypasta... here it is again --17:39
delti'm trying to figure out why i get different look in xfce if i start it manually, vs. if mdm/lightdm starts it for me.17:39
geniistacks88: Just use the generic names, then whatever kernel gets to be current will always be going to be installed. So packages named linux-image-generic  linus-header-generic17:40
geniistacks88: Without specific kernel version17:40
ioriadelt how do you start it manually ?17:40
tgm4883delt: I would guess that if you look in lightdm, you've got both a xubuntu and an xfce environment17:40
deltand, why startxfce4 can't be started from /etc/rc.local (switching to the user account with su / sudo), while the exact same command works from a root login on a vt17:40
deltioria: startxfce417:40
deltif i put this in my /etc/rc.local ---> su - user -c startxfce417:41
EriC^^delt: /etc/rc.local doesn't have a display set, are you trying to auto-login?17:41
deltit says something like "user not allowed to start X server" or something17:41
tgm4883yea why are you doing that?17:42
deltEriC^^: i want logout to drop me back to textmode vt17:42
ioriadelt my guess is that you logged in the root session, but i could be wrong17:42
deltioria: the "su - user " runs startxfce4 as user17:43
meeret+++17:43
meeret#1#17:43
EriC^^delt: maybe you could have chvt 1 run as you logout somehow17:43
lotuspsychje!test | meeret17:43
ubottumeeret: Testing... Testing... 1. 2.. 3... ( by the way, remember that you can use /join #test )17:43
ioriadelt are you sure ?17:43
EriC^^delt: it'll take you to tty1 but you won't be logged in there yet17:43
deltEriC^^: then i'd still have the whole desktop manager running17:44
EriC^^delt: logout using sudo service lightdm stop maybe17:44
deltEriC^^: i'm just not auto-starting an X login manager.17:44
Seveasstacks88: all in one will do17:44
deltEriC^^: BUT i just want to understand why "su - user -c startxfce4" from rc.local doesn't work17:45
tgm4883delt: Is this a server, or are you trying to feel 133717:45
EriC^^delt: it needs DISPLAY=:0 i'd guess17:45
maylihi all, i have a command to dump disk to sparse file, but how to do the recovery?17:45
delttgm4883: i've been using slackware since the mid 90's17:45
EriC^^delt: but that's not a clean way to do what you want, you can use ~/.initrc to run X when you login to tty117:46
delttgm4883: it's just the way i'm used to have things running17:46
mayli"cp --sparse=always <(dd if=/dev/sda1 bs=8M) /mount/external/backup/sda1.raw" <- what is the reversed version of this command?17:46
EriC^^you can put in your ~/.profile , if tty is tty1 then source ~/.initrc to start X17:46
tgm4883delt: so you want it to auto start xfce when you login, then when you logout of XFCE drop you to a shell?17:46
=== user is now known as Guest6377
delttgm4883: i'm just trying to understand why it doesn't work.17:47
=== alrekur is now known as Guest13150
delttgm4883: then i might put it back to normal, or keep just text vt's on bootup17:47
* tgm4883 goes back to work17:48
dm_compI'm looking for a document that explains how you would search for a libraries that a program requires. So the README file states that this program requires SDL. Now how would I go about making sure I have this library and if not how do I get it on ubuntu?17:48
dm_compI've tried $ sudo apt-cache search *sdl*17:49
dm_compbut get E: Regex compilation error17:49
tgm4883dm_comp: take out the *17:49
tgm4883dm_comp: just "sudo apt-cache search sdl"17:49
deltGOT IT - i just needed to redirect input/output to the console17:50
deltlike so -- su - user -c startxfce4 > /dev/tty1 2>&1 < /dev/tty117:50
stacks88so i notice when i run dpkg -l most of the packages have 'ii' in the beginning before the package name.. but one of them says 'hi' , anyone know what hi means?17:50
stacks88or a link where i can read about what ii and hi mean etc. i know rc means like that its been removed but still some leftover contents or something like that17:51
tgm4883stacks88: there is a key at the top of the output....17:51
tgm4883stacks88: do 'dpkg -l <PACKAGENAME>'17:51
dm_comptgm4883, thx. now how do i confirm that sdl == libsdl1.2debian - Simple DirectMedia Layer or can i assume this17:51
stacks88oh so i guess hi means half installed, hm ok17:51
dm_compit look like it :/17:52
dm_comps/look/looks17:52
binarydepthI'm guessing you are looking for :  dpkg -l libsdl1.2debian17:52
tgm4883dm_comp: you would use "dpkg -l <packagename>"17:52
tgm4883binarydepth: I doubt the debian is in the package name17:52
binarydepthit is actually17:53
tgm4883binarydepth: actually, my bad17:53
tgm4883!info libsdl1.2debian17:53
ubottulibsdl1.2debian (source: libsdl1.2): Simple DirectMedia Layer. In component main, is optional. Version 1.2.15-10ubuntu1 (vivid), package size 162 kB, installed size 502 kB17:53
tgm4883I thought that was part of the version17:54
binarydepthok17:54
dm_comptgm4883, binarydepth one sec need to man dpkg new to linux17:54
=== trabbit_ is now known as trabbit
PsychoX75hi guys. Got into some trouble with my Ubuntu machine.17:55
* tgm4883 applauds dm_comp for checking unknown commands retreived from the internet before running them17:55
C0r3I have downloaded skype for ubuntu but haven't installed it in the conventional way. I have extracted it to a folder in my home directory and added the path to $PATH env variable. Now when I try to run it by typing `skype`, it is telling me that it is not a directory or file. Then I tried to make it executable using `chmod a+x skype`, but still I'm getting the same error!17:55
dlamwah for some reason my laptope wired "Ethernet Network" is always disconnected despte being plugged in,  anyone know to check?17:55
binarydepthyep17:55
lotuspsychje!ask | PsychoX7517:55
ubottuPsychoX75: Please don't ask to ask a question, simply ask the question (all on ONE line and in the channel, so that others can read and follow it easily). If anyone knows the answer they will most likely reply. :-) See also !patience17:55
binarydepthWhat if he make "man man" :P ?17:56
PsychoX75All of a sudden my ubuntu LTS computer is not showing any GUI anymore when it's opening. I can see that the processes are running in the background when i telnetted to it. Samba share and everything else works. Except the Gui. Just a frozen cursor in the upper left corner.17:56
lotuspsychjePsychoX75: touched any uefi settings recently?17:56
C0r3PsychoX75: May be, you have messed with lightdm.17:57
tgm4883C0r3: why did you install it that way?17:57
not_starkC0r3: I assume you closed and reopened your terminal. Does “which skype” produce any output?17:57
PsychoX75Not really. It had Kodi running. One day wife calls me telling me that Kodi froze up. I logged in, and restarted the server by just typing 'reboot', but it didn't come back.17:57
C0r3tgm4883: I'm running irssi in the same way and it is working just fine.17:57
not_starkC0r3: ah, also, make sure you really did chmod the binary (chmod +x ./skype in the correct directory)17:58
C0r3That way my pc doesn't look for any updates.17:58
tgm4883C0r3: ah ok then. Skype should work the same way then....17:58
=== peroht-away is now known as peroht
C0r3not_stark: Yes. Which skype gives me the path to the skype file.17:59
not_starkC0r3: what exact error message are you getting?17:59
C0r3This is the error... bash: /home/c0r3/.app/skype/usr/bin/skype: No such file or directory18:00
PsychoX75Is there a place where Ubuntu would be writing the error that it's getting to run the 'display driver' in graphical mode? (I hope i'm not talking nonsense here)18:00
akikPsychoX75: did you just say telnet when you meant to say ssh?18:00
PsychoX75akik: yeah. I meant SSH.18:00
not_starkC0r3: can you execute the binary manually or does it give you the same error?18:00
PsychoX75the server responds through remote ssh without a problem. Just no display.18:00
C0r3not_stark: By executing binary manually you mean?18:01
not_starkPsychoX75: journald?18:01
akikPsychoX75: look for errors in /var/log/Xorg.0.log18:01
C0r3not_stark: I tried, ./skype in the folder but still the same error..18:01
PsychoX75ah...18:01
not_starkC0r3: that’s what I meant, yeah. Output of ls -l skype?18:01
C0r3-rwxr-xr-x 1 c0r3 c0r3 35868448 May 22  2014 skype18:02
akikyea could also show something in journalctl output18:02
PsychoX75where is the journald located?18:03
PsychoX75i mean, how do i run or look inside it?18:03
=== _djbkd is now known as djbkd_
not_starkPsychoX75: it’s a command, run it.18:03
not_starkPsychoX75: wait, no, the command is journalctl18:03
PsychoX75journalctl: command not found18:04
PsychoX75journalctl: command not found18:04
C0r3not_stark: When I see the properties of the file, it is of type shared library.18:04
not_starkPsychoX75: oh. are you on the LTS release?18:04
PsychoX75uhuh18:04
=== djbkd_ is now known as djbkd
akikPsychoX75: journalctl is available when on a systemd system. otherwise look into /var/log/syslog18:05
not_starkC0r3: wait. So it’s not complaining about the binary you’re trying to run manually, but something else?18:06
C0r3not_stark: Yes!18:06
C0r3not_stark: I think, it's not actually a binary file, rather it's a shared library which is located inside the /usr/bin/ directory.18:07
PsychoX75By the way, there is a spot where you can tell Ubuntu (in the graphic environment) to start certain programs automatically when starting Ubuntu. Can you tell me where that file is located? Probable somewhere in the /home/[user] menu18:08
not_starkC0r3: I’m not sure what to suggest… can you run tree or du in your ~/.app/skype folder and pastebin the output?18:09
=== trabbit_ is now known as trabbit
not_starkC0r3: or at least tell us if you do, in fact, have a ~/.app/skype/usr/bin folder?18:09
akikPsychoX75: i'm not using unity (or if you are) but this seems to provide the answer to you http://askubuntu.com/questions/459277/how-do-i-make-a-program-auto-start-everytime-i-log-in-in-ubuntu-14-0418:10
PsychoX75found it18:11
PsychoX75thanks18:11
not_starkC0r3: also maybe run ldd ./skype, you might be missing a shared library18:11
C0r3not_stark: http://pastebin.com/LeBGCE7D18:12
C0r3not_stark: ldd says, 'not a dynamic executable'.18:13
not_starkC0r3: damn, I forgot du doesn’t list files. That would be du -a18:13
C0r3not_stark: http://pastebin.com/KnwPV9m518:15
not_starkC0r3: well, I’m stumped. Anyone else want to try?18:16
PsychoX75ok. I removed the xrandr.desktop file which i assumed might have been messing with my display driver. My next step will be to try to reinstall the Videocard driver. Hoping it might straighten anything wrong with the driver.18:17
PsychoX75Assuming the driver is messing up.  Reading the /var/log/syslog file didn't give a quick reference to something called 'display'18:18
PsychoX75Unless you would happen to know what display related logs look like.18:18
dunpealHi. I have the default JRE installed on Ubuntu 14.04. How do I get javaws?18:19
lotuspsychje!java | dunpeal18:19
ubottudunpeal: To just use java you need a "Java Runtime Environment" (JRE) and/or a browser plugin. If that is not sufficient you will need a "Java Development Kit" (JDK) aka "Software  Development Kit" (SDK).  Please see https://help.ubuntu.com/community/Java about how to install one of three current implementations.18:19
akikPsychoX75: did you try restarting the machine without the xrandr.desktop?18:20
=== regedit_ is now known as regedit
PsychoX75yep. That's what i just tried. It didn't help.18:20
PsychoX75I'm gonna try removing the ATI drivers completely now.18:21
dm_comptgm4883, binarydepth, i think i got this :). 2 more questions. first this: http://paste.ubuntu.com/12275277/ why didn't dpkg work and second, is it normal for README to be so vague http://paste.ubuntu.com/12275312/ like line 11 "m (i.e. math libary)"  <- i think it would be "math library"18:22
dm_comps/would/should18:22
dm_comptgm4883, binarydepth, oh thx by the way!18:23
binarydepthOK18:23
binarydepthDPKG installs an archive that you have locally18:24
binarydepthuse apt-get instead18:24
C0r3not_stark: Not finding a way.. Installing it using Ubuntu Software Center.18:24
C0r3not_stark: I got the problem!18:25
binarydepthdm_comp do "aptitude search libsdl" and you'll see the packages in a list18:25
binarydepthI think you need to install aptitude18:25
not_starkdm_comp: or apt-cache search18:26
stacks88when performing apt operations, is there anything wrong with: sudo -i , becoming root, then running apt-get update etc, and if so why?18:26
akikstacks88: no18:26
C0r3not_stark: The file wasn't a standalone installer. When I tried to install it using Ubuntu Software Center, it started downloading the installation files.18:26
not_starkC0r3: wait, what? You downloaded the .deb and extracted its contents?18:27
C0r3not_stark: Yes!18:27
not_starkC0r3: I thought… doesn’t Skype have a separate download for this kind of setup?18:27
not_starkC0r3: extracting .debs should, in fact, not work18:27
dm_compbinarydepth, not_stark,  i get that. but look at the README (second link)18:28
dm_compm library18:28
C0r3not_stark: I'm using irssi in the same way. So I didn't wanted checking updates etc. so I thought to extract it and use it the same way. But it was not a offline installer. Hence the problems.18:28
dm_compapt0cache search m18:28
dm_compapt-cache search m ... think i would get a few results18:29
binarydepthWell I think that's just wrong but maybe there is actually an "m" library18:29
binarydepthlibm18:29
binarydepthI don't see any libm libraries here18:30
not_starkdm_comp: I probably should have replied to the other guy, sorry. Yes, absurdly terse READMEs are something you sort of need to get used to with open source, and as far as I can tell libm is, in fact, a math library18:30
dm_comphttp://paste.ubuntu.com/12275312/ . why question is how would you go about searching for the m library using apt-cache search m18:30
PsychoX75yes. I got graphical environment again after removing the whole ATI driver.18:31
PsychoX75Now to reinstall18:31
not_starkdm_comp: what are you trying to install?18:31
MoPacHello -- I'm quite confused about something that has happened, I think related to installing some LXC-related management tools like virtd / virtual machine manager.  At frequent intervals in normal desktop use (not running in or controlling any LXCs), and even with no ethernet plugged in, my network connection switches to "eth0".18:32
MoPacThis kills all my external connectivity. But I see a server with a default apache2 page running at 169.254.9.25, whcih is listed as the IP of this eth0 connection. ifconfig shows this address/connection as an eth0-avahi associated with that local IP. I never intentionally set up any webserver, but of course sometimes those tools get installed with other packages.18:32
MoPacSo I uninstall apache2, kill every process to do with avahi (including ordering the daemon to stop via /etc/init.d script). But a few minutes later, when I'm not even running my usual Unity DE but am actually logged into a minimal Steam one, my network drops again. I log back into Unity and, lo and behold, my machine has spawned an eth0-avahi connection to nowhere and an apache2 webserver!18:32
dm_compnot_stark: Tux, of Math Command or tuxmath well t4k_common it's a library (I'm doing this to learn)18:34
not_starkdm_comp: yeah, found it in the meantime - https://github.com/ComputerNerd/t4kcommon/blob/master/INSTALL18:34
not_starkdm_comp: I think it might be part of libc, take a look at http://packages.ubuntu.com/trusty/libmath-libm-perl18:36
not_starkdm_comp: it’s a libm binding that only lists libc6 and perl as dependencies18:36
not_starkdm_comp: anyway, just try installing t4kcommon after you get a hold of the other deps and see if it works18:37
dm_compnot_stark, is that normal practice?18:37
not_starkdm_comp: what, having absurdly uninformative READMEs? Yeah. Oh, and you might have to install libc6-dev.18:38
jwashanyone here able to help me get znc starting as a service at reboot? i installed via the main ubuntu repo, made my conf, but znc won't start with the init.d script at http://wiki.znc.in/Running_ZNC_as_a_system_daemon#Create_the_init.d_Scripts18:38
liquideehey guys. I'm trying to install 32 bit libsdl1.2-dev on a 64 bit ubuntu 15.04. I've added i386 architecture to dpkg and tried to install the 32 bit version but it complained about missing X and so on. I tried to install them all at once but when it finally accepted, 64 bit versions of some packages were about to be removed. Why is that? cant i have both 32 and 64? Please look at the pastebin: http://paste.ubuntu.com/12275485/18:38
stacks88Seveas and everyone else thanks for your help, box successfully came back online. Only reason i was worried is becuase ive got 7 vms running on there, and ive got no other machine at the moment. So if things dont go right w/ the host machines kernel upgrade or somehow it doesnt come back up, then all my other stuff remains offline etc18:39
blah-shift+ctrl+c and shift+ctrl+v is not working on my terminal, how to fix this pls?18:39
dm_compnot_stark: (background if your interested) I'm reading How Linux Works 2ed. I'm on CH 15 Development Tools/Chapter 16. Introduction to Compiling Software From C Source Code. just trying to put it to practice :)18:40
dm_compnot_stark: not sure to laugh at the last comment18:41
dm_compwell the README part18:41
not_starkdm_comp: looks like an interesting book. Up to date, too.18:41
dm_compnot_stark, yup the 2ed just came out18:42
dm_compnot_stark: far from being involved with projects, I was doing networking for a while at Time Warner Cable (Cisco Stuff) and now I'm trying to switch to Linux administration.18:48
AEL-Hdm_comp: What are Cisco courses like, I have heard of  them, I would quite like to talk to someone that has been there and done that, would you mind talking for a bit?18:50
MonkeyDustAEL-H  that would be for #ubuntu-offtopic18:50
AEL-HMonkeyDust: Sorry, did not release that existed, thank you18:50
pitastrudlso i have clamav installed on my vps, its using some memory that i'd really use it for something else, how badly would i need clamav?18:51
MonkeyDustAEL-H  or pm, obviously18:51
pitastrudlit must have been installed with the iredmail instalation but i barely use my email setup on the vps18:51
MonkeyDustpitastrudl  only if you have windows machines in your network18:51
=== icaro is now known as Guest6178
KiraEvening all.. Anyone able to provide me with a little help with Ubuntu on external HDD and Mac Yosemite?18:51
not_starkpitastrudl: not at all, unless you’re running a mail server or something18:51
pitastrudlnot_stark i am running an email server18:52
not_starkKira: sure, ask away18:52
pitastrudlMonkeyDust what do you mean network18:52
pitastrudlits a digitalocean vps18:52
not_starkpitastrudl: are you running an email server for Windows users or just yourself?18:52
pitastrudljust for myself18:52
pitastrudland i dont use it very much18:53
rob__is anyone available to help me with installing steam correctly? whenever i start steam it tells me i need to install additional packages, i try and it gives more errors18:53
not_starkpitastrudl: you can remove it, just use an antivirus on any Windows machines you read your mail on.18:53
pitastrudlok18:53
pitastrudlthanks guys18:53
pitastrudlbtw not_stark, should i also remove amavis or should i leave that18:55
not_starkpitastrudl: amavis, the content filter? I have no idea what sort of mail setup you have or what you’re trying to do18:55
pitastrudlok18:56
t3chguy pitastrudl clamAV is a component of iRedMail18:56
pitastrudlyes18:56
pitastrudlany suggestions on what else to use18:56
t3chguyif you wish to remove all the Content Scanning components, read the iRedMail docs on disabling them first18:56
t3chguyI'm the dev of iRedMail, why would I suggest something else..?18:56
pitastrudlD:18:56
pitastrudlok18:56
pitastrudlim just looking on ways to cut off the memory print18:56
=== Yukkino is now known as Yukiku
t3chguyremove the Content Scanning things18:56
t3chguybut disable them following the docs first18:57
pitastrudlokay18:57
t3chguypitastrudl: http://www.iredmail.org/docs/completely.disable.amavisd.clamav.spamassassin.html read the bit under "Completely disable all features"18:57
pitastrudlty18:57
t3chguyafter which you can uninstall ClamAV, SpamD (SpamAssassin) and Amavis18:58
WicksAh stupid internet18:58
=== Wicks is now known as Kira
KiraAnyone able to offer a little advice, having some issues with a mac and ubuntu on external hdd18:59
wileee!ask | kira19:00
rob__is anyone available to help me with installing steam correctly? whenever i start steam it tells me i need to install additional packages, i try and it gives more errors-*+19:00
ubottukira: Please don't ask to ask a question, simply ask the question (all on ONE line and in the channel, so that others can read and follow it easily). If anyone knows the answer they will most likely reply. :-) See also !patience19:00
Kira!ask I have successfully installed a live USB but I'm trying to do the same on an external HDD but when I try and boot from the HDD it dooes'nt show as a boot option on Yosemite19:01
ubottuKira: I am only a bot, please don't think I'm intelligent :)19:01
Kirafail19:01
wileeeKira, running a live off a external HD is a bad idea in general.19:02
pitastrudlt3chguy i cannot find the amavisd dir19:02
pitastrudlin etc19:02
pitastrudlshould it be somewhere else or did i fuck up something19:02
t3chguypitastrudl: what distro?19:02
pitastrudlubuntu19:02
pitastrudl14.0419:02
pitastrudl64bit19:02
wileee!language | pitastrudl19:02
ubottupitastrudl: The main Ubuntu channels require that you speak in calm, polite English. For other languages, please visit https://wiki.ubuntu.com/IRC/ChannelList19:02
pitastrudloh19:02
pitastrudlsorry19:02
ioriaKira did you select your external HDD as target for grub ?19:02
t3chguypitastrudl: what are you looking for the amavisd dir?19:02
pitastrudlStop virus/spam scanning, keep DKIM signing/verification and Disclaimer19:02
wileeepitastrudl, stop the enter button, all in one post please.19:02
pitastrudlthat^19:02
pitastrudloh19:03
pitastrudlnevermind19:03
Kiraioria: ok you've lost me there already! ha. New to linux and basically want to install it on an external HDD not on my current machine19:03
pitastrudlnot thinking straight, just came off from work19:03
t3chguyits /etc/amavis/19:03
wileeeKira, the external will run slow, a bad idea.19:03
Kirawileee: even if its just used to then install fully on the HDD ?19:03
t3chguyon ubuntu 14LTS anyway19:03
wileeeKira, a usb does not have the data transfer speed an internal does is all.19:04
stacks88I get emails all the time from ubuntu saying that there are linux kernel vulerabilities and it affects my 14.04 LTS. So of course i run apt-get update and dist-upgrade and install the new kernel. But each time i do this, i have to reboot the machine which means i have to power down my guest vms i run on there first.. it becomes a hassle. I'm being told that with newer linux kernel versions you19:04
stacks88can patch the kernel live. Is this possible with ubuntu and the kernels that i get from apt-get ? or do i need to custom compile my own kernel to achieve this19:04
Kirawileee: ah right, well there in lies as my hdd on my mac is tiny and can't really use it.. well this will be a fail19:05
ioriaKira if you want run ubuntu from an external HD in the installation process (partition table) you have to select /dev/sdX for GRUB where X is your external19:05
Kira*lies a problem19:05
Seveasstacks88: there are some things in the kernel that can now be patched live, but ubuntu security updates are not done this way (and I don't even know if they can). If uptime is important for you, build an HA system, any single box should always be able to go down.19:05
FiiHi, not actually using ubuntu but I figured that this could probably be applied to it also19:06
Kiraioria ok thanks for the info will have to have another go. Like i said never used linux before but would like to have a mess around with it19:06
PsychoX75Well well19:07
wileeeFii, ubuntu support here, not general could if run in ubuntu, try ##linux19:07
PsychoX75reinstalling the driver of ATI actually solved the problem19:07
PsychoX75many thanks peeps19:07
PsychoX75have a nice night.19:07
PsychoX75Ubuntu FTW!!!19:07
ioriaKira for example your hd is /dev/sda and your live USB is /dev/sdb  ... probably your external hd will be /dev/sdc ... then select /dev/sdc19:08
FiiSituation: installed crashplan headless, and it (by default) was backing up to /usr/local/var/crashplan/{guid}. After about 9 gigs I was getting a destination full error, and it turns out that I filled up my /dev/root partition. Moved it and deleted the partially complete backup, and now I have ~50% available again.19:08
Kirawileee: is using usb 3 going to make little difference to the speed of ubuntu on a external?19:08
stacks88Seveas by HA system is that clustering? i'll have to loook into it, its new to me19:08
Kirai'm assuming it won't really help much19:08
FiiAnyway, main question is what all is "on" the /dev/root partition? I had always seen stuff installed to either /usr/local or /opt/ but wouldn't that fill it up super quickly?19:09
Seveasstacks88: that or deal with the occasional downtime. Also, make sure you properly read each ubuntu security notice. Maybe you're not even using the facility that's broken and you don't need to reboot :)19:09
wileeeKira, slightly, but in the end ubuntu is gonna be slow. Why don't you give the internal HD size and the external HD size so we can help maybe get an internal install19:09
FiiMy /home (/dev/sda2) has the majority of my storage on it. Is it possible to move some of that to /usr/local or /opt, or should I start keeping everything in my home directory?19:09
pitastrudlthanks t3chguy, that worked19:10
Kiraioria: thanks for the info :)19:10
=== Blaster is now known as Guest52891
wileeeFii, you are not using ubuntu as k in the OS's channel.19:10
ioriaKira np19:10
FiiUbuntu has a different file structure?19:10
Fiiok sorry19:10
not_starkFii: depends on what you’re storing on it, of course19:11
Kirawileee: external is 500gb internal is 125gb pretty much maxed out and was trying to avoid having 2 OS's on the drive19:11
t3chguyno problem pitastrudl19:11
wileeeFii, No you want results with no real info on another OS, this is ubuntu support only.19:11
pitastrudlt3chguy the reason i chose iredmail is the installer and becuase im not so savvy with linux, other options seemed quite time demanding to learn how to setup19:12
wileeeKira, Put some of the extras on the external and use the internal, that is the standard way, you can get usb flash that will hold all of it.19:12
wileeeKira, I would use a virtual before an external is all.19:13
ioriaKira yep, switch the disks19:13
WhiteRoseXhey19:13
daytonbIs anyone here using virtualbox 5?19:13
WhiteRoseXanybody knows where to get reliable proxy sockets?19:13
wileeedaytonb, try an actual issue, there is a #vbox channel19:14
SeveasWhiteRoseX: what on earth is a 'reliable proxy socket'?19:14
WhiteRoseXip and port19:14
WhiteRoseXthat actually work19:14
Kirawileee: okies,may sound seriously noobish but by having that way would it cause any issues for my current OS in anyway?19:14
daytonbwileee: Yep no one there is answering any of my questions19:14
rob__does anyone here use steam on ubuntu19:15
stacks88Seveas do you know if ubuntu will have the whole no reboot kernel patching in the near future? It looks like in kernel 4.0 and on ubuntu 15.10 (according to some link im reading), it will be possible or maybe its already possible19:15
rob__64 bit19:15
SeveasWhiteRoseX: http://www.geosurf.com/ works for me, but that's not really ubuntu related19:15
WhiteRoseXthank you  Seveas19:15
wileeeKira, A virtual would not, a dual boot if done right no general issue. In the end be backed up no matter what. Find a local who can help you maybe. Here people will give you advice without any real longterm context considered, I'm making sure you have some understanding is all.19:16
Kirawileee: Thanks for the info it is much appreciated! :)19:17
TSYSTHello ubuntu channel, quick question. When i select install option from grub in ubuntu usb, does it delete anything on the pc drive ?19:17
=== _un_ is now known as nas
wileeeTSYST, your booting to an install where you are given those options, ask as needed.19:18
mikemonkhello guys, so I'm trying to install an image through my PXE server, however I get the following: "Starting PXE installation mesa_install: Error: Failed to verify signature of install image" any advice?19:19
trabbitexit19:20
regeditso what is this CVE 2015 5198/5199/520019:21
ubottu** RESERVED ** This candidate has been reserved by an organization or individual that will use it when announcing a new security problem.  When the candidate has been publicized, the details for this candidate will be provided. (http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2015-5198)19:21
regeditthey seem to not be published yet, buit a fix has been released19:22
regedit*but19:22
wileeeregedit, related to ubuntu how?19:22
soosoolWhat's the current kernel version for 14.04?19:22
MonkeyDustsoosool  i have 3.16.0-46-generic19:23
soosoolThe latest kernel available for 14.04?19:23
soosoolMonkeyDust: Ah, ok19:23
soosooltnx19:23
regeditwileee: dunno, my ubuntu distro has supplied the package maybe?19:23
mikemonkthen on one installation it started to boot from the image, everything was going well until this happened again:"/usr/sbin/mesa_install -vw restore" "mesa_install: Error: Failed to verify signature of install image"19:24
wileeeregedit, maybe? some context, what is the end goal here?19:24
not_starksoosool: http://packages.ubuntu.com/trusty/linux-image-3.19.0-21-generic19:24
not_starksoosool: actually, it looks like it’s 3.19.0-26 - Ubuntu’s packages website is odd19:25
regeditwileee: being informed, i guess?19:25
ioria3.16.0-48-generic19:25
wileeethat would be a 14..04.3 install however19:26
wileeefor 3.1919:26
technocfWhenever I logout and log back in my wallpaper is scaled to the size of my smallest monitor for all of the monitors then stretched on the larger ones.19:27
rumpy1has anyone used multisystem or yumi?19:28
wileeerumpy1, neither are ubuntu apps, address the end goal here.19:29
MonkeyDusttechnocf  yes, i have something similar, my login screen, on the external monitor, has a larger resolution than my monitor dimensions, because the laptop's screen is broken (does that make sense)19:29
rumpy1i want to know if i can use rest of the usb flash drive as regular storage and if it's possible to install ubuntu with such flash drive?19:29
=== Chris230 is now known as Guest50177
MonkeyDusttechnocf  havent found a solution, learned to live with it19:30
rumpy1yumi page said that its meant for testing live version and install is a bonus19:30
technocfMonkeyDust: I can't live with it.19:30
wileeerumpy1, You can have more that one partition read in linux, not easily in windows is all.19:30
technocfMonkeyDust: We're taking about 1280x1024 stretched to 1920x108019:30
rumpy1wileee: ok, thanks. do you happen to know about installing ubuntu from such flash drive?19:31
=== _BJFreeman is now known as BJfreeman
wileeerumpy1, Both are gonna load the live to a partition, you make, or is there, a fat32, the multissystem19:32
wileeeallows many iss's is all19:32
wileeeiso's*19:33
wileeesorry19:33
wileeerumpy1, the install from it is the same as a disk in it's model.19:33
Bashing-omrumpy1: These may help : http://www.ubuntu.com/download/help/create-a-usb-stick-on-ubuntu , http://ubuntuforums.org/showthread.php?t=1958073 .19:34
ioriahttp://askubuntu.com/questions/423300/live-usb-on-a-2-partition-usb-drive19:35
rumpy1Bashing-om: yeah, i've created a usb startup disk before, but not with 2 distros on the same drive19:35
rumpy1ioria: thanks19:36
ioriarumpy1, two distos ?19:36
mikemonkhttp://paste.linux.chat/view/03c8cc5b - any advice?19:36
rumpy1ioria: yes, lubuntu and ubuntu19:37
ioriarumpy1, multiboot19:37
ioriarumpy1, http://www.makeuseof.com/tag/how-to-install-multiple-bootable-operating-systems-on-one-usb-stick/19:37
wileeerumpy1, do you have a linux install? the multisystem loader neds that to load a usb. I use it personally as I like a list of iso's to boot from.19:38
rumpy1wileee: yes im running ubuntu19:38
wileeerumpy1, I would use the multisystem usb loader myself, o my view is subjective, however there are other multi loaders, s19:39
=== user is now known as Guest42419
Guest42419if we have files that were downloaded by Software Updater and we do not want to install them, how can we delete them?19:40
Bashing-omrumpy1: For testing I often boot up from .iso : https://help.ubuntu.com/community/Grub2/ISOBoot .19:41
rumpy1wileee: guess ill try and experiment, see how it goes19:41
akikwileee: what's this multisystem loader?19:41
wileeeakik, Why are you not just googling it, it's not a ubuntu app.19:41
akikwileee: this? http://liveusb.info/19:42
wileeeakik, Yeah, you have got it, good job. ;)19:43
akikhave to you chrome to translate that site19:43
wileeethis can be done with grub 2 as others have linked as well19:43
rumpy1akik: english version http://www.pendrivelinux.com/multiboot-create-a-multiboot-usb-from-linux/19:43
akikso i can start multisystem from grub?19:44
akikor is it a replacement for grub?19:44
wileeeakik, multisystem is a usb loader, you boot what you've loaded from it. You can also boot some iso's from your on board grub 2. You can also make a usb with grub that is a multibooter yourself.19:45
zykl19:49
zyhi19:49
zyanybody there?19:49
MonkeyDustzy it works, we see you19:49
zy3319:50
Seveas4419:50
zyhaha19:50
jayflyHello there what is the mirrors url's for armhf boards ? main and security ? thansk19:56
jayflyfor building stuff with debootstrap19:57
jayflyI see http://ports.ubuntu.com/ubuntu-ports/ but not sure that that is also security and what not19:57
=== icaro is now known as Guest61316
TSYSThi, what happens when u click install ubuntu on bootloader ?20:01
dm_compnot_stark: just got my first program compiled from source. kept running ./configure until i found all the libs i needed. After ran sudo ldconfig(was in the README) and that was it. THX!20:01
TSYSTdoes it install to main drive ? eg c:// on windows ?20:01
TSYSTor every drive20:01
SeveasTSYST: it can do either (and more), you can tell it exactly what to do with existing partitions.20:02
Bashing-omTSYST: The install wizard launches, and you choose what install method to employ .20:03
callumacraeI'm really stuggling to install adb, `sudo apt-get install android-tools-adb` says it isn't found and every repository I've tried to add has failed20:04
jayflycallumacrae:  apt-cache search adb   ?20:04
callumacrae"prepare your desktop" in https://developer.ubuntu.com/en/start/ubuntu-for-devices/installing-ubuntu-for-devices/20:04
callumacraeI don't have `add-apt-repository` though20:05
geniicallumacrae: Add the universe repository20:05
callumacraejayfly: returns a tonne of stuff, none of it looks like what I want20:05
genii!info android-tools-adb20:05
ubottuandroid-tools-adb (source: android-tools): Android Debug Bridge CLI tool. In component universe, is extra. Version 4.2.2+git20130218-3ubuntu41 (vivid), package size 67 kB, installed size 241 kB (Only available for linux-any)20:05
jayflycallumacrae:  that is python-software-properties or something like taht20:05
jayflycallumacrae:  I use adb from android sdk and then the ndk so that I can hook it up to qtcreator and what not,  But I use debian mainly20:06
genii..and make sure you do sudo apt-get update after adding repositories20:06
TSYSThmm, does ubuntu force wipe your drive if u did no have space on main drive ?20:07
callumacraeAha, I got it installed! I installed add-apt-repository from python-software-properties and followed the rest of the instructions from that page, and it worked20:07
danielle31I have a problem with the FS on an external drive. Every time I run fsck, I get the message "Filesystem modified. Errors remain." So I run fsck again and it seems to be fixing different things each time. I have done this about a dozen times now. Am I doing this right? Why can't fsck run repeatedly until it has fixed all the errors?20:09
callumacraethese are the worst instruction :(20:09
callumacraeokay, I've ran "adb devices" and my device doesn't show up. how do I fix this?20:10
callumacraeUSB debugging mode is enabled20:10
wileeeTSYST, Your questions are seeming to be in post mode, you need to give all the info, not pick at it.20:10
jayflycallumacrae: did you start the server ?20:10
callumacraestarted itself the first time I ran "adb devices". I missed a step, apparently I have to configure udev rules20:11
callumacraeoooh it probably also doesn't help that I'm running this in a VM and the phone is attached to the physical machine. duh20:12
jayflycallumacrae: I have never had to do that.  Just install the run     adb start-server20:12
jayflythen adb devices20:12
jayflycallumacrae:  yeah that is not going to help with out the ports open and the usb theathered20:12
nikunjlahotiCan someone please help me point to the archive of messages sent via 'leave message' on lock screen?20:13
callumacraeI'm running it in a vagrant VM because if I can get this to work I'll be running it on a physical server running ubuntu, and I use a mac so I'm using ubuntu in vagrant20:13
czwolfHello, could anybody help to this: I have a server (under mono) and the server is supervised by some watchdog (sh script). I login from remote to it. Sometimes hardware is rebooted. I need the server to be started by that watchdog. Watchdog runs in console. Server too. When I return to pc and login remotely, I want to see both running. How would you solve this using cron?20:14
callumacraeegh I should probably get one of the devops guys to help me, but they can't help me in the next three weeks…20:15
callumacraeI have no idea how to computer!20:15
=== ksx4system_ is now known as ksx4system
danielle31callumacrae: is USB debugging enabled on your android?20:16
=== adante_ is now known as adante
=== beisner- is now known as beisner
callumacraedanielle31: yep it is20:16
=== Plas is now known as PlasmaStar
=== frankS2_ is now known as frankS2
=== regedit_ is now known as regedit
=== tmro is now known as kerozene
=== Eq is now known as Uptime
callumacraeI've managed to actually connect the thing now20:20
callumacraeyay vagrant20:20
=== cerberus is now known as Guest38085
callumacraeList of devices attached ????????????no permissions20:20
callumacraeis that normal?20:20
nikunjlahotiCan someone please help me point to the archive of messages sent to you via 'leave message' on lock screen?20:21
thmsI'm trying to apt-get install apache2-dev20:23
thmsbut apt-get forced me to install the latest kernel and my /boot partition is full20:23
callumacraeIs there a better channel for my adb questions?20:24
jayflycallumacrae: maybe ubuntu-phone or ubuntu-arm ?20:24
jayflycallumacrae: but that is not normal.  Did you try with sudo ?20:25
callumacraetrying with root now, didn't before20:25
=== scuba3231 is now known as scuba323
callumacraeaha!20:25
callumacraethat worked20:25
jayfly:)20:25
callumacraethank you :)20:26
jayflycallumacrae:  NP now go hack on the adb-shell :)20:26
callumacraeI'm sure I will have more questions >_< I'm installing a private instance of webpagetest and I haven't even started on the host20:26
=== lxleuser is now known as bumblebee2
jayflycallumacrae:  using what ?  WTF aka webkit or webengine ?20:27
callumacraehttps://sites.google.com/a/webpagetest.org/docs/private-instances/node-js-agent/setup20:27
callumacraelike http://www.webpagetest.org/, but local20:27
callumacraeReally interesting for me, probably far less interesting to android hackers20:28
jayflycallumacrae:  ahh I see webengine.  You might need to make the img writable20:28
jayflywhat img are you useing callumacrae ?20:28
callumacraetbh I don't really understand what I'm doing and I'm following the instructions on the google sites page I linked to, but they're not very comprehensive20:28
callumacraeI'm actually a front-end developer20:29
callumacraeof the web variety, I should clarify20:29
thmsI'm tring to clean my /boot which is full20:29
thmsbut when I run apt-get remove20:29
callumacraeBeing able to ssh into a phone is awesome, though. I have an iphone for myself and am probably going to get an android when I next upgrade because apple are shitty20:29
thmsit tells me I have unmet dependencies20:30
thmsI'm trying with aptitude, it tells me removing linux-generic20:30
thmswould be a solution, is that safe ?20:30
jayflycallumacrae:  is it is phabley image ?  if so it is read only.  But if it is just some armhf image then you are good to go.  I make armhf boards and port Ubuntu or atleast that iswhat I am doing right now.20:31
Bashing-omthms: "safe" in respect that it can be re-installed. -generic is required for future kernel upgrades .20:32
callumacraejayfly: sorry but I have no idea! I feel like a noob20:33
callumacraeI used cf-auto-root, if that helps20:33
thmsBashing-om: ok so I can remove it ?20:34
jayflynot sure either callumacrae  I never used that.  I use Qt and there webengine or webkit to display the web stuff.20:34
Bashing-omthms: The command in 14.04 + to remove old kernels is ' sudo apt-get autoremove ' .20:34
thmsIt's really weird because aot-get rmeove linux-image-version tells me it depends on installing a newer version20:34
thmsBashing-om: it doesn't work..20:35
thmsI'm just trying to install apache2-dev20:35
thmswhy does it force me to install a newer kernel ?20:35
Bashing-omthms: K; then we need to satisfy the package manager , Pastenin the results of your "apt-get remove" command . So we see it in cintext and can better advise .20:36
=== MrSpock is now known as FBI
=== voronwe is now known as Guest79077
thmsWhen I run apt-get autoremove to clean my /boot20:45
thmsit tells me I have unmet depedencies which are linux-image-extra20:45
thmsand to run apt-get -f install but my /boot is full so it doesn't work20:45
geniithms: If you have some other partition mounted with space on it, make a directory there, copy /boot contents to it, then bindmount /boot to that place for now to get all the operations done. After, unmount it, clean out old /boot, mv all the stuff in the previously mounted directory to it20:48
thmsgenii: bindmount ? is that a command ?20:48
geniithms: No, it's certain options to the mount command which lets you mount directories to other directories20:49
thmsgenii: I only have the / partition20:49
Bashing-omthms: A commom issue when 'apt' does not have the operating head romm. Mauny time one cn manully intervene with 'dpkg' ( operates at a lower level ) and fix the issue . We need to see the results in context to advise further .20:49
nikunjlahotiCan someone please point me to where the messages, sent to you via 'leave message' on lock screen, are stored?20:50
geniithms: In that case you'll have to manually clean out the old  unused kernels in /boot to make some room20:50
geniithms: Please pastebin the result of ls /boot  for examination20:51
thmsI just done a reboot, it booted on 58-generic20:51
Bashing-om!paste | thm20:52
ubottuthm: For posting multi-line texts into the channel, please use http://paste.ubuntu.com | To post !screenshots use http://imgur.com/ !pastebinit to paste directly from command line | Make sure you give us the URL for your paste - see also the channel topic.20:52
thmsgenii: https://bpaste.net/show/110e9155957420:53
demetrishi20:56
demetriscant reboot my laptop on systemd20:56
geniithms: You can safely remove all the files which are for 55 and below20:56
geniithms: After doing that, run: sudo update-grub20:57
demetrisi get stuck/freeze20:57
demetrisIntel(R) Pentium(R) M processor 2.13GHz20:58
demetrisany fixes20:58
thmsgenii: ok, uname -r is 5820:58
geniithms: Seems odd because there are higher kernels there than 58, but for now just clean out the ones 55 and below20:59
devslashdoes ubuntu come with a firewall thats enabled by default20:59
wileee!ufw | devslash might say here21:00
ubottudevslash might say here: Ubuntu, like any other Linux distribution, has built-in firewall capabilities. The firewall is managed using the 'ufw' command - see https://help.ubuntu.com/community/UFW | GUI frontends such as gufw and ufw-kde also exist. | An alternative to ufw is the 'iptables' command - See https://help.ubuntu.com/community/IptablesHowTo21:00
nug700I dispise the new ubuntu layout. How can I make ubuntu 15.04 look more pre-sidebar?21:02
nug700despise*21:03
thmsgenii: ok I done it and when I run update-grub21:03
geniithms: You ran update-grub with sudo?21:04
thmsit tells me dpkg error processing package linux-image-extra-3.blah-62 : is not ready for configuration21:04
thmscurrent status: half-installed21:04
thmsho removed 55 and ran update-grub21:05
geniithms: sudo apt-get clean && sudo apt-get update    ..and then do the: sudo apt-get -f install21:06
=== infamy is now known as Guest54337
thmsgenii: update-grub worked, will run your command and again update-grub21:07
thmsI have no rescue system21:07
harushimoCan I get git install on ubuntu?21:07
harushimoI thought you can21:07
thmsif update-grub works my system will reboot alrght, right ?21:07
geniithms: Yep21:08
thmsok I hope so21:08
=== christos is now known as chris230
=== chris230 is now known as Guest59539
=== Guest59539 is now known as christos
czwolfHello, after hardware reboot, if the program is scheduled by cron to start it, it runs in the background. When I do remote login, I do not see a console. To see it again, I need to shutdown it in process manager and start again. Could I set it the way i would like?21:12
nug700ugh I've tried isntalling 2 themes already. WHY won't this awful default ubuntu theme go away21:13
Johnny_Linuxnug700, try ubuntu mate21:13
nug700how do I roleback the install of xfce and numix-gtk-theme21:14
nug700properly to before I fidled with it21:14
nug700fiddled*21:15
thmsWhen I run apt-get update ir hangs on 100% waiting for headers21:15
nug700ugh seriously who's idea was it to add this sidebar thing and sacrifice usability to make it look "pretty"21:18
UmeaboyHi! Is there an ETA on when the 4.2-kernel from MAINLINE will be released as an update in Ubuntu 15.04?21:20
nug700Johnny_Linux: Do I have to install that over this to get that desktop or is there a way to install it into ubuntu?21:22
UmeaboyI two annoying issues at start up namely.21:22
nug700(i mean do i have to install that over this ubuntu installatino)21:22
Umeaboynug700: To install WHAT?21:23
UmeaboyI may be able to help.21:23
UmeaboyLooking for another DE?21:23
nug700installing ubuntu mate desktop21:23
Johnny_Linuxmate-desktop21:23
UmeaboyInstall it.21:23
Umeaboysudo apt-get install mate-desktop -y21:23
Johnny_Linuxlog out and log to it21:23
nug700what does -y do?21:24
UmeaboyYou have to choose it from the login screen thou.21:24
nug700every time?21:24
Umeaboynug700: Do automatically answer yes.21:24
Johnny_Linuxno21:24
UmeaboyNo.21:24
nug700ah21:24
Johnny_Linuxonce you log to it, itl log naturally21:24
UmeaboyJohnny_Linux: Do you know the answer to my question perhaps?21:24
UmeaboyI know that there's a PPA to use, but that is unstable/testing releases AFAIK.21:25
Johnny_Linux4.2 ??, i have no idea21:25
UmeaboyI may be wrong thou.21:25
Johnny_Linuxnot sure about a ppa yet21:25
UmeaboyOK.21:26
Johnny_Linuxuntill ubuntu compiles it for thier own use, i wouldnt use it21:26
UmeaboyJohnny_Linux: Well, I have a kernel issue that every now and then makes my computer unbootable.21:28
UmeaboyA driver issue.21:28
UmeaboyNouveau.21:28
UmeaboyAnd YES I have installed nvidia-prime.21:28
Johnny_Linuxwhat ubuntu version21:28
Umeaboy15.04.21:28
Johnny_Linuxi havent used anything beyond 12 yet, so, not sure i could help21:28
UmeaboySometimes boot works fine.21:28
TJ-Umeaboy: Linux v4.2 is in 15.10 now; you could always use those packages, or the Kernel Team's mainline PPA21:32
UmeaboyTJ-: But I thought that the Kernel Team's mainline PPA is for Testing purposes only.21:33
nug700my gosh playing with themes really likes fucking with my monitor positions21:34
MonkeyDustnug700  mind your language21:34
TJ-Umeaboy: It's 'unsupported' if that's what you mean; but there's nothing wrong with using those kernels if they fix an issue. I've run with the current mainline kernel for several years. The only issues with it are the Ubuntu kernel bundles additional drivers that aren't in mainline yet, such as aufs21:34
mrtakdenizhey there21:35
geniithms: Work needed me for a long time, back now. How goes the battle?21:35
mrtakdenizis there any documentation for copy home folder to another directory and re-install ubuntu21:35
mrtakdenizmost of my apps is on home folder, so i think if i copy home folder i can reinstall system and back to work asap21:36
mrtakdenizbut not sure if I just copy/paste work21:36
MonkeyDust!backup | mrtakdeniz i guess you mean this21:37
ubottumrtakdeniz i guess you mean this: There are many ways to back your system up. Here's a few: https://help.ubuntu.com/community/BackupYourSystem , https://help.ubuntu.com/community/DuplicityBackupHowto , https://wiki.ubuntu.com/HomeUserBackup , https://help.ubuntu.com/community/MondoMindi - See also !sbackup and !cloning21:37
nug700is it really necessary to micromanage language? my gosh it's not like I'm using that language excessively.21:37
geniinug700: It's part of the policy of this channel. the aim is to keep it family-friendly.21:37
TJ-nug700: it's unnecessary; if you're frustrated hit your PC :D21:38
nug700Sorry I just really hate excessive political correctness policies. It's becomeing the death of a lot of tech culture.21:39
MonkeyDustmrtakdeniz  rsync is pretty fast and easy to use, like so:  rsync -a --progress [folder] [from] [to]21:39
nug700Anyway I can't get mate to show up in my themes21:39
mrtakdenizMonkeyDust, i know but as I told, after format only rsync them or copy paste them works21:40
mrtakdenizi'm checkin backup app of ubuntu as your link says21:40
Bashing-ommrtakdeniz: See : https://help.ubuntu.com/community/Partitioning/Home/Moving if that answers .21:41
nug700before login21:41
=== someon is now known as someone
mrtakdenizyeah that was the answer bashing, i were installing always like that, but on new ssd i forget to do it :321:42
mrtakdenizso i were asking actually is there a way to do it on working system, thank you so much21:42
mrtakdenizBashing-om, sorry wrong tag :P thank YOU.21:43
Sohail-AhmedI have installed a recently released version of swig. Its installed in /usr/local/bin. Now when I execute a program, say, XYZ which requires swig, the log of XYZ does not show the recent version of swig.21:44
yomaSalut21:44
Sohail-Ahmedany help?21:44
TJ-Sohail-Ahmed: maybe bash has cached the old version in its hash map?21:45
Sohail-AhmedTj: thanks for respsonding, I did hash -d swig, but in vain21:45
TJ-Sohail-Ahmed: "which swig" and "hash -t swig" maybe help?21:47
TJ-Sohail-Ahmed: otherwise the programs you're using maybe encode the absolute path to the system swig ?21:47
Sohail-Ahmedhash -t swig returns swig not found and which swig returns /usr/local/bin/swig21:49
Sohail-Ahmedand your second statement passed over my head21:49
TJ-Sohail-Ahmed: The progams you're using must be using absolute path to swig then21:49
Sohail-AhmedHow can I achieve that21:49
Sohail-Ahmed?21:49
TJ-Sohail-Ahmed: If the system installed it to "/usr/bin/swig" maybe those programs you're using are calling it by that absolute path, rather than asking for "swig" and allowing it to be found on the PATH21:50
Sohail-AhmedTJ: I am sorry for being too noob, but what I understood is: If I have installed it to /usr/bin then I may not any problems. Correct??21:52
TJ-Sohail-Ahmed: If you back-up the older system version of /usr/bin/swig and put your new version in its place, that should work21:53
Sohail-AhmedTJ: How can I put my new version at /usr/bin??21:54
Sohail-AhmedTJ: I have figure this out. I would run ./configure --prefix /usr/bin.21:55
Sohail-AhmedTJ: but how can I remove the previous version and the one at /usr/local/bin???21:55
TJ-Sohail-Ahmed: You could do that; but if you install and over-write system files you're liable to cause the package manager to fail in complicated ways later21:56
deltHello21:56
TJ-Sohail-Ahmed: If you did 'make install' there should be a 'make ununinstall' target too21:56
deltis the text console font embedded in the kernel? i'm examining the contents of the initrd and i can't find it...21:56
mrtakdenizguys21:57
Sohail-AhmedTJ: Ok. This would remove my recently installed version. But How should I remove my old version??21:57
mrtakdenizassume that i have only 30 gb for ubuntu, and want to use home directory as a partition21:57
TJ-Sohail-Ahmed: using the package-manager, if you're talking about the Archive version21:57
mrtakdenizhow much ubuntu base i mean / partition need to be?21:57
mrtakdeniz20 base - 10 home enough?21:58
Sohail-AhmedTJ: Thankyou very much !!!!!21:58
TJ-mrtakdeniz: It depends on how many packages you install; I find 8GB for /, and 6G for /var/ is good and I install a lot of packages for testing/building21:59
=== zoltan_ is now known as Guest75090
mrtakdenizTJ-, are you web developer?21:59
mrtakdenizwhy /var directory?21:59
Bashing-ommrtakdeniz: Depends on how "tight" you want to run . I tun real tight on a '/' of " /dev/sda1       4.7G  1.8G  2.7G  40% / " .22:00
Bashing-omtun/run*22:00
mrtakdenizBashing-om, i'm using simple development tools22:00
=== shroud is now known as Guest50512
mrtakdenizwhich are on home such as phpstorm, webstorm, pycharm etc22:00
mrtakdenizand some other packages like nginx, apache, php, mysql22:01
mrtakdenizand utilities like filezilla, chrome, sql managers..22:01
mrtakdenizi have 1 tb free hdd22:01
TJ-mrtakdeniz: No.22:01
mrtakdenizand 120 gb ssd but can only use 30 gb for ubuntu..22:01
mrtakdenizwhich files should i host on ssd?22:02
mrtakdenizi mean install ubuntu on ssd and use home from hdd may be a bad idea?22:02
Bashing-ommrtakdeniz: I would suggest 15 gigs for '/' and 50 Gigs for /home . If this is a development machine, might be good yo have the /var partiton separate also .22:02
TJ-mrtakdeniz: /var/ stands for 'various' and it can grow uncontrollably due to /var/cache/ and /var/log/, amongst others, so putting it outside the root-fs stops it from causing severe issues if it runs out of space.22:02
TJ-mrtakdeniz: I use LVM so if file-system gets close to 100% I just 'lvextend -L +2G VG/LV-name && resizesfs /dev/VG/LV-name' and i've got more space22:03
mrtakdenizoh, lvm is good? should i search it? TJ-22:03
mrtakdenizBashing-om, 50 Gigs or 5 Gigs?22:04
mrtakdenizmy current home is 4 GB22:04
TJ-!lvm | mrtakdeniz22:04
ubottumrtakdeniz: Tips and tricks for RAID and LVM can be found on https://help.ubuntu.com/community/Installation/SoftwareRAID and http://www.tldp.org/HOWTO/LVM-HOWTO - For software RAID, see https://help.ubuntu.com/community/FakeRaidHowto22:04
mrtakdenizoh my god TJ-22:05
mrtakdenizit says i can extend my drive to other drive22:05
deltnm found it22:05
Bashing-ommrtakdeniz: Tradtionally /home will grow the most with what is added to the system ( persinal data !) . Mine " /dev/sda2       9.5G  2.5G  6.6G  28% /home " that serves my needs .22:05
mrtakdenizso if i out of space on ssd, i can use hdd as a part of that?22:05
mrtakdenizBashing-om, yeah i'm so pathetic right know.. :\22:06
TJ-mrtakdeniz: Yes. With LVM you assign drives/partitions as Physical Volumes (PVs). You add any number of PVs to a Volume Group (VG). You then allocate Logical Volumes (LVs) for individual file-systems. You can use snapshots, set up mirrored LVs, and many other nice things with LVM22:06
mrtakdenizdamn windows uses at least 30 gb for system..22:06
mrtakdenizTJ-, should i need the format whole disk for LVM?22:07
mrtakdenizand one more question, my ubuntu is on sectors 0 to 30Gib on ssd22:08
TJ-mrtakdeniz: No... As I said, you can make any spare partition a PV, add that PV to the VG, and then use all the space on all the PVs in any way you want. The LV file-systems can spread over several PVs and you don't need to know about it22:08
mrtakdenizand after that windows part starts.. If I resize windows part and get free space at the end of the ssd and mount there as /home, will there be any performance issue?22:08
mrtakdenizTJ-, it seems good, i'll try it22:09
TJ-mrtakdeniz: no performance issues22:09
mrtakdenizi mean [ubuntu_base][windows][home]22:10
Brandon_X_Foxhi there can someone please help me I am having issues getting my wifi working, I am using a Toshiba satellite c55-b5200 I have tried to unblock the wifi using the RFKILL command and so far nothing is working.22:10
mrtakdenizok TJ- thank you so much22:10
TJ-mrtakdeniz: Ubuntu/Linux will have Windows surrounded :)22:10
mrtakdenizi want to remove this sh*tty system.. but games..22:10
mrtakdenizand radeon fglrx drivers :P22:10
TJ-Brandon_X_Fox: Join the queue! We've had many users with the same issue recently, due to buggy laptop BIOS/firmwares causing ACPI incompatibilities22:11
Brandon_X_Foxwhich queue?22:11
TJ-Brandon_X_Fox: typical symptom is, toggling the hardware RF Kill button actually only toggles the soft block22:12
TJ-Brandon_X_Fox: The queue of users needing to find a fix for it :)22:12
Brandon_X_Foxok and also if it helps i'm currently running Ubuntu 15.04 the latest version.22:12
maohi22:13
Brandon_X_Foxso there's pretty much nothing I can do about this it seems like it would be an easy fix.22:14
TJ-Brandon_X_Fox: unfortunately it's not caused by the OS, it's the way the firmware ACPI DSDT reacts to finding Linux. It disabled some functionality. The common workaround is to discover an ACPI OSI string that the laptop accepts to enable maximum functionality, and pass that on the kernel command-line so it can fool the firmware into thinking the OS is a Windows variant22:14
Bashing-ommrtakdeniz: If you do not learn LVM now, as a 1st time install it will take 3 or 4 (RE-)installs over a period of time until you have it just the way you want it . :)22:14
VoyageHi22:15
VoyagePlease see this and inform me what to select http://oi59.tinypic.com/2yl1g85.jpg22:15
TJ-Brandon_X_Fox: If your issue is the one I'm talking about, then acpi_osi="Windows XXXX" is the best chance of a fix, where "XXXX" is determined by inspecting the system's ACPI DSDT table. Common strings are "windows 2012" and "Windows 2009"22:15
Brandon_X_Foxand how would I do this i'm totally new to ubuntu22:15
TJ-Brandon_X_Fox: Hmmm... best thing to do would be confirm your issue is caused by what I'm talking about :)22:17
Brandon_X_FoxI have no idea even what to do22:17
TJ-Brandon_X_Fox: Open a terminal, do "rfkill list"... then press the hardware radio toggle key, and do "rfkill list" again. Pastebin the results of both commands so we can see them.22:17
TJ-!paste | Brandon_X_Fox22:17
ubottuBrandon_X_Fox: For posting multi-line texts into the channel, please use http://paste.ubuntu.com | To post !screenshots use http://imgur.com/ !pastebinit to paste directly from command line | Make sure you give us the URL for your paste - see also the channel topic.22:17
Brandon_X_Foxdid that and it still says its hard blocked22:18
Brandon_X_Fox0: phy0: Wireless LAN22:20
Brandon_X_FoxSoft blocked: no22:20
Brandon_X_FoxHard blocked: yes22:20
VoyagePlease see this and inform me what to select http://oi59.tinypic.com/2yl1g85.jpg22:20
TJ-Brandon_X_Fox: It could be simply that the 'special' keys for controlling the radio and media keys aren't known by the kernel. There is usually a 'platform' driver for each manufacturer that 'knows' the models and their special ways of reading the non-keyboard function keys22:20
Bashing-om!paste | Voyage22:22
ubottuVoyage: For posting multi-line texts into the channel, please use http://paste.ubuntu.com | To post !screenshots use http://imgur.com/ !pastebinit to paste directly from command line | Make sure you give us the URL for your paste - see also the channel topic.22:22
Brandon_X_Foxi understand22:22
Brandon_X_Foxit just seems that I should be able to turn on the wifi some way or another22:22
TJ-Brandon_X_Fox: Let's see if it has the toshiba platform driver loaded: "lsmod | grep toshiba"22:23
mrtakdenizi'm downloading the iso, i'll try to figure it out on installation part Bashing-om22:23
mrtakdenizi mean LVM22:23
Brandon_X_Foxbrandon_x_fox@LAPTOP1:~$ lsmod | grep toshiba22:24
Brandon_X_Foxtoshiba_haps           16384  022:24
Brandon_X_Foxtoshiba_bluetooth      16384  022:24
Brandon_X_Foxtoshiba_acpi           28672  022:24
Brandon_X_Foxsparse_keymap          16384  1 toshiba_acpi22:24
Brandon_X_Foxwmi                    20480  1 toshiba_acpi22:24
TJ-!paste | Brandon_X_Fox22:24
ubottuBrandon_X_Fox: For posting multi-line texts into the channel, please use http://paste.ubuntu.com | To post !screenshots use http://imgur.com/ !pastebinit to paste directly from command line | Make sure you give us the URL for your paste - see also the channel topic.22:24
Bashing-ommrtakdeniz: LVM is a steep learning curve .22:25
Brandon_X_Foxhttp://paste.ubuntu.com/12277146/22:25
VoyageBashing-om:  its not a multiline text. its a snap22:26
Brandon_X_FoxI posted what occured on the ubuntu pastebin22:27
allizomVoyage: either the free one (currently selected) or the proprietary, recommended one. Can you get full resolution and acceptable performance with the free one? If not, you may want the proprietary one22:27
TJ-Brandon_X_Fox: That shows all the expected platform drivers are loaded... so I'm going to bet on the ACPI issue I described earlier.22:27
BlueProtomanHow can I cache .deb packages to an arbitrary directory, and then reinstall them from that directory later?  I need to do this for a CI system22:27
Voyageallizom:  thanks22:28
Brandon_X_Foxso theres nothing I can do besides wait?22:28
TJ-Brandon_X_Fox: There is more diagnosis, and you can try some workarounds.22:28
EriC^^BlueProtoman: man apt-get22:29
Brandon_X_Foxworst help ive ever receieved22:29
Bashing-omVoyage: I tried to look, And guess I fat fingered. Nvidia recommends the 340 version if ya want to go with a proprietary driver .22:30
TJ-Well!22:30
dar----A USB wi-fi don-gal is a workaround for it22:30
BlueProtomanEriC^^: If I thought that would help me in a useful manner, I wouldn't have asked in here22:33
EriC^^search for download, use dpkg -i .deb to install later, and be sure to grab the dependencies too22:33
TJ-BlueProtoman: apt-cacher-ng, or apt-mirror is probably waht you want22:34
geniiTJ-: Another satisfied customer ... ;)22:34
TJ-genii: Aye... I was about to offer to decode the DSDT for him; I hope he enjoys sneaker-net :)22:35
BlueProtomanEriC^^: Can I do that with updates/upgrades as well?22:39
EriC^^sure22:39
BlueProtomanHow?  I don't necessarily know in advance what packages need to be upgraded (I'm trying to update packages on a CI system because my project needs its dependencies up to date).22:40
EriC^^BlueProtoman: can you run apt-get update on the system?22:41
BlueProtomanEriC^^: Yes. upgrade, too.  However, the upgraded packages are not preserved between builds.  There is a caching mechanism available, but it doesn't seem to support /var/cache/apt/archives (maybe because that needs root?)22:42
BlueProtomanEriC^^: So I want to save all the relevant packages in my home directory once, then just re-install them with each build22:43
geniiBlueProtoman: To cache deb files in a different place than /var/cache/apt/archives , one of 2 ways... either use -o Dir::Cache="somepath/here"   or else make a conf file containing Dir::Cache "var/cache/apt/";   and then call apt-get with -c=thatconffile22:43
genii( changing the var/cache/apt in that file of course)22:44
andre_hello22:47
andre_EXID123,22:47
andre_aaa801,22:47
andre_aaa801,22:47
aaa801what22:47
* aaa801 slaps andre_ around a bit with a large flier22:47
BlueProtomangenii: "E: Unable to write to ~/deps/"22:50
geniiBlueProtoman: you might need to manually make the subdirs there like archives and archives/partial22:51
bprompthmm22:53
BlueProtomangenii: Nope.  "E: The package lists or status file could not be parsed or opened. Action failed: sudo apt-get -y -o Dir::Cache="~/deps" upgrade"22:54
bpromptBlueProtoman:     are you just trying to do an upgrade on that package and keep the .deb? because you could simply wipe everything on /var/cache/apt/archive and when done, copy the .deb files over22:54
BlueProtomanbprompt: I'm trying to cache .deb files on a CI system (Circle CI in this case); I can cache dependencies to any directory, but I can't seem to use /var/cache/apt/packages, so I'm trying to see if I can do so in a home directory instead22:55
tim_6485Hi, guys please, is there a way so i can limit internet connexion on wifi users on my computer? since i use wired connexion. It lags as hell !22:56
geniiHm, wish I knew more about Circle CI or whatever it is22:57
EriC^^BlueProtoman: does it work without ::Dir ? that error looks like it can't read /var/lib/dpkg/status or so22:59
EriC^^try without ::Dir and press no when it asks to confirm ( don't use the -y with it )22:59
BlueProtomanEriC^^: No, actually, it doesn't; I just get a 100 error code, though, and have no idea what that actually means22:59
BlueProtomanEriC^^: I can't; no interaction22:59
matinhu23:02
matinhi23:02
matinis here a german chat?23:03
Bashing-om!de | matin23:04
ubottumatin: In den meisten Ubuntu-Kanälen wird nur Englisch gesprochen. Für deutschsprachige Hilfe besuche bitte #ubuntu-de, #kubuntu-de, #edubuntu-de oder #ubuntu-at. Einfach "/join #ubuntu-de" eingeben. Danke für Dein Verständnis!23:04
matinIch danke dir auch, english kann ich auch. dachte geht automatich in einer german chat:)23:05
matinSia :D23:07
Kyle|PowerPC=====23:09
Kyle|PowerPC==23:09
NectarWhen I "sudo apt-get update" im getting this: "W: GPG error: http://download.opensuse.org  Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 5A7D1D38BEB6D886"23:16
Nectarwhich is stopping me update with Software Updater, "sudo apt-get update && sudo apt-get upgrade" works though.23:17
SupaYoshihey i have a box (raspberry pi)23:18
TechMongeranyone have a good refference to learn how to use cookies to make sessions with a LAMP serv website?23:18
SupaYoshiand after login it starts this script for security, its a mod installed on it (incredible pbx)23:19
Gaming4JCSupaYoshi, then you can install Linaro (ubuntu-base) on it :D23:19
SupaYoshibut i cannot find the script to be disabled.23:19
SupaYoshiits after you login to ssh, it runs and asks me to change passwords etc.23:19
SupaYoshibut the script keeps running, even with differnt users over ssh.23:19
SupaYoshiSo Im trying to find how to disable it but cant find any idea/23:19
SupaYoshiits not in crobta- not in sshd_config i believe23:20
Gaming4JCTechMonger, http://opensourceforu.efytimes.com/2008/12/session-management-using-php-part-1-cookie-based-sessions/23:20
bischSupaYoshi, can you get to a shell prompt?23:21
UmeaboyJohnny_Linux: I added the PPA by the Canonical Kernel Team, but it didn't update to 4.1.23:21
SupaYoshiFirst, create a VERY SECURE root password for your RaspberryPi.23:21
SupaYoshiAnyone with your root password can discover ALL of your passwords.23:21
UmeaboyAnd don't type something easy.23:22
SupaYoshihttp://prntscr.com/8cpc1o23:22
UmeaboyThe more different characters the less risk of getting hacked.23:22
SupaYoshiright what i get after logging in23:22
SupaYoshii use private public keys23:22
SupaYoshipassword authenciation dissabled. but this script keeps running each time i login ssh.23:23
SupaYoshiits annoying me and im trying to find how to disable it.23:23
SupaYoshiAny idea?23:23
UmeaboyAdd it to trusted hosts.23:23
SupaYoshialready is.23:23
SupaYoshinot tat its a script on the box.23:23
Gaming4JCSupaYoshi, if you are logged into the box - run ps -aux while logging in again?23:23
Gaming4JCsee if there's a process running23:23
SupaYoshiokay :D23:24
Jordan_USupaYoshi: The configuration that we support in #ubuntu is to have no root password at all, where running commands as root is performed via sudo. Why are you talking about having a secure root password?23:24
SupaYoshi0 /bin/bash /root/update-passwords23:24
SupaYoshithink thats it23:24
Gaming4JCSupaYoshi, yep. Now to find out what's launching it23:25
Gaming4JCSupaYoshi, might be ~/.bash_profile23:25
coscHello23:25
Gaming4JCHi23:25
SupaYoshiokay gaming thnx23:25
coscDo you use ubuntu?23:25
NectarIm getting this error when i "sudo apt-get update" : W: GPG error: http://download.opensuse.org  Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 5A7D1D38BEB6D88623:25
Nectarwill : "sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 5A7D1D38BEB6D886" work23:26
matinhuuhu23:26
SupaYoshinah isnt in there23:26
Nectarwell, will it fix the problem23:26
Gaming4JCSupaYoshi, well, it's not the right way... but you can just mv /root/update-passwords /root/update-passwords.bak23:26
Jordan_UNectar: Please pastebin the contents of your /etc/apt/sources.list and any files in /etc/apt/sources.list.d/ .23:26
matin:)23:27
Gaming4JCit'll break the script23:27
Gaming4JC:P23:27
bischSupaYoshi, you might try something like: grep -rl update-passwords / 2>/dev/null23:27
coscAnyone know any good speed reading apps?23:27
usr13What is a speed reading app?23:30
Gaming4JChttp://ubuntuforums.org/showthread.php?t=59851923:30
Gaming4JCthose are speed reading apps ^^23:30
coscSpeed reading app helps you read at 250 Wpm23:31
coscusr1323:31
SupaYoshithat resulted in 1 file but...23:31
SupaYoshithats another script file.23:31
coscThank you for those links Gaming4JC>23:32
Gaming4JCSupaYoshi, that's probably a script calling that script - so it may be what you're looking for23:32
Gaming4JCcosc: np :)23:32
Gaming4JC!next23:32
SupaYoshii dont wanna remove that scipt though23:32
SupaYoshi:) i wanna make it stop calling the passwords script heh23:32
Gaming4JCSupaYoshi: Edit it and add ### Commented Code ### in front of the part that's calling it?23:33
NectarJordan_U: http://pastebin.com/QtGLY2wr . In /sources.list.d/ is: http://pastebin.com/hdh6rTFq23:33
Gaming4JCSupaYoshi also cp ~/fooscript ~/fooscript_bakup bfore you do, just to be safe23:33
Jordan_UNectar: Please pastebin the outptut of the following: for file in /etc/apt/sources.list.d/* ; do echo "$file"; cat "$file"; echo; done23:36
NectarJordan_U: I dont understand23:37
usr13cosc: Oh, ok. Interesting....23:37
SupaYoshigot it23:38
SupaYoshi:D23:38
SupaYoshithnx23:38
Jordan_UNectar: Copy and paste everything on that line starting with "for..." into a terminal, then press Enter. It will print the name of each file in /etc/apt/sources.list.d/ followed by that file's contents (followed by a blank line).23:38
NectarJordan_U: http://pastebin.com/hxMStT1h23:40
=== Guest54337 is now known as infamy
colin_hey23:43
Jordan_UNectar: If that key is available from keyserver.ubuntu.com then I would expect that to work. Where did you find this repository? Did it have instructions for adding the key properly?23:48
NectarJordan_U: I found it here: https://askubuntu.com/questions/13065/how-do-i-fix-the-gpg-error-no-pubkey replaced the key with the one from the error; "5A7D1D38BEB6D886".23:49
Nectarnot sure if that would work though23:50
Jordan_UNectar: I meant where did you find this "arc-theme" repository?23:50
Jordan_UNectar: http://keyserver.ubuntu.com/pks/lookup?op=vindex&search=5A7D1D38BEB6D886&fingerprint=on seems to show that keyserver.ubuntu.com doesn't have that key, so that command wouldn't work.23:54
NectarI think I went here https://software.opensuse.org/download.html?project=home%3AHorst3180&package=arc-theme23:54
oaulakhhow to activate nvidia graphic card driver proper bcz my system still showing 33Mhz graphic clock memory23:55
NectarJordan_U: I went here https://software.opensuse.org/download.html?project=home%3AHorst3180&package=arc-theme I think.23:56
oaulakhhow to activate nvidia graphic card driver proper bcz my system still showing 33Mhz graphic clock memory http://paste.ubuntu.com/12277921/23:56
Jordan_UNectar: You didn't perform the second step listed there.23:57
NectarJordan_U: will I have wget already installed?23:58
Nectardefault on ubuntu gnome23:58
Jordan_UNectar: Yes.23:59
mrtAkdenizhey guys23:59
mrtAkdenizi just formatted my ssd and installed ubuntu23:59
mrtAkdenizlike always i did23:59
mrtAkdenizbut there is a problem, after installation always getting grub console23:59

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