LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 08-29-2018, 08:18 AM   #1
dedec0
Senior Member
 
Registered: May 2007
Posts: 1,372

Rep: Reputation: 51
Question Is this old PPS file uneditable?


A fairly old PPS presentation file, from ~2007.08.19. By doubleclicking on it in Debian 9, it simply starts the presentation. By opening it in LibreOffice 5.2.7.2, it also starts the presentation.

Is it impossible to edit this file? To: change the music, copy the text, etc.

Further, parts of what is written in each page is hidden - so the presentation view is unsatisfiable.

Here is PPS file, it is only 324 KiB, do not worry.

https://nofile.io/f/9MGShdHOFSD/fati...a_%28M%29_.pps

If this file eventually is removed from nofile address above, ask me. I upload it again. It will be there at least for 30 days - it seems.
 
Old 08-29-2018, 09:21 AM   #2
rtmistler
Moderator
 
Registered: Mar 2011
Location: USA
Distribution: MINT Debian, Angstrom, SUSE, Ubuntu, Debian
Posts: 9,883
Blog Entries: 13

Rep: Reputation: 4931Reputation: 4931Reputation: 4931Reputation: 4931Reputation: 4931Reputation: 4931Reputation: 4931Reputation: 4931Reputation: 4931Reputation: 4931Reputation: 4931
Don't double click it. Open the proper utility to edit a presentation and then open that file and edit it.
 
Old 08-29-2018, 09:49 AM   #3
dedec0
Senior Member
 
Registered: May 2007
Posts: 1,372

Original Poster
Rep: Reputation: 51
Quote:
Originally Posted by rtmistler View Post
Don't double click it. Open the proper utility to edit a presentation and then open that file and edit it.
But I did that! I opened LibreOffice Impress, ctrl+o, found the pps file, opened it, and the presentation just started - the same as the doubleclick triggered. I repeated these steps now, to make sure I did not miss anything. The file did not open for editing.
 
Old 08-29-2018, 10:13 AM   #4
rtmistler
Moderator
 
Registered: Mar 2011
Location: USA
Distribution: MINT Debian, Angstrom, SUSE, Ubuntu, Debian
Posts: 9,883
Blog Entries: 13

Rep: Reputation: 4931Reputation: 4931Reputation: 4931Reputation: 4931Reputation: 4931Reputation: 4931Reputation: 4931Reputation: 4931Reputation: 4931Reputation: 4931Reputation: 4931
It's because PPS is a Microsoft Office Autoplay format.

Rename it to either PPT or ODP.
 
1 members found this post helpful.
Old 08-29-2018, 11:15 AM   #5
dedec0
Senior Member
 
Registered: May 2007
Posts: 1,372

Original Poster
Rep: Reputation: 51
Talking

Quote:
Originally Posted by rtmistler View Post
It's because PPS is a Microsoft Office Autoplay format.

Rename it to either PPT or ODP.
That solves it! That is very strange.

So the same applies to all PPS files? Can I remove their "special" default action, so they are edited easierly if so desired?
 
Old 08-29-2018, 11:36 AM   #6
dedec0
Senior Member
 
Registered: May 2007
Posts: 1,372

Original Poster
Rep: Reputation: 51
Question Other discussion and a few solutions

I just found an old OOO thread about the automatic PPS annoyance. You can read it here:

https://forum.openoffice.org/en/foru...=23250#p116782

There is one solution there that I find appealing:

Quote:
Originally Posted by https://forum.openoffice.org/en/forum/viewtopic.php?f=10&t=23250#p116782 with a few (unchanging) manual edits to post it here


Re: [Solved] Open pps files in edit instead of presentation mode

Postby danielias » Wed Dec 16, 2009 8:48 pm

Much like fpflug, I hate .pps files opening automatically in presentation mode.
Mainly because of those "elaborated" presentations coming via e-mail, with the letters falling down from the top of the page - one at a time - to form frases (argh!)
The solution below worked fine for me. Try it.

The command ooimpress has the -n option:

$ ooimpress -n filename

which is intended to create/edit a new file, using filename as a template.
To all intents and purposes, it is the same of opening filename in edition mode.

So, just create a shell script named ooimpress-edit (or whatever) containing:

Code:
#!/bin/bash

# The special parameter $*, within double quotes,
# expands to the positional parameters, starting from one,
# as a single word, with the value of each parameter 
# separated by white space (the first character of the IFS 
# special variable). It is necessary if the passed file name
# has spaces.
ooimpress -n "$*"
exit
As root, save this file to /usr/local/bin (which should be in your $PATH). Don't forget to make it executable! (I mention it because I always do...)

Then edit the "file associations" (mime types) and include ooimpress-edit as the first option to open .pps files.
Of course, do the same in your e-mail client (in Thunderbird: Preferences->Attachments->View & Edit Actions...).

Cheers
I want to use ooimpress -n "$*" for all PPS files opened from whatever program I use (browser, mail manager, Matedesktop file manager, and CLI xdg-open are the ones I mostly use) to open them. Do I still need to create the script? And where should I change (or add as the first option, keeping the normal one that exists right now?

Last edited by dedec0; 08-29-2018 at 01:45 PM.
 
Old 08-29-2018, 11:46 AM   #7
dedec0
Senior Member
 
Registered: May 2007
Posts: 1,372

Original Poster
Rep: Reputation: 51
A fairly old LQ thread about the same subject:

LQ linux-software-2/libreoffice-starting-pps-files-automatically-896858
 
Old 08-29-2018, 12:19 PM   #8
rtmistler
Moderator
 
Registered: Mar 2011
Location: USA
Distribution: MINT Debian, Angstrom, SUSE, Ubuntu, Debian
Posts: 9,883
Blog Entries: 13

Rep: Reputation: 4931Reputation: 4931Reputation: 4931Reputation: 4931Reputation: 4931Reputation: 4931Reputation: 4931Reputation: 4931Reputation: 4931Reputation: 4931Reputation: 4931
Quote:
Originally Posted by dedec0 View Post
That solves it! That is very strange.

So the same applies to all PPS files? Can I remove their "special" default action, so they are edited easierly if so desired?
Well I don't know and I'm not invested enough to have it keep me up nights.

I figured since I happen to be booted to Windows but also have a Mint VM, I could create native files either using PowerPoint or LibreOffice. It was at that point where I learned what the PPS file type really meant - even though I could've googled for it.

I mean I knew that PowerPoint would make PPT files and learned that LibreOffice makes ODP files. So I did a Save As action to save it as PPS and learned that it was Microsoft Office Power Point Autoplay or something like that name/description. After that I changed the extension and it worked in both cases. Probably because it was a current, or new, file. Meanwhile something very old? Who knows, but it seemed to have worked for your file. I can only assume that it was a former way to protect a presentation from someone editing it and changing it, like PDF files used to be.
 
Old 08-29-2018, 12:36 PM   #9
dedec0
Senior Member
 
Registered: May 2007
Posts: 1,372

Original Poster
Rep: Reputation: 51
@ #8

Well... I will rarely use a PPS file (as PPT and ODP). But I have a lot of them in old messages. Renaming them every time is not as good (even if automatic as one of the solutions we see in #6 given URL ).

Last edited by dedec0; 08-29-2018 at 12:40 PM.
 
  


Reply

Tags
odp, pps, ppt



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] what is PPS Horus1 Linux - Server 1 06-19-2014 08:23 AM
PPS TOOLS with PPS via DCD RS232 with a sure GPS BOARD - PPSTEST problem ofrappier Linux - Software 0 01-09-2013 10:44 AM
PPS hlinux Fedora 2 02-10-2010 07:13 PM
make .bash_history uneditable, but still functional O_o caibbor Linux - Security 4 12-03-2009 05:19 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 10:25 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration