- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: loopfs
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
Discussions
Discussions
Discussions
Forums
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
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
тАО03-01-2004 11:25 PM
тАО03-01-2004 11:25 PM
Fatal error. Can't loopmount /ASU/tmp.mondo.10647/mindilinux/5582/mountpoint.5582; does your kernel support loopfs? If not, please recompile
your kernel. Your Linux distro is broken.
I ran xconfig, and loooked under filesystem, but I dont see a loopfs kernel parm to pull in. Any ideas how I can fold in loopfs?
10x
RPM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-01-2004 11:40 PM
тАО03-01-2004 11:40 PM
Re: loopfs
$ man losetup
this could help.
Ciao
Claudio
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-01-2004 11:43 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-01-2004 11:43 PM
тАО03-01-2004 11:43 PM
Re: loopfs
You'll find it under "block devices", not filesyste,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-02-2004 03:52 AM
тАО03-02-2004 03:52 AM
Re: loopfs
To make sure just try to load the loop module.
If it works your kernel is already built for loopfs support, otherwise you will have to compile a new kernel where you configure the settings for loopfs support as told by the others.
Try something like this
[root@chaos store]# modprobe -d loop
=============================================
Module loop
kname loop
objkey loop
names: loop
mode: NORMAL
Module matching loop: /lib/modules/2.4.18-3/kernel/drivers/block/loop.o
=============================================
[root@chaos store]# lsmod|grep loop
loop 11024 0 (unused)
Or if you have an ISO image laying around try to mount it with the "-loop" switch of mount.
[root@chaos root]# mount -o loop /opt/store/hostap.iso /mnt/tmp1
[root@chaos root]# df -k /mnt/tmp1
Filesystem 1k-blocks Used Available Use% Mounted on
/opt/store/hostap.iso
79488 79488 0 100% /mnt/tmp1
[root@chaos root]# lsmod|grep loop
loop 11024 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-02-2004 02:26 PM
тАО03-02-2004 02:26 PM
Re: loopfs
grep -i loop .config
CONFIG_BLK_DEV_LOOP=y
Which means the loop support is actually build into the Kernel directly in this case.
CONFIG_BLK_DEV_LOOP=m would indicate module support and =n no support.
Greetings, Martin