Page 1 of 1

List of installed aplications: Where is it? [SOLVED]

Posted: Sat Apr 22, 2023 7:37 am
by pp4mnklinux

]Hello everybody:

Can any of you help me and tell me where can I find a list of all installed aplications in your puppy?

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

I can't remember, but I remember than in my xenialpup I have an option to list all the installed apps.-

I can find the aplications at .jwmrc, but I must edit them. Can I find a clear list only with the names of the installed programs ??

Can you help me ?

THANKS A LOT.-

_________________________________________

Solved: Terminal

Code: Select all

cut -f 1,5,10 -d \|  /var/packages/woof-installed-packages > /root/my-installed-packages.csv

Re: List of installed aplications: Where is it?

Posted: Sat Apr 22, 2023 9:30 am
by Feek
pp4mnklinux wrote: Sat Apr 22, 2023 7:37 am

Can any of you help me and tell me where can I find a list of all installed aplications in your puppy?

Try looking in /var/packages


Re: List of installed aplications: Where is it?

Posted: Sat Apr 22, 2023 10:37 am
by mikewalsh

/root/.packages works for me.....

Mike. ;)


Re: List of installed aplications: Where is it?

Posted: Sat Apr 22, 2023 7:40 pm
by Chelsea80

@ pp4mnklinux

Yep, mine in BionicPup32-8.0+28 (UPupBB-19.03) - Frugal Install Internal HDD is

/var/packages

Best regards

Chelsea80


Re: List of installed aplications: Where is it?

Posted: Sat Apr 22, 2023 7:50 pm
by Flash

I don't know if this is what you want, but if I open a terminal emulator and hit the Tab key (in Sakura, I have to hit it twice), then the Y key, I get a list of every program that's installed. I have to keep hitting the Enter key to see the whole list. This has worked in every variant of Puppy that I've tried it in.


Re: List of installed aplications: Where is it?

Posted: Sat Apr 22, 2023 8:05 pm
by pp4mnklinux

Thanks... but what I want is the name of the file where I can find a list of all the installed aplications.

With this I can made a list, but it is a lot of work, so what I want to know ... Is it a file with the list of all preinstalled apps?

Thanks for your help.

(The reason is add it to my derivative, so everybody can know what it has got)

Have a nice day.


Re: List of installed aplications: Where is it?

Posted: Sat Apr 22, 2023 8:22 pm
by wizard

This file is for F96-CE_4, it is most of the files listed in the Menu.

Programs_Installed-F96forum.xls
(26.5 KiB) Downloaded 48 times

wizard


Re: List of installed aplications: Where is it?

Posted: Sat Apr 22, 2023 8:47 pm
by Chelsea80

@ pp4mnklinux

I can not, so do not, code so this might seem like a shot in the dark -

If you or someone can create a script to extract the file name only of your /var/packages contents to, say, a CSV (Comma Separated Value) format -

Then port this CSV to a word processor where you can edit to your hearts content -

In theory sounds good, in practice I haven't a clue -

Good luck -

Best regards

Chelsea80


Re: List of installed aplications: Where is it?

Posted: Sat Apr 22, 2023 8:57 pm
by pp4mnklinux

Thanks, but this is "A partial list of installed programs" in F96CE...

wizard wrote: Sat Apr 22, 2023 8:22 pm

This file is for F96-CE_4, it is most of the files listed in the Menu.
Programs_Installed-F96forum.xls
wizard

The other solution, as you said implies a lot of work, time and dedication.......

Thanks


Re: List of installed aplications: Where is it?

Posted: Sat Apr 22, 2023 9:14 pm
by wizard

"Partial" being more than 95% of the Menu items. Since your remaster is based on F96-CE, it would be little work to make it 100% if you deem necessary.

wizard


Re: List of installed aplications: Where is it?

Posted: Sat Apr 22, 2023 9:18 pm
by Chelsea80

@ pp4mnklinux

OK, my last at this -

In BionicPup32-8.0+28 (UPupBB-19.03) - Frugal Install Internal HDD

I go to Applications > Setup > Remove builtin packages -

From the list that is shown -

Take screen shot -

Scroll down, take a screen shot -

Repeat until end of list -

A long job I know but it can be done in stages when time allows -

My limited knowledge has now been exhausted -

Best regards

Chelsea80


Re: List of installed aplications: Where is it?

Posted: Sat Apr 22, 2023 9:27 pm
by pp4mnklinux

Please, @wizard , take a look at the capture, it's not me who define this list as "partial" 🤣 .

wizard wrote: Sat Apr 22, 2023 9:14 pm

"Partial" being more than 95% of the Menu items. Since your remaster is based on F96-CE, it would be little work to make it 100% if you deem necessary.

wizard

Thanks a lot for your answers. In conclusion "there is no file with this data"

Thanks a lot for your suggestions of how to obtain this info using different files.

Thanks a lot


Re: List of installed aplications: Where is it?

Posted: Sun Apr 23, 2023 2:04 am
by MochiMoppel
wizard wrote: Sat Apr 22, 2023 8:22 pm

This file is for F96-CE_4, it is most of the files listed in the Menu.
Programs_Installed-F96forum.xls
wizard

@wizard What's the source of your spreadsheet?


Re: List of installed aplications: Where is it?

Posted: Sun Apr 23, 2023 3:04 am
by bigpup

what I want is the name of the file where I can find a list of all the installed aplications.

It is more than one file.

But the way the files are written, you will have a hard time reading them.

Example:
woof-installed-packages
.

Screenshot(1).jpg
Screenshot(1).jpg (147.23 KiB) Viewed 853 times

.
.
If all you want is a list of the installed full programs, just their names, not also all the files that makeup a program.

JWMdesk -> Menu Tab -> Menu Manager -> Item Editor

This will have every installed program listed under the different menu sections.

Click on a section name and a list of all programs for that section will show.
.

Screenshot(2).jpg
Screenshot(2).jpg (47.53 KiB) Viewed 853 times

.
.


Re: List of installed aplications: Where is it? [SOLVED] (There's NO one file, but "a lot")

Posted: Sun Apr 23, 2023 6:57 am
by HerrBert

what I want is the name of the file where I can find a list of all the installed aplications.

Create your own file with:

Code: Select all

cut -f 1,5,10 -d \|  /var/packages/woof-installed-packages > /root/my-installed-packages.csv

When opening as spreadsheet choose | as separator


Re: List of installed aplications: Where is it? [SOLVED] (There's NO one file, but "a lot")

Posted: Sun Apr 23, 2023 7:06 am
by pp4mnklinux

@HerrBert , Thanks a lot.


Re: List of installed aplications: Where is it? [SOLVED]

Posted: Sun Apr 23, 2023 7:55 am
by HerrBert

@pp4mnklinux Intention was to separate remaining fields into columns by choosing | as separator:

separator.jpg
separator.jpg (77.49 KiB) Viewed 825 times
columns.jpg
columns.jpg (151.9 KiB) Viewed 825 times

So this is import to openoffice, but IIRC gnumeric offers the selection of separator too...


Re: List of installed aplications: Where is it? [SOLVED]

Posted: Sun Apr 23, 2023 8:39 am
by MochiMoppel

@pp4mnklinux Why did you mark this thread [SOLVED]?
Are you sure that the applications listed in woof-installed-packages are actually installed? This list seems to be a generic list and is virtually identical in F96-CE, Vanilla Dpup and Jammy64pup, but the SW installed in these 3 distros is different and not all applications in the list are actually installed. And then there are many applications installed but not in any list.


Re: List of installed aplications: Where is it? [SOLVED]

Posted: Sun Apr 23, 2023 12:54 pm
by wizard

@MochiMoppel

My spreadsheet list was created from the Puppy Menu manually.

Thanks
wizard