- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- linux boot
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-09-2007 11:10 PM
01-09-2007 11:10 PM
During linux boot and after enabling swap space, the system hang for more than 10 minutes, can any one explain why ?
Pease i need help
Regards
thx in advance
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-09-2007 11:21 PM
01-09-2007 11:21 PM
Re: linux boot
Start with file system check for errors.
Then if didn't help - boot to single init
(see if there's something in /var/log/messages)
and try to disable services, while checking if it works.
Did you change some configuration file prior to that error message?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-09-2007 11:27 PM
01-09-2007 11:27 PM
Re: linux boot
I installed drivers from smart start.
i installed this drivers on two identical servers (DL380) one of them will hing for some time after enable swap space.
is there any log file where can i find which service didn't start?
thx for yr reply
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-09-2007 11:37 PM
01-09-2007 11:37 PM
Re: linux boot
Why don't you fsck to see if it helps?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2007 12:15 AM
01-10-2007 12:15 AM
Re: linux boot
fsck for what? i thing it is a service problem, but i need to know which service
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2007 12:37 AM
01-10-2007 12:37 AM
SolutionIf you are using Red Hat or Fedora, disable the graphical boot. Remove the rhgb from the kernel boot options.
Also you can start in "Interactive" Mode by pressing I when prompted.
You can also start in single user mode and start the services in the right order as your runlevel dictates. To start in single user mode add the "single" option to your kernel boot options.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2007 01:48 AM
01-10-2007 01:48 AM
Re: linux boot
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2007 03:02 AM
01-10-2007 03:02 AM
Re: linux boot
thx for ur answers the problem is solved by adding thefollowing line to /etc/hosts
127.0.0.1 hostname localhost.localdomain localhost
but it seems that i have another problem, when i try to start any service (like vsftpd) from "service configuration" menu, the service configuration menu hang.the system still runnig without any problem excpt the service configuration menu
any one has any idea?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2007 03:04 AM
01-10-2007 03:04 AM
Re: linux boot
127.0.0.1 hostname localhost.localdomain localhost
The correct configuration is:
127.0.0.1 localhost.localdomain localhost
# Real host ip (eth0) - Full Host name - Short Host name
192.168.0.1 myhost.mydomain.com myhost
Try configuring like it that.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2007 03:15 AM
01-10-2007 03:15 AM
Re: linux boot
i edit the file /etc/hosts
but i still have the problem of service configuration, i see this problem on many workstation with redhat 4,
whow can i fix it
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2007 05:52 AM
01-10-2007 05:52 AM
Re: linux boot
I suggest you to use command line utilities that always work and are faster:
chkconfig: To enable disable services at startup, for example:
chkconfig vsftpd on
chkconfig vsftpd off
service: To start and stop services, for example:
service vsftpd start
service vsftpd stop