Sponsored Content
Top Forums UNIX for Advanced & Expert Users suse server 8.0 on hp server problem Post 59053 by murataht on Wednesday 8th of December 2004 05:24:05 PM
Old 12-08-2004
Question suse server 8.0 on hp server problem

machine:
Hp Proliant DL145/Opterom 2.4GH
2*72 GBB SCSi hdd,
suse:
suse linux Enterprose server 8.0 for Amd 64

problem:
1. can not boot properly. have to use installation disk to boot it: enter installation and choose "boot from existing installation" and this is the only option. ( just use the boot disk and enter the boot up parameters won't work either. The bootloader is grup and doesn't work either. )
after boot it from installation disck, I checked the boot.msg and boot.omsg in /var/log directory. and there are some wiered stuffs:
boot.omsg:
Inspecting /boot/System.map-2.4.19
Loaded 13874 symbols from /boot/System.map-2.4.19.
Symbols match kernel version 2.4.19.
Error seeking in /dev/kmem

Symbol #ext3, value a019a000

Error adding kernel module table entry.

klogd 1.4.1, log source = ksyslog started.
<4>FAT: bogus logical sector size 0
<3>cramfs: wrong magic
<4>reiserfs: found format "3.6" with standard journal
<4>reiserfs: checking transaction log (sd(8,2)) for (sd(8,2))
<4>reiserfs: using ordered data mode
<4>Using r5 hash to sort names
<4>VFS: Mounted root (reiserfs filesystem) readonly.
<5>Trying to move old root to /initrd ... failed
<5>Unmounting old root
<5>Trying to free ramdisk memory ... okay
<4>Freeing unused kernel memory: 156k freed
<6>md: Autodetecting RAID arrays.
<6>md: autorun ...
<6>md: ... autorun DONE.
<6>Adding Swap: 10586824k swap-space (priority 42)
<4>reiserfs: found format "3.6" with standard journal
<4>reiserfs: checking transaction log (sd(8,17)) for (sd(8,17))
<4>reiserfs: using ordered data mode
<4>Using r5 hash to sort names
Kernel logging (ksyslog) stopped.
Kernel log daemon terminating.
....

I checked the /dev/sda using fdisk, and some strange file systems exist.

sda1 for swap (starts after 1 and end something like after 10 Gb)
sda2 for / ( located after swap, using up rest of the disk space)
sda3 for compack diagnostic( or something like that) (starts from 1 and ends at 1)

fdisk gives some hints about filesystem order is uncorrect.

so what is wrong here??? can any body help me??? to fix this, should I re-install the system??? and in reinstallation should I change the kernel options???


2. Do you think use 62 GB for /, and don't have other partition is ok for the server? or should there be some other patitions for different directories, like /var and /usr etc???

3. I have been told this server crashed the other day, and I am reponsible to find out the reason. so, what kind of log files should I check? and where is them?
the ones i find is in /var/log.
and in them, there are "warn" and " messages" contain something about that. so are these the ones that I should look into?
 

8 More Discussions You Might Find Interesting

1. SuSE

LKCD for suse linux enterprise server 8

Hi, I have installed LKCD using lkcdutils pakage through Yast install and remove applications. I have used enterprise server cd for installation. But I did not found any service of lkcd like /etc/init.d/boo.lkcd there. if we dont have this servers lkcd dump can not be saved at dump... (0 Replies)
Discussion started by: bryanabhay
0 Replies

2. SuSE

Setting up Suse 11.0 as server

Been awhile since I've been playing with Linux and I'm just starting to gte back into the swing of things again :) I'm setting up a OpenSUSE 11.0 computer at home (small network) and want to configure it as a server for Windows computers to be able to log onto the domain. From what I have read... (5 Replies)
Discussion started by: woofie
5 Replies

3. Programming

Problem with Perl script after moving from a Windows/Apache Server to a UNIX server.

I have a Perl script that worked fine before moving it to justhost.com. It was on a Windows/Apache server. Just host is using UNIX. Other Perl scripts on other sites that were also moved work fine so I know Perl is functioning. The script is called cwrmail.pl and is located in my cgi-bin. When I... (9 Replies)
Discussion started by: BigBobbyB
9 Replies

4. SuSE

Extend root partition on SuSE enterprise Server 11.1

Hello Folks, Greetings, I am in need of extending the / partition for one of my SuSE linux Enterprise Server 11.1 which is running on VMware. I will be able to extend the virtual lun from the vshphere console but not sure how to extend the root partition from the OS end. I am not sure if I... (1 Reply)
Discussion started by: PSP
1 Replies

5. Ubuntu

Problem in Postfix server/is my server got some attack

Hi Friends, This is logs of my mail log: mail for yahoo.com.tw is using up 4001 of 6992 active queue entries : 1 Time(s) mail for yahoo.com.tw is using up 4001 of 7018 active queue entries : 1 Time(s) mail for yahoo.com.tw is using up 4001 of 7072 active queue entries : 1 Time(s) ... (1 Reply)
Discussion started by: darakas
1 Replies

6. UNIX for Dummies Questions & Answers

Help with printing to a print server from Suse 11

All; I really have 2 questions 1) How can I tell what filter file is attached to a printer ? 2) Is ther an easy way to script a socket (port9100) command to send print files to the print server? Thank you (0 Replies)
Discussion started by: Hughie
0 Replies

7. SuSE

How to find Server model in Suse?

How to find Server model in Suse? dmidecode is not working here server gives output for hwinfo, but not listing lshw,lshal etc. Server is remotely located, so I cant find it physically. dmesg command is also not helping with boot logs. I am not a Suse admin, request fast reply. Thanks Shyam (6 Replies)
Discussion started by: shyam2j
6 Replies

8. SuSE

Suse enterprise server installation help

hello All, good day to you. could you tell me is there any way I can download SUSE lunux enterprise server trail version ? I want to install sap application over it. thanks in advance. (1 Reply)
Discussion started by: Leaner_963
1 Replies
Linux::Distribution(3pm)				User Contributed Perl Documentation				  Linux::Distribution(3pm)

NAME
Linux::Distribution - Perl extension to detect on which Linux distribution we are running. SYNOPSIS
use Linux::Distribution qw(distribution_name distribution_version); if(my $distro = distribution_name) { my $version = distribution_version(); print "you are running $distro, version $version "; } else { print "distribution unknown "; } Or else do it OO: use Linux::Distribution qw(distribution_name distribution_version); my $linux = Linux::Distribution->new; if(my $distro = $linux->distribution_name()) { my $version = $linux->distribution_version(); print "you are running $distro, version $version "; } else { print "distribution unknown "; } DESCRIPTION
This is a simple module that tries to guess on what linux distribution we are running by looking for release's files in /etc. It now looks for 'lsb-release' first as that should be the most correct and adds ubuntu support. Secondly, it will look for the distro specific files. It currently recognizes slackware, debian, suse, fedora, redhat, turbolinux, yellowdog, knoppix, mandrake, conectiva, immunix, tinysofa, va-linux, trustix, adamantix, yoper, arch-linux, libranet, gentoo, ubuntu, scientific, oracle enterprise linux and redflag. It has function to get the version for debian, suse, fedora, redhat, gentoo, slackware, scientific, oracle enterprise linux, redflag and ubuntu(lsb). People running unsupported distro's are greatly encouraged to submit patches :-) EXPORT None by default. TODO
Add the capability of recognize the version of the distribution for all recognized distributions. AUTHORS
Alexandr Ciornii <alexchorny@gmail.com>, <http://chorny.net> Alberto Re, <alberto@accidia.net> Judith Lebzelter, <judith@osdl.org> COPYRIGHT AND LICENSE
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.5 or, at your option, any later version of Perl 5 you may have available. perl v5.14.2 2012-03-18 Linux::Distribution(3pm)
All times are GMT -4. The time now is 08:04 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy