[x] Welcome to LinuxSolved.com Linux help forums, here we are a community of Linux users helping each other. It is helpful to both ie. new linux users as well experienced one. We always have our experts to help you and ofcourse members help each other, so you can ask for help any time by Registering.: Click to Register

Welcome, Guest. Please login or register.
Did you miss your activation email?


Login with username, password and session length

Linux Forums - Linux Help,Advice & support community:LinuxSolved.com  |  Forum
The LinuxSolved.com GNU/Linux User Communit - Forum
Welcome to LinuxCommunity You have just arrived to a friendly linux community which is helping Linux Users from Years.. You can be its part if you have not already joined it. Registration is FREE and is gateway to unlimited help and support to all your linux related needs. If you are an GNU/Linux supporter then you have come to the right place.
  Show Posts
Pages: [1] 2 3 ... 32
1  Others / Miscellaneous / Re: ext3 doubts, why it checks for file system during boot ? on: June 13, 2008, 04:56:22 AM
To what i understand is:

Journalling helps u to recover corrupted data back to the previously synced to disk data from the buffer.

Any unclean reboot/reboot can cause this based on the runlevel scripts deployed by the Linux distro to make sure no data corruption. If we dont do that, there is a risk to the data integrity.

Also, it will always force a check, when ur ext3 is customized in such a way where after a period of time, u must do a force filesystem check.

Use tune2fs utility to check the ext3 filesystem for it's tuning info.
2  Network Troublshooting / Linux Servers Support / Re: How to convert ext3 to ext2 and resize the ext3 filesystem on: June 13, 2008, 04:52:23 AM
For ext3 to ext2, u dont have to do anything actually. U juz simply ignore the journal portion of data.

In other words, you juz need to mount your ext3 filesystem partitions as ext2 partition. Done.

But from ext2 to ext3, ur in big trouble......
3  Linux in General / Linux Development & Programming / Re: Ext3 Journal on: June 13, 2008, 04:50:33 AM
You cant basically see this ext3 journal "files" as if it is a file.

It's not a file, but a metadata (stored in a defined data structure) in binary format which only the ext3 module itself can understand. Simply to say, if u want to know inside the meaning of it as equivalent to ur first 512bytes in the bootsector MBR, sorry to say that, it's quite tough, unless u have gone through the code and documentation of ext3 specs.

For 512bytes in MBR, we will need to refer to the documentation and specs right? Smiley

Same goes here for ext3 file system. I looked at the partimage.org sourced before which uses ext3 and other filesystems code and datastructure and how it is implemented. Probably u can take a look there too.

Hope that helps. Cheers.
4  Linux Software / Linux Installation Support / Re: Installed Fedora 7: worried about Ubuntu on: June 13, 2008, 04:44:41 AM
Make sure u have a dedicated harddisk partition out of that disk space to install Ubuntu.
5  Network Troublshooting / Linux Servers Support / Re: Promt passowrd with invisible mode on: June 13, 2008, 04:40:47 AM
To hide ur password while u type, hide the command prompt input via:

# stty -echo

To turn back on the text input:
# stty echo

6  Hardware Troubleshooting in Linux / Other Devices / Re: how to check its local or SAN disk in linux on: June 13, 2008, 04:37:18 AM
Hi, gaurav. We can't differentiate SAN disk using /dev/sdX device names as when the LUNs are provisioned. We will still see it as a /dev/sdX. Of course this is excluding the I-SCSI based storage luns. Which is obviously very straightforward to detect.

If you are using SAN storage. You will need to refer to your vendor documentation as it is very vendor specific. Some are even using their own device filenames. For example, an EMC san storage uses:

/dev/emcpowerX as their device file

However these device are accessible via their multipaths which can be /dev/sdX

Hope above explains if I answer u what u r looking for.

Also, if you dont have a vendor based software to detect your SAN disk (LUNs), or instead uses "multipath" tools which is open source utility. Then, u can see the device names via running:

# multipath -l

Alternatively, u can see these LUNs are detect and mapped using device mapper. (/dev/mapper/.... or /dev/disk/by-uuid or /dev/disk/by-name)

As for /proc/scsi/{your hba card type}, this is usable via kernel 2.4 (i.e RHEL3), but for kernel 2.6 (i.e SLES10) it will be in /sys/class/fc_host/{hba cards info here}
7  Linux Software / Linux Application / Re: Mail server configuration on: May 23, 2008, 07:14:41 AM
For Sendmail:
You should disable the masquerading in order to allow your domain sendmail specific host senders. And then, recompile the sendmail.mc file.

http://www.linuxhomenetworking.com/wiki/index.php/Quick_HOWTO_:_Ch21_:_Configuring_Linux_Mail_Servers
8  Others / Miscellaneous / Re: Uncompression Impossible:gunzip:fade.dbf.Z:Bad table(case b) on: December 26, 2007, 11:45:12 PM
Have you used uncompress command ?

--> uncompress your-file.Z

If *.Z is your extension in this case and it is using the LZ compression. If not, u can study using the file command.

# file your-file.Z

Remember, linux use extensions as an identifier for user only. In real linux, a file without a extension will still run accordingly by its application as those applications knows how to make full use of that file (be it a binary or a text file)

If the file is corrupted like Ricky mention, u can  verify by running "md5sum" on the original file and the copied file. To make sure the file did not get corrupted during transfer.
# md5sum original-file.z

# md5sum copied-file.z
9  Linux in General / Os Talk / Re: Find Command on: December 26, 2007, 02:24:47 AM
I believe it is not that Linux have no proper or missing proper solution. It is just that we have a phenomena called "So Near Yet So Far" Cheesy

The answer to using Linux/Unix commands is 1 simple principle that adheres to standards wisely is
--> Use the "man" and "info" tool.

Most of the times Linux tool developers will either document their sample commands in "man" page or "info" page.

# man find
or
# info find

You follow this principle, u dont need 2 waste effort googling around at all. Tongue
10  Linux in General / Linux Kernel / Re: Kernel Panic: VFS: Unable to mount root fs on unknown-block on: December 26, 2007, 02:02:21 AM
Ah a common problem when compiling a new kernel for a fresh start. Used to happen to me too on Red Hat based distros Smiley

1. What for is initrd.img?
Initial ramdisk  file is a binary file consists of a small kernel modules that you want to load before switching into your real root partition (ramdisk here as it runs on ur RAM). Red Hat always do this with for their filesystems (biasly referring to ext3 most of the time). So you will need 2 load kernel module (ext3) before VFS can use it mount that partition.

What for is bootspalsh. Can initrd.img be replace with bootsplash somehow?
Bootsplash is a new toy in your linux where when you boot your linux, you dont see those kernel log messages showing hardware detection but a nice splash screen with cool pictures and progress bar.

Bootsplash project tis here. I used to re-compile the kernel to support bootsplash on slackware. Smiley
--> http://bootsplash.org/Welcome_to_the_graphical_world_of_Linux

Why Command “make dep” answered that this is not necessary?
Depends on which kernel version you compile. And when u run it.
1. I presume u r compiling a kernel 2.6.x

2. If not you have just recompiled and ran once "make dep". So if you do so again without any change to existing binaries, you will get this message.
11  Network Troublshooting / Linux Servers Support / Re: How to disable host name lookup in mysql to increase performance on: December 26, 2007, 01:47:39 AM
If you do not wish to use FQDN or hostnames to access your server (for example: mysql) you can just do so simply by using that server's IP address rather than the hostname.

There could be other factors that hit the server performance such as hardware and  OS tuning itself other than the misconfiguration of DNS itself. However, that is left to your hand as a sys admin to decide.
12  Linux in General / Linux Development & Programming / Re: Script using find command on: December 14, 2007, 10:02:04 PM
Owez read the man page dude Smiley

# man find
13  Others / Miscellaneous / Re: Difference In Command on: December 14, 2007, 09:59:35 PM
FYI

[root@rhel4 /]# find /root -name foo*
/root/foo2
/root/foo1
/root/foo*
[root@rhel4 /]#
[root@rhel4 /]#
[root@rhel4 /]# find /root -name foo\*
/root/foo2
/root/foo1
/root/foo*
[root@rhel4 /]#
[root@rhel4 /]#
[root@rhel4 /]# find /root -name "foo\*"
/root/foo*
[root@rhel4 /]#
14  Linux Software / Linux Installation Support / Re: SCSI subsystem linux kernel does not allow more than 15 partition:Fedora 7 on: December 14, 2007, 09:52:35 PM
Guys, FYI http://docs.fedoraproject.org/release-notes/f8/en_US/sn-Installer.html
15  Others / Miscellaneous / Re: Source (tar) file to rpm on: December 14, 2007, 09:09:27 PM
1. Always use Maximum RPM tutorial as your refrence.

2. Use "rpmbuild" utility. Also if that source tarball comes with the RPM specfile "application-file.spec". Then, you are very luck. Else, you need to write one. Smiley

Take note that, normally if you use source RPM packages (i.e. app-1.2.3.src.i386.rpm)  from the distro itself. You are 100% lucky that it has already the spce files.
Pages: [1] 2 3 ... 32
Welcome, Guest. Please login or register.
Did you miss your activation email?
November 22, 2008, 05:03:17 AM

Login with username, password and session length
Navigation
Recent Discussions
[November 20, 2008, 11:30:52 PM]

[November 19, 2008, 07:52:41 PM]

[November 19, 2008, 07:52:36 PM]

[November 17, 2008, 10:42:59 AM]

[November 16, 2008, 12:49:47 AM]

[November 16, 2008, 12:48:58 AM]

[November 15, 2008, 08:29:02 AM]

[November 15, 2008, 08:24:41 AM]

[November 14, 2008, 05:11:50 AM]

[November 13, 2008, 03:28:22 AM]
Members
Total Members: 6226
Latest: Abhi
Stats
Total Posts: 8269
Total Topics: 2253
Online Today: 10
Online Ever: 111
(June 28, 2007, 06:47:29 AM)
Users Online
Users: 0
Guests: 6
Total: 6
Privacy Policy| Powered by SMF 1.1.4 | SMF © 2006-2007, Simple Machines LLC
Seo4Smf v0.2 © Webmaster's Talks
Theme & TinyPortal v0.9.8 © Bloc