Page 20 of 20

Posted: Sun 15 Dec 2019, 17:15
by partsman
Looking good here peebee ! :wink:

Posted: Wed 01 Jan 2020, 09:32
by peebee
New decade - new version - kernel update - new default "look"

BUILD_FROM_WOOF='testing;7890189c5;2019-12-28 08:51:15 +0100'
Slackware Current=Sat Dec 28 20:25:38 UTC 2019
64bit kernel 5.4.6

9d3c9c4c07fa8f9da0443bfb09006b6a LxPupSc64-20.01+0-T.iso

Delta from 19.09+0

devx, kernel sources and headers, 32-bit compatibility, LXQt ydrv addon

Posted: Thu 02 Jan 2020, 02:05
by Marv
LxPupSc64-20.01+0-T-k64 installed to my Fujitsu S761, both as a pristine install, up through setting up timezones, firewall, SNS connection, touchpad configuration, adding in rightclicks and desktop drive icons from the options tab in Change Appearance; and as an update to my 19.09 +7+ frugal Grub4Dos install to SSD on the Fujitsu. Boot, system checks, video speed, mem/SSD throughput all good and unchanged in both the pristine install and the update. Posting from QtWebBrowser in the pristine install now with the 32bit-compat-sc64-19.06.sfs loaded. Fresh savefile created and tested ok with a reboot. One quirk noted: On the pristine install, the Drives-On-Desktop pet will not install from the usual options tab in the Change Appearance App. Screenie attached. In the update, with that pet previously installed, everything is working correctly.
Cheers,

LxPupSc64 - 64bit version of Puppy with the LXDE desktop

Posted: Thu 02 Jan 2020, 04:33
by MrDuckGuy
peebee wrote:... - new version - kernel update - new default "look" ...
Just downloaded and set up new frugal folder.
Will be booting it soon. Updates to this post soon.

Thanks!

--- --- --- ---

UPDATE: Working. Keyboard is fine.
My volume key was working in v19.09,
now it isn't so far.

Thanks again!

Posted: Thu 02 Jan 2020, 09:19
by peebee
Marv wrote:One quirk noted: On the pristine install, the Drives-On-Desktop pet will not install from the usual options tab in the Change Appearance App.
Thanks @Marv

Really weird!! The drive-icons and conky .pets seem to have been missing from the LxPupSc64 builds for some long time ..... no idea why! I'll reinstate them for the 1st delta.

Cheers
PeeBee

Posted: Tue 07 Jan 2020, 13:55
by corvus
Hi peebee,
great job, I'm using LxPup64 20.1 with the latest ydrv release of LXQT on my ASUS X555LB notebook, no issues so far.
Very nice look.
Greetings

Qemu Missing libs

Posted: Sun 26 Jan 2020, 22:13
by Wen d
I really like this OS! just saying.

I installed Qemu with the PPM. and it says I'm missing some libraries.

When i've done it in regular slackware ...oh it takes FOR EVER to compile. so it's nice to just get the binaries for this one.
how should i go about installing the versions I need? ...properly.

_____________________________________________output from the PPM:

Packages succesfully Installed or Downloaded
qemu-2.4.1-i686_s700

Packages that failed to be Installed or Downloaded, or were aborted be the user


Missing Shared Libraries
/usr/bin/qemu-img:
/usr/bin/qemu-io:
/usr/bin/qemu-nbd:
/usr/bin/qemu-system-arm:
/usr/bin/qemu-system-i386:

Re: Qemu Missing libs

Posted: Mon 27 Jan 2020, 10:45
by peebee
Wen d wrote: it says I'm missing some libraries.

Packages that failed to be Installed or Downloaded, or were aborted be the user

Missing Shared Libraries
/usr/bin/qemu-img:
/usr/bin/qemu-io:
/usr/bin/qemu-nbd:
/usr/bin/qemu-system-arm:
/usr/bin/qemu-system-i386:
Odd - those are binaries rather than libraries......have you done a search to see if they are installed but ppm is reporting incorrectly?

Certainly qemu from AlienBob:
https://slackware.pkgs.org/current/alie ... n.txz.html

has those binaries.....

Tap to Click Perl Scrip

