- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: xfs & jfs support in rhel 4.0
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
10-22-2005 10:47 PM
10-22-2005 10:47 PM
xfs & jfs support in rhel 4.0
plz help ...
what rpm should i install ? and from where ?
Regards
Maaz
# rpm -q jfsutils
jfsutils-1.1.7-1
# mkfs -t jfs /dev/hdc3
mkfs.jfs version 1.1.7, 22-Jul-2004
Warning! All data on device /dev/hdc3 will be lost!
Continue? (Y/N) y
Format completed successfully.
200812 kilobytes total disk space.
# mount /dev/hdc3 /mnt/c
mount: fs type jfs not supported by kernel
--------
# rpm -q xfsprogs
xfsprogs-2.6.13-3.2.el4.rf
# mkfs -t xfs /dev/hdc3
meta-data=/dev/hdc3 isize=256 agcount=8, agsize=6275 blks
= sectsz=512
data = bsize=4096 blocks=50200, imaxpct=25
= sunit=0 swidth=0 blks, unwritten=1
naming =version 2 bsize=4096
log =internal log bsize=4096 blocks=1200, version=1
= sectsz=512 sunit=0 blks
realtime =none extsz=65536 blocks=0, rtextents=0
# mount /dev/hdc3 /mnt/c
mount: fs type xfs not supported by kernel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-23-2005 03:40 AM
10-23-2005 03:40 AM
Re: xfs & jfs support in rhel 4.0
To get around it, I set up a small NTFS(in your case xfs) partition at install time.
Doing this insures the necessary kernel module is installed and compiled into the kernel.
Now you need to do this and re-compile the kernel after the fact.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-23-2005 07:29 PM
10-23-2005 07:29 PM
Re: xfs & jfs support in rhel 4.0
You need to rebuild a kernel with 8KSTACKS and enable xfs.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-23-2005 11:44 PM
10-23-2005 11:44 PM
Re: xfs & jfs support in rhel 4.0
# rpm -q jfsutils
jfsutils-1.1.7-1
# mkfs -t jfs /dev/hdc3
mkfs.jfs version 1.1.7, 22-Jul-2004
Warning! All data on device /dev/hdc3 will be lost!
Continue? (Y/N) y
Format completed successfully.
200812 kilobytes total disk space.
# mount /dev/hdc3 /mnt/c
mount: fs type jfs not supported by kernel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-24-2005 01:37 AM
10-24-2005 01:37 AM
Re: xfs & jfs support in rhel 4.0
>>
# cd /usr/src/kernels/2.6.9-11.EL-smp-i686/
# grep -i jfs .config
# CONFIG_JFS_FS is not set
# grep -i xfs .config
# CONFIG_XFS_FS is not set
CONFIG_VXFS_FS=m
#
<<
Like Axel Thimm pointed out, xfs is not available at all in the kernel.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-24-2005 02:11 AM
10-24-2005 02:11 AM
Re: xfs & jfs support in rhel 4.0
So re-compile kernel with xfs and jfs support included should do the trick .
Be aware of the error mentioned by Axel though.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-24-2005 06:12 AM
10-24-2005 06:12 AM