Sponsored Content
Full Discussion: Freeze system
Special Forums Cybersecurity Freeze system Post 302840077 by unSpawn on Sunday 4th of August 2013 09:17:36 AM
Old 08-04-2013
Quote:
Originally Posted by nimafire
is there any freeze software for Linux-redhat system to prevent any changes on /root
On systems that support MAC you may be able to modify a policy to deny writes to files, denying policy alteration and denying reboot (convoluted). On file systems that support it you can set the immutable bit (weak). On file systems that do not support extended attributes you could mount another /root directory over it with the ro flag set (even weaker option).

*Do note anyone with root privileges can undo things. Also note immutable files are of no use if the real cause of the problem should not be addressed through the use of technology (as in PEBCAK).
This User Gave Thanks to unSpawn For This Post:
 

8 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

PHP5 Script 'Freeze' before exiting

I recently upgraded a system from php 4.4.2 to php 5.2.1, and one of my scripts has started behaving very strangely. I've tried google but come up blank so far. Basically what the script does is select a large amount of data from a mysql (4.1.21) database, do some manipulation, the plots a graph... (4 Replies)
Discussion started by: Unbeliever
4 Replies

2. Linux

Read data of a page frame (linux) make freeze the system

Hello, I'm writing a linux driver that reading the data of a page frame of an process. But when I use it, it make immediately freeze the system. Can you help me? Thank for reading my question! system: Ubuntu 9.04, kernel 2.6.28.15, Intel Duo static int read_addr(int pid, unsigned long... (2 Replies)
Discussion started by: hahai
2 Replies

3. Linux

How to trace the module after system freeze?

Hi, I wrote a kernel module that did a virtual network protocol and library that provide interface for application use to interact with the kernel module by ioctl actions. insmod the module and unload the module, there will be no problem. But once I call the library with my example... (0 Replies)
Discussion started by: a2156z
0 Replies

4. SCO

Help on System Freeze in SCO

Hi, My SCO server freezes suddenly. I just want to know if there any tools / commands availble that can find which is causing the freeze? Any help on this would be greatly appreciated. Regards, Ravikumar R (4 Replies)
Discussion started by: rrb2009
4 Replies

5. AIX

Freeze user in one directory

Guy's I have user calld appuser home directory of this user is : /app/application when this user login , user will be direct under this directory /app/application I want to keep and freeze this user in his home directory to be able to access only his home directory and denied it... (2 Replies)
Discussion started by: Mr.AIX
2 Replies

6. SCO

SCO 6.0 Freeze

Hi Gurus I have installed SCO 6.0 open server on Dell R710 server. It has frozen three times afte installtion. and I had to cold reboot to bring the server back again. I need to know where to look for the reason it froze. The keyboard on the server the asterisk key is pressed, even... (13 Replies)
Discussion started by: atish0
13 Replies

7. Linux

grub2 startup freeze

I got a dual boot with grub2, but everytime I turn on the computer and the booter is loaded, I can't handle the menu, so I am forced to wait the countdown and choose the default option. I'd really like to know why! This is my grub.cfg, # # DO NOT EDIT THIS FILE # # It is automatically... (0 Replies)
Discussion started by: Luke Bonham
0 Replies

8. Solaris

Solaris 11 install freeze

Hi, I tried to boot the Solaris 11 install DVD the other day and I can't get past the "SunOS" text banner on the clear/newscreen. It just hangs with a solid block cursor. I have a new computer and that might be the problem, but what I want is more verbosity maybe, some kind of detailed... (2 Replies)
Discussion started by: eax
2 Replies
Storable(3pm)						User Contributed Perl Documentation					     Storable(3pm)

NAME
Coro::Storable - offer a more fine-grained Storable interface SYNOPSIS
use Coro::Storable; DESCRIPTION
This module implements a few functions from the Storable module in a way so that it cede's more often. Some applications (such as the Deliantra game server) sometimes need to load large Storable objects without blocking the server for a long time. This is being implemented by using a perlio layer that feeds only small amounts of data (4096 bytes per call) into Storable, and "Coro::cede"'ing regularly (at most 100 times per second by default, though). As Storable is not reentrant, this module also wraps most functions of the Storable module so that only one freeze or thaw is done at any one moment (and recursive invocations are not currently supported). FUNCTIONS
$ref = thaw $pst Retrieve an object from the given $pst, which must have been created with "Coro::Storable::freeze" or "Storable::store_fd"/"Storable::store" (sorry, but Storable uses incompatible formats for disk/mem objects). This function will cede regularly. $pst = freeze $ref Freeze the given scalar into a Storable object. It uses the same format as "Storable::store_fd". This functino will cede regularly. $pst = nfreeze $ref Same as "freeze" but is compatible to "Storable::nstore_fd" (note the "n"). $pst = blocking_freeze $ref Same as "freeze" but is guaranteed to block. This is useful e.g. in "Coro::Util::fork_eval" when you want to serialise a data structure for use with the "thaw" function for this module. You cannot use "Storable::freeze" for this as Storable uses incompatible formats for memory and file images, and this module uses file images. $pst = blocking_nfreeze $ref Same as "blocking_freeze" but uses "nfreeze" internally. $guard = guard Acquire the Storable lock, for when you want to call Storable yourself. Note that this module already wraps all Storable functions, so there is rarely the need to do this yourself. AUTHOR
Marc Lehmann <schmorp@schmorp.de> http://home.schmorp.de/ perl v5.14.2 2012-04-13 Storable(3pm)
All times are GMT -4. The time now is 04:46 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy