Setting up Linux as a RAS - is is possible?


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users Setting up Linux as a RAS - is is possible?
Prev   Next
# 1  
Old 08-21-2002
Error Setting up Linux as a RAS - is is possible?

I need to setup my Linux Server as a RAS, does anyone know how to do it? I have just spent all my money on my hardware setupand an ADSL line, things where I live are VERY expensive. I need to setup my RedHat 7.3 server to be a RAS for myself and my business partner, can anyone please redirect me to a URL or something, I have searched all the howto's, and tried searching the net, can someone please give me a paw.

Thanks in advance

L
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Equivalent of mmin in MP-RAS/NCR Unix

Hi, i created a script to look for the modified files in the last 15 minutes. But later was told that the server that we need to implement this script is an MP-RAS (NCR Unix) server on which i found mmin option of the find command doesnt work.:wall: Can anybody please let me know the... (1 Reply)
Discussion started by: utkarsh
1 Replies

2. IP Networking

MP-RAS Unix Networking Setup

I have an MP-RAS unix server from ncr. We are trying to get the network configured so that we may transer files between the unix box and a pc. I have used the included TCPCONFIG command to setup the network, however I can not ping, telnet or ftp to any other pcs on the network. Any help would... (0 Replies)
Discussion started by: Rutgerncas
0 Replies

3. UNIX for Dummies Questions & Answers

MP-RAS file size limitations

Hello, Here is the question. We have 2 identical boxes (see below), one is functioning as production second is being built as backup. Backup was built by 'osa' restore (image taken from production). Problem is..the max filesize on production is 2147481600 bytes and the max filesize on backup... (0 Replies)
Discussion started by: dbamadness
0 Replies

4. HP-UX

NCR Unix MP-RAS - Mail not working

I am getting the following error when I send mail to any domain say abc123@xyz.com Not delivered to :due to 11 transfer failure (mail: Error #22 'Surrogate command failed ', rc =11) En Route to: xyz.com!abc123 =======surrogate command========== :/user/bin/uux -username -xyz.com!rmail... (13 Replies)
Discussion started by: rush143
13 Replies

5. UNIX for Dummies Questions & Answers

Setting up Linux.

Dear Administrators and Moderators, Normally I use Windows for browsing net, but few days back my pc was affected with virus. One of my friend suggested me to use Linux for safe browsing. I would like to know 1. I have Mandrake 8.2(HDD) and Obuntu 9.x(CD) - which one is better (have limited... (1 Reply)
Discussion started by: kesari
1 Replies

6. UNIX for Advanced & Expert Users

migrating unix mp-ras 32 bit to linux suse 64 bit

Hi. I need to migrate the whole unix environment from a Unix mp-ras 32 bit to a Linux Suse 64 bit. 1) can i use cpio to copy the data? 2) can i just copy the users from unix to linux or do i have to create them by hand 3) are there any other concerns i should worry about? thanx (1 Reply)
Discussion started by: mrodrig
1 Replies

7. UNIX for Dummies Questions & Answers

MP-RAS Unix and NFS

Hi, I would like to know if It's possible configure NFS on MP-RAS Unix so mountd uses a static port instead of a dynamic one. Thanks. (1 Reply)
Discussion started by: cuatrodos
1 Replies

8. AIX

Compile errors because of the ras.h file

I recently compile some code in 32 bit mode on a AIX 5.3 server that has its kernal set to 64 bit mode. The compile was successful and the code works great. That being the case I use the model of the successful makefile on some other code but ended up getting errors that looked like this...... ... (2 Replies)
Discussion started by: morrisey
2 Replies

9. Filesystems, Disks and Memory

Help - NCR Unix 3.02 MP-RAS

Hi, I am new to the UNIX operating system and would realy appreciate some answers to these problems. I have a unix box (Actually several of them throughout the different locations) that have NCR MP-RAS 3.02.x.x (with multiuser and possibly security packages installed.) Originally they had 2gb... (4 Replies)
Discussion started by: ad7_98
4 Replies

10. UNIX for Dummies Questions & Answers

NCR MP-RAS 3.02 Root Password

I've just inherited the support of 3 NCR Servers running NCR MP-RAS 3.02 UNIX OS and it looks as though the previous support analyst (who as left the company) has kindly changed all 3 root passwords. Also there are no installation / boot cd's and the etc/passwd directory can only be updated by... (1 Reply)
Discussion started by: Bruv
1 Replies
Login or Register to Ask a Question
RAS(9)							   BSD Kernel Developer's Manual						    RAS(9)

NAME
ras_lookup, ras_fork, ras_purgeall -- restartable atomic sequences SYNOPSIS
#include <sys/types.h> #include <sys/proc.h> #include <sys/ras.h> void * ras_lookup(struct proc *p, void *addr); int ras_fork(struct proc *p1, struct proc *p2); int ras_purgeall(struct proc *p); DESCRIPTION
Restartable atomic sequences are user code sequences which are guaranteed to execute without preemption. This property is assured by check- ing the set of restartable atomic sequences registered for a process during cpu_switchto(9). If a process is found to have been preempted during a restartable sequence, then its execution is rolled-back to the start of the sequence by resetting its program counter saved in its process control block (PCB). The RAS functionality is provided by a combination of the machine-independent routines discussed in this page and a machine-dependent compo- nent in cpu_switchto(9). A port which supports restartable atomic sequences will define __HAVE_RAS in <machine/types.h> for machine-indepen- dent code to conditionally provide RAS support. A complicated side-effect of restartable atomic sequences is their interaction with the machine-dependent ptrace(2) support. Specifically, single-step traps and/or the emulation of single-stepping must carefully consider the effect on restartable atomic sequences. A general solution is to ignore these traps or disable them within restartable atomic sequences. FUNCTIONS
The functions which operate on restartable atomic sequences are: ras_lookup(p, addr) This function searches the registered restartable atomic sequences for process p which contain the user address addr. If the address addr is found within a RAS, then the restart address of the RAS is returned, otherwise -1 is returned. ras_fork(p1, p2) This function is used to copy all registered restartable atomic sequences for process p1 to process p2. It is primarily called from fork1(9) when the sequences are inherited from the parent by the child. ras_purgeall(p) This function is used to remove all registered restartable atomic sequences for process p. It is primarily used to remove all reg- istered restartable atomic sequences for a process during exec(3) and by rasctl(2). CODE REFERENCES
The RAS framework itself is implemented within the file sys/kern/kern_ras.c. Data structures and function prototypes for the framework are located in <sys/ras.h>. Machine-dependent portions are implemented within cpu_switchto(9) in the machine-dependent file sys/arch/<arch>/<arch>/locore.S. SEE ALSO
rasctl(2), cpu_switchto(9), fork1(9) Gregory McGarry, "An Implementation of User-level Restartable Atomic Sequences on the NetBSD Operating System", Proceedings of the FREENIX Track: 2003 USENIX Annual Technical Conference, USENIX Association, http://www.usenix.org/publications/library/proceedings/usenix03/tech/freenix03/full_papers/mcgarry/mcgarry.pdf, 311-322, June 9-14, 2003. HISTORY
The RAS functionality first appeared in NetBSD 2.0. BSD
April 17, 2010 BSD