Posted: Tue 28 Jan 2020, 16:57
by Wen d
It works great so far... but i cant get this script to work. It did in 19.09. (I'm pretty sure it did.
Any Ideas... anybody?

--------------------------------------------

Code: Select all

#!/usr/bin/perl

# Enables tap-to-click on Fedora LXDE
# Author:  Bill Chatfield
# License: GPL2

sub getDeviceId($);
sub getPropertyId($$);
sub setIntProperty($$$);

my $devId = getDeviceId("touch");
if ( defined($devId) ) {
	my $propId = getPropertyId( $devId, "tapping enabled" );
	if ( defined($propId) ) {
		setIntProperty( $devId, $propId, 1 );
	}
}

sub getDeviceId($) {
	my ($searchTerm) = @_;
	my $device_id;

	open( XINPUT, "xinput | " ) || die "$0: $!\n";
	while (<XINPUT>) {
		if (/$searchTerm/i) {
			($device_id) = /id=(\d+)/;
			print "Found device id=$device_id\n";
			last;
		}
	}
	close(XINPUT);
	if ( !defined($device_id) ) {
		print STDERR "Device id not found for '$searchTerm'\n";
	}
	return $device_id;
}

sub getPropertyId($$) {
	my ( $deviceId, $propertySearchTerm ) = @_;

	open( XINPUT, "xinput list-props $deviceId | " ) || die "$0: $!\n";
	while (<XINPUT>) {
		if (/$propertySearchTerm/i) {
			($propertyId) = /\s\((\d+)\):\s/;
			print "Found property id=", $propertyId, "\n";
			last;
		}
	}
	close(XINPUT);
	if ( !defined($propertyId) ) {
		print STDERR "Property not found for '$propertySearchTerm'\n";
	}
	return $propertyId;
}

sub setIntProperty($$$) {
	my ( $deviceId, $propertyId, $value ) = @_;
	my @args = ( "xinput", "set-int-prop", $deviceId, $propertyId, $value );
	system(@args) == 0 or die "Command " . join( " ", @args ) . " failed: $?\n";
	print "Set property=", $value, "\n";
}

Re: Qemu Missing libs

Posted: Wed 29 Jan 2020, 22:51
by Wen d
peebee wrote:
Wen d wrote: it says I'm missing some libraries.

Packages that failed to be Installed or Downloaded, or were aborted be the user

Missing Shared Libraries
/usr/bin/qemu-img:
/usr/bin/qemu-io:
/usr/bin/qemu-nbd:
/usr/bin/qemu-system-arm:
/usr/bin/qemu-system-i386:
Odd - those are binaries rather than libraries......have you done a search to see if they are installed but ppm is reporting incorrectly?

Certainly qemu from AlienBob:
https://slackware.pkgs.org/current/alie ... n.txz.html

has those binaries.....
I appreciate the help, PeeBee.

AH yes binaries! I knew that! *blushes* (I probably meant "dependencies").
When I did a search with pfind they were not found in the system..

Well I tried that txz and, yup, I'm running a 64 bit system. I don't know. It looks like it put on one for i386. It wont work.

lxPupSc64 is sort of a hybrid though isnt it?

Re: Qemu Missing libs

Posted: Thu 30 Jan 2020, 07:01
by peebee
Wen d wrote: lxPupSc64 is sort of a hybrid though isnt it?
No - pure 64-bit

https://slackware.pkgs.org/current/alie ... n.txz.html

Posted: Sat 15 Feb 2020, 17:48
by peebee
15-Feb-2020

Update to 20.01+2

also devx updates

see posts #1 & #2

Posted: Sat 21 Mar 2020, 21:15
by peebee
21-Mar-2020

Update to 20.01+4

see posts #1 & #2

Posted: Sun 03 May 2020, 09:32
by peebee
02-May-2020

Update to 20.01+6

see posts #1 & #2

Posted: Mon 04 May 2020, 04:27
by muggins
Peebee,

shouldn't mdsum on page 1 be:

e92fd9b0357a79240dce1fa926905485

Posted: Mon 04 May 2020, 06:06
by peebee
muggins wrote:Peebee,shouldn't mdsum on page 1 be:
e92fd9b0357a79240dce1fa926905485
Yes - thanks - corrected

Posted: Thu 21 May 2020, 19:05
by snayak
Dear peebee,

From the download page, the link "Download the LxPupSc64 DEVX from SourceForge" seems broken. It says, devx...+2.sfs is not found. Would you kindly have a look at it?

These two also broken:
Download the LxPupSc64 Kernel Headers from SourceForge
Download the LxPupSc64 32-bit-compatibility sfs from SourceForge

Hope you will correct all the links for the latest version.

Sincerely,
Srinivas Nayak

Posted: Fri 22 May 2020, 08:27
by peebee
snayak wrote:"Download the LxPupSc64 DEVX from SourceForge" seems broken. also broken:
Download the LxPupSc64 Kernel Headers from SourceForge
Download the LxPupSc64 32-bit-compatibility sfs from SourceForge
Thank you for report - there were problems hopefully now fixed....

20.06+0 - 13-Jun-2020

Posted: Sun 14 Jun 2020, 08:13
by peebee
New baseline 20.06+0 is available - see post #1

delta from 20.01+0