Merge four A6 pages into one page A4 [closed] - linux

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 7 years ago.
Improve this question
Hello i've got problem with merge 4 pages A6 into one page A4.
I was trying with ghostscript, pdftk and others... closest was pdftk command:
pdfnup --nup 2x2 --paper a4paper --noautoscale true --outfile a4.pdf a6.pdf
But got this error...
pdfjam: This is pdfjam version 2.08.
pdfjam: Reading any site-wide or user-specific defaults...
(none found)
pdfjam ERROR: can't find pdflatex!
I've got TeX installed but error still occults.

I suppose your distribution is Ubuntu. (for other distributions the solution should be similar)
Be sure you have installed texlive-latex-extra package from here.
There was an official bug report on similar issue and has been fixed.
Check if you have pdflatex executable on your system. Be sure that the location is listed in $PATH. If not add it into it.

Related

Linux command needing translating [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 5 years ago.
Improve this question
I have just started learning the Linux system and I need some help to translate the following to English:
grep WARNING readme.txt
and
grep WARNING readme.txt > warnings.txt
This is a homework question that i have researched myself but having trouble learning exactly what it means.
thanks in advance.
Try making a file on your computer named readme.txt. Put some lines of text in there, and make sure that some lines say "WARNING" while other lines do not.
Then run your first command and observe its output.
Then run your second command and observe its output and observe what was written to warnings.txt.

What does "sdl6" in an RPM package name refer to? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
The specific package I'm referring to is trac-1.0.1-1.sdl6.noarch.rpm. According to this page:
http://www.rpm.org/max-rpm/ch-rpm-file-format.html
it seems to be part of the package release version. The fact that "sdl" does not appear in my /usr/lib/rpm/rpmrc file also suggests that it's not related to the architecture.
If you search google for sdl6, just about every hit is the name of an RPM package. Nowhere, however, could I find an explanation of what it means.
That's the distro tag (for CentOS normally el#). In this case sdl appears to be for Springdale Linux.

Is there exist /sbin/lilo in rhel 4? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
Actually I am just trying to build up a cluster(beowulf) in which there is a modification required in /sbin/lilo for reflecting the access to master node by slave node after it goes up . I changed the /etc/lilo.conf.anaconda file for timeout=1200 , but unable to find the /sbin/lilo file to get result of added linux.Please help me that where do i verify that the modificaion is been implemented??....I am working on RHEL 4.
lilo was the boot loader of Linux a long time ago.
As far as I can tell, all distributions have moved to using grub as default instead, as it is much more robust. With lilo, the risk of ending up with a non-booting system were much higher.
It seems you are following an extremely outdated manual?

ColdFusion not installing on Red Hat Enterprise Linux 4 [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 9 years ago.
Improve this question
When I was trying to install ColdFusion on Red Hat Enterprise Linux 4, the installation script incorrectly report a warning regarding the C++ compatibility pack.
I dont know why its happening any solution?
I found a solution in the adobe coldfusion website. they said...
If you plan to use Verity or C++ based custom CFX tags, you should
interrogate your system for compat-libstdc++ and glibc packages and
install them if necessary. Either query all packages and use the grep
command as a filter or query the exact package name. For example, the
command rpm -qa | grep compat-libstdc++ queries all packages and
filters or greps on the string compat-libstdc++. This command might
produce two results, compat-libstdc++-33-3.2.3-47.3 and
compat-libstdc++-296-2.96-132.7.2.

ldconfig - LD_LIBRARY_PATH is not a known library type [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 5 years ago.
Improve this question
Since a couple of days ago I'm getting this error below whenever I install any package with shared libraries:
"/sbin/ldconfig: $LD_LIBRARY_PATH:/usr/local/lib; export LD_LIBRARY_PATH is not a known library type"
Why I'm getting this error ?
How can I solve it ?
Sounds like something got messed up with ldconfig, try
sudo /sbin/ldconfig -v
Most likely the format in one of the files in /etc/ld.so.conf.d/ is messed up. These files just contain paths or comments (lines starting with #) -- anything else will lead to problems similar to the one you are experiencing.

Resources