Page 35 of 44

Posted: Mon 24 Sep 2012, 13:48
by Ray MK
Hi Barry

A recap regarding 2barks / woof-woof. It works.

Did a fresh reboot on both laptops, Acer 243LC and Emachines E732, and got a woof-woof on both machines with both 5395 and 53951.

So disregard my earlier comment about - no woof-woof.

Luvly Puppies - many thanks and very best regards - Ray

Beta7 non-pae Fine, opera problem solved

Posted: Mon 24 Sep 2012, 17:35
by mikeslr
Hi Barry K & All;

My computer:
Processor: 4x AMD Phenom(tm) II X4 945 Processor
Memory: 3375MB
ATI Radeon 3100 Graphics supporting 1600x900 pixels
RaLink RT2561/RT61 802.11g PCI
SB [HDA ATI SB], device 0: VT1708B Analog
SB {HDA ATI SB], device 1: VT1708B Digital

Manual frugal install of Beta7, non-pae

Everything worked OOTB, with one snag. Although initial desktop came in at supported resolution, there were two annoying problems running Opera 11 or 12. The most annoying was that flash videos would not run showing a black screen where an image should be. The second was that if more than one tab was opened, except for the tab in focus the tab bar did not display the other tabs properly and the unused portion of the tab bar displayed random black pixels rather than a uniform gray space, Running xorgorwizard and probing to 1600x900x24 solved both problems. "Report Video Graphics" now indicates that the Ati Radeon driver was being used.

Not particularly important but just to make a note of it: On my Thinkpad T42, booting frugal install of Beta6 non-pae --it doesn't support pae kernels*-- the Lucid build of Songbird installs, displays but hangs if a Shoutcast selection is made.

And before I forget: Just a word of appreciation for whatever change you made to the routine to build/display the desktop after a change in the SFSes loaded. Previously, after removing or adding an SFS, the default desktop icons would appear on reboot. Now changing SFSes does not effect the desktop display.
And, of course, thank you for precise, itself.

mikesLr

* ergo my preference for non-pae on desktop: After my customizations on desktop, I just make a copy for all the files my Thinkpad.

Fastest download

Posted: Tue 25 Sep 2012, 00:05
by don570
Fastest download of precise-5.3.95.iso is


http://ftp.nluug.nl/ftp/pub/os/Linux/di ... beta7-pae/

___________________________________

beta-7

Posted: Tue 25 Sep 2012, 00:11
by sszindian
Figured I'd wait a few versions to see if the WiFi got corrected! Sorry to say, WiFi with rt2800usb is still NOT connecting. Hasn't worked since 5.2.60. Linksys adaptor blinks like it's searching, just not connecting!

So far everything else in beta-7 looks pretty good except... seems slower than earlier versions and still a lot of buffering at certain video sites.

>>>---Indian------>

Posted: Tue 25 Sep 2012, 01:20
by futwerk
a few backgrounds.

BugFix for modemprobe_erase

Posted: Tue 25 Sep 2012, 04:30
by rerwin
Barry,
While polishing and testing the firmware pets for DGC and HSF modems, I discovered that modemprobe_erase does not perform as I intended for modprobe config files named modemx_*. They are to be removed only if an 'erase' is done when the modem selection is already cleared. That is to leave them in place during a normal "erase" of a selection to change modem selection, but provide a way to remove them (say, for a hardware reconfiguration).

They have been used to handle the special case of HSF and ALSA drivers conflicting and HSF failing to work. I now plan to use it to retain the DGC config file across an erase-and-reboot. Without the file in place, the DGC driver does not load in time to function (providing modem sounds). It loads correctly for subsequent sessions.

The problem is that modemprobe_erase limits the action to a single config file for the original purpose. Although my intent was for it to act on any linuxant-driver "modemx_" file, I never changed the script. Now I would like it to handle any such file for the DGC, HCF and HSF modems. The change does just that, but not for other cases, simply to minimize exposure to accidental use of similarly named files for other purposes.

Code: Select all

--- /usr/sbin/modemprobe_erase	2012-02-01 06:58:19.000000000 -0500
+++ modemprobe_erase	2012-09-24 12:13:26.000000000 -0400
@@ -5,6 +5,7 @@
 #v432 Undo automatic HCF/HSF overrides if modem selection is already cleared, to require second erase to reset the overrides.
 #101203 bk: modified.
 #120201 BK: internationalized.
+#120924 rerwin: Extend to all linuxant modems the modemx file removal on erase-with-no-modem-set,.
 
 export TEXTDOMAIN=modemprobe_erase
 export OUTPUT_CHARSET=UTF-8
@@ -16,11 +17,13 @@
 #v432 If no modem currently "detected", reset ALSA override of HSF driver (and vice versa).
 if [ ! -e /etc/wvdial.conf ] \
   || grep -q -E '^Modem = (/dev/MYDEVM|MYDEVM)' /etc/wvdial.conf;then
- rm -f /etc/modprobe.d/modemx_hsfmc97xxx.conf #101115
+ rm -f /etc/modprobe.d/modemx_dgc* #120924
+ rm -f /etc/modprobe.d/modemx_hcf* #120924
+ rm -f /etc/modprobe.d/modemx_hsf* #120924
 fi #v432 end
 
 #100908 Delete modem configuration files, to allow fresh start.
-rm -f /etc/modprobe.d/modem_* `ls -1 /etc/modprobe.d/modemx_* 2>/dev/null | grep -v 'hsfmc97xxx' | tr '\n' ' '` #101115
+rm -f /etc/modprobe.d/modem_* #120924
 
 #100909 Reset config file modem and alternate.
 [ -e /etc/wvdial.conf ] \
Although it seems unrelated to this fix, I have found that pupdial misbehaves after using the Erase function. The selected modem name gets corrupted. Here is a summary of what I see:
  • After erase and then reboot:
    [Dialer Defaults]
    Modem = /dev/MYDEVM
    Baud = 460800

    connectwizard shows /dev/ttySHSF0.

    click dialup..., OK to first popup:
    [Dialer Defaults]
    Modem = /dev//dev/ttySHSF0
    Baud = 460800
UPDATE 9/25/2012: The fix for this is attached. A change made in wary 5.0 implies that the name "/dev/MYDEVM" is not expected. However, that name is generated upon exit from pupdial even when the value should be only "MYDEVM". The fix ensures that the expectation is met.

Code: Select all

--- /usr/sbin/pupdial	2012-05-14 04:52:50.000000000 -0400
+++ pupdial	2012-09-25 20:00:39.000000000 -0400
@@ -32,6 +32,7 @@
 #120202 rodin.s: internationalized.
 #120218 rerwin: Ensure non-null logon info for wvdial.
 #120329 Xdialog bug --yesno supposed to "yes" "No" buttons, but they are "OK" "Cancel".
+#120924 rerwin: correct setting of current modem device after erase.
 
 [ "`whoami`" != "root" ] && exec sudo -A ${0} ${@} #110505
 
@@ -712,8 +713,11 @@
 [ ! ${ENTRYACC2USER} ] && ENTRYACC2USER="MY2USERNAME"
 [ ! ${ENTRYACC2PASS} ] && ENTRYACC2PASS="MY2PASSWORD"
 
+MODEMDEVM="/dev/${DEVM}" #120924
+[ "${DEVM}" = "MYDEVM" ] && MODEMDEVM="MYDEVM" #120924
+
 echo '[Dialer Defaults]' > /etc/wvdial.conf
-echo -n "Modem = /dev/${DEVM}
+echo -n "Modem = ${MODEMDEVM}
 ${DEVMALTLINE}Baud = ${ENTRYBAUDM}
 Init1 = 
 Init2 = ${ENTRYINIT2M}
Richard

Posted: Tue 25 Sep 2012, 07:24
by Sage
I'd wait ... to see if the WiFi got corrected
The best, ie easiest & most comprehensive, wi-fi utility is in PCLOS. The 2012-02 Xfce version might suit you. It's very slow as a liveCD, so recommend you install on an old HD to start with to see if you like it. Tex has made great strides since breaking away from the Mandrake fold.

WiFi issue

Posted: Tue 25 Sep 2012, 13:07
by sszindian
Sage Wrote:

The best, ie easiest & most comprehensive, wi-fi utility is in PCLOS. The 2012-02 Xfce version might suit you. It's very slow as a liveCD, so recommend you install on an old HD to start with to see if you like it. Tex has made great strides since breaking away from the Mandrake fold.
--------------------------------------------------------
Appreciate your come-back Sage however... I myself am NOT looking for an alternative WiFi setup for Precise! I have tons of puppy's and other distro's that work as they should.

I TEST and report on NEW developments what is NOT working properly so BK and other dev's can find and correct the problem and won't be confronted by numerous new users once it makes the final stage of development.

But 'thank you' for your concern.

>>>---Indian------>

Localization BUG n QuickSetup-FirstRUN - Personalize Setting

Posted: Tue 25 Sep 2012, 19:49
by gcmartin
Hi BarryK, I already reported on your good work thus far.

Thought you would want to see this for it relates to your PUPs and others built using your latest WOOF.

Here to hlep

Posted: Tue 25 Sep 2012, 22:07
by Smithy
Tried Non PAE version, boots up fine to desktop on Athlon XP 2400.

The look is good too, you can get round it in seconds and find everything.

GLX gears around 160, the wheels turn, but a little jerkily at times.
(can't believe that figure really though, when the usual figure for my RV280 Radeon 9200 is around 5000 to 1000 in most puppies with the Xorg High Pet put in them).

Internet works fine. A little modprobe is what it took to find the usb modem.
Usb cards come up fine, multiple soundcards fine.
Retrovol config, change HW0 to HW1 and restart X to change cards.
I Try not to do that too much in any Puppies though! Very temperamental.
Wine loads, wineasio, Jack.
Openbox 3.5.0 fails to show up.

No yellowish/green screen (as in 3HD) when changing Xorg from 24 to 16 bit, but still can't run Lugaru, a game I use as a reference test. Takes 3 minutes to get the mouse to hit play!

Apart from the ATI 9200 problem, everything works great as far as I can test.

new version of mhwaveedit 1.4.22

Posted: Tue 25 Sep 2012, 23:15
by don570
new version of mhwaveedit 1.4.22
New features in version 1.4.22:

* Improvements and fixes in the sample conversion and dithering code
* Display zoom and speed settings next to status bar
* Bug fix for value truncation in position cursor dialog
* For ogg files, choose between decompression to temporary file and
on-the-fly access
* Various bug fixes
I compiled mhwaveedit-1.4.22 in latest precise .



Instruction to compile:

download
http://download.gna.org/mhwaveedit/mhwa ... 22.tar.bz2


I decompresed mhwaveedit package in convenient place.

I made a folder /root/temp

I made sure that a file (install-sh) was executable

CD into mhwaveedit package and launch terminal and type....

Code: Select all

./configure --with-default-mixerapp=retrovol --enable-nls --prefix=/usr
make
make install DESTDIR=/root/temp
Warning!! This pet package will only run in precise. It won't
even run in Lucid Puppy.

To save about 1mb I stripped the binary
using iguleder_tools-001.pet

Removed the man page, included the icon, and included a .desktop file

____________________________________________________

new mtpaint 3.44.04

Posted: Thu 27 Sep 2012, 00:02
by don570
new version mtpaint 3.44.04

I compiled mtpaint 3.44.04 in the latest precise

Code: Select all

./configure    release intl  --prefix=/usr 
minor upgrade from 3.44.03 -Dmitri corrected bug using
keyboard for selection

Removed the man page, included the icon, and included a .desktop file

Warning!! this app will only run under precise.

_____________________________________________

webcam app?

Posted: Thu 27 Sep 2012, 18:11
by mavrothal
Any webcam app for precise?
Cheese requires 150+ dependencies :shock:
Guvcview needs Gtk3 (the wary/slacko versions do not work)
Luvcview does not work (in my hardware at least)

rcrsn51?... :wink:

Re: webcam app?

Posted: Thu 27 Sep 2012, 18:30
by technosaurus
mavrothal wrote:Any webcam app for precise?
Cheese requires 150+ dependencies :shock:
Guvcview needs Gtk3 (the wary/slacko versions do not work)
Luvcview does not work (in my hardware at least)

rcrsn51?... :wink:
something like this should work:
ffmpeg -t 10 -f video4linux2 -s 320x240 -r 30 -i /dev/video0 -f oss -i /dev/dsp1 -f mp4 webcam.mp4

if you want to see it too, replace webcam.mp4 with /dev/stdout and pipe it through tee into mplayer

Re: webcam app?

Posted: Thu 27 Sep 2012, 18:32
by rcrsn51
mavrothal wrote:Guvcview needs Gtk3 (the wary/slacko versions do not work)
I tried to build Guvcview in Precise the same way I did in Slacko/Wary. The build was successful, but it wouldn't run. The error seemed to be related to GTK/GDK.
Luvcview does not work (in my hardware at least)
I got a version of Luvciew to run in Precise. But capturing to a file only worked with certain cameras. Something about YUV format.

Posted: Thu 27 Sep 2012, 18:37
by technosaurus
scottman's vlc-gtk could probably do it to if he has added a record option: --sout file/muxer:stream.xyz
(my built in webcam is fried or I could probably add it myself)

Posted: Thu 27 Sep 2012, 19:48
by pemasu
# guvcview
guvcview 1.5.0
Fatal:g_thread NOT supported

1.5.2 has been fixed for g_tread and it is gtk-3.0 based.....

Plan B:
mplayer tv:// -tv driver=v4l2:width=768:height=450:device=/dev/video0 -fps 30

Well...you get video output at least....lol

Re: webcam app?

Posted: Thu 27 Sep 2012, 20:08
by rcrsn51
technosaurus wrote:if you want to see it too, replace webcam.mp4 with /dev/stdout and pipe it through tee into mplayer
I couldn't get this to work.

WiFi does not connect automatically on reboot

Posted: Fri 28 Sep 2012, 02:35
by gray
WiFi works fine on several computers / wifi cards I have tried. However when frugal installed on a USB stick the WiFi is not reconnected at boot up.
It fails to find a live connection. I tried playing with some of the sleep timings in the rc.d/network script but no joy. :cry:

New firmware pets for DGC, HSF & HCF modems

Posted: Fri 28 Sep 2012, 03:44
by rerwin
Barry and testers,
Here are my revised firmware packages for all 3 linuxant modem types. The scripts and "nvm" data are installed to their ultimate locations, leaving the placing of configuration files and initialization scripts to the tarball/directory, to be done only if needed. This way, those files are not copied into the top layer to operate, saving some pup-save space.

The special modprobe-configuration files are now retained through a pupdial "erase" of the current modem selection, but can be removed by a second "erase" done when there is no modem already selected. This is useful if you change modem hardware, so need a different set of firmware.

This improves the reliability of the DGC driver, which provides the modem sounds for many USB modems. However, on first boot of a fresh puppy session as well as after a pupdial "erase", the sound was not produced, due to the timing of driver loading. Now, only the initial boot-up is mute. I went into more detail about the DGC package on page 43:
http://www.murga-linux.com/puppy/viewto ... 800#653800

I have uploaded the driver for hcfpcimodem on page 44 with the others:
http://www.murga-linux.com/puppy/viewto ... 954#653954

Before installing the firmware packages, please install the related "cleanup" packages so that any testing is more valid than it would be if the residue were to remain, although the modems should work with the residue.

Although I recognize that the hcfpcimodem is of limited value due to its maximum speed of 14.4 kb unless linuxant is paid $20, it may still be useful for faxing. I hope to look into how to do that, and am open to suggestions via PM. We should discuss that in another thread to avoid hijacking this one. Does anyone care about the HCF modem or faxing?
Richard

EDIT: Barry, I have now included a tarball of source difference listings to the page-44 posting of the drivers for k3.2.29, for your information.

Update 10/14/2012: Corrected the pet package for HCF modem firmware. Note that all 3 (DGC, HCF, HSF) firmware packages have been updated to the versions (20121004) in the modem_firmware_packages-complete_set tarball on page 49