Search found 2117 matches

by trapster
Tue 07 Jul 2020, 11:51
Forum: Browsers and Internet
Topic: Podcasts: Applications and Website directories
Replies: 4
Views: 2174

guayadeque seems to play podcasts.

I use it in eh-hem.......debiandog.

Not sure if it works in a regular pup.

.deb file can be found here:

guayadeque_0.3.7-ds0-2.1_i386.deb
by trapster
Sat 23 May 2020, 12:44
Forum: Beginners Help ( Start Here)
Topic: Torrent Downloads Predicament [SOLVED]
Replies: 20
Views: 2350

This seems very strange.
If you created a folder on sdb1, it should be mounted.

I presume you are running as root and not spot?

Please post results of

Code: Select all

df- h
from a terminal.
Also post results of

Code: Select all

ls -la /mnt
by trapster
Fri 22 May 2020, 18:55
Forum: Beginners Help ( Start Here)
Topic: Torrent Downloads Predicament [SOLVED]
Replies: 20
Views: 2350

There is an option in transmission where to save the downloaded file.
Are you using transmission-gtk ?
by trapster
Sun 26 Apr 2020, 20:56
Forum: Users ( For the regulars )
Topic: How to switch virtual desktop via keyboard control? (Solved)
Replies: 8
Views: 2313

Updated link.

Thank you.
by trapster
Thu 09 Apr 2020, 21:08
Forum: Beginners Help ( Start Here)
Topic: windows putty + xming to get to puppy's graphical desktop
Replies: 9
Views: 1612

Make sure /etc/ssh/ssh_config file has this:

ForwardX11 yes

uncommented
by trapster
Sun 26 Jan 2020, 18:32
Forum: Users ( For the regulars )
Topic: How to disable Ping response? (Solved)
Replies: 15
Views: 1379

I use this in rc.local

Code: Select all

echo 1 > /proc/sys/net/ipv4/icmp_echo_ignore_all
by trapster
Tue 12 Mar 2019, 22:33
Forum: Users ( For the regulars )
Topic: How to show 'Caps Lock' on screen? (Solved)
Replies: 11
Views: 1730

This is what I use in a script on my desktop to start and stop an application by clicking on it. (yad used an an example)

Code: Select all

#!/bin/sh

pidof yad && killall yad  || yad --form --field="Test"
by trapster
Mon 03 Dec 2018, 00:04
Forum: Programming
Topic: detect all installed packages that require X
Replies: 16
Views: 4020

Reverse LDD also works a treat
by trapster
Sun 02 Dec 2018, 11:04
Forum: Programming
Topic: detect all installed packages that require X
Replies: 16
Views: 4020

Save this as /usr/local/bin/findlibs and make it executable. #!/bin/bash ldd $1 | grep -q $2 exit $? then use find /usr/bin -executable -type f -exec findlibs {} libX11 \; -print This is on Debiandog Jessie root@debian:~# find /usr/bin -executable -type f -exec findlibs {} libX11 \; -print /usr/bin/...
by trapster
Fri 23 Nov 2018, 12:40
Forum: Programming
Topic: "This Week" script: in bash, awk, or whatever.
Replies: 96
Views: 23538

Vertical verson :D

Code: Select all

# for days in {0..6}; do date "+%a %d" --date="$days day" ; done
Fri      23
Sat    24
Sun   25
Mon  26
Tue    27
Wed  28
Thu   29
#
by trapster
Sun 02 Sep 2018, 10:49
Forum: Users ( For the regulars )
Topic: Puppy 410 and OpenVPN
Replies: 1
Views: 1247

Anyone?
by trapster
Sun 26 Aug 2018, 20:05
Forum: Users ( For the regulars )
Topic: Puppy 410 and OpenVPN
Replies: 1
Views: 1247

Puppy 410 and OpenVPN

It seems I can get openvpn to successfully run on my server with running puppy 410 but I have no internet access. I can successfully use the vpn on debiandog and puppy precise on my laptop. laptop address is 192.168.104 via wlan0, server is at 192.168.101 eth0. Can anybody point me in the right dire...
by trapster
Thu 16 Aug 2018, 20:45
Forum: Programming
Topic: Scanning LAN IPs
Replies: 12
Views: 2849

I recall using a java program that was called angry ip scanner that seemed decent
by trapster
Thu 16 Aug 2018, 13:26
Forum: Programming
Topic: Scanning LAN IPs
Replies: 12
Views: 2849

It seems to be finding mine.

This is what I use

Code: Select all

#!/bin/bash

is_alive_ping()
{
  ping -c 1 $1 > /dev/null
  [ $? -eq 0 ] && echo IP: $i is up.
}

for i in 192.168.1.{1..255} 
do
is_alive_ping $i & disown
done

exec sleep 1
by trapster
Sun 12 Aug 2018, 01:13
Forum: Users ( For the regulars )
Topic: Hiawatha gurus, I need your help with URLToolkit
Replies: 6
Views: 640

From the Hiawatha web sight UseSSL is for https ? The complete syntax of the URL toolkit in Hiawatha is: UrlToolkit { ToolkitID = <toolkit_id> Call <rewrite_id> Header <key> [!]<value> Call|DenyAccess|Exit|Goto|Return|Skip|Use Match [!]<url> Ban|Call|DenyAccess|Exit|Expire|Goto|Return|Rewrite|Redire...
by trapster
Sat 11 Aug 2018, 20:19
Forum: Users ( For the regulars )
Topic: Hiawatha gurus, I need your help with URLToolkit
Replies: 6
Views: 640

try:

Match /(.*) Rewrite /index.html

?
by trapster
Sat 11 Aug 2018, 11:38
Forum: Users ( For the regulars )
Topic: How to change default user when browsing. Fatdog64 <SOLVED>
Replies: 22
Views: 2389

It should be a setting in your web browser.
by trapster
Sat 19 May 2018, 10:10
Forum: Users ( For the regulars )
Topic: Changing desktop text label colours (PuppyPin) ?? [SOLVED]
Replies: 4
Views: 751

Try right clicking a desktop icon and choosing Rox-Filer -> Options -> Pinboard
by trapster
Sun 29 Apr 2018, 12:03
Forum: Beginners Help ( Start Here)
Topic: How to loop saved Internet stream?
Replies: 4
Views: 699

Streamripper can save to a max file size. I'm not sure it's what you're looking for. # streamripper Usage: streamripper URL [OPTIONS] Opts: -h - Print this listing -v - Print version info and quit -a [file] - Rip to single file, default name is timestamped -A - Don't write individual tracks -d dir -...
by trapster
Sat 24 Mar 2018, 12:27
Forum: HOWTO ( Solutions )
Topic: A Simple VPN Implementation
Replies: 99
Views: 80649

Any chance you have OpenVPN for puppy 410 ?
It's been my media server ever since it came out. Too many customizations to upgrade.