Miscellenea Flashcards

Bits and pieces with no common grouping

1
Q

What does RPM stand for ?

A

Red Hat Package Manager. Generally found as an extension of a file meant as an installation package in LINUX

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What does DEB stand for ?

A

DEBIAN or UBUNTU Package format. Generally found as an extension of a file meant as an installation package in LINUX

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What sets out TAR packages from RPM or DEB?

A

An RPM or DEB package takes care of all the installation with little interaction with the user.

TAR packages can also act like that. Generally they are uncompressed in a destination directory and the user needs to find the instructions to follow for installation.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

DAEMON? Who that?

A

a DAEMON is a computer program that runs as a background process, rather than being under the direct control of an interactive user.

Traditionally daemon names end with the letter d: for example, syslogd is the daemon that implements the system logging facility and sshd is a daemon that services incoming SSH connections.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is the difference between a tomcat and apache server?

A

Apache Tomcat is used to deploy your Java Servlets and JSPs. So in your Java project you can build your WAR (short for Web ARchive) file, and just drop it in the deploy directory in Tomcat.

So basically Apache is an HTTP Server, serving HTTP. Tomcat is a Servlet and JSP Server serving Java technologies.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly