LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Slackware (https://www.linuxquestions.org/questions/slackware-14/)
-   -   How do I remove PDF studio (https://www.linuxquestions.org/questions/slackware-14/how-do-i-remove-pdf-studio-4175735290/)

JinxsDad 03-25-2024 09:04 AM

How do I remove PDF studio
 
Warning: Potentially stupid question after trying everything I know to think of:

As the subject says, how do I remove PDF studio? sbopkg doesn't know it's installed (or at least, that's what it says), but I want this bit of commercial garbage off of my system as soon as possible so file manager will choose okular instead of pdf studio (I change it temporarily by "open with" but it always goes back to pdf studio.

Thanks

ctrlaltca 03-25-2024 09:20 AM

Did you install it from the website package?
They have instructions to uninstall: https://kbpdfstudio.qoppa.com/uninst...udio-on-linux/

JinxsDad 03-25-2024 04:23 PM

Quote:

Originally Posted by ctrlaltca (Post 6491817)
Did you install it from the website package?
They have instructions to uninstall: https://kbpdfstudio.qoppa.com/uninst...udio-on-linux/

No, I used the curses (or ncurses) version of sbopkg.

Thanks

RadicalDreamer 03-25-2024 04:58 PM

Probably:
Code:

removepkg pdfstudio

JinxsDad 03-26-2024 12:20 PM

Quote:

Originally Posted by RadicalDreamer (Post 6491917)
Probably:
Code:

removepkg pdfstudio

Tried that. It said that no such package is installed (something to that effect).

pan64 03-26-2024 12:34 PM

first of all, if you want to change file manager you need to configure that. This change can be permanent, you need to tell it to remember the new settings.
You need to know how did you install it, and most probably the same way you can uninstall it too. But uninstalling it will not change the settings in file manager.

Julius-Caesar 03-26-2024 02:53 PM

ls /var/log/packages | grep pdf

to know the package name for uninstall it

Windu 03-26-2024 03:06 PM

SlackBuilds.org has both "pdfstudio" and "pdfstudioviewer" entries.
Based on your comment that you used sbopkg to install it, it must have an entry in /var/log/packages/ and since "removepkg pdfstudio" did not work, Julius-Caesar's suggestion will likely show that you actually installed "pdfstudioviewer".

JinxsDad 03-26-2024 10:27 PM

Quote:

Originally Posted by Windu (Post 6492115)
SlackBuilds.org has both "pdfstudio" and "pdfstudioviewer" entries.
Based on your comment that you used sbopkg to install it, it must have an entry in /var/log/packages/ and since "removepkg pdfstudio" did not work, Julius-Caesar's suggestion will likely show that you actually installed "pdfstudioviewer".

Except that it didn't work for either of them.

babydr 03-26-2024 10:49 PM

@jinxdad , Ill take JuliusCeasar's suggestion one step further ...

please run

Code:


ls -al /var/log/packages | grep -i pdf

And Please provide all the output & proof's it was run as shown above .

Windu 03-27-2024 01:20 AM

Quote:

Originally Posted by babydr (Post 6492189)
@jinxdad , Ill take JuliusCeasar's suggestion one step further ...

please run

Code:


ls -al /var/log/packages | grep -i pdf

And Please provide all the output & proof's it was run as shown above .

The problem is that this command will never yield a result, because 'packages' is a symlink:
Code:

lrwxrwxrwx 1 root root 24 Jun 27  2018 /var/log/packages -> ../lib/pkgtools/packages/
The correct command to run needs an additional slash:
Code:

ls -al /var/log/packages/ | grep -i pdf

kgha 03-27-2024 01:39 AM

The sourcepackage mentioned on slackbuilds.org (PDFStudio_v2020_4_0_linux64.deb) is no longer available, so no clue there.
I have pdfstudio (latest version) installed using pdfstudio's own installer which gives me an uninstall script located in /opt/pdfstudio2023
Might be worth taking a look in your /opt directory and see if you can find something similar.

chrisretusn 03-27-2024 03:38 AM

This will work:
Code:

ls -al /var/log/packages/ | grep -i pdf

JinxsDad 03-27-2024 06:33 AM

Quote:

Originally Posted by Julius-Caesar (Post 6492110)
ls /var/log/packages | grep pdf

to know the package name for uninstall it

That did it. It was 2-pdfstudio. Thanks. Marking this thread solved.

henca 03-27-2024 01:11 PM

Quote:

Originally Posted by chrisretusn (Post 6492216)
This will work:
Code:

ls -al /var/log/packages/ | grep -i pdf

Another way to find out the name of an installed package is if you know the name of some contents in the package.

I don't know if that program was called by the command "pdfstudio", but if it were, it would also have been possible to find the package with:

Code:

grep pdfstudio /var/log/packages/*
regards Henrik


All times are GMT -5. The time now is 03:24 AM.