/srv/irclogs.ubuntu.com/2011/09/19/#lubuntu.txt

jwrigleyhi ppl, is there some easy way to install the packages of lubuntu in ubuntu?00:42
Unit193Are you looking to replace Ubuntu with Lubuntu?00:43
Unit193Are you using 11.04?00:43
jwrigleyyes to both questions00:43
jwrigleybut preferably without reinstalling00:44
Unit193!purelxde00:44
ubot5If you want to remove all !KDE, !GNOME and !XFCE packages and have a default !Lubuntu system follow the instructions here « http://www.psychocats.net/ubuntu/purelxde »00:44
Unit193Or just   sudo apt-get install lubuntu-desktop --no-install-recommends00:45
jwrigleythanks, that was just it, I was just looking for it under tasks, thanks!00:47
Unit193Awesome, have a great convert ;)00:48
jwrigleythanks :)00:49
silverarrowhi03:22
silverarrowis there any known conflicts that affects windows media plugin?03:22
daniel__hey :) is there a way to generate (manually) thumbnails for PCManFM, the filemanager?04:52
daniel__i need thumbnails from my raw camera photos04:52
jmarsdendaniel__: Do you know specifically what file format you need the thumbnail images to be in?04:53
silverarrowhow do you go about checking plugin conflicts in gnome mplayer?04:54
daniel__i just need to know where PCManFM stores the thumbnails so i can use imagemagick to create the thumbnails :)04:55
silverarrowI think I must have some kind of winlib32 trouble04:56
silverarrowlibwin3204:56
jmarsdendaniel__: OK... so you can probably just get pcmanfm to create one and do something like find ~ -mtime -1    to see all files created in the last day... or you can read the pcmanfm sources to see what it does.  I'll see if it is easy to find out...04:56
daniel__jmarsden, ah nice idea, thanks04:56
jmarsdendaniel__: You're welcome.04:57
silverarrowmplaye /gecko used to stream fine, but after an update something went wrong. It works for most stuff, but not online tv04:59
silverarrowI am searching for a way to tackle what I imagine is some kind of plugin / update conflict04:59
silverarrowany idea?04:59
jmarsdendaniel__: Looks like ~/.thumbnails/ is the place you seek.04:59
daniel__uh, but with weird names, i guess it's using some sort of hash name05:00
jmarsdensilverarrow: Remove all plugins.  See if issue is now gone.  add them back one at a time, testing each time.  Then you will know which one causes the problem.05:00
silverarrowsounds good05:01
silverarrowI am afraid some of my terminal install stuff might not be showing in package manager05:01
silverarrowme and terminal is a bit like shots in the dark05:02
jmarsdendaniel__: Indeed.  You'll need to read the pcmanfm sources to figure out how it is hashing the filenames, I suspect.  Or you could just let pcmanfm generate them insyead?05:02
silverarrowi suppose terminal maneuvering is classified under dark arts05:02
daniel__jmarsden, pcmanfm doesn't support ".cr2" raw files, it seems :-/05:02
jmarsdensilverarrow: Then don't play russian roulette, (a) learn more about Linux and (b) ask for help before using the terminal!05:02
silverarrowyeah that might be the ideal order of things, but I am afraid I learn rather randomly by trying and failing05:04
jmarsdendaniel__: Ah, OK.  That would make sense.  I think there is a special library for handling raw files, and I would guess pcmanfm does not link to it.05:04
jmarsdensilverarrow: Then at least learn by randomly trying and doing things that are listed in a Linux tutorial :)05:04
silverarrowpromise05:05
daniel__jmarsden, indeed. i installed that (libraw) and that's why i could use other apps to create thumbs. Will check if md5 crc works + imagemagick convert ;)05:05
silverarrowI can boot much the same set up of gnome mplayer and gecko in puppy linux, so I know it still works technically05:08
silverarrowpuppy linux is not nearly as solid as lubuntu, so it's really not an alternative05:08
silverarrowa bit flimsy and erratic os05:09
silverarrowwhere has 525 download gone?05:12
silverarrowsorry05:12
jmarsdendaniel__: I think you need to look at the code in libfm/src/base/fm-path.c, the function fm_path_hash()05:12
silverarrowis there a way to list plugins or setups in terminal ?05:13
daniel__thanks alot05:13
jmarsdendaniel__: You're welcome.05:13
silverarrowI am wondering about the rumors of a lubuntu release in october05:13
daniel__jmarsden, there's nothing better than open source where you can just take a look at the source :)05:13
daniel__silverarrow, lubuntu will release at the same time ubuntu releases05:14
jmarsdensilverarrow: They had better not be just rumours :)  Lubuntu 11.10 will come out along with all other official Ubuntu flavors :)05:14
silverarrowlubuntu is the one I like best these days05:15
jmarsdensilverarrow: There probably is a way to list plugins, but it depends how gnome-mplayer handles them, and I am not familiar with it at anywhere close to that kinds of detail.05:15
silverarrowRegular Ubuntu runs fine on my new laptop, and totem is good05:15
silverarrowyes it is a trick thing05:16
silverarrowand made even more foggy when I cannot remember what I installed extra05:16
jmarsdendaniel__: Re open source... that is why I spend so much time with Linux and open source, and have since 1992 :)05:16
jmarsdensilverarrow: Oh, to see what packages you installed?  look in /var/log/dpkg* for that.05:17
silverarrowthanks05:17
jmarsdensilverarrow: Or use dpkg -l | grep ^ii for a list of currently installed packages, so maybe   dpkg -l | grep ^ii | grep mplayer    might help??05:18
silverarrowvar?05:18
silverarrowI'm in filemanager, showing hidden05:19
jmarsdensilverarrow: /var is a directory in Linux... /var/log is where the log files are.  /var/log/dpkg.log is the current log of what dpkg has done on your machine.05:19
jmarsdenI just use the shell, filemanagers are not much use to me, even though I spend a bit of time helping out with pcmanfm sometimes :)05:20
jmarsdensilverarrow: So I would do    less /var/log/dpkg.log     to see the current dpkg log file, for example.  No file manager needed.05:21
silverarrowthanks, found it ;- )05:21
silverarrowterminal gave an enormous list05:21
jmarsdenI said /var/log/dpkg* ....   does ls /var/log/dpkg*   give "an enormous list" ??  Really?05:22
silverarrowhttp://pastebin.com/4ZmtcTQm05:24
jmarsdenThat's not a list of files, that is the contents of one file :)05:25
silverarrowoh, there is a difference?05:25
jmarsdensilverarrow: do    ls /var/log/dpkg*       and then do    less /var/log/dpkg*    to see the difference.05:25
jmarsdenThe first lists the files matching that pathname/filename, the second reads them using less.05:26
jmarsdenNow you can reduce the amount of info you need to read, using grep... something like    grep mplayer /var/log/dpkg.log   for example.05:27
jmarsdenTo further reduce that, you could decide you only care about "status installed" entries, and so do    grep mplayer /var/log/dpkg.log |grep "status installed"05:28
jmarsdenUsual normal searching for strings in text files, in other words.05:29
silverarrownothing much turns up05:29
jmarsdenOk, so what kinds of names do your plugin packages have?  Maybe thet do not have "mplayer" in their names?05:29
silverarrowexcept dpkg -l | grep ^ii     resulted in a lot05:30
jmarsdenWell, that's a list of all installed packages, so that should be a lot :)05:30
silverarrowthey should have mplayer in their name, at least some of them, or perhaps gecko05:30
silverarrowmy windows media plugin keeps crashing05:31
silverarrowit's a message I get in browser05:31
jmarsdenSo what package is it, do you have any idea?  And if so, uninstall it and see if the problem goes away :)05:32
silverarrowI have of course the lubuntu restriceds found in package manager05:33
silverarrowthen I think I went for some medibuntu packages05:33
silverarrowwhich might be the main stuff05:34
silverarrowI have the plugin for mplayer and gecko in browser05:34
jmarsdenYou need the *name* of the package...05:36
silverarrowhttp://imagebin.org/17304105:38
silverarrowI need to get more clever at this05:39
jmarsdenThat just says you do not have any other packages installed with mplayer in their names.05:39
jmarsdenDo you know *when* you added these plugin packages?  Date?05:39
jmarsdenif so you can search the dpkg.log by date to find them.05:40
silverarrowabout 60 days ago or so05:40
jmarsdenOK, so look in the dpkg.log file for things installed around July 20th and see if they look like the plugins.05:41
silverarrow it turned out a bit tricky05:45
jmarsdensilverarrow: Why?  WHat is tricky about reading and searching a text file?05:46
silverarrowhttp://pastebin.com/Vtccd9Qy05:47
jmarsdenThat does not look like output from dpkg.log on a particular date.  So either I am confused, or you are... ?05:49
jmarsdenFor example, does    grep 2011-07-20 /var/log/dpkg.log |grep "status installed"       show you anything relevant?05:50
silverarrowprobably me05:50
silverarrowno, it doesn't give any results05:53
jmarsdensilverarrow: OK, so hunt for other dates near that one...05:53
silverarrowwell I change the moths +/- 1 and nothing changed05:54
silverarrowmaybe day05:54
jmarsdenIf you have to, drop the -20 and see everything dpkg installed in July...05:54
jmarsdenYou are the one who was complaining about too much output earlier, so I was trying to give you nice exact searches... :)05:55
silverarrowthank05:58
silverarrowsorry, I cannot make them work05:58
silverarrowI need a break05:58
silverarrowand I need to get going too05:59
jmarsdenOK... well, we tried :)05:59
silverarrowI shall have to give it a new go when I get home in the evening05:59
silverarrowyes, and thanks for the help05:59
silverarrowI'm sure I we trace things better with a few attempts06:00
jmarsdensilverarrow: OK.  One lesson to learn: document what you do to your system, especially when it is something unusual like installing non-standard packlages from a non-standard repository... just keeping a text file about what you did would have avoided all this.06:00
silverarrowI will do that next time06:02
jmarsdenOK.  11PM here... goodnight :)06:02
silverarrowI think I will do a clean cd install on next lubuntu release06:02
silverarrowgood night06:02
silverarrow8 in the morning here06:02
=== M0hi is now known as IAmNotThayGuy
=== IAmNotThayGuy is now known as IAmNotThatGuy
gilleshi .. how to i make an application to auto start then OS starts ?11:23
gilleslunbutu 10.411:23
bioterrorhttps://help.ubuntu.com/community/Lubuntu/Documentation/FAQ#How_I_can_autostart_a_program_when_logging_in_to_Desktop11:24
bioterrorurxvtd is just an example11:24
bioterrorif you dont have a .desktop file for your desired application, you can make one11:25
gillesok .. im new so this sounds complicated for me already11:27
gillesi have downloaded a program11:27
gillesteamviewer11:28
gilleswant it to start11:28
=== SuperHark is now known as MichealH
gilleshpw do i upgrade from 10.04 to 11.04 withouth formatting ?12:23
gilles?12:28
m6locksdoes apt-get dist-upgrade work in lubuntu?12:31
m6locksat least using update manager one should be able to upgrade12:32
m6locksgilles: have you tried it? system tools -> update maanger12:33
gillesthere is no update mngr12:33
gillesin 10.412:34
m6locksoh ok12:34
m6lockswell i guess it does the same thing as apt-get dist-upgrade12:35
m6locksit does not always work12:35
gillesok12:35
gilleshow to i get an application to start up with my system12:35
gilleswas looking only .. but to get a desktop config file ..12:35
gillesim not sure .. im new12:35
gillesits updating now ..12:36
m6locksgood luck :D12:36
gillesthx ..12:36
gilleshow to i get an app to auto start with my os ?12:36
gilleslike start up in windows12:36
m6locksyou need a boot manager, grub or LILO are the most used12:37
gillesok ? and i need little more details12:37
gilleson how to get it to work12:37
m6lockshttps://help.ubuntu.com/community/WindowsDualBoot12:37
m6lockssomething like that12:37
gillesi meed like when the os boots .. once on desktop .. it loads terminal for example automatically12:38
m6locksoh ok12:38
m6locksthe are a variety of programs, also you can enter the executing commands straight to boot scripts12:40
gillesok programs would probably more easier12:41
m6lockshttp://ubuntuforums.org/showthread.php?t=7574912:41
m6locksdesktop session settigns does not seem to have selecting your own applications available12:45
m6lockslike in ubuntu12:45
gillesi know .. what are you using ?12:55
m6lockslubuntu 11.0412:56
m6lockson asus eee pc 70012:56
gillescan you start up apps ?13:15
gilleswit hthe desktop ssession13:15
giuseppe__ciao15:27
giuseppe__i'm italian15:28
giuseppe__how can I set the display resolution LCD 15.6 HD?15:29
giuseppe__help me15:29
giuseppe__please15:31
giuseppe__i need help15:32
JohnDoe_71Rusgiuseppe__: lxrandr15:37
giuseppe__1366 x 768 is not my settinh15:38
giuseppe__setting15:38
giuseppe__i need to set 1800x 120015:38
giuseppe__<JohnDoe_71Rus  i must to install catalyst driver?15:40
=== lighta is now known as Guest68197
=== lighta is now known as Guest32615
=== rezbd1 is now known as rezbd
m6locksso...19:51
m6locksany ideas what packages to remove to make space? I'm running out of it19:52
m6locksthe base install is a wee bit too big for this eee pc system19:52
bioterrorm6locks, there's not that much packages to be removed20:01
bioterrorm6locks, if you're really low on space, you could install ubuntu from mini.iso and then install just lubuntu-core and pull what ever you need20:02
GTRsdkm6locks: what don't you need?20:02
Unit193You could go on a du -h rampage in your /home/user :P20:04
bioterrorI remember when I had my redhat on 4GB deathstar hdd, I usually first removed man pages :D20:05
m6lockswell there are some applications I don't need, I was wondering if I could get rid of some 'useless' libs and stuff20:14
bioterrorremember to run apt-cache clean sometimes too20:15
m6locksthanks for tip, will do20:15
m6lockshmm invalid operation clean20:16
bioterrorsorry, apt-get clean20:17
m6locksoh all right20:17
m6locksI'd really love to see a LXDE version of eeexubuntu, with 11.04 repositories20:19
m6locksbut I guess they don't develop it anymore20:19
m6locksI could fit it in 1,7G, but it didn't have chromium or other cool features20:20
m6lockswell, the 7.10 version at least20:21
phillwm6locks: you could try minimal install and lubuntu-core. That is about as small as lubuntu can get.20:25
m6lockswell this is minimal install, and it was some 2,7G or so20:25
m6lockshold on, minimal install on ubuntu or lubuntu?20:26
bioterror!mini20:27
ubot5The Minimal CD image is very small in size, and it downloads most packages from the Internet during installation, allowing you to select only those you want (the installer is like the one on the !Alternate CD). See https://help.ubuntu.com/community/Installation/MinimalCD20:27
phillwm6locks: minimal install puts linux on, and little else. you can then add to it. Instead of lubuntu-desktop, just add lubuntu-core. From there you can add what you need20:27
m6lockshmm ok, it should have xmodmap available, I have this keyboard issue with this one20:28
m6locksalt gr turns on without pressing the key, so it needs to be remapped20:28
m6locksconsole installs are kinda out of the question20:28
bioterrorI mostly need alt gr for @, and during installations that's not needed ;)20:30
m6locksaye, but it is locked on and all I can see after that is greek characters when typing20:30
bioterror:(20:30
m6locksyeah it is totally nerve-wrecking when it happens20:34
=== P4R4N01D1 is now known as P4R4N01D

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