Dpup Exprimo 5.X.15
I use frugal Exprimo 5x15 as the default Pupplet on my T60 Lenovo lappie, 2GB RAM.
Forget "mobile office" - this is my universe-in-a-box.
I need to work out default app file management with automatic FF upgrades - there's a tute somewhere I guess, but I haven't found it yet.
With this laptop, pemasu has converted me into a lap-lander
Forget "mobile office" - this is my universe-in-a-box.
I need to work out default app file management with automatic FF upgrades - there's a tute somewhere I guess, but I haven't found it yet.
With this laptop, pemasu has converted me into a lap-lander
Search engines for Puppy
[url]http://puppylinux.us/psearch.html[/url]; [url=https://cse.google.com/cse?cx=015995643981050743583%3Aabvzbibgzxo&q=#gsc.tab=0]Google Custom Search[/url]; [url]http://wellminded.net63.net/[/url] others TBA...
[url]http://puppylinux.us/psearch.html[/url]; [url=https://cse.google.com/cse?cx=015995643981050743583%3Aabvzbibgzxo&q=#gsc.tab=0]Google Custom Search[/url]; [url]http://wellminded.net63.net/[/url] others TBA...
We have only laptops and netbooks here which handle all famaily and business apps.
Other than a couple of old ones temporarily dedicated to educational apps for the children (they use MS versions of windows so are not allowed on the Internet) -- all of the others use only Puppy Linux.
5x15 has a couple of real helpful apps in Network that were not in 5x14 -- perfect timing as I just hooked a 1.5TB HDD to the router and needed to sort out the addressing.
Other than a couple of old ones temporarily dedicated to educational apps for the children (they use MS versions of windows so are not allowed on the Internet) -- all of the others use only Puppy Linux.
5x15 has a couple of real helpful apps in Network that were not in 5x14 -- perfect timing as I just hooked a 1.5TB HDD to the router and needed to sort out the addressing.
[b]Thanks! David[/b]
[i]Home page: [/i][url]http://nevils-station.com[/url]
[i]Don't google[/i] [b]Search![/b] [url]http://duckduckgo.com[/url]
TahrPup64 & Lighthouse64-b602 & JL64-603
[i]Home page: [/i][url]http://nevils-station.com[/url]
[i]Don't google[/i] [b]Search![/b] [url]http://duckduckgo.com[/url]
TahrPup64 & Lighthouse64-b602 & JL64-603
CHIRP for Exprimo
To avoid cross-posting I will just link as I realized that the thread was for Puppy Lucid 5.2.5 and my interest is here on Exprimo:
http://www.murga-linux.com/puppy/viewt ... 610#656610
http://www.murga-linux.com/puppy/viewt ... 610#656610
[b]Thanks! David[/b]
[i]Home page: [/i][url]http://nevils-station.com[/url]
[i]Don't google[/i] [b]Search![/b] [url]http://duckduckgo.com[/url]
TahrPup64 & Lighthouse64-b602 & JL64-603
[i]Home page: [/i][url]http://nevils-station.com[/url]
[i]Don't google[/i] [b]Search![/b] [url]http://duckduckgo.com[/url]
TahrPup64 & Lighthouse64-b602 & JL64-603
Python mounting & paths?
This is the reply I received -- is there an obvious and simple solution?
> /initrd/mnt/dev_save/savestuff/web/kd4e/digital/chirp/chirp-
> 0.2.3/chirp/detect.py
Is that how Puppy Linux works? Mounting devices into /initrd/mnt/ ?
> Someone found this info:
>
> "python-serial is installed under /usr/share/pyshared, which is not
> in python(2.7)'s search path. Thus it can't be imported."
Hrm, that path is part of Python on all my computers, but I'm running Kubuntu. I know it is also configured like that (by default) on Ubuntu, Debian and Fedora. Perhaps your Linux distro is not set up properly?
> Do this in console:
>
> # python ....and press enter
> >>> import sys ....and press enter
> >>> sys.path.append('/usr/share/pyshared') > enter
>
> CTRL + D to quit
>
> In Console "update-python-modules"
>
> The when I execute "./chirpw" in Console I get the same error.
That's not going to work. You're running Python, setting a variable within that Python interpreter, then closing that interpreter and running another one. That's like running one e-mail program, creating a message in it, closing it, opening a totally different e-mail program and expecting the e-mail to magically appear in that program.
> What must I do to make this work, please?
Change the script.
[b]Thanks! David[/b]
[i]Home page: [/i][url]http://nevils-station.com[/url]
[i]Don't google[/i] [b]Search![/b] [url]http://duckduckgo.com[/url]
TahrPup64 & Lighthouse64-b602 & JL64-603
[i]Home page: [/i][url]http://nevils-station.com[/url]
[i]Don't google[/i] [b]Search![/b] [url]http://duckduckgo.com[/url]
TahrPup64 & Lighthouse64-b602 & JL64-603
Python
PYTHONPATH or PATH variables can be defined in /root/.bashrc file
PATH=$PATH:<python bin path>:<python lib path>
..and so on
OR if you don't wish to change the PATH environment variable, set the PYTHONPATH
PYTHONPATH=<python bin path>:<python lib path>
PS: import errors are generally caused by bad installations, path descriptions ..blaming puppy for the same aint right.
I use slacko by the way and i just have to download the python 2.6++pygtk,pygobject,pyqt.pet to get started.not sure if works for Dpup or not
Ooops! ..Greetings to all
PATH=$PATH:<python bin path>:<python lib path>
..and so on
OR if you don't wish to change the PATH environment variable, set the PYTHONPATH
PYTHONPATH=<python bin path>:<python lib path>
PS: import errors are generally caused by bad installations, path descriptions ..blaming puppy for the same aint right.
I use slacko by the way and i just have to download the python 2.6++pygtk,pygobject,pyqt.pet to get started.not sure if works for Dpup or not
Ooops! ..Greetings to all
Thanks for the python reply!
You are talking over my head ... where my eyes don't glass-over my mind reminds me that every time I try to change things I break them.
Could someone write a python-PET for dpup/exprimo which makes the necessary changes to paths for python-related apps?
Might there be many python apps that users would like access to but which fail the same as this one?
You are talking over my head ... where my eyes don't glass-over my mind reminds me that every time I try to change things I break them.
Could someone write a python-PET for dpup/exprimo which makes the necessary changes to paths for python-related apps?
Might there be many python apps that users would like access to but which fail the same as this one?
[b]Thanks! David[/b]
[i]Home page: [/i][url]http://nevils-station.com[/url]
[i]Don't google[/i] [b]Search![/b] [url]http://duckduckgo.com[/url]
TahrPup64 & Lighthouse64-b602 & JL64-603
[i]Home page: [/i][url]http://nevils-station.com[/url]
[i]Don't google[/i] [b]Search![/b] [url]http://duckduckgo.com[/url]
TahrPup64 & Lighthouse64-b602 & JL64-603
Acer Aspire One A0722-0369 11.6" Netbook
Is there any reason that the Acer Aspire One A0722-0369 11.6" Netbook would not be a good match to 5x15 and/or the upcoming 5x16?
http://www.buy.com/prod/acer-aspire-one ... 66591.html
I have a Samsung NB30 but it's beginning to sag under the load.
The Acer has a 1 GHz AMD C-60 dual-core processor, what is supposed to be a better integrated video processor, and may be upgraded to 4G of Ram.
$299. seems like a really good price.
WDYT?
http://www.buy.com/prod/acer-aspire-one ... 66591.html
I have a Samsung NB30 but it's beginning to sag under the load.
The Acer has a 1 GHz AMD C-60 dual-core processor, what is supposed to be a better integrated video processor, and may be upgraded to 4G of Ram.
$299. seems like a really good price.
WDYT?
[b]Thanks! David[/b]
[i]Home page: [/i][url]http://nevils-station.com[/url]
[i]Don't google[/i] [b]Search![/b] [url]http://duckduckgo.com[/url]
TahrPup64 & Lighthouse64-b602 & JL64-603
[i]Home page: [/i][url]http://nevils-station.com[/url]
[i]Don't google[/i] [b]Search![/b] [url]http://duckduckgo.com[/url]
TahrPup64 & Lighthouse64-b602 & JL64-603
http://www.subdude-site.com/WebPages_Lo ... _blaze.htm
http://ubuntuforums.org/archive/index.p ... 11178.html ( start from the end, lol)
Also 5.X.3.4.12 should support it with newer brcmsmac (well, it has that bcma dependency)
# modinfo brcmsmac
filename: /lib/modules/3.4.2-dpup/kernel/drivers/net/wireless/brcm80211/brcmsmac/brcmsmac.ko
description: Broadcom 802.11n wireless LAN driver.
depends: mac80211,brcmutil,cfg80211,cordic,bcma,crc8
Well... read more yourself, lol.
http://ubuntuforums.org/archive/index.p ... 11178.html ( start from the end, lol)
It seems you will need ati catalyst 12.9 beta version ( the very latest) and if it comes with BCM4313 which uses brcmsmac, it should be working with 5.X.15 ( the support is there, as it is in 2.6.39.4 kernel, in place)I had an Acer Aspire One 722 with the Atheros Wifi card and it worked fine on 11.04. So we bought 200 of them for our school. However these all came with the Broadcom BCM4313 wireless card and there are issues. It is using the brcmsmac driver and they connect initially. However after a time (sometimes just a few webpages) some of them lose connection. However, they still have an IP and network-manager says they are connected, but no pages load and you can't ping anything on the LAN or internet. A disconnect/reconnect can fix it, but sometimes a restart is required. It happens frequently so is a major issue. Lots of broadcom drivers are blacklisted: bcm43xx, b43, brcm80211. Any ideas or experiences with the broadcom4313 card? Please save these computers from a Windows fate!
In case of Broadcom wifi hardware, on newer releases of Ubuntu and Mint and maybe others, the brcmsmac open source driver handles the BCM4313 wireless card and does a decent job. However, it is interfered with by an older one: bcma. If you're seeing frequent random disconnections for wireless networks, try disabling bcma by blacklisting it:
sudo gedit /etc/modprobe.d/blacklist-bcma.conf
blacklist bcma
Also 5.X.3.4.12 should support it with newer brcmsmac (well, it has that bcma dependency)
# modinfo brcmsmac
filename: /lib/modules/3.4.2-dpup/kernel/drivers/net/wireless/brcm80211/brcmsmac/brcmsmac.ko
description: Broadcom 802.11n wireless LAN driver.
depends: mac80211,brcmutil,cfg80211,cordic,bcma,crc8
Well... read more yourself, lol.
I am reconsidering - I think I may save-up and buy a power-laptop/notebook rather than another netbook.
Although I really like the portability I need the power and speed more.
The difference is $299. for a netbook and $600. for a power notebook.
Although I really like the portability I need the power and speed more.
The difference is $299. for a netbook and $600. for a power notebook.
[b]Thanks! David[/b]
[i]Home page: [/i][url]http://nevils-station.com[/url]
[i]Don't google[/i] [b]Search![/b] [url]http://duckduckgo.com[/url]
TahrPup64 & Lighthouse64-b602 & JL64-603
[i]Home page: [/i][url]http://nevils-station.com[/url]
[i]Don't google[/i] [b]Search![/b] [url]http://duckduckgo.com[/url]
TahrPup64 & Lighthouse64-b602 & JL64-603
problem with squeezesave_crypta
I am trying out Dpup Exprimo 5.X.15 [from squeeze-5.X.15-SCSI.iso].
Running a frugal install on USB I have not been able to use a heavily encrypted save-file squeezesave_crypta-***.2fs.
While I can open the save-file [using the password], the same password is not recognised while trying to boot the Dpup Exprimo system.
No problem using an unencrypted save-file.
Have others experienced the same problem?
Machine P4, USB ext2 partition, Grub4Dos multi-boot.
Running a frugal install on USB I have not been able to use a heavily encrypted save-file squeezesave_crypta-***.2fs.
While I can open the save-file [using the password], the same password is not recognised while trying to boot the Dpup Exprimo system.
No problem using an unencrypted save-file.
Have others experienced the same problem?
Machine P4, USB ext2 partition, Grub4Dos multi-boot.
heavy encryption
Yes I have exactly the same problem with dpup exprimo 5.x.15
A heavy encrypted savefile cannot be accessed any more afterwards.
I found a .pet (on this thread, or on another thread, I forgot where it was) that should fix this problem, but it didn't help.
A heavy encrypted savefile cannot be accessed any more afterwards.
I found a .pet (on this thread, or on another thread, I forgot where it was) that should fix this problem, but it didn't help.
problem with squeezesave_crypta
I found the pet which bruno has mentioned and installed it as described i.e. before creating a fresh, heavy encrypted save-file.
http://208.109.22.214/puppy/viewtopic.p ... e98cedd010
It has not helped, the password is still not recognised.
http://208.109.22.214/puppy/viewtopic.p ... e98cedd010
It has not helped, the password is still not recognised.
I have noticed your problems with heavy encryption when using usb savefile. But...I dont know the reason to the problem. That losetup-FULL binary fix has been implemented. One bug has been trashed...so the problem lies somewhere else.
If none can provide any insight, I am quite clueless atm.
I dont use encryptions with savefiles, so I dont even have much experience with them.
If none can provide any insight, I am quite clueless atm.
I dont use encryptions with savefiles, so I dont even have much experience with them.
Sylkpheed 3.3 for Puppy Exprimo?
I tried Sylpheed in the past and found it far too primitive.
This sounds encouraging & perhaps might be paired with Iron?
http://news.softpedia.com/news/Sylpheed ... um=twitter
This sounds encouraging & perhaps might be paired with Iron?
http://news.softpedia.com/news/Sylpheed ... um=twitter
[b]Thanks! David[/b]
[i]Home page: [/i][url]http://nevils-station.com[/url]
[i]Don't google[/i] [b]Search![/b] [url]http://duckduckgo.com[/url]
TahrPup64 & Lighthouse64-b602 & JL64-603
[i]Home page: [/i][url]http://nevils-station.com[/url]
[i]Don't google[/i] [b]Search![/b] [url]http://duckduckgo.com[/url]
TahrPup64 & Lighthouse64-b602 & JL64-603
weewx - Linux Weather Appl
Would it be a hard thing to port this weather app to Exprimo?
http://www.weewx.com/
I'd like to run it with this addon so that I may tie my Davis weather station to my Linux laptop and an Amateur Radio APRS device.
https://github.com/bradmc/weewx_aprs_a ... /bin/weewx
Thanks!
http://www.weewx.com/
I'd like to run it with this addon so that I may tie my Davis weather station to my Linux laptop and an Amateur Radio APRS device.
https://github.com/bradmc/weewx_aprs_a ... /bin/weewx
Thanks!
[b]Thanks! David[/b]
[i]Home page: [/i][url]http://nevils-station.com[/url]
[i]Don't google[/i] [b]Search![/b] [url]http://duckduckgo.com[/url]
TahrPup64 & Lighthouse64-b602 & JL64-603
[i]Home page: [/i][url]http://nevils-station.com[/url]
[i]Don't google[/i] [b]Search![/b] [url]http://duckduckgo.com[/url]
TahrPup64 & Lighthouse64-b602 & JL64-603
Having used Exprimo 5.X.15 for a number of months, I am wondering whether other uses share my observations …
(1) you2Pup is a handy utility. But it stopped working about 2 months ago. When I try it with youtube, I now get "unknown youtube format". Is this the same for everyone?
(2) On earlier pups and Firefox versions, I found it essential to use Ad Blocker to kill the flash advert at the top of the murga forums because the flash player used so much resources that it would practically cripple my 560MHz PIII when browsing. But now, with 5.X.15 and FF 16 I find that Ad Blocker uses far more resources than does the flash player. By disabling Ad Blocker and allowing that advert to play (flash player and all) my browsing is much better with less hesitation when scrolling than if I have Ad Blocker activated. What a turnaround!
(1) you2Pup is a handy utility. But it stopped working about 2 months ago. When I try it with youtube, I now get "unknown youtube format". Is this the same for everyone?
(2) On earlier pups and Firefox versions, I found it essential to use Ad Blocker to kill the flash advert at the top of the murga forums because the flash player used so much resources that it would practically cripple my 560MHz PIII when browsing. But now, with 5.X.15 and FF 16 I find that Ad Blocker uses far more resources than does the flash player. By disabling Ad Blocker and allowing that advert to play (flash player and all) my browsing is much better with less hesitation when scrolling than if I have Ad Blocker activated. What a turnaround!
Attached pet should fix you2pup. Movgrab works also in commandline, and the you2pup I have uses movgrab. It was youtube api change which needed movgrab update.
I have included Flashblock plugin to the Firefox. You just need to enable that extension. Have you tested it ?
I have included Flashblock plugin to the Firefox. You just need to enable that extension. Have you tested it ?
- Attachments
-
- movgrab-0.0.1.pet
- (71.71 KiB) Downloaded 809 times
I have struggled with a weird Linux-boot problem where my Samsung NB30 netbook display is dim if I start via battery but full brightness if via AC.
It is a problem they have solved in Ubuntu:
http://www.voria.org/forum/viewtopic.ph ... 6046#p6046
Could someone have a looksee at this linked-thread and see if their Ubuntu solution could be ported to a Puppy Linux Exprimo PET or something, please?
It sure would make my netbook a more versatile tool.
Thanks! David
Note
An additional thread re. this problem is here:
http://www.voria.org/forum/viewtopic.ph ... 3&start=30
It is a problem they have solved in Ubuntu:
http://www.voria.org/forum/viewtopic.ph ... 6046#p6046
Could someone have a looksee at this linked-thread and see if their Ubuntu solution could be ported to a Puppy Linux Exprimo PET or something, please?
It sure would make my netbook a more versatile tool.
Thanks! David
Note
An additional thread re. this problem is here:
http://www.voria.org/forum/viewtopic.ph ... 3&start=30
[b]Thanks! David[/b]
[i]Home page: [/i][url]http://nevils-station.com[/url]
[i]Don't google[/i] [b]Search![/b] [url]http://duckduckgo.com[/url]
TahrPup64 & Lighthouse64-b602 & JL64-603
[i]Home page: [/i][url]http://nevils-station.com[/url]
[i]Don't google[/i] [b]Search![/b] [url]http://duckduckgo.com[/url]
TahrPup64 & Lighthouse64-b602 & JL64-603