Raspberry Pi Buster Raspup

A home for all kinds of Puppy related projects
Post Reply
Message
Author
User avatar
don570
Posts: 5528
Joined: Wed 10 Mar 2010, 19:58
Location: Ontario

#121 Post by don570 »

Samba worked well .connecting to a network server was easy...
either clicking on network icon or command in terminal

Code: Select all

# smbclient -L 192.168.1.106
Enter WORKGROUP\root's password: 

	Sharename       Type      Comment
	---------       ----      -------
	Downloads       Disk      
	IPC$            IPC       IPC Service (Samba 4.7.8)
Reconnecting with SMB1 for workgroup listing.

	Server               Comment
	---------            -------

	Workgroup            Master
	---------            -------
	                     CISCO99987
	WORKGROUP            FATDOG64-567
# mount-FULL -t cifs //192.168.1.106/Downloads /root/samba-sharefolder -o guest

However when there is shutdown of the computer there was a strange wait of
couple minutes , then the shutdown proceeded properly. :roll:
____________________________________________________

Sage
Posts: 5536
Joined: Tue 04 Oct 2005, 08:34
Location: GB

#122 Post by Sage »

It needs to formatted by linux machine using gparted.
because of two partitions,
I used micko's GUI method to be sure but the subsequent start-up procedures are tedious, too.

Separately, wouldn't it be great if micko could spare a little time to drive slacko to v.7! v6.9.9.9.9.9.... is still the best utility to run for diagnoses, etc....

User avatar
don570
Posts: 5528
Joined: Wed 10 Mar 2010, 19:58
Location: Ontario

#123 Post by don570 »

When I tried to use YASSM (to explore the network) there was warning message that arpscan wasn't installed.
____________________________________________________

To make ssh work I had to install dropbear pet package.
__________________________________________________

User avatar
don570
Posts: 5528
Joined: Wed 10 Mar 2010, 19:58
Location: Ontario

arp-scan and mtpaint

#124 Post by don570 »

I was able to get yassm to work by install dropbear and then arp-scan
I compiled arp-scan with the devx SFS

Available:
arp-scan-1.9.7-arm7.pet
https://drive.google.com/open?id=14nvdB ... L8hSyZjb75
__________________________________________

Also I was able to compile latest mtpaint 3.49.19
./configure intl --prefix=/usr
Available:
mtpaint-3.49.19-arm7.pet
https://drive.google.com/open?id=1E1a7- ... kzhlFweidK

________________________________

User avatar
don570
Posts: 5528
Joined: Wed 10 Mar 2010, 19:58
Location: Ontario

#125 Post by don570 »

The solution to connecting to raspberry pi buster from fatdog64

instead of ssh -X root@$IP_ADDRESS
I was successful with

Code: Select all

ssh -Y root@$IP_ADDRESS
________________________________________

ogg format sound files would work

_____________________________________

Unfortunately mpg123 or mpg321 is not included so I couldn't
play mp3 files with ptmtimer.
________________________________________

To output the audio to the analog jack , edit config.txt file to contain...

Code: Select all

hdmi_ignore_edid_audio=1
_____________________________

tony
Posts: 334
Joined: Sat 14 Jan 2006, 10:52
Location: Montreal.ca

rpi4 headless

#126 Post by tony »

Hi All,

I am awaiting my rpi4.

Ideally I would like to run it headless from my Ipad.

Has anybody done this who could post details.

Regards Tony.

User avatar
Lobster
Official Crustacean
Posts: 15522
Joined: Wed 04 May 2005, 06:06
Location: Paradox Realm
Contact:

Re: rpi4 headless

#127 Post by Lobster »

tony wrote: Ideally I would like to run it headless from my Ipad.
Has anybody done this who could post details.
You might have to become an ipados developer or jailbreak your Ipad

or ...
http://osxdaily.com/2018/12/11/ish-linux-shell-ios/

Another way might be with a browser. Not sure what else to suggest.
I wish you luck, my efforts in this direction were not successful as I no longer have the determined perseverance required ...
Puppy Raspup 8.2Final 8)
Puppy Links Page http://www.smokey01.com/bruceb/puppy.html :D

Dud
Posts: 59
Joined: Sat 04 Jun 2011, 18:17

#128 Post by Dud »

I've not tried with an iPad but VNC and SSH work fine on Android and there are clients for ios.

You may need a display while you're setting up.

I've had a couple of Pi's running continuously as servers for several years now - attach an ssd and it's a really cheap way to run NAS. If you have a mix of machines on your network you might smooth transfers by having Samba and FTP servers serve the same directories.

Hth.

User avatar
don570
Posts: 5528
Joined: Wed 10 Mar 2010, 19:58
Location: Ontario

#129 Post by don570 »

Tony wrote:Ideally I would like to run it headless from my Ipad.

Has anybody done this who could post details.
Ipad would have to be totally ssh compatible?? Not sure if it is???
This program claims it is.
https://apps.apple.com/us/app/termius-s ... d549039908

I spent yesterday listening to music on my headless raspberry pi 3 Buster B+
I control raspberry with a DELL computer running fatdog64

Some instructions:

devx SFS needs to be loaded to compile (right click on file to load)
https://distro.ibiblio.org/puppylinux/a ... _8.1.3.sfs

I suggest you install mpg123
mpg123-1.25.13.tar.bz2 from HERE

It compiles simply with

Code: Select all

./configure  --prefix=/usr
and install playmusic script (install instructions are inside package)
https://code.google.com/archive/p/gtkdialog/downloads

Make a folder called Music in /mnt/home/ and put mp3 files in it

Install dropbear package
https://distro.ibiblio.org/puppylinux/a ... l_rb82.pet


Make sure wireless is working --> check with a reboot!!
'ifconfig' command in terminal will show the address of raspberrypi


Modify boot.txt file in your SD card so that default is your save file.
(That puts your save file to the top of list rather than bottom)


config.txt file should have line to output audio to analog...

Code: Select all

hdmi_ignore_edid_audio=1
Your raspberry pi is now an SSH server.
You can reach it from another PC on a network...

Code: Select all

ssh -Y  root@serveraddress
where the serveraddress is the raspberrypi address
PASSWORD=woofwoof

playmusic script will play the folder of mp3 files one after another.

_____________________________________________

If you don't want to use X windows , there are scripts to play a folder of
audio files without a GUI.
mpg123 has no frills. Just go to the folder containing the MP3 files that you want to play and type mpg123 *.mp3. You can also load a playlist file and use the *-z* option on the command line to shuffle the tracks you want to play.
_________________________________________________

Polivko
Posts: 6
Joined: Wed 20 Nov 2019, 07:03

#130 Post by Polivko »

01micko,
Any updates from viewing logs from Raspbian and Raspup? Is there any possibility to fix the camera drivers loading? Thank you.

User avatar
don570
Posts: 5528
Joined: Wed 10 Mar 2010, 19:58
Location: Ontario

#131 Post by don570 »

Also useful if running without X windows is the script mkplaylist.
It quickly makes a playlist that can then be used by another program like mpg123.

Found inside the pet package ffconvert by shinoba
http://shino.pos.to/linux/puppy/ffconvert-1.4.pet
# mkplaylist --help
mkplaylist 0.1
Make play list of multimedia files in a directory.
usage: mkplaylist [PLAYLIST_FORM] (FILES|-f FILELIST)
PLAYLIST_FORM: 'asx', 'pls' or 'm3u'
____________________________________________

Dud
Posts: 59
Joined: Sat 04 Jun 2011, 18:17

#132 Post by Dud »

Now here's a thing:

I upgraded the PI4 4GB firmware after reading an article in the latest MagPi

Using Raspbian:
sudo apt update
sudo apt full-upgrade

and then reboot.

Then I returned to Raspup to see if there were any significant changes

I only found one so far:

Using wireless -

PING 192.168.1.254 (192.168.1.254): 56 data bytes
64 bytes from 192.168.1.254: seq=0 ttl=64 time=3.425 ms
64 bytes from 192.168.1.254: seq=1 ttl=64 time=2.708 ms
64 bytes from 192.168.1.254: seq=2 ttl=64 time=3.846 ms
64 bytes from 192.168.1.254: seq=3 ttl=64 time=7.933 ms
64 bytes from 192.168.1.254: seq=4 ttl=64 time=2.339 ms
64 bytes from 192.168.1.254: seq=5 ttl=64 time=7.405 ms
64 bytes from 192.168.1.254: seq=6 ttl=64 time=2.431 ms
64 bytes from 192.168.1.254: seq=7 ttl=64 time=2.588 ms
64 bytes from 192.168.1.254: seq=8 ttl=64 time=6.354 ms
64 bytes from 192.168.1.254: seq=9 ttl=64 time=5.736 ms
64 bytes from 192.168.1.254: seq=10 ttl=64 time=6.476 ms
64 bytes from 192.168.1.254: seq=11 ttl=64 time=4.897 ms
64 bytes from 192.168.1.254: seq=12 ttl=64 time=6.139 ms
64 bytes from 192.168.1.254: seq=13 ttl=64 time=7.961 ms
64 bytes from 192.168.1.254: seq=14 ttl=64 time=2.147 ms
64 bytes from 192.168.1.254: seq=15 ttl=64 time=3.101 ms
64 bytes from 192.168.1.254: seq=16 ttl=64 time=4.045 ms
64 bytes from 192.168.1.254: seq=17 ttl=64 time=1.795 ms
64 bytes from 192.168.1.254: seq=18 ttl=64 time=4.556 ms
64 bytes from 192.168.1.254: seq=19 ttl=64 time=3.675 ms

--- 192.168.1.254 ping statistics ---
20 packets transmitted, 20 packets received, 0% packet loss
round-trip min/avg/max = 1.795/4.477/7.961 ms

Whilst not perfect this is vastly better than the times I was getting before (upthread) and is good enough to stream a dvd image without glitches.

So it looks like most of the problem was outside your remit Micko - sorry for the headaches.

But it does raise the need to keep the firmware current

Cheerio,

linux28
Posts: 270
Joined: Sun 05 Apr 2009, 07:22

#133 Post by linux28 »

Debian-Pi-Aarch64 puppy?

Is there a 64-bit puppy?

tony
Posts: 334
Joined: Sat 14 Jan 2006, 10:52
Location: Montreal.ca

#134 Post by tony »

Hi,

I have given up for now, the idea 0f running Rpi4 headless.

I am now using my old Canadian TV as a monitor.

In Noobs.
Cured the black screen at boot by pressing the 2 key.

Depending on your country, pressing 1 or 2 or 3 or 4 should give you a picture.

Editing config.txt will bring the screen to the correct size.

In puppy noobs there should be extra keys to resize the screen and one other to shut the program down in an orderly fashion.

I enclose the config.txt file I am using now. it still needs editing to get the screen size right. but it's a start.

Regards Tony.
Attachments
config.txt.zip
(1.77 KiB) Downloaded 65 times

User avatar
don570
Posts: 5528
Joined: Wed 10 Mar 2010, 19:58
Location: Ontario

#135 Post by don570 »

The config.txt file included in Raspberry Pi Buster Raspup RC worked well for me.
I didn't have to insert hdmi_mode and hdmi_group
___________________________________________________

I looked at your config.txt file and I saw...

Code: Select all

hdmi_safe=1
You need to comment this line.

Then you set hdmi_mode and hdmi_group.

https://www.raspberrypi.org/documentati ... t/video.md
_______________________________

Here is relevant info
hdmi_mode defines screen resolution in CEA or DMT format (for other modes not listed here have a look at this thread)

These values are valid if hdmi_group=1 (CEA)
hdmi_mode=1 VGA
hdmi_mode=2 480p 60 Hz
hdmi_mode=3 480p 60 Hz H
hdmi_mode=4 720p 60 Hz
hdmi_mode=5 1080i 60 Hz
hdmi_mode=6 480i 60 Hz
hdmi_mode=7 480i 60 Hz H
hdmi_mode=8 240p 60 Hz
hdmi_mode=9 240p 60 Hz H
hdmi_mode=10 480i 60 Hz 4x
hdmi_mode=11 480i 60 Hz 4x H
hdmi_mode=12 240p 60 Hz 4x
hdmi_mode=13 240p 60 Hz 4x H
hdmi_mode=14 480p 60 Hz 2x
hdmi_mode=15 480p 60 Hz 2x H
hdmi_mode=16 1080p 60 Hz
hdmi_mode=17 576p 50 Hz
hdmi_mode=18 576p 50 Hz H
hdmi_mode=19 720p 50 Hz
hdmi_mode=20 1080i 50 Hz
hdmi_mode=21 576i 50 Hz
hdmi_mode=22 576i 50 Hz H
hdmi_mode=23 288p 50 Hz
hdmi_mode=24 288p 50 Hz H
hdmi_mode=25 576i 50 Hz 4x
hdmi_mode=26 576i 50 Hz 4x H
hdmi_mode=27 288p 50 Hz 4x
hdmi_mode=28 288p 50 Hz 4x H
hdmi_mode=29 576p 50 Hz 2x
hdmi_mode=30 576p 50 Hz 2x H
hdmi_mode=31 1080p 50 Hz
hdmi_mode=32 1080p 24 Hz
hdmi_mode=33 1080p 25 Hz
hdmi_mode=34 1080p 30 Hz
hdmi_mode=35 480p 60 Hz 4x
hdmi_mode=36 480p 60 Hz 4xH
hdmi_mode=37 576p 50 Hz 4x
hdmi_mode=38 576p 50 Hz 4x H
hdmi_mode=39 1080i 50 Hz reduced blanking
hdmi_mode=40 1080i 100 Hz
hdmi_mode=41 720p 100 Hz
hdmi_mode=42 576p 100 Hz
hdmi_mode=43 576p 100 Hz H
hdmi_mode=44 576i 100 Hz
hdmi_mode=45 576i 100 Hz H
hdmi_mode=46 1080i 120 Hz
hdmi_mode=47 720p 120 Hz
hdmi_mode=48 480p 120 Hz
hdmi_mode=49 480p 120 Hz H
hdmi_mode=50 480i 120 Hz
hdmi_mode=51 480i 120 Hz H
hdmi_mode=52 576p 200 Hz
hdmi_mode=53 576p 200 Hz H
hdmi_mode=54 576i 200 Hz
hdmi_mode=55 576i 200 Hz H
hdmi_mode=56 480p 240 Hz
hdmi_mode=57 480p 240 Hz H
hdmi_mode=58 480i 240 Hz
hdmi_mode=59 480i 240 Hz H
H means 16:9 variant (of a normally 4:3 mode).
2x means pixel doubled (that is, higher clock rate, with each pixel repeated twice)
4x means pixel quadrupled (that is, higher clock rate, with each pixel repeated four times)
These values are valid if hdmi_group=2 (DMT)
Note: according to http://www.raspberrypi.org/phpBB3/viewt ... 00#p195443
there is a pixel clock limit which means the highest supported mode is 1920x1200 @60 Hz with reduced blanking.
hdmi_mode=1 640x350 85 Hz
hdmi_mode=2 640x400 85 Hz
hdmi_mode=3 720x400 85 Hz
hdmi_mode=4 640x480 60 Hz
hdmi_mode=5 640x480 72 Hz
hdmi_mode=6 640x480 75 Hz
hdmi_mode=7 640x480 85 Hz
hdmi_mode=8 800x600 56 Hz
hdmi_mode=9 800x600 60 Hz
hdmi_mode=10 800x600 72 Hz
hdmi_mode=11 800x600 75 Hz
hdmi_mode=12 800x600 85 Hz
hdmi_mode=13 800x600 120 Hz
hdmi_mode=14 848x480 60 Hz
hdmi_mode=15 1024x768 43 Hz DO NOT USE
hdmi_mode=16 1024x768 60 Hz
hdmi_mode=17 1024x768 70 Hz
hdmi_mode=18 1024x768 75 Hz
hdmi_mode=19 1024x768 85 Hz
hdmi_mode=20 1024x768 120 Hz
hdmi_mode=21 1152x864 75 Hz
hdmi_mode=22 1280x768 Reduced blanking
hdmi_mode=23 1280x768 60 Hz
hdmi_mode=24 1280x768 75 Hz
hdmi_mode=25 1280x768 85 Hz
hdmi_mode=26 1280x768 120 Hz Reduced blanking
hdmi_mode=27 1280x800 Reduced blanking
hdmi_mode=28 1280x800 60 Hz
hdmi_mode=29 1280x800 75 Hz
hdmi_mode=30 1280x800 85 Hz
hdmi_mode=31 1280x800 120 Hz Reduced blanking
hdmi_mode=32 1280x960 60 Hz
hdmi_mode=33 1280x960 85 Hz
hdmi_mode=34 1280x960 120 Hz Reduced blanking
hdmi_mode=35 1280x1024 60 Hz
hdmi_mode=36 1280x1024 75 Hz
hdmi_mode=37 1280x1024 85 Hz
hdmi_mode=38 1280x1024 120 Hz Reduced blanking
hdmi_mode=39 1360x768 60 Hz
hdmi_mode=40 1360x768 120 Hz Reduced blanking
hdmi_mode=41 1400x1050 Reduced blanking
hdmi_mode=42 1400x1050 60 Hz
hdmi_mode=43 1400x1050 75 Hz
hdmi_mode=44 1400x1050 85 Hz
hdmi_mode=45 1400x1050 120 Hz Reduced blanking
hdmi_mode=46 1440x900 Reduced blanking
hdmi_mode=47 1440x900 60 Hz
hdmi_mode=48 1440x900 75 Hz
hdmi_mode=49 1440x900 85 Hz
hdmi_mode=50 1440x900 120 Hz Reduced blanking
hdmi_mode=51 1600x1200 60 Hz
hdmi_mode=52 1600x1200 65 Hz
hdmi_mode=53 1600x1200 70 Hz
hdmi_mode=54 1600x1200 75 Hz
hdmi_mode=55 1600x1200 85 Hz
hdmi_mode=56 1600x1200 120 Hz Reduced blanking
hdmi_mode=57 1680x1050 Reduced blanking
hdmi_mode=58 1680x1050 60 Hz
hdmi_mode=59 1680x1050 75 Hz
hdmi_mode=60 1680x1050 85 Hz
hdmi_mode=61 1680x1050 120 Hz Reduced blanking
hdmi_mode=62 1792x1344 60 Hz
hdmi_mode=63 1792x1344 75 Hz
hdmi_mode=64 1792x1344 120 Hz Reduced blanking
hdmi_mode=65 1856x1392 60 Hz
hdmi_mode=66 1856x1392 75 Hz
hdmi_mode=67 1856x1392 120 Hz Reduced blanking
hdmi_mode=68 1920x1200 Reduced blanking
hdmi_mode=69 1920x1200 60 Hz
hdmi_mode=70 1920x1200 75 Hz
hdmi_mode=71 1920x1200 85 Hz
hdmi_mode=72 1920x1200 120 Hz Reduced blanking
hdmi_mode=73 1920x1440 60 Hz
hdmi_mode=74 1920x1440 75 Hz
hdmi_mode=75 1920x1440 120 Hz Reduced blanking
hdmi_mode=76 2560x1600 Reduced blanking
hdmi_mode=77 2560x1600 60 Hz
hdmi_mode=78 2560x1600 75 Hz
hdmi_mode=79 2560x1600 85 Hz
hdmi_mode=80 2560x1600 120 Hz Reduced blanking
hdmi_mode=81 1366x768 60 Hz
hdmi_mode=82 1080p 60 Hz
hdmi_mode=83 1600x900 Reduced blanking
hdmi_mode=84 2048x1152 Reduced blanking
hdmi_mode=85 720p 60 Hz
hdmi_mode=86 1366x768 Reduced blanking

User avatar
01micko
Posts: 8741
Joined: Sat 11 Oct 2008, 13:39
Location: qld
Contact:

#136 Post by 01micko »

linux28 wrote:Debian-Pi-Aarch64 puppy?

Is there a 64-bit puppy?
Hopefully one day soon with either devuan or slackware compatibility
Puppy Linux Blog - contact me for access

User avatar
01micko
Posts: 8741
Joined: Sat 11 Oct 2008, 13:39
Location: qld
Contact:

#137 Post by 01micko »

Polivko wrote:01micko,
Any updates from viewing logs from Raspbian and Raspup? Is there any possibility to fix the camera drivers loading? Thank you.
I had no luck fixing this or finding the cause. I released final with this deficiency but the reason for that is to hopefully attract a wider audience which , theoretically , should find and fix more bugs. I stress hopefully.
Puppy Linux Blog - contact me for access

User avatar
01micko
Posts: 8741
Joined: Sat 11 Oct 2008, 13:39
Location: qld
Contact:

#138 Post by 01micko »

Raspup Buster Final Released!

See main post.
Puppy Linux Blog - contact me for access

User avatar
Lobster
Official Crustacean
Posts: 15522
Joined: Wed 04 May 2005, 06:06
Location: Paradox Realm
Contact:

#139 Post by Lobster »

Hi Mick,

Just been fiddling getting my microsd card to boot with 8.2 Final. Don't think anything is wrong just an idiot cructacean ... :oops:

Will try again soon ... :D

The new raspup website is really good. Info clear (follow the release notes)
http://raspup.eezy.xyz/index.php

Congratulations. Updated wiki page ... 8)

Puppy LinuX Raspup
Puppy Raspup 8.2Final 8)
Puppy Links Page http://www.smokey01.com/bruceb/puppy.html :D

Dud
Posts: 59
Joined: Sat 04 Jun 2011, 18:17

#140 Post by Dud »

Wheee - here we go...

Thanks Micko, This sort of thing is a lot of work and we appreciate it.

I've had a headless multipurpose server running the pre-release Raspup on ethernet for the last fortnight and I'll shift everything to the final release asap.

Essentially: VNC, FTP, Samba, CUPS and the beginnings of a webserver; more proof of concept then actual working webserver at this stage.

,,,and, once the setup headscratchings were over, it has been rock solid.

I only took it down once to update the firmware after I saw the improvement on my other Pi4

Happy New Year

Post Reply