General :: Pdf Edit OR Docx Support - Structure Of The Document Goes Wrong

Feb 12, 2010

I was given a 41-page pdf document (+ .docx) with some text/tables/pictures. Upon some audit, just 2 sentences must be changed in the document.

1. When I open it with openoffice (.docx) - the structure of the document really goes wrong. The document is too long to edit it manually to make it look as it's supposed to look.

2. When I open it with softmaker office 2010 (beta!) it crashes every time.

3. Could I edit just the relevant pages of .docx, export them to pdf and REPLACE just the two pages in the pdf file? Or is there any other solution without involving Windows?

View 6 Replies


ADVERTISEMENT

OpenSUSE :: Edit/create HTML Document And Run?

Feb 21, 2011

How can I edit/create HTML document and run them in linux?

View 7 Replies View Related

Ubuntu :: Open Office - Edit A Document It Freezes For Up Five Minutes Before Allowing To Continue

Apr 27, 2011

my open office is experiancing some problems. 1.) sometimes when I go to edit a document it freezes for up five minutes before allowing me to continue. 2.) it isn't allowing me to save any new documents or overwrite existing ones. 3.) it's taking an EXTREMELY lone time to load current documents up to an hour or sometimes not at all.

View 4 Replies View Related

General :: Windows - Convert Docx To Pdf?

Jul 22, 2010

pdf creation software, for docx and odt

How can i convert docx files to pdf format . give applications in both linux and windows platform

View 8 Replies View Related

Ubuntu Multimedia :: Wrong Date Set In The Camera - Edit Photo Properties

Oct 14, 2010

I have some photos that were taken with the wrong date set in the camera

View 1 Replies View Related

Server :: Is Server Pointing To Wrong Root Document?

Mar 7, 2010

I'm not exactly new to the linux world. I've been messing with it for six months now. I recently decided to host a public web server out of my home. The is nothing business related merely personal.Now that you have a brief background I will bring you the technical details.I'm apache2 with php, joomla, and mySQL on openSUSE 11.2. a dns server is currently configured. My problem is as follows I set up apache initially and used the default index.html page which simply says It Works. I configured my DNS at the domain registar godaddy.com. After changing the A record to point to my IP the server worked. I then proceeded to install Joomla which installed correctly.Now here is my problem. When I attempt to pull up my domain it appears my DNS is longer working properly and get a DNS error. When I attempt to go directly to IP with my server I still get the initial index.html that says it works. I'm not sure how this is possible and I have cleared all dns info, temp files cookies ect.... I have also had other people test this is as well. I've check my root document pointers for the apache website and they all point to the correct location.

My set up is as follows

Modem
Router
Windows 7 Machine
Sun Microsystems Virtual Box with openSUSE with the network adapter bridged so it can obtain an IP from my router

I'm completely lost at this point and have spent 2 days trying to resolve the issue, any help would be much appreciated. I look forward to everyones reply.

View 7 Replies View Related

General :: Cross-platform / Command Line Utilities To Convert PDF / DOC And DOCX To Text

Jul 28, 2011

I am making a text search engine. I need to first convert binary documents to text. I want to go with cross-platform (we develop both on windows and linux) command line (so that I can get the output via python subprocess). What are the choices for this?

View 1 Replies View Related

Ubuntu :: Get Xsane To Scan A Document And Have It Display As A Full 8.5x11 Sized Document Instead Of Something Half That Size?

Mar 13, 2010

how to get xsane to scan a document and have it display as a full 8.5x11 sized document instead of something half that size? I've been trying and trying and can't seem to figure it out.

View 3 Replies View Related

OpenSUSE Network :: Document Is Referencing 10.2. Or A Document For Use With SLED?

Jul 6, 2010

Anyone have better documentation or an update to the this version of the file Tomcat HOWTO openSUSE as that document is referencing 10.2. Or a document for use with SLED.

View 3 Replies View Related

General :: Ubuntu Can't Support A Higher Resolution That Laptop Can Support?

Apr 14, 2010

I have a HP laptop which can support 1600x900. But after I install ubuntu 9.10 on it, it can only support up to 1280x700. My laptop has a Nvidia graphics card. And i am using GNOME as my desktop environment.

View 1 Replies View Related

Software :: How To Allow .docx In Drupal

Feb 14, 2010

I have recently taken over administration of a mailserver and a drupal server, hopefully I can get answers here. Queston one: how do you allow .docx? I really despise M$ methods to increase sales.

View 1 Replies View Related

General :: Set Up A Directory Structure ?

Jul 16, 2011

i just started dabbling with this Linux program Fedora and i go to school for cpu forencics but havnt reached Linux+ yet.

View 13 Replies View Related

General :: Set Directory Structure In Git ?

Jun 24, 2011

I've the following file structure that I would like to add to git.

Code:

These are big directories and I don't need them all checked out. I only need the src directory. After I commit the files in the /app/src, it must be pushed to a remote site.

If I want only to checkout the src directory to work on, it's important to create a special file structure in git? For example, instead of doing git init on app general directory, should I do git init on all subdirectories?

Is it possible to checkout only part of a file structure in git?

View 1 Replies View Related

Fedora :: How To Read *.docx Files

Feb 8, 2010

Is there a way to at least convert these files to a different format without using MS Office? I have no access to MS Office (100% non MS user) and I wasn't able to open a .docx file with OOo or AbiWord.

View 9 Replies View Related

OpenSUSE :: Saving To .docx In Koffice 2.2.2

Sep 6, 2010

I know that working with .docx has become available since KOffice was released as 2.x, but I can't get my save dialogbox to save my files into any other file format other than .odt. Is there way to save files in KOffice with the .docx extension?

View 1 Replies View Related

General :: Directory Structure For Building RPM

Mar 20, 2011

My clearly outdated Linux course I'M using is telling me that the directory structure for building RPMs is in /usr/src/redhat, but on my redhat system, there is only /usr/src/ > debug & > kernels, folders.

View 5 Replies View Related

General :: Passing A Structure In A Socket?

Mar 31, 2011

So I'm trying to teach myself to write programs for unix in c. I am currently creating a program, and I need to pass a struct through a socket

The struct I want to pass has two types in it, one enum and one union of two other structs. These two other structs each contain an int and a char variablename[256] array.

gcc won't let me just pass the struct using write(pipefd[1], struct, size_of_struct) since the struct is not a char buffer. So that's my question...how does one go about passing a struct?

View 1 Replies View Related

General :: Pthreads - Structure Can Be Returned With Value

May 21, 2010

I am playing around with pthreads. This program however blows up.

#include <iostream>
#include <pthread.h>
using namespace std;
struct myStruct
{
int a;
string msg;
};

void * myProc(void *arg)
{
struct myStruct* str = new struct myStruct();
str->a = 10;
str->msg ="hi";
return (void*)str;
}

int main(int argc, char **argv)
{
pthread_t mythr;
int status ;
void *retVal;
struct myStruct* m_str;
status = pthread_create(&mythr,NULL,myProc,NULL);
status = pthread_join(mythr,&retVal);
cout<<"Status is"<<status<<endl;
m_str = (struct myStruct*)m_str;
cout<<"retval is "<<m_str->a<<" "<<endl;
return 0;
}

Can a structure be returned by a thread as its return value ?

View 1 Replies View Related

Ubuntu :: Opening 'docx' Files On OpenOffice?

Jan 20, 2011

I'm trying to open a Windows '.docx' file on Open Office 3.2 and it just crashes.

View 4 Replies View Related

Ubuntu :: Send .docx For College Classes?

Apr 2, 2011

I started taking CIT 101 (computer classes 101 LOL i know) as I am strict linux, in my house, purchasing office 2007 yes they require 2007 not 2010. Columbus State is tough on that, I need to be able to send documents in 2007 .docx in openoffice 3.3. The only computer that uses windows, is my grandparents and I don't want to buy Office if at all possible. I have like no money after all the text books. Teacher is strict it can not be .doc, odt. or other, needs to be .docx

View 9 Replies View Related

Server :: MailScanner Blocking Docx Files?

Sep 17, 2010

My MailScanner running on CentOs is blocking docx files, saying "The original e-mail attachment "****.docx" is on the list of unacceptable attachments for this site and has been replaced by this warning message.

I've tried adding it the list of allowed files:

/etc/MailScanner/filename.rules.conf:

allow .docx$ - -

but it still blocks them.

I've also tried manually coping the message file from the /var/spool/MailScanner quarantine/ directory into /var/spool/postfix/incoming

but this did not result in the mail being delivered.

I desperately need these mails released, and docx files to be allowed unconditionally. Anyone know why the above isn't working? Failing that, can all file blocking be turned off? I'd rather have virus relayed than legitimate mails blocked.

View 3 Replies View Related

Programming :: How To Open .doc / .ppt / .xls / .docx Files Using Java

Feb 14, 2010

does anyone know how to open .doc .ppt .xls .docx.... files using java ? i found just Apache POI but it can open just .xls files.

View 4 Replies View Related

General :: Error - Read Only Directory Structure

May 20, 2010

I am using RHEL 4.4. Last time when I reboot my server it generate an error, and mention to run fsck command in repair mode. When I ran, this fix some problems, but after that it generate an error of gdm and X11 services after showing login sceen and getting user name and passwod. But I login via putty from a remote system. So, when I tried to make changes like create directory or file or even tried to make any change in any file it generate an error that " you can not make changes in read only file system".

View 10 Replies View Related

General :: Binary Compare Of Directory Structure

Apr 13, 2011

diff has the ability to trasverse directory structures. cmp has the ability to manage binary files.

I'm looking for something which allows me to compare a directory's contents, including files and subdirectories, and so a binary comparison.

Any suggestions, scripts, etc. which may be of help?

Some of my directories are huge, with huge (image) files in them.

View 2 Replies View Related

General :: Downloading Files With Same Directory Structure

Apr 8, 2010

How do I download all the files form here: [URL]. I am on freeBSD 7.0 and I tried wget with the -r switch and it gives me URL's only. Maybe this is simply not an ftp site I don't know. How I can download all those files with the same directory structure.

View 5 Replies View Related

General :: Plot Band Structure Using Wien2k?

Sep 28, 2010

I want to plot band structure using Wien2k and for this I have to make a file named "case.klist_band". But I have a Rhomhedral compound . There is written to make the file using xcrysden but I donot know how to make the file from xcrysden.

View 2 Replies View Related

Ubuntu :: Program To Open .docx Files Natively?

Nov 1, 2010

Is there any program in Ubuntu that can open .docx files natively? I know that open office can open .doc files, but I need a program that can open .docx files. It also has to be able to read the embedded data, such as text themes and bibliography data. Conversion is no good. I have been using Office 2007 through Crossover, but for some reason it can only have one window open at a time, which severely limits what I can do.

View 2 Replies View Related

Ubuntu :: Open Office Won't Display .docx Images

Nov 14, 2010

I'm using 10.10 dual booted with xp and I'm trying to get images that are part of a docx file to open with OO 3.2 in ubuntu

They view fine on xp using OO 3.2 but windows being windows, it won't talk to my printer so I can't print. When I load up ubuntu and OO, the images just aren't there. The rest of the document looks the same however. Am I missing a file in ubuntu or is there a workaround for this?

View 1 Replies View Related

Ubuntu :: 10.10 - OpenOffice Docx Files Freezes On Saving

Apr 12, 2011

I have to use and update many documents on a network share in my organization. I am using OpenOffice 3.2 (latest and Greatest). When I go to the document that I need via the network share, I can open up the document no problem at all but the minute I attempt to save it, it will freeze and I have to:

PHP Code:
pgrep soffice| xargs -i kill -9 {}

Kill it. To get it to work I have to save the document from a .docx format to a .doc format then all works well. Unfortunately, all of my coworkers use the latest and greatest of MS Office.

View 5 Replies View Related

General :: Quick File Structure Question For Any User?

Aug 10, 2009

I have used linux for a web server but only installed a couple items on top of the OS but would like to begin using linux more often on my own home machine. However, I also like to keep things clean and organized, and know what is going on when I do something. I have some sample C scripts for network programming, and they came as a downloadable package with a readme including the make / configure instructions to get it all set up, and then I can compile individual scripts as needed.

I was wondering - when I run make and those first few commands - where does it all go? Will all the new activity be confined to the folder I am in, meaning I can easily remove it all by simply deleting the folder when I am done (I won't want all this sample networking stuff forever, you know). Or, does it get placed into other directories throughout the file system?

I know when installing some apps that the files are placed in directories such as usr/bin and the like - my assumption is this happens when running make and make install commands - if so, how do we get rid of them when finished?

I just want to keep the system somewhat clean if possible, and the very least like to know what is being installed and to where - and have the option to remove it easily at a later date if I choose to do so.

View 2 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved