Welcome, Guest |
You have to register before you can post on our site.
|
Forum Statistics |
» Members: 5,208
» Latest member: slotqris
» Forum threads: 4,029
» Forum posts: 16,404
Full Statistics
|
Online Users |
There are currently 136 online users. » 0 Member(s) | 132 Guest(s) Applebot, Bing, Google, Yandex
|
Latest Threads |
How to install Archboot i...
Forum: Network Problems
Last Post: Meup
2025-05-13, 01:41 PM
» Replies: 0
» Views: 125
|
clear logs in smoothwall
Forum: Security and Firewalls
Last Post: amanda63
2024-03-10, 03:27 PM
» Replies: 8
» Views: 75,083
|
I cannot install RedHat 8...
Forum: Redhat
Last Post: hybrid
2023-11-11, 01:01 PM
» Replies: 1
» Views: 31,381
|
How things are done, usin...
Forum: Xorg Problems
Last Post: ross
2023-09-04, 09:03 AM
» Replies: 0
» Views: 1,666
|
Im back.....
Forum: Hello
Last Post: anyweb
2021-01-17, 11:36 AM
» Replies: 1
» Views: 5,076
|
add mp3 plugin to xmms in...
Forum: Fedora
Last Post: anyweb
2021-01-17, 11:30 AM
» Replies: 11
» Views: 40,682
|
Configuring VSFTPd Server
Forum: FTP Server
Last Post: Johnbaca
2020-10-14, 10:25 AM
» Replies: 32
» Views: 104,493
|
Wolf won't play sound!
Forum: Game Problems
Last Post: Guest
2020-10-03, 05:51 PM
» Replies: 1
» Views: 45,067
|
Using git + python
Forum: How Do I?
Last Post: Clueless puppy
2020-08-21, 04:37 PM
» Replies: 0
» Views: 35,463
|
what does your nick mean ...
Forum: Hello
Last Post: volt
2020-08-06, 03:25 PM
» Replies: 28
» Views: 40,296
|
|
|
Nagios Plugin for to check service statuses of linux |
Posted by: Ramesh - 2007-04-19, 02:48 PM - Forum: Fedora
- Replies (3)
|
 |
Hi All,
I need to check service statuses of linux from Nagios Monitoring tool.
Is there any plugin to check service statuses of linux?
I wrote one shell script for this:
Code: #!/bin/sh
host="$1"
service="$2"
t=`/etc/init.d/$service status`
if echo "$t" |grep -q running; then
echo "OK - $service service is running."
exit 0
else
echo "Critical - $service service is stopped."
exit 2
fi
But it is working from terminal. But it is not working from nagios. Actually for example `/etc/init.d/acpid status` is not executing when nagios calling.
how do I make it to execute correct? or Is there any way to get needed result?
Please help!
|
|
|
Thunderbird 2 released |
Posted by: hybrid - 2007-04-19, 07:53 AM - Forum: Linux News
- No Replies
|
 |
Quote:Today the email experience for millions of people gets even better. Mozilla's prize-winning Thunderbird email client celebrates the release of Thunderbird 2 today.
New features. Improved security and privacy. Open Source. Available in more than 30 languages thanks to the efforts of our amazing localization communities. Personalizable. Customizable with extensions. Access to web mail services.
Thunderbird 2 has arrived. Try improving your email experience today!
Read more and get downloading.
It's beautiful too! :P
|
|
|
About to Start Ubuntu |
Posted by: Kiduk - 2007-04-18, 11:29 PM - Forum: Just Starting Linux
- Replies (2)
|
 |
I know Ubuntu is the simplest and easiest distro, and I have used the live cd and played with the full installed version that my grandfather installed on his PC, so I know I can operate it. But, I refuse to just use it, I am fine with it being for everyone but I want to learn how to use the terminal and really play with it. I admit, I am not an expert, but I am eager to learn how to use Linux effectively.
My first question is: I know Ubuntu is open-source, but where is it's source? I hear people speak about how you can code it and all that but what do they mean?
|
|
|
Mandriva Linux 2007 Spring Released |
Posted by: anyweb - 2007-04-18, 07:29 AM - Forum: Linux News
- No Replies
|
 |
Quote:Mandriva announced the release of Mandriva Linux 2007 Spring. Download the hybrid live/install CD One or the purely free/open source Free. Mandriva Linux 2007 Spring includes the latest software (KDE 3.5.6, GNOME 2.18, Firefox and Thunderbird 2.0) and several new features: Metisse; WengoPhone; Google desktop applications like Picasa and Earth; updates and improvements to many of the Mandriva configuration tools and the brand new drakvirt for configuring virtualization; and a brand new desktop theme. For more information see the Spring product page and the Wiki page, where you can find download and installation instructions, the Release Tour, the Release Notes and the Errata.
more info > [/url][url=http://www.mandriva.com/en/linux/spring]http://www.mandriva.com/en/linux/spring
via osnews.com
|
|
|
grub single boot and kernel panic reboot |
Posted by: FluKex - 2007-04-16, 07:34 PM - Forum: Kernel Related
- Replies (5)
|
 |
So, over the past while i have been working on getting a new kernel working on my system. The problem i was having is that the newer kernels i use are not loading the sata modules properly from the initrd images.
When trying to fix this i would run into the scnenario whereas, i reboot using the new kernel and if it kernel panics, i then have to file a ticket with my hosting provider to reboot the system and select the old kernel.
I have now found 2 ways around this that might be useful for anyone who does a lot of kernel testing.
1.) Booting once-only - (same as lilo -R)
In reference to [/url][url=http://www.gnu.org/software/grub/manual/gr...g-once_002donly]http://www.gnu.org/software/grub/manual/gr...g-once_002donly
in grub.conf, add the following line to the beginning.
default saved
If for example your grub.conf looks like the one i have below. This boots into the 2.6.20-1.2944 by default.
Code: default=0
timeout=5
splashimage=(hd0,0)/grub/splash.xpm.gz
hiddenmenu
title Fedora Core (2.6.20-1.2944.fc6)
root (hd0,0)
kernel /vmlinuz-2.6.20-1.2944.fc6 ro root=LABEL=/ acpi=off
initrd /initrd-2.6.20-1.2944.fc6.img
title Fedora Core (2.6.20-FluKex.com)
root (hd0,0)
kernel /vmlinuz-2.6.20-FluKex.com ro root=LABEL=/ acpi=off
initrd /initrd-2.6.20-FluKex.com.img
If you want to have it so that 2.6.20-FluKex.com boots on next boot, run the following command from the console before rebooting.
echo "savedefault --default=1 --once" | grub --batch
then
reboot
Now, if you have a kernel that panics and need it to reboot if it panics. change your config and add the panic=# (# being seconds before auto reboot) to the kernel line. Example file below
Code: default=0
timeout=5
splashimage=(hd0,0)/grub/splash.xpm.gz
hiddenmenu
title Fedora Core (2.6.20-1.2944.fc6)
root (hd0,0)
kernel /vmlinuz-2.6.20-1.2944.fc6 ro root=LABEL=/ acpi=off panic=5
initrd /initrd-2.6.20-1.2944.fc6.img
title Fedora Core (2.6.20-FluKex.com)
root (hd0,0)
kernel /vmlinuz-2.6.20-FluKex.com ro root=LABEL=/ acpi=off panic=5
initrd /initrd-2.6.20-FluKex.com.img
so the order of operations on this are as follows.
1.) Add new kernel to grub.conf
2.) set default=# in grub.conf to the failsafe kernel (the one you want it to try if the other fails)
3.) run the following:
echo "savedefault --default=1 --once" | grub --batch
4.) reboot
This will try the flukex.com kernel, and if it panics, it will reboot and use the normal default kernel.
BLAM works for me.
|
|
|
The Sorry State of Open Source Software |
Posted by: anyweb - 2007-04-16, 06:45 PM - Forum: Linux News
- No Replies
|
 |
Quote:"We're now more than a decade later than the moment when I judged the open source to have gained a decisive momentum - 1996-1997, when Slackware was the reference, Red Hat was 'the other choice', KDE and GNOME were just emerging, Walnut Creek was selling CD-ROMs, and SunSITE mirrors were the home of most of the relevant software. The worst thing that happened was that Yggdrasil Linux died. But the Earth kept spinning..." Read the rest of the editorial at TheJemReport.
more info > [/url][url=http://www.thejemreport.com/mambo/content/view/309/]http://www.thejemreport.com/mambo/content/view/309/
via osnews.com
|
|
|
Integrating ROX Desktop Into Ubuntu |
Posted by: anyweb - 2007-04-16, 06:44 PM - Forum: Linux News
- No Replies
|
 |
Quote:This article details how to make Ubuntu use the ROX Desktop without using ROX Session. "Can we get rid of ROX-Session? It should be possible to integrate ROX with your existing session manager. In this experiment, I configure a fresh Ubuntu installation to run ROX, without using ROX-Session."
more info > [/url][url=http://rox.sourceforge.net/desktop/node/409]http://rox.sourceforge.net/desktop/node/409
via osnews.com
|
|
|
7.04 FeistyFawn Beta |
Posted by: Varjagy - 2007-04-15, 07:44 AM - Forum: Feisty Fawn (7.04)
- Replies (2)
|
 |
I decided I wanted to test Feisty this easter, even though it's a Beta.
A quick "update-manager -d" in terminal, and a button click later, I was on my way from 6.10-7.04 (Edgy-Feisty)
Things were OK until Friday the 13th, when It was time for a Kernel Upgrade. I quickly figured out that something was not right with the new kernel (2.6.20-14), since it wouldn't boot. The boot splash would come up, but grind to a halt early on. Shortly after I would get the following:
BusyBox v1.1.3 (Debian 1:1.1.3-2ubuntu3) Built-in shell (ash)
Enter 'help' for a list of built-in commands
/bin/sh: can't access tty; job control turned off
(initramfs)
As I was looking into this problem, I found out that this was a common problem.
To get around this, I booted with an older Kernel (2.6.20-13), and things worked almost as before, so I started looking into this too. A little reading went by, and these following "problems" are common.
The first thing I discovered was that windows were missing the _, the square and the X up in the right corner. This is caused by the fact that metacity is not starting automatically any more. I solved this, for the time being, by adding it under Sessions, and now it works fine. Windows don't end up on top of my panels. As far as I have understood, this problem pops up for users that automatically saves the session.
Another little problem I had was that DVD movies wouldn't play anymore. This was also an easy little fix, simply reinstall libdvdcss2. For some reason libdvdcss2 had been deactivated during the upgrade the 13th.
As for now, this is all I have, but I'll keep on testing things.
I will come back with a little more info on the Kernel problems when things indicate that this problem is solved.
|
|
|
|