<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: httpfs in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/httpfs/m-p/4546481#M39096</link>
    <description>Hi there&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I have a PXE server in my network with Centos,Fedora,Memtest,Knopix etc.&lt;BR /&gt;&lt;BR /&gt;I need to add backtrack to the list.&lt;BR /&gt;&lt;BR /&gt;So I copied vmlinuz + initrd.gz to /tftpboot/backtrack/&lt;BR /&gt;I modified my configuration file: vim /tftpboot/pxelinux.cfg/default&lt;BR /&gt;&lt;BR /&gt;LABEL backtrack&lt;BR /&gt;MENU LABEL BT4&lt;BR /&gt;KERNEL backtrack/vmlinuz&lt;BR /&gt;IPAPPEND 1&lt;BR /&gt;APPEND netboot=http httproot=&lt;A href="http://10.15.0.3/repo/" target="_blank"&gt;http://10.15.0.3/repo/&lt;/A&gt; vga=0x317 initrd=backtrack/initrd.gz ramdisk_size=9999 root=/dev/ram0 rw quiet&lt;BR /&gt;&lt;BR /&gt;When I boot I can see the initrd.gz and vmlinuz are being loaded but then the system is unable to find BT4 directory and it drops into busybox shell. Which means that &lt;A href="http://10.15.0.3/repo/" target="_blank"&gt;http://10.15.0.3/repo/&lt;/A&gt; is not being mounted to /mnt/httpfs/.&lt;BR /&gt;&lt;BR /&gt;I can mount it from command line though: &lt;BR /&gt;&lt;BR /&gt;httpfs &lt;A href="http://10.15.0.3/repo/" target="_blank"&gt;http://10.15.0.3/repo/&lt;/A&gt; /mnt/httpfs/&lt;BR /&gt;&lt;BR /&gt;All this makes me think that backtrack doesn't really understand following line in the configuration file: &lt;BR /&gt;&lt;BR /&gt;APPEND netboot=http httproot=&lt;A href="http://10.15.0.3/repo/" target="_blank"&gt;http://10.15.0.3/repo/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;So how to make backtrack aware that I need it to mount httproot=&lt;A href="http://10.15.0.3/repo/" target="_blank"&gt;http://10.15.0.3/repo/&lt;/A&gt; to /httpfs during the boot proces ?&lt;BR /&gt;&lt;BR /&gt;Reagrds&lt;BR /&gt;&lt;BR /&gt;Peter</description>
    <pubDate>Thu, 10 Dec 2009 21:18:37 GMT</pubDate>
    <dc:creator>Piotr Kirklewski</dc:creator>
    <dc:date>2009-12-10T21:18:37Z</dc:date>
    <item>
      <title>httpfs</title>
      <link>https://community.hpe.com/t5/operating-system-linux/httpfs/m-p/4546478#M39093</link>
      <description>Hi there.&lt;BR /&gt;Is there anyone familiar with httpfs and how to mount the files in linux.&lt;BR /&gt;I have one server with apache running and some files in /var/www/html/repo. &lt;BR /&gt;On a different system I would like to be able to mount the repo to /mnt/repo but I'm struggling to do so.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://10.15.0.3/repo/" target="_blank"&gt;http://10.15.0.3/repo/&lt;/A&gt;&lt;BR /&gt; Parent Directory    -&lt;BR /&gt; BT4/ 07-Dec-2009 01:51  -&lt;BR /&gt; CentOS/ 18-Nov-2009 02:42  -&lt;BR /&gt; Knoppix/ 04-Dec-2009 01:05  -&lt;BR /&gt; bt4-beta.iso 07-Dec-2009 03:13&lt;BR /&gt;&lt;BR /&gt;mount -t httpfs &lt;A href="http://10.15.0.3/repo/bt4-beta.iso" target="_blank"&gt;http://10.15.0.3/repo/bt4-beta.iso&lt;/A&gt; /mnt/httpfs/&lt;BR /&gt;&lt;BR /&gt;mount: unknown filesystem type 'httpfs'&lt;BR /&gt;&lt;BR /&gt;Anyone ?</description>
      <pubDate>Tue, 08 Dec 2009 20:18:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/httpfs/m-p/4546478#M39093</guid>
      <dc:creator>Piotr Kirklewski</dc:creator>
      <dc:date>2009-12-08T20:18:42Z</dc:date>
    </item>
    <item>
      <title>Re: httpfs</title>
      <link>https://community.hpe.com/t5/operating-system-linux/httpfs/m-p/4546479#M39094</link>
      <description>&lt;A href="http://httpfs.sourceforge.net/" target="_blank"&gt;http://httpfs.sourceforge.net/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;HTTPFS is a FUSE-based filesystem, and it has its own mount utility, which is named simply "httpfs". This is because it needs to set up the appropriate processes before the actual mount operation.&lt;BR /&gt;&lt;BR /&gt;Of course, to use FUSE, your system also needs to have the FUSE library and kernel module available. Old distributions may not have those components.&lt;BR /&gt;&lt;BR /&gt;The correct mount command in this case is:&lt;BR /&gt;&lt;BR /&gt;httpfs &lt;A href="http://10.15.0.3/repo/bt4-beta.iso" target="_blank"&gt;http://10.15.0.3/repo/bt4-beta.iso&lt;/A&gt; /mnt/httpfs/&lt;BR /&gt;&lt;BR /&gt;(note that there is no "mount" anywhere on the command line!)&lt;BR /&gt;&lt;BR /&gt;It may be possible to install/symlink the "httpfs" binary to /sbin/mount.httpfs, so that the regular mount command can automatically use it as a "mount helper" program for httpfs.&lt;BR /&gt;&lt;BR /&gt;Alternatively, the FUSE FAQ says:&lt;BR /&gt;-----&lt;BR /&gt;Is it possible to mount a fuse filesystem from fstab?&lt;BR /&gt;&lt;BR /&gt;Yes, from [FUSE] version 2.4.0 this is possible.  The filesystem must adhere to some rules about command line options to be able to work this way.&lt;BR /&gt;Here's an example of mounting an sshfs filesystem:&lt;BR /&gt;&lt;BR /&gt;sshfs#user@host:/    /mnt/host    fuse    defaults    0 0&lt;BR /&gt;&lt;BR /&gt;The mounting is performed by the /sbin/mount.fuse helper script. In&lt;BR /&gt;this example the FUSE-linked binary must be called sshfs and must reside somewhere in $PATH.&lt;BR /&gt;-----&lt;BR /&gt;&lt;BR /&gt;MK</description>
      <pubDate>Wed, 09 Dec 2009 05:47:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/httpfs/m-p/4546479#M39094</guid>
      <dc:creator>Matti_Kurkela</dc:creator>
      <dc:date>2009-12-09T05:47:27Z</dc:date>
    </item>
    <item>
      <title>Re: httpfs</title>
      <link>https://community.hpe.com/t5/operating-system-linux/httpfs/m-p/4546480#M39095</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;To use the content of the cd you can just loop mount the iso&lt;BR /&gt;mount -o loop,ro &lt;A href="http://10.15.0.3/repo/bt4-beta.iso" target="_blank"&gt;http://10.15.0.3/repo/bt4-beta.iso&lt;/A&gt; /mnt/httpfs/&lt;BR /&gt;&lt;BR /&gt;Rgds,//KK</description>
      <pubDate>Wed, 09 Dec 2009 06:19:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/httpfs/m-p/4546480#M39095</guid>
      <dc:creator>Kannan Kumaran</dc:creator>
      <dc:date>2009-12-09T06:19:42Z</dc:date>
    </item>
    <item>
      <title>Re: httpfs</title>
      <link>https://community.hpe.com/t5/operating-system-linux/httpfs/m-p/4546481#M39096</link>
      <description>Hi there&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I have a PXE server in my network with Centos,Fedora,Memtest,Knopix etc.&lt;BR /&gt;&lt;BR /&gt;I need to add backtrack to the list.&lt;BR /&gt;&lt;BR /&gt;So I copied vmlinuz + initrd.gz to /tftpboot/backtrack/&lt;BR /&gt;I modified my configuration file: vim /tftpboot/pxelinux.cfg/default&lt;BR /&gt;&lt;BR /&gt;LABEL backtrack&lt;BR /&gt;MENU LABEL BT4&lt;BR /&gt;KERNEL backtrack/vmlinuz&lt;BR /&gt;IPAPPEND 1&lt;BR /&gt;APPEND netboot=http httproot=&lt;A href="http://10.15.0.3/repo/" target="_blank"&gt;http://10.15.0.3/repo/&lt;/A&gt; vga=0x317 initrd=backtrack/initrd.gz ramdisk_size=9999 root=/dev/ram0 rw quiet&lt;BR /&gt;&lt;BR /&gt;When I boot I can see the initrd.gz and vmlinuz are being loaded but then the system is unable to find BT4 directory and it drops into busybox shell. Which means that &lt;A href="http://10.15.0.3/repo/" target="_blank"&gt;http://10.15.0.3/repo/&lt;/A&gt; is not being mounted to /mnt/httpfs/.&lt;BR /&gt;&lt;BR /&gt;I can mount it from command line though: &lt;BR /&gt;&lt;BR /&gt;httpfs &lt;A href="http://10.15.0.3/repo/" target="_blank"&gt;http://10.15.0.3/repo/&lt;/A&gt; /mnt/httpfs/&lt;BR /&gt;&lt;BR /&gt;All this makes me think that backtrack doesn't really understand following line in the configuration file: &lt;BR /&gt;&lt;BR /&gt;APPEND netboot=http httproot=&lt;A href="http://10.15.0.3/repo/" target="_blank"&gt;http://10.15.0.3/repo/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;So how to make backtrack aware that I need it to mount httproot=&lt;A href="http://10.15.0.3/repo/" target="_blank"&gt;http://10.15.0.3/repo/&lt;/A&gt; to /httpfs during the boot proces ?&lt;BR /&gt;&lt;BR /&gt;Reagrds&lt;BR /&gt;&lt;BR /&gt;Peter</description>
      <pubDate>Thu, 10 Dec 2009 21:18:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/httpfs/m-p/4546481#M39096</guid>
      <dc:creator>Piotr Kirklewski</dc:creator>
      <dc:date>2009-12-10T21:18:37Z</dc:date>
    </item>
  </channel>
</rss>

