Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

blogger(8) [suse man page]

BLOGGER(8)						       The SuSE boot concept							BLOGGER(8)

NAME
Blogger - writes messages to a running blogd process SYNOPSIS
blogger [-n|-d|-f|-s|-u] "a message here" DESCRIPTION
blogger is used to send messages to the blogd process during boot phase. These messages will only appear in the boot logging file /var/log/boot.msg and not on /dev/console. OPTIONS
-n Declare the following message as a <notice>. This is the default. -d Use thist to add the leading string <done> to the message. -f Use thist to add the leading string <failed> to the message. -s Use thist to add the leading string <skipped> to the message. -u Use thist to add the leading string <unused> to the message. FILES
/dev/blog the named pipe (FIFO) used as message channel to the blogd process. SEE ALSO
blogd(8), console(4), tty(4), proc(5). COPYRIGHT
2001 Werner Fink, 2001 SuSE GmbH Nuernberg, Germany. AUTHOR
Werner Fink <werner@suse.de> 3rd Berkeley Distribution Jan 26, 2001 BLOGGER(8)

Check Out this Related Man Page

MKILL(8)						       The SuSE boot concept							  MKILL(8)

MKILL
Mkill - Send processes making a active mount point busy a signal SYNOPSIS
mkill [-SIG] [-u] /mnt1 [/mnt2...] mkill [-l] DESCRIPTION
mkill determines all active mount points from /proc/mounts and compares this with the specified mount points. Then mkill seeks for pro- cesses making this mount points busy. For this search only the links found in /proc/<pid>/ are used to avoid hangs on files provided by network file systems like nfs(5). The default signal is SIGTERM for termination. If a mount point is not active, that is that it is not found in /proc/mounts, mkill will do exactly nothing. OPTIONS
-<SIG> Signals can be specified either by name (e.g. -HUP, -SIGHUP) or by number (e.g. -1). -0 The special signal 0 force mkill to list all processes making the specified mount point busy. -u Perform a lazy umount on the specified mount points before sending the signal SIGTERM or SIGKILL. -l List all known signals. EXAMPLES
mkill -TERM /var This will terminate all processes accessing a seperate /var partition. mkill -HUP /dev/pts All processes using a pseudo-terminal slave will hangup. RETURN VALUE
Always success which is that zero is returned. SEE ALSO
fuser(1), proc(5), umount(8). COPYRIGHT
2008 Werner Fink, 2008 SUSE LINUX Products GmbH, Germany. AUTHOR
Werner Fink <werner@suse.de> 3rd Berkeley Distribution Jan 31, 2008 MKILL(8)
Man Page

14 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

new SuSE User

Hello everybody! I'm Fabian from Germany near Hannover. I bought SuSE 7.1 before 3 days . I want use SuSE as a PHPserver! (My english is very bad) Now my question: Is SuSE or Rad Hat better for this problem? On my system is always run SuSE 7.1 now, but I think Rad Hat is better for this... (4 Replies)
Discussion started by: Fabian
4 Replies

2. UNIX for Dummies Questions & Answers

editing mtab

Hi all and Happy New Year!! I'm teaching myself Unix on two Linux boxes (one Red Hat, one SuSE). Anyway, I downloaded and installed patches and fixes for my SuSE box and now I can't mount my cdrom as a user. An error pops up: Could not mount mount according to mtab, /dev/hdc is mounted on... (1 Reply)
Discussion started by: SeCBerm
1 Replies

3. UNIX for Dummies Questions & Answers

Screensaver and 'fortune'

(SuSE Linux 8.2 Personal) I'm sure the answer to this will be simple, but it's been driving me insane for the last couple days. SuSE 8.2 comes with a bunch of screensavers, but a handful of them just repeatedly display 'sh: line 1: fortune: command not found'. I've been scouring endlessly... (4 Replies)
Discussion started by: Darkstripes
4 Replies

4. UNIX for Dummies Questions & Answers

Boot Problems

During the boot process of my SPARCstation 5, it hangs up at this message: Setting default interface for multicast: add net 224.0.0.0: gateway jpt2. What do I need to do to get past this point? Is there something I need to turn off? (2 Replies)
Discussion started by: saucierm
2 Replies

5. Solaris

boot messages

(Solaris 8, 4 cpu's) When I look at my boot messages (/var/adm/messages or dmesg) I noticed the following: Sep 23 08:53:00 server1 unix: cpu0: SUNW,UltraSPARC-II (upaid 0 impl 0x11 ver 0xa0 clock 450 MHz) Sep 23 08:53:00 server1 unix: cpu1: SUNW,UltraSPARC-II (upaid 1 impl 0x11 ver... (1 Reply)
Discussion started by: finster
1 Replies

6. SuSE

/var/log/boot.msg

I have a Dell Latitude c840 that runs SuSE 8.0 Enterprise server that hangs on bootup on trying to create /var/log/boot.msg. It boots in rescue mode just fine. I've tried deleting the old boot.msg file that was in there, but that did no good. Does anyone have any advice/know of a website with... (3 Replies)
Discussion started by: Jody
3 Replies

7. UNIX for Dummies Questions & Answers

running yast

At the end of the installation of my video card driver's, there is this note on the isntruction from intel 1. Run SuSE's own configurator called 'YAST' under System from SuSE application broswer menu a. Select the 'Hardware' icon b. Select the 'Graphics Card and Monitor' icon c. Select... (3 Replies)
Discussion started by: cherupop
3 Replies

8. SuSE

SuSE parted problem

Hello, So, I burned the 5 cds of SuSE 10.1, and would really like to begin installation. But when I get to the partitioning phase, I get an error message saying the first hard drive is unreadable by parted, and that I'll have to use Yast instead. It also tells me I wont be able to move delete... (0 Replies)
Discussion started by: Mudrack
0 Replies

9. Linux

boot messages

Where do all those messages at boot time get stored / logged? like: starting eth0 : OK starting mysql : OK etc... (3 Replies)
Discussion started by: BG_JrAdmin
3 Replies

10. UNIX for Dummies Questions & Answers

removing leading zero

Hi, I do have a code as follows: function deHex { if ]; then deHexDate=${1:1:$2} fi } The description given for the above code is as follows: # description: removes leading zero so value will not be recognized as hex # usage: deHex <value_parameter> <value_input_length> ... (0 Replies)
Discussion started by: risshanth
0 Replies

11. UNIX for Dummies Questions & Answers

Add leading zero

Hi there, I'm trying to add to a number leading zeros if it's just one digit. My code looks like this: d=`date +%d` if ; then d=$((d-1)) # yesterday if (length($d) -eq 1); then d=0$d # this doesn't work if it's the 1st of the month :-( fi ... $d... (4 Replies)
Discussion started by: borobudur
4 Replies

12. Cybersecurity

How to set CoreDump in SuSE 10

Hi All, Am trying to modify the coreDump value in SuSE 10 by doing the following steps : 1. Add the line "ulimit -Sc 1004" to /etc/profile 2. Relogin using telnet and try the command "ulimit -c". The value is 1004 3. Now relogin using xbrowser the ulimit value is not reflected. OS :... (1 Reply)
Discussion started by: Laksmi
1 Replies

13. Shell Programming and Scripting

Add leading zero's to the number in unix

Hi, Can anyone help me how to add leading zero's (0's) infront of numbers in unix script. For more details. x=450 Y=2344 i want the out put of 00000450, 000002344 (leading 5 zeros) Thanks A. Raj. (8 Replies)
Discussion started by: easterraj
8 Replies

14. SuSE

SuSE 10 32bit Hardware interupts on VMWare ESX 4i

Hi! Does anyone know how a high percentage of Hardware Interrupts does affect a Linux system? any why does it generate hardware interrupts? The affected system is a SuSE 10.2 32bit running 2.6.16.60-0.33-vmi #1 SMP Fri Oct 31 14:24:07 UTC 2008 i686 i686 i386 GNU/Linux procinfo shows that... (2 Replies)
Discussion started by: Esaia
2 Replies