Sponsored Content
Full Discussion: Newbie Question...
Top Forums UNIX for Dummies Questions & Answers Newbie Question... Post 10968 by PxT on Monday 26th of November 2001 01:28:25 PM
Old 11-26-2001
Any decent driver should include instructions on how to compile/install it. Check the documentation that came with it. If it didnt include documentation, check the vendor website for instructions.

In general you compile a program with:

gcc -o output_file yourcode.c
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

newbie question

hi im thinking of getting unix but i have no idea where to start I know that its an OS similar to linux but what hardware does in run on? i've heard of solaris but im not quit sure what it is thankxs (3 Replies)
Discussion started by: ninja
3 Replies

2. UNIX for Dummies Questions & Answers

Newbie Question

Hi, I have a file, that is delimited by :: and the purpose of this file is none of your business. ;) There are about 65000 lines in this file, and there are lines that I would like to remove. About 45000 of them. Is there some sort of commands that I can run, to remove word(s) from this... (4 Replies)
Discussion started by: th3gh05t
4 Replies

3. Shell Programming and Scripting

Newbie question

Hello, I have text file while looks this test1 test2 test3 test4 test5 test6 and if I want to parse it and make new file which would like this test1 test2 test3 test4 test5 test6 How can I do this in korn shell script Thanks (9 Replies)
Discussion started by: peeyush_23
9 Replies

4. UNIX for Dummies Questions & Answers

Very new newbie question

sorry if im not asking inthe right spot but, how do you turn the beeping off every time you hit a key onthe keyboard. I tried the click -n but it told me it didnt recognize click any help would be greatly appreciated ( the beeping is not going over well in the surrounding cubicles) thank you... (4 Replies)
Discussion started by: Split100
4 Replies

5. UNIX for Dummies Questions & Answers

newbie question

I am taking a db classes toward oracle 10g. I am taking unix as well . I need to know what is the best option for os . should I use linux fedora. or get a sun box and start learning from there. Thanks (6 Replies)
Discussion started by: xzyan
6 Replies

6. UNIX for Dummies Questions & Answers

Newbie question?

What is the best way to learn UNIX on the web, with out buying books? any link would be much help. Thank you in advance, L (1 Reply)
Discussion started by: lsoria1
1 Replies

7. Programming

Newbie question

Dear all, I have a question related to parallel programing and if you can give me some hints on how to deal with it, it would be really great. I would like to run a small application on a supercompter of 128 CPUs. Unfortunately, on this machine only jobs which require 32 CPUs are allowed to... (1 Reply)
Discussion started by: Eduard
1 Replies

8. UNIX for Dummies Questions & Answers

UNIX newbie NEWBIE question!

Hello everyone, Just started UNIX today! In our school we use solaris. I just want to know how do I setup Solaris 10 not the GUI one, the one where you have to type the commands like ECHO, ls, pwd, etc... I have windows xp and I also have vmware. I hope I am not missing anything! :p (4 Replies)
Discussion started by: Hanamachi
4 Replies

9. Shell Programming and Scripting

perl newbie . &&..programming newbie (question 2)

Hello everyone, I am having to do a lot of perl scripting these days and I am learning a lot. I have this problem I want to move files from a folder and all its sub folders to one parent folder, they are all .gz files.. there is folder1\folder2\*.gz and there are about 50 folders... (1 Reply)
Discussion started by: xytiz
1 Replies

10. UNIX for Dummies Questions & Answers

newbie question

Hi all, I am sure this is very simple but I cant quite get it. I am trying to search textfile1.txt for a string then take the results of the search and append the result to textfile3.txt So far I have used $ find file1.txt -exec grep "string i am looking for" '{}' \; -print this... (2 Replies)
Discussion started by: radgator
2 Replies
ipsvd-instruct(5)						File Formats Manual						 ipsvd-instruct(5)

NAME
ipsvd-instruct - format of the ipsvd(8) instructions directory DESCRIPTION
The internet protocol service daemons, ipsvd(7), can be told to read and follow instructions from a directory on incoming connections to the socket they listen on. For mostly static instructions or for performance reasons, it is possible to compile the instructions from a directory into a constant database (cdb) with ipsvd-cdb(8) for faster lookup, and to tell ipsvd(7) to read the instructions from there. MATCHING
On each incoming connection, the ipsvd(7) matches the client's IP address against files in the instructions directory. For example, the IP address a.b.c.d which reverse resolves to moa.bit.smarden.org is matched against the following files in the instructions directory, in this order, first match wins: 1. a.b.c.d 2. a.b.c 3. a.b 4. a If the client's hostname has been successfully looked up in DNS: 5. moa.bit.smarden.org 6. bit.smarden.org 7. smarden.org 8. org And finally the catchall file ``0'' (zero): 9. 0 After successfully matching a client's IP address or hostname against the instructions directory, ipsvd(7) examines the file that matched the IP address or hostname, and acts accordingly: 1. If neither the user's read permission, nor the user's execute permission is set for the file, the connection is closed immediately. 2. If the file has the user's execute permission set, ipsvd(7) reads the contents of the file and runs /bin/sh -c '<contents>' instead of the default program prog given at the command line for this connection. 3. If the file has the user's read permission set, ipsvd(7) reads the contents of the file and interprets each line as an instruction for this connection (see below). If the client's IP address or hostname doesn't match any file in the instructions directory, the default action is taken (the program prog is run to handle the connection). INSTRUCTIONS
If ipsvd(7) is given instructions for an incoming connection, it reads the corresponding file and interprets each line as follows. The file may be empty, meaning that there is no special instruction. Empty lines and lines starting with ``#'' are ignored. +VAR=VALUE environment. If the line starts with a plus (``+''), and the string following the plus contains a ``='', ipsvd(7) puts the string following the plus into the environment before starting prog to handle the connection. If the string following the plus doesn't contain a ``='', ipsvd(7) makes sure that the environment variable with the name string is not set. Cnum[:msg] concurrency. If the line starts with a ``C'', and is followed by a number, the per host concurrency limit for the IP address that initiated the connection is set to this number. If num is zero, per host concurrency limit is disabled. If num is followed by ``:msg'', the message msg is written to this client if possible, if the per host concurrency limit is reached. msg may contain backslash-escaped characters as follows: ``\'' is converted to a single backslash, `` '' is converted to a new line character, and `` '' is converted to a carriage return. On multiple concurrency instructions the last processed concurrency instruction is considered. Not all ipsvd(7)'s support per host concurrency. =hostname[:forward] check hostname. If the line starts with a ``='', and is followed by a hostname, ipsvd(7) looks up the IP addresses for hostname in DNS and checks if the client's IP address matches one of these IP addresses. If so, ipsvd(7) stops processing the instructions here and runs prog. If hostname is followed a colon and forward, ipsvd(7) now examines the file forward and acts accordingly, instead of running prog. All check hostname instructions in forward are ignored. If forward does not exist, the connection is closed. hostname may be ``0'' (zero), matching any IP address. Note: Using check hostname instructions can cause significant delay while responding to connection attempts, caused by DNS lookups. If ipsvd(7) cannot interpret a line, it prints a warning, discards the line, and continues with the next instruction if any. After processing all instructions, ipsvd(7) runs prog. If the file contains at least one check hostname instruction, and none was success- ful, it closes the connection instead of running prog. EXAMPLE INSTRUCTIONS
+MEMORY=20000 This instruction causes the environment variable ``MEMORY'' with the value ``20000'' to be available to the program prog that han- dles the connection. +DEBUG= This instruction adds the variable ``DEBUG'' with an empty value to the environment. +LOGNAME This instructions makes sure that the environment variable ``LOGNAME'' is unset when running prog. C16 Set the per host concurrency to 16. A connection will be closed silently if there are already 16 active connections from this client's IP address. =floyd.dyn.smarden.org:127.0.0.1 Check IP address of the dynamic hostname floyd.dyn.smarden.org. If one of the IP addresses floyd.dyn.smarden.org currently resolves to matches the client's IP address, handle the connection through the file 127.0.0.1 in the instructions directory. SEE ALSO
ipsvd(7), ipsvd-cdb(8), tcpsvd(8), sslsvd(8), udpsvd(8), sslio(8) http://smarden.org/ipsvd/ AUTHOR
Gerrit Pape <pape@smarden.org> ipsvd-instruct(5)
All times are GMT -4. The time now is 03:43 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy