New AppImage Installer GUI app +Flatpak Installer

Moderator: BarryK

User avatar
BarryK
Posts: 2251
Joined: Tue Dec 24, 2019 1:04 pm
Has thanked: 93 times
Been thanked: 552 times

Re: New AppImage Installer GUI app +Flatpak Installer

Post by BarryK »

@esos , @bugnaw333 ,
I have removed Balena Etcher from the AppImage Installer. Reasons in blog post:

https://bkhome.org/news/202306/goodbye- ... image.html

I was shocked reading so many bug reports on their forum.
Plus, my own experience is pretty awful.

In EasyOS we don't need it, we have EasyDD. Maybe Etcher works nicely on Windows?

superhik
Posts: 8
Joined: Mon Jun 19, 2023 7:56 pm
Been thanked: 2 times

Re: New AppImage Installer GUI app +Flatpak Installer

Post by superhik »

BarryK wrote: Tue Jun 27, 2023 1:15 pm

@esos , @bugnaw333 ,
I have removed Balena Etcher from the AppImage Installer. Reasons in blog post:

https://bkhome.org/news/202306/goodbye- ... image.html

I was shocked reading so many bug reports on their forum.
Plus, my own experience is pretty awful.

In EasyOS we don't need it, we have EasyDD. Maybe Etcher works nicely on Windows?

Barry you can't even trust the file managers in Linux when you copy big files to the usb sticks.
Although the progress indicates that the copy operation is done it still writes for some time.
Linux reacts weird to the slow storage devices.

I use this script I picked up from somewhere which a Generic Monitor panel plugin runs periodically every two seconds to display a line on an Xfce panel.
It tells me if the Usb stick is in idle or writing something.

Code: Select all

#!/bin/bash

if ls -l /dev/disk/by-path/*usb* &>/dev/null; then

	USB_DET=($(ls -l /dev/disk/by-path/*usb* | grep -v "part" | awk '{print $NF}' | awk -F "/" '{print $NF}' | sort))

	for usb in "${USB_DET[@]}"
	do
		if [ $(awk "{ print \$9 }" /sys/block/$usb/stat) -gt 0 ]
		then
			sector_size=$(cat /sys/block/$usb/queue/hw_sector_size)

			DATA_WRITTEN=$(awk '{load = $7*sector/1000/1000
						printf "%.1f", load}'  sector="$sector_size" /sys/block/$usb/stat)
        		printf "%s: %s%s " "$usb" "$DATA_WRITTEN" "MiB"
		else
			printf "%s: %s " "$usb" "idle"
		fi
	done
else
	echo "USB None"
fi

Stealing from the poor to give to the rich!

williwaw
Posts: 1577
Joined: Tue Jul 14, 2020 11:24 pm
Has thanked: 143 times
Been thanked: 288 times

Re: New AppImage Installer GUI app +Flatpak Installer

Post by williwaw »

BarryK wrote: Tue Jun 27, 2023 1:15 pm

Maybe Etcher works nicely on Windows?

havent tried this myself yet.....

Diskimager

User avatar
bugnaw333
Posts: 227
Joined: Wed Jul 20, 2022 11:04 pm
Location: Cebu, Philippines
Has thanked: 338 times
Been thanked: 32 times

Re: New AppImage Installer GUI app +Flatpak Installer

Post by bugnaw333 »

BarryK wrote: Tue Jun 27, 2023 1:15 pm

@esos , @bugnaw333 ,
I have removed Balena Etcher from the AppImage Installer. Reasons in blog post:

https://bkhome.org/news/202306/goodbye- ... image.html

I was shocked reading so many bug reports on their forum.
Plus, my own experience is pretty awful.

In EasyOS we don't need it, we have EasyDD. Maybe Etcher works nicely on Windows?

Im using EasyDD for EasyOS image and other Linux distro. Etcher works nicely on Windows but I prefer Rufus on .iso that does not have a bootloader. :(

superhik
Posts: 8
Joined: Mon Jun 19, 2023 7:56 pm
Been thanked: 2 times

Re: New AppImage Installer GUI app +Flatpak Installer

Post by superhik »

bugnaw333 wrote: Wed Jun 28, 2023 1:44 am

Im using EasyDD for EasyOS image and other Linux distro. Etcher works nicely on Windows but I prefer Rufus on .iso that does not have a bootloader. :(

Rufus for Windows.
For Linux spins and respins I'm using EtchDroid on an Android phone with OTP.
Linux on desktops is slow for this task, it takes too much time to write to the USB flash drives.

Stealing from the poor to give to the rich!

esos
Posts: 151
Joined: Thu Feb 18, 2021 4:33 am
Been thanked: 17 times

Re: New AppImage Installer GUI app +Flatpak Installer

Post by esos »

I got echer.appimage from other source and worked ok. Nothing to do with windows.

williwaw
Posts: 1577
Joined: Tue Jul 14, 2020 11:24 pm
Has thanked: 143 times
Been thanked: 288 times

Re: New AppImage Installer GUI app +Flatpak Installer

Post by williwaw »

williwaw wrote: Tue Jun 27, 2023 8:09 pm
BarryK wrote: Tue Jun 27, 2023 1:15 pm

Maybe Etcher works nicely on Windows?

havent tried this myself yet.....

Diskimager

I downloaded Diskimager and unzipped it on a windows7 desktop
It doesn't need to be installed and can be run from the folder. Simple to use, it offers to write an image to disk or a disk to image.

Attachments
DiskImager.zip
(535.46 KiB) Downloaded 52 times
User avatar
BarryK
Posts: 2251
Joined: Tue Dec 24, 2019 1:04 pm
Has thanked: 93 times
Been thanked: 552 times

Re: New AppImage Installer GUI app +Flatpak Installer

Post by BarryK »

superhik wrote: Tue Jun 27, 2023 5:20 pm
BarryK wrote: Tue Jun 27, 2023 1:15 pm

@esos , @bugnaw333 ,
I have removed Balena Etcher from the AppImage Installer. Reasons in blog post:

https://bkhome.org/news/202306/goodbye- ... image.html

I was shocked reading so many bug reports on their forum.
Plus, my own experience is pretty awful.

In EasyOS we don't need it, we have EasyDD. Maybe Etcher works nicely on Windows?

Barry you can't even trust the file managers in Linux when you copy big files to the usb sticks.
Although the progress indicates that the copy operation is done it still writes for some time.
Linux reacts weird to the slow storage devices.

I use this script I picked up from somewhere which a Generic Monitor panel plugin runs periodically every two seconds to display a line on an Xfce panel.
It tells me if the Usb stick is in idle or writing something.

EasyDD uses "sync" parameters for the 'dd' utility, that will only report completed when the write is fully flushed to the drive.

I wrote EasyDD in a few hours (and a few more tweaking it) and it "just works", whereas Balena Etcher started life in 2016 and still has heaps of bugs -- despite being actively developed all that time.

And yes, there are alternatives for Windows that work great. Perhaps Etcher does work ok on Windows.

User avatar
Federico
Posts: 142
Joined: Tue Jun 20, 2023 2:40 pm
Has thanked: 1 time
Been thanked: 19 times

Re: New AppImage Installer GUI app +Flatpak Installer

Post by Federico »

@ everyone

Hi all, remember to activate Time from Internet on QuickSetup, and also the qsync daemon, otherwise Flapi won't work correctly. It would be appropriate to add a warning for this on Flapi, imho.

Desktop PC
Case: Sharkoon S25-W MB: Asus Rog Strix B550-A PSU: XFX Pro 750W CPU: AMD Ryzen 5700X @ 4.6 GHz RAM: Corsair 32 GB DDR4 @ 3000 MHz Heatsink: Scythe Mugen 5 rev. B VGA: Asus Tuf RTX 3080 12 GB OC

Laptop PC: Asus Zenbook UX325E

pup2023
Posts: 17
Joined: Mon Jun 19, 2023 10:26 am
Has thanked: 11 times
Been thanked: 3 times

Re: New AppImage Installer GUI app +Flatpak Installer

Post by pup2023 »

AppImage Installer is it works in pyppylinux ?

(FatDog & Slacko user / all Puppy Linux - test) FatDog-812

User avatar
BarryK
Posts: 2251
Joined: Tue Dec 24, 2019 1:04 pm
Has thanked: 93 times
Been thanked: 552 times

Re: New AppImage Installer GUI app +Flatpak Installer

Post by BarryK »

pup2023 wrote: Thu Jul 13, 2023 11:50 am

AppImage Installer is it works in pyppylinux ?

No.
It could be made to work, but a lot of work to port it.

Berto
Posts: 127
Joined: Wed Feb 02, 2022 12:42 am
Has thanked: 11 times
Been thanked: 12 times

Re: New AppImage Installer GUI app +Flatpak Installer

Post by Berto »

Good day everyone,

I don't know what problems many of you have with writing .iso or .img files to usb. Most times I download distros with CP, then just copy to laptop and write with EasyDD. Even EasyDD is not necessary, years ago I simply copied the images to usb. Worked also most times, just sometimes faulty.

But one thing I really don't understand: What for you're using Ventoy? If you have for example EasyOS installed on USB, you can install Limemine or grub4dos, and can boot all other distros you put on your stick. No need for complicated Ventoy.

Regards,

Berto

ASUS Netbook, Intel Atom N450, Nvidia / ASUS Notebook Pro 78S, Core i7, Nvidia

josepinto
Posts: 2
Joined: Mon Mar 07, 2022 6:57 pm

Re: New AppImage Installer GUI app +Flatpak Installer

Post by josepinto »

HI,

Would it be possible to test RssGuard Appimage an add it to the installer?

Description:
RSS Guard is a simple RSS/ATOM feed reader for Windows, Linux, BSD, OS/2 or macOS which can work with RSS/ATOM/JSON feeds as well as many online feed services:

Feedly
Gmail
Google Reader API (Bazqux, FreshRSS, Inoreader, Miniflux, Reedah, The Old Reader and more)
Nextcloud News
Tiny Tiny RSS
Link: https://github.com/martinrotter/rssguar ... 4.AppImage

Thanks in advance.

José Pinto

Caramel
Posts: 309
Joined: Sun Oct 02, 2022 6:25 pm
Location: France
Has thanked: 77 times
Been thanked: 50 times

Re: New AppImage Installer GUI app +Flatpak Installer

Post by Caramel »

josepinto wrote: Wed Sep 06, 2023 3:40 pm

HI,

Would it be possible to test RssGuard Appimage an add it to the installer?

Description:
RSS Guard is a simple RSS/ATOM feed reader for Windows, Linux, BSD, OS/2 or macOS which can work with RSS/ATOM/JSON feeds as well as many online feed services:

Feedly
Gmail
Google Reader API (Bazqux, FreshRSS, Inoreader, Miniflux, Reedah, The Old Reader and more)
Nextcloud News
Tiny Tiny RSS
Link: https://github.com/martinrotter/rssguar ... 4.AppImage

Thanks in advance.

José Pinto

For add RssGuard to Appi (the Appimage installer)

- copy this png in /usr/share/pixmaps

rssguard.png
rssguard.png (2.93 KiB) Viewed 891 times

-In /usr/local/appimage/entries/amd64 add the line

Code: Select all

<item icon-name=\"rssguard\">RssGuard|${FLGrssguard}|161M|$(gettext 'RSS Guard is a simple feed reader')</item>

(For the description : RSS Guard is a simple feed reader, you can change it. It's the text displayed in Appi. See at the bottom of the picture :

capture19650.png
capture19650.png (100.09 KiB) Viewed 891 times

I had added the line at the end of the section ENTRIESnetwork

- in /usr/local/appimage add the line

Code: Select all

 RssGuard) DIRECTDL='https://github.com/martinrotter/rssguard/releases/download/4.5.0/rssguard-4.5.0-7175578b6-linux64.AppImage'; DIRECTVER='4.5.0'; MENUcat='X-Internet-browser'; MENUtop='Internet'; MENUname='RssGuard'; ;;

at the list of appimages after case "${aAPP}" in (line 217)

NB : I do not know all the categories in MENUcat so i have chosen X-Internet-browser already in the list

I have tested the installation but not the software.

User avatar
wiak
Posts: 3623
Joined: Tue Dec 03, 2019 6:10 am
Location: Packing - big job
Has thanked: 56 times
Been thanked: 989 times
Contact:

Re: New AppImage Installer GUI app +Flatpak Installer

Post by wiak »

Came across an alternative AppImage installer that seems to be based on the way Arch Linux AUR does things. Quite a few people in the dev team for it. See my post here for brief summary related to my trial of it: https://forum.puppylinux.com/viewtopic. ... 990#p99990

I'm interested to know how it compares to this EasyOS AppImage installer.

https://www.tinylinux.info/
DOWNLOAD wd_multi for hundreds of 'distros' at your fingertips: viewtopic.php?p=99154#p99154
Αξίζει να μεταφραστεί;

User avatar
BarryK
Posts: 2251
Joined: Tue Dec 24, 2019 1:04 pm
Has thanked: 93 times
Been thanked: 552 times

Re: New AppImage Installer GUI app +Flatpak Installer

Post by BarryK »

wiak wrote: Sat Sep 30, 2023 9:44 am

I'm interested to know how it compares to this EasyOS AppImage installer.

EasyOS AppImage Installer:

1. GUI app
2. Installs each app to run as it's own user. For example, OpenShot will run as user "openshot" with home folder /home/openshot -- other apps cannot see into it.
3. AppImages install directly to the working-partition, not within the folder-hierarchy that runs in RAM. For example, not under /opt.
4. Updating supported.
5. /files/apps/<app name> special folder created, for saving project files, that other apps cannot see into. This is also direct to the working-partition.

Pretty much EasyOS-specific. In theory, could be made to run on some other pup-derivative, but quite a lot of work involved in the port.

User avatar
mouldy
Posts: 414
Joined: Tue Dec 08, 2020 3:53 pm
Has thanked: 23 times
Been thanked: 98 times

Re: New AppImage Installer GUI app +Flatpak Installer

Post by mouldy »

I have never tried app image version Balena Etcher in Easy. But have had it for long time in MX-19 and its worked flawlessly. I dont remember where I got it, but its balenaEtcher-1.7.9-x64.AppImage. Been while now, but think Rufus will run in WINE, know I tried it at one point, but too long ago to remember any details. dd is of course always an option. I just kept using balenaEtcher cause it worked and stupid simple interface.

User avatar
bugnaw333
Posts: 227
Joined: Wed Jul 20, 2022 11:04 pm
Location: Cebu, Philippines
Has thanked: 338 times
Been thanked: 32 times

Re: New AppImage Installer GUI app +Flatpak Installer

Post by bugnaw333 »

Stand alone Balena etcher appimage will work on EasyOS but not the installed version before. ;)

kinoe
Posts: 24
Joined: Wed Jun 29, 2022 5:15 am
Been thanked: 1 time

Re: New AppImage Installer GUI app +Flatpak Installer

Post by kinoe »

I would suggest Thorium browser to integrate as installable AppImage. Its a quite fast, effective and more recent version of a Chromium fork as "ungoogled Chromium"

Post Reply

Return to “EasyOS”