MONITORING OF A HYDROPONIC GARDEN USING DALLAS ONE-WIRE SENSORS AND OWFS John T. Rine ======Objective====== The object of this project is to install the One-Wire File System (OWFS) on a Linux machine and then use OWFS to get data from Dallas One-Wire sensors. The sensors will be placed in a Hydroponics garder and will be used to monitor the garden. ======Materials/Reading/Prerequisites====== ^Description^Quantity^Source^ |LinkUSB 1-wire USB interface|1|http://www.ibuttonlink.com/linkusb.aspx| |MultiSensor Temperature/Light sensor|1|http://www.ibuttonlink.com/ms-tl.aspx| |Computer with Linux Debian|1|Lair| ======Background====== OWFS or One-Wire File System was created to make working with Dallas One-Wire sensors easier. It allows the user to read sensor input and, following the Linux philosphy that everything is a file, treat the data that OWFS collects like a file. For example, the data can be retrieved through the use of the Linux cat command on the device file.\\ \\ 1-Wire® products provide combinations of memory, mixed signal, and secure authentication functions through a single connection serial interface. With both power and communication delivered over the serial network. Because 1-Wire® devices require only a single connection to function, the number of connections required to network these devices is minimized making them the logical choice when physical connections must be minimized.\\ ======Procedure====== **1. $ sudo apt-get install libusb-dev**\\ Since I logged in as the Super-user, however, no sudo needed.\\ root@dhcp-179:/# apt-get install libusb-dev Reading package lists... Done Building dependency tree Reading state information... Done libusb-dev is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 8 not upgraded. root@dhcp-179:/# **2. $ sudo apt-get install libfuse-dev**\\ Once again, since I was logged in as the Super-user, no sudo needed.\\ root@dhcp-179:/# apt-get install libfuse-dev Reading package lists... Done Building dependency tree Reading state information... Done libfuse-dev is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 8 not upgraded. root@dhcp-179:/# **3. $ sudo apt-get install checkinstall**\\ Since I was logged in as the Super-user, no sudo needed.\\ root@dhcp-179:/# apt-get install checkinstall Reading package lists... Done Building dependency tree Reading state information... Done checkinstall is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 8 not upgraded. **4.edit the /etc/fuse.conf file:\\ Add the following entry to /etc/fuse.conf:\\ \\ # Allow non-root users to specify the 'allow_other' or 'allow_root'\\ # mount options.\\ #\\ user_allow_other**\\ root@dhcp-17root@dhcp-179:/# cd etc root@dhcp-179:/etc# nano fuse.conf9:/# # Set the maximum number of FUSE mounts allowed to non-root users. # The default is 1000. # #mount_max = 1000 # Allow non-root users to specify the 'allow_other' or 'allow_root' # mount options. # user_allow_other **5. $ wget http://downloads.sourceforge.net/project/owfs/owfs/2.8p2/owfs-2.8p2.tar.gz**\\ root@dhcp-179:/etc# wget http://downloads.sourceforge.net/project/owfs/owfs/2.8p2/owfs-2.8p2.tar.gz --2011-02-08 10:33:28-- http://downloads.sourceforge.net/project/owfs/owfs/2.8p2/owfs-2.8p2.tar.gz Resolving downloads.sourceforge.net... 216.34.181.59 Connecting to downloads.sourceforge.net|216.34.181.59|:80... connected. HTTP request sent, awaiting response... 302 Found Location: http://superb-sea2.dl.sourceforge.net/project/owfs/owfs/2.8p2/owfs-2.8p2.tar.gz [following] --2011-02-08 10:33:28-- http://superb-sea2.dl.sourceforge.net/project/owfs/owfs/2.8p2/owfs-2.8p2.tar.gz Resolving superb-sea2.dl.sourceforge.net... 209.160.57.180 Connecting to superb-sea2.dl.sourceforge.net|209.160.57.180|:80... connected. HTTP request sent, awaiting response... 200 OK Length: 1278053 (1.2M) [application/x-gzip] Saving to: “owfs-2.8p2.tar.gz.1” 100%[======================================>] 1,278,053 217K/s in 10s 2011-02-08 10:33:39 (124 KB/s) - “owfs-2.8p2.tar.gz.1” saved [1278053/1278053] root@dhcp-179:/etc# **6. $ tar zxvf owfs-2.8p2.tar.gz && cd owfs-2.8p2**\\ root@dhcp-179:/etc# tar zxvf owfs-2.8p2.tar.gz && cd owfs-2.8p2 . . . owfs-2.8p2/module/ownet/c/src/include/ownetapi.h owfs-2.8p2/module/ownet/c/src/include/Makefile.in owfs-2.8p2/module/ownet/c/src/include/ow_message.h owfs-2.8p2/module/ownet/c/src/include/ow_charblob.h owfs-2.8p2/module/ownet/c/src/include/ow.h owfs-2.8p2/module/ownet/c/src/include/ow_mutexes.h owfs-2.8p2/module/ownet/c/src/include/ow_dl.h owfs-2.8p2/module/ownet/c/src/include/ow_dnssd.h owfs-2.8p2/module/ownet/c/src/include/ow_localtypes.h owfs-2.8p2/module/ownet/c/src/include/compat_netdb.h owfs-2.8p2/module/ownet/c/src/include/ow_functions.h owfs-2.8p2/module/ownet/c/src/include/sem.h owfs-2.8p2/module/ownet/c/src/include/Makefile.am owfs-2.8p2/module/ownet/c/src/include/compat_getopt.h owfs-2.8p2/module/ownet/c/src/include/compat.h owfs-2.8p2/module/ownet/c/src/include/ow_debug.h owfs-2.8p2/module/ownet/c/src/include/ow_stub.h owfs-2.8p2/module/ownet/c/src/include/ow_server.h owfs-2.8p2/module/ownet/c/src/include/ow_connection.h owfs-2.8p2/module/ownet/c/src/include/ow_global.h owfs-2.8p2/module/ownet/c/Makefile.am owfs-2.8p2/module/owftpd/ owfs-2.8p2/module/owftpd/Makefile.in owfs-2.8p2/module/owftpd/src/ owfs-2.8p2/module/owftpd/src/Makefile.in owfs-2.8p2/module/owftpd/src/Makefile.am owfs-2.8p2/module/owftpd/src/c/ owfs-2.8p2/module/owftpd/src/c/owftpd.c owfs-2.8p2/module/owftpd/src/c/Makefile.in owfs-2.8p2/module/owftpd/src/c/file_cd.c owfs-2.8p2/module/owftpd/src/c/daemon_assert.c owfs-2.8p2/module/owftpd/src/c/Makefile.am owfs-2.8p2/module/owftpd/src/c/ftp_session.c owfs-2.8p2/module/owftpd/src/c/watchdog.c owfs-2.8p2/module/owftpd/src/c/ftp_listener.c owfs-2.8p2/module/owftpd/src/c/file_list.c owfs-2.8p2/module/owftpd/src/c/ftp_command.c owfs-2.8p2/module/owftpd/src/c/telnet_session.c owfs-2.8p2/module/owftpd/src/include/ owfs-2.8p2/module/owftpd/src/include/Makefile.in owfs-2.8p2/module/owftpd/src/include/owftpd.h owfs-2.8p2/module/owftpd/src/include/Makefile.am owfs-2.8p2/module/owftpd/install-sh owfs-2.8p2/module/owftpd/NEWS owfs-2.8p2/module/owftpd/TODO owfs-2.8p2/module/owftpd/Makefile.am owfs-2.8p2/module/owftpd/COPYING owfs-2.8p2/module/owftpd/AUTHORS owfs-2.8p2/module/owftpd/ChangeLog owfs-2.8p2/module/owftpd/README owfs-2.8p2/module/owserver/ owfs-2.8p2/module/owserver/Makefile.in owfs-2.8p2/module/owserver/src/ owfs-2.8p2/module/owserver/src/Makefile.in owfs-2.8p2/module/owserver/src/Makefile.am owfs-2.8p2/module/owserver/src/c/ owfs-2.8p2/module/owserver/src/c/to_client.c owfs-2.8p2/module/owserver/src/c/dir.c owfs-2.8p2/module/owserver/src/c/Makefile.in owfs-2.8p2/module/owserver/src/c/handler.c owfs-2.8p2/module/owserver/src/c/data.c owfs-2.8p2/module/owserver/src/c/write.c owfs-2.8p2/module/owserver/src/c/owserver.c owfs-2.8p2/module/owserver/src/c/from_client.c owfs-2.8p2/module/owserver/src/c/Makefile.am owfs-2.8p2/module/owserver/src/c/loop.c owfs-2.8p2/module/owserver/src/c/dirall.c owfs-2.8p2/module/owserver/src/c/read.c owfs-2.8p2/module/owserver/src/c/ping.c owfs-2.8p2/module/owserver/src/c/dirallslash.c owfs-2.8p2/module/owserver/src/c/error.c owfs-2.8p2/module/owserver/src/include/ owfs-2.8p2/module/owserver/src/include/Makefile.in owfs-2.8p2/module/owserver/src/include/Makefile.am owfs-2.8p2/module/owserver/src/include/owserver.h owfs-2.8p2/module/owserver/Makefile.am owfs-2.8p2/module/Makefile.am owfs-2.8p2/module/swig/ owfs-2.8p2/module/swig/php/ owfs-2.8p2/module/swig/php/php.m4 owfs-2.8p2/module/swig/php/Makefile.in owfs-2.8p2/module/swig/php/example/ owfs-2.8p2/module/swig/php/example/load_php_OW.php.in owfs-2.8p2/module/swig/php/example/owdir.php owfs-2.8p2/module/swig/php/example/load_php_OW.php owfs-2.8p2/module/swig/php/Makefile.am owfs-2.8p2/module/swig/php/php_OW.h owfs-2.8p2/module/swig/php/ow_wrap.c owfs-2.8p2/module/swig/python/ owfs-2.8p2/module/swig/python/ow/ owfs-2.8p2/module/swig/python/ow/Makefile.in owfs-2.8p2/module/swig/python/ow/Makefile.am owfs-2.8p2/module/swig/python/ow/__init__.py owfs-2.8p2/module/swig/python/Makefile.in owfs-2.8p2/module/swig/python/python.m4 owfs-2.8p2/module/swig/python/setup.py.in owfs-2.8p2/module/swig/python/Makefile.am owfs-2.8p2/module/swig/python/unittest/ owfs-2.8p2/module/swig/python/unittest/ds2408.py owfs-2.8p2/module/swig/python/unittest/owload.py owfs-2.8p2/module/swig/python/unittest/owsensors.py owfs-2.8p2/module/swig/python/unittest/util.py owfs-2.8p2/module/swig/python/unittest/owtest_think.ini owfs-2.8p2/module/swig/python/unittest/owtest_sample.ini owfs-2.8p2/module/swig/python/unittest/ds1420.py owfs-2.8p2/module/swig/python/unittest/Readme.txt owfs-2.8p2/module/swig/python/unittest/owtest.py owfs-2.8p2/module/swig/python/unittest/ds2409.py owfs-2.8p2/module/swig/python/examples/ owfs-2.8p2/module/swig/python/examples/tree.py owfs-2.8p2/module/swig/python/examples/errormessages.py owfs-2.8p2/module/swig/python/examples/check_ow.py owfs-2.8p2/module/swig/python/examples/temperature.py owfs-2.8p2/module/swig/python/examples/xmlrpc_client.py owfs-2.8p2/module/swig/python/examples/raw_access.py owfs-2.8p2/module/swig/python/examples/xmlrpc_server.py owfs-2.8p2/module/swig/Makefile.in owfs-2.8p2/module/swig/perl5/ owfs-2.8p2/module/swig/perl5/Makefile.in owfs-2.8p2/module/swig/perl5/example/ owfs-2.8p2/module/swig/perl5/example/owdir.pl owfs-2.8p2/module/swig/perl5/example/tree.pl owfs-2.8p2/module/swig/perl5/OW/ owfs-2.8p2/module/swig/perl5/OW/Changes owfs-2.8p2/module/swig/perl5/OW/META.yml owfs-2.8p2/module/swig/perl5/OW/t/ owfs-2.8p2/module/swig/perl5/OW/t/OW.t owfs-2.8p2/module/swig/perl5/OW/Makefile.linux.in owfs-2.8p2/module/swig/perl5/OW/Makefile.osx.in owfs-2.8p2/module/swig/perl5/OW/README owfs-2.8p2/module/swig/perl5/OW/MANIFEST owfs-2.8p2/module/swig/perl5/Makefile.am owfs-2.8p2/module/swig/perl5/perl5.m4 owfs-2.8p2/module/swig/Makefile.am owfs-2.8p2/module/swig/ow.i owfs-2.8p2/module/owlib/ owfs-2.8p2/module/owlib/Makefile.in owfs-2.8p2/module/owlib/src/ owfs-2.8p2/module/owlib/src/Makefile.in owfs-2.8p2/module/owlib/src/Makefile.am owfs-2.8p2/module/owlib/src/c/ owfs-2.8p2/module/owlib/src/c/ow_zero.c owfs-2.8p2/module/owlib/src/c/ow_2409.c owfs-2.8p2/module/owlib/src/c/ow_usb_cycle.c owfs-2.8p2/module/owlib/src/c/ow_parseshallow.c owfs-2.8p2/module/owlib/src/c/ow_fs_id.c owfs-2.8p2/module/owlib/src/c/ow_ds9097.c owfs-2.8p2/module/owlib/src/c/ow_fs_type.c owfs-2.8p2/module/owlib/src/c/ow_fs_crc8.c owfs-2.8p2/module/owlib/src/c/ow_2433.c owfs-2.8p2/module/owlib/src/c/ow_net_client.c owfs-2.8p2/module/owlib/src/c/ow_stats.c owfs-2.8p2/module/owlib/src/c/ow_none.c owfs-2.8p2/module/owlib/src/c/ow_dl.c owfs-2.8p2/module/owlib/src/c/Makefile.in owfs-2.8p2/module/owlib/src/c/ow_2405.c owfs-2.8p2/module/owlib/src/c/ow_2404.c owfs-2.8p2/module/owlib/src/c/ow_reconnect.c owfs-2.8p2/module/owlib/src/c/ow_2436.c owfs-2.8p2/module/owlib/src/c/ow_fstat.c owfs-2.8p2/module/owlib/src/c/ow_cache.c owfs-2.8p2/module/owlib/src/c/ow_1991.c owfs-2.8p2/module/owlib/src/c/ow_w1_scan.c owfs-2.8p2/module/owlib/src/c/ow_memory.c owfs-2.8p2/module/owlib/src/c/ow_net_server.c owfs-2.8p2/module/owlib/src/c/ow_1821.c owfs-2.8p2/module/owlib/src/c/ow_tree.c owfs-2.8p2/module/owlib/src/c/ow_ds2482.c owfs-2.8p2/module/owlib/src/c/ow_ds9490.c owfs-2.8p2/module/owlib/src/c/ow_w1_browse.c owfs-2.8p2/module/owlib/src/c/ow_etherweather.c owfs-2.8p2/module/owlib/src/c/ow_2438.c owfs-2.8p2/module/owlib/src/c/ow_eeef.c owfs-2.8p2/module/owlib/src/c/ow_browse_monitor.c owfs-2.8p2/module/owlib/src/c/ow_1993.c owfs-2.8p2/module/owlib/src/c/ow_powerbyte.c owfs-2.8p2/module/owlib/src/c/ow_w1_send.c owfs-2.8p2/module/owlib/src/c/ow_fakeread.c owfs-2.8p2/module/owlib/src/c/ow_usb_monitor.c owfs-2.8p2/module/owlib/src/c/ow_connect.c owfs-2.8p2/module/owlib/src/c/ow_w1_print.c owfs-2.8p2/module/owlib/src/c/ow_testerread.c owfs-2.8p2/module/owlib/src/c/ow_server_message.c owfs-2.8p2/module/owlib/src/c/ow_2890.c owfs-2.8p2/module/owlib/src/c/ow_dir.c owfs-2.8p2/module/owlib/src/c/ow_fs_address.c owfs-2.8p2/module/owlib/src/c/ow_max_delay.c owfs-2.8p2/module/owlib/src/c/ow_ha5.c owfs-2.8p2/module/owlib/src/c/ow_thermocouple.c owfs-2.8p2/module/owlib/src/c/ow_reset.c owfs-2.8p2/module/owlib/src/c/ow_pressure.c owfs-2.8p2/module/owlib/src/c/ow_charblob.c owfs-2.8p2/module/owlib/src/c/ow_w1_parse.c owfs-2.8p2/module/owlib/src/c/ow_generic_read.c owfs-2.8p2/module/owlib/src/c/ow_bus_data.c owfs-2.8p2/module/owlib/src/c/ow_visibility.c owfs-2.8p2/module/owlib/src/c/ow_verify.c owfs-2.8p2/module/owlib/src/c/ow_browse.c owfs-2.8p2/module/owlib/src/c/ow_traffic.c owfs-2.8p2/module/owlib/src/c/ow_devicelock.c owfs-2.8p2/module/owlib/src/c/ow_iterate.c owfs-2.8p2/module/owlib/src/c/ow_1963.c owfs-2.8p2/module/owlib/src/c/ow_fake.c owfs-2.8p2/module/owlib/src/c/ow_parse_sn.c owfs-2.8p2/module/owlib/src/c/ow_server_enet.c owfs-2.8p2/module/owlib/src/c/ow_2804.c owfs-2.8p2/module/owlib/src/c/ow_w1_monitor.c owfs-2.8p2/module/owlib/src/c/ow_delay.c owfs-2.8p2/module/owlib/src/c/ow_add_inflight.c owfs-2.8p2/module/owlib/src/c/ow_eprom_write.c owfs-2.8p2/module/owlib/src/c/ow_api.c owfs-2.8p2/module/owlib/src/c/ow_byte.c owfs-2.8p2/module/owlib/src/c/ow_badadapter.c owfs-2.8p2/module/owlib/src/c/ow_util.c owfs-2.8p2/module/owlib/src/c/ow_avahi_link.c owfs-2.8p2/module/owlib/src/c/ow_interface.c owfs-2.8p2/module/owlib/src/c/ow_ha7.c owfs-2.8p2/module/owlib/src/c/ow_daemon.c owfs-2.8p2/module/owlib/src/c/ow_select.c owfs-2.8p2/module/owlib/src/c/ow_2401.c owfs-2.8p2/module/owlib/src/c/ow_w1_addremove.c owfs-2.8p2/module/owlib/src/c/ow_alias.c owfs-2.8p2/module/owlib/src/c/ow_settings.c owfs-2.8p2/module/owlib/src/c/ow_parsename.c owfs-2.8p2/module/owlib/src/c/ow_ds9097U.c owfs-2.8p2/module/owlib/src/c/globals.c owfs-2.8p2/module/owlib/src/c/ow_1820.c owfs-2.8p2/module/owlib/src/c/ow_sibling_float.c owfs-2.8p2/module/owlib/src/c/ow_simultaneous.c owfs-2.8p2/module/owlib/src/c/ow_presence.c owfs-2.8p2/module/owlib/src/c/Makefile.am owfs-2.8p2/module/owlib/src/c/ow_get.c owfs-2.8p2/module/owlib/src/c/ow_help.c owfs-2.8p2/module/owlib/src/c/ow_stateinfo.c owfs-2.8p2/module/owlib/src/c/ow_del_inflight.c owfs-2.8p2/module/owlib/src/c/owlib.c owfs-2.8p2/module/owlib/src/c/ow_w1_select.c owfs-2.8p2/module/owlib/src/c/ow_read_telnet.c owfs-2.8p2/module/owlib/src/c/ow_tcp_read.c owfs-2.8p2/module/owlib/src/c/ow_lcd.c owfs-2.8p2/module/owlib/src/c/getaddrinfo.c owfs-2.8p2/module/owlib/src/c/ow_lib_setup.c owfs-2.8p2/module/owlib/src/c/ow_link.c owfs-2.8p2/module/owlib/src/c/ow_com_read.c owfs-2.8p2/module/owlib/src/c/ow_baud.c owfs-2.8p2/module/owlib/src/c/ow_w1_dispatch.c owfs-2.8p2/module/owlib/src/c/ow_remote_alias.c owfs-2.8p2/module/owlib/src/c/ow_1923.c owfs-2.8p2/module/owlib/src/c/ow_specialcase.c owfs-2.8p2/module/owlib/src/c/ow_1921.c owfs-2.8p2/module/owlib/src/c/ow_2423.c owfs-2.8p2/module/owlib/src/c/ow_fs_code.c owfs-2.8p2/module/owlib/src/c/ow_1954.c owfs-2.8p2/module/owlib/src/c/ow_parse_address.c owfs-2.8p2/module/owlib/src/c/ow_sibling_yesno.c owfs-2.8p2/module/owlib/src/c/ow_avahi_browse.c owfs-2.8p2/module/owlib/src/c/ow_buslock.c owfs-2.8p2/module/owlib/src/c/ow_slurp.c owfs-2.8p2/module/owlib/src/c/ow_offset.c owfs-2.8p2/module/owlib/src/c/ow_multicast.c owfs-2.8p2/module/owlib/src/c/ow_parseoutput.c owfs-2.8p2/module/owlib/src/c/ow_write.c owfs-2.8p2/module/owlib/src/c/ow_usb_msg.c owfs-2.8p2/module/owlib/src/c/getline.c owfs-2.8p2/module/owlib/src/c/ow_fs_alias.c owfs-2.8p2/module/owlib/src/c/ow_parseobject.c owfs-2.8p2/module/owlib/src/c/ow_dirblob.c owfs-2.8p2/module/owlib/src/c/ow_ha7e.c owfs-2.8p2/module/owlib/src/c/ow_browse_resolve.c owfs-2.8p2/module/owlib/src/c/getopt.c owfs-2.8p2/module/owlib/src/c/ow_lib_close.c owfs-2.8p2/module/owlib/src/c/ow_1977.c owfs-2.8p2/module/owlib/src/c/ow_avahi_announce.c owfs-2.8p2/module/owlib/src/c/ow_bus.c owfs-2.8p2/module/owlib/src/c/ow_com.c owfs-2.8p2/module/owlib/src/c/ow_2430.c owfs-2.8p2/module/owlib/src/c/ow_ds1410.c owfs-2.8p2/module/owlib/src/c/ow_w1.c owfs-2.8p2/module/owlib/src/c/ow_lib_stop.c owfs-2.8p2/module/owlib/src/c/ow_date.c owfs-2.8p2/module/owlib/src/c/ow_sibling.c owfs-2.8p2/module/owlib/src/c/ow_2408.c owfs-2.8p2/module/owlib/src/c/ow_2502.c owfs-2.8p2/module/owlib/src/c/ow_2760.c owfs-2.8p2/module/owlib/src/c/ow_eds.c owfs-2.8p2/module/owlib/src/c/ow_server.c owfs-2.8p2/module/owlib/src/c/ow_w1_list.c owfs-2.8p2/module/owlib/src/c/ow_rwlock.c owfs-2.8p2/module/owlib/src/c/ow_sibling_binary.c owfs-2.8p2/module/owlib/src/c/ow_2413.c owfs-2.8p2/module/owlib/src/c/ow_search.c owfs-2.8p2/module/owlib/src/c/ow_temp.c owfs-2.8p2/module/owlib/src/c/ow_sibling_uint.c owfs-2.8p2/module/owlib/src/c/ow_2415.c owfs-2.8p2/module/owlib/src/c/ow_pid.c owfs-2.8p2/module/owlib/src/c/ow_w1_bind.c owfs-2.8p2/module/owlib/src/c/ow_memblob.c owfs-2.8p2/module/owlib/src/c/ow_dnssd.c owfs-2.8p2/module/owlib/src/c/ow_locks.c owfs-2.8p2/module/owlib/src/c/error.c owfs-2.8p2/module/owlib/src/c/ow_com_write.c owfs-2.8p2/module/owlib/src/c/ow_parseinput.c owfs-2.8p2/module/owlib/src/c/ow_2505.c owfs-2.8p2/module/owlib/src/c/compat.c owfs-2.8p2/module/owlib/src/c/ow_opt.c owfs-2.8p2/module/owlib/src/c/ow_arg.c owfs-2.8p2/module/owlib/src/c/ow_locator.c owfs-2.8p2/module/owlib/src/c/ow_2450.c owfs-2.8p2/module/owlib/src/c/ow_name.c owfs-2.8p2/module/owlib/src/c/ow_bae.c owfs-2.8p2/module/owlib/src/c/ow_transaction.c owfs-2.8p2/module/owlib/src/c/ow_printparse.c owfs-2.8p2/module/owlib/src/c/ow_crc.c owfs-2.8p2/module/owlib/src/c/ow_filelength.c owfs-2.8p2/module/owlib/src/c/ow_sig_handlers.c owfs-2.8p2/module/owlib/src/c/ow_udp_read.c owfs-2.8p2/module/owlib/src/c/ow_read.c owfs-2.8p2/module/owlib/src/c/ow_alloc.c owfs-2.8p2/module/owlib/src/c/ow_system.c owfs-2.8p2/module/owlib/src/c/ow_2406.c owfs-2.8p2/module/owlib/src/c/ow_programpulse.c owfs-2.8p2/module/owlib/src/include/ owfs-2.8p2/module/owlib/src/include/ow_2401.h owfs-2.8p2/module/owlib/src/include/ow_1977.h owfs-2.8p2/module/owlib/src/include/ow_onewirequery.h owfs-2.8p2/module/owlib/src/include/ow_arg.h owfs-2.8p2/module/owlib/src/include/ow_1991.h owfs-2.8p2/module/owlib/src/include/ow_bae.h owfs-2.8p2/module/owlib/src/include/ow_2436.h owfs-2.8p2/module/owlib/src/include/rwlock.h owfs-2.8p2/module/owlib/src/include/ow_sibling.h owfs-2.8p2/module/owlib/src/include/ow_detect.h owfs-2.8p2/module/owlib/src/include/ow_parse_sn.h owfs-2.8p2/module/owlib/src/include/ow_standard.h owfs-2.8p2/module/owlib/src/include/ow_none.h owfs-2.8p2/module/owlib/src/include/ow_interface.h owfs-2.8p2/module/owlib/src/include/Makefile.in owfs-2.8p2/module/owlib/src/include/ow_1923.h owfs-2.8p2/module/owlib/src/include/ow_message.h owfs-2.8p2/module/owlib/src/include/ow_specialcase.h owfs-2.8p2/module/owlib/src/include/ow_counters.h owfs-2.8p2/module/owlib/src/include/ow_pid.h owfs-2.8p2/module/owlib/src/include/ow_charblob.h owfs-2.8p2/module/owlib/src/include/ow_2430.h owfs-2.8p2/module/owlib/src/include/ow.h owfs-2.8p2/module/owlib/src/include/ow_alloc.h owfs-2.8p2/module/owlib/src/include/ow_2404.h owfs-2.8p2/module/owlib/src/include/ow_integer.h owfs-2.8p2/module/owlib/src/include/ow_mutexes.h owfs-2.8p2/module/owlib/src/include/ow_2406.h owfs-2.8p2/module/owlib/src/include/ow_usb_msg.h owfs-2.8p2/module/owlib/src/include/ow_parse_address.h owfs-2.8p2/module/owlib/src/include/ow_dl.h owfs-2.8p2/module/owlib/src/include/ow_2438.h owfs-2.8p2/module/owlib/src/include/ow_temperature.h owfs-2.8p2/module/owlib/src/include/ow_generic_write.h owfs-2.8p2/module/owlib/src/include/ow_codes.h owfs-2.8p2/module/owlib/src/include/ow_2890.h owfs-2.8p2/module/owlib/src/include/ow_filetype.h owfs-2.8p2/module/owlib/src/include/ow_connection_in.h owfs-2.8p2/module/owlib/src/include/ow_generic_read.h owfs-2.8p2/module/owlib/src/include/ow_connection_out.h owfs-2.8p2/module/owlib/src/include/ow_bus_routines.h owfs-2.8p2/module/owlib/src/include/ow_dnssd.h owfs-2.8p2/module/owlib/src/include/ow_thermocouple.h owfs-2.8p2/module/owlib/src/include/ow_dirblob.h owfs-2.8p2/module/owlib/src/include/netlink.h owfs-2.8p2/module/owlib/src/include/ow_w1_seq.h owfs-2.8p2/module/owlib/src/include/ow_2409.h owfs-2.8p2/module/owlib/src/include/ow_2804.h owfs-2.8p2/module/owlib/src/include/ow_w1.h owfs-2.8p2/module/owlib/src/include/ow_localtypes.h owfs-2.8p2/module/owlib/src/include/compat_netdb.h owfs-2.8p2/module/owlib/src/include/ow_functions.h owfs-2.8p2/module/owlib/src/include/ow_avahi.h owfs-2.8p2/module/owlib/src/include/sem.h owfs-2.8p2/module/owlib/src/include/ow_1954.h owfs-2.8p2/module/owlib/src/include/ow_lcd.h owfs-2.8p2/module/owlib/src/include/ow_fd.h owfs-2.8p2/module/owlib/src/include/ow_traffic.h owfs-2.8p2/module/owlib/src/include/Makefile.am owfs-2.8p2/module/owlib/src/include/ow_eds.h owfs-2.8p2/module/owlib/src/include/ow_2505.h owfs-2.8p2/module/owlib/src/include/ow_stats.h owfs-2.8p2/module/owlib/src/include/compat_getopt.h owfs-2.8p2/module/owlib/src/include/compat.h owfs-2.8p2/module/owlib/src/include/ow_visibility.h owfs-2.8p2/module/owlib/src/include/ow_usb_cycle.h owfs-2.8p2/module/owlib/src/include/ow_stateinfo.h owfs-2.8p2/module/owlib/src/include/ow_bitwork.h owfs-2.8p2/module/owlib/src/include/ow_search.h owfs-2.8p2/module/owlib/src/include/ow_system.h owfs-2.8p2/module/owlib/src/include/ow_2760.h owfs-2.8p2/module/owlib/src/include/connector.h owfs-2.8p2/module/owlib/src/include/ow_1963.h owfs-2.8p2/module/owlib/src/include/ow_debug.h owfs-2.8p2/module/owlib/src/include/i2c-dev.h owfs-2.8p2/module/owlib/src/include/ow_localreturns.h owfs-2.8p2/module/owlib/src/include/ow_memblob.h owfs-2.8p2/module/owlib/src/include/ow_stub.h owfs-2.8p2/module/owlib/src/include/ow_busnumber.h owfs-2.8p2/module/owlib/src/include/ow_2433.h owfs-2.8p2/module/owlib/src/include/ow_simultaneous.h owfs-2.8p2/module/owlib/src/include/ow_devices.h owfs-2.8p2/module/owlib/src/include/ow_reset.h owfs-2.8p2/module/owlib/src/include/ow_transaction.h owfs-2.8p2/module/owlib/src/include/ow_pressure.h owfs-2.8p2/module/owlib/src/include/ow_1821.h owfs-2.8p2/module/owlib/src/include/ow_2408.h owfs-2.8p2/module/owlib/src/include/ow_master.h owfs-2.8p2/module/owlib/src/include/ow_1993.h owfs-2.8p2/module/owlib/src/include/w1_netlink.h owfs-2.8p2/module/owlib/src/include/ow_cache.h owfs-2.8p2/module/owlib/src/include/ow_opt.h owfs-2.8p2/module/owlib/src/include/ow_2413.h owfs-2.8p2/module/owlib/src/include/ow_settings.h owfs-2.8p2/module/owlib/src/include/ow_2423.h owfs-2.8p2/module/owlib/src/include/ow_2450.h owfs-2.8p2/module/owlib/src/include/ow_connection.h owfs-2.8p2/module/owlib/src/include/ow_2405.h owfs-2.8p2/module/owlib/src/include/ow_1921.h owfs-2.8p2/module/owlib/src/include/ow_device.h owfs-2.8p2/module/owlib/src/include/ow_eeef.h owfs-2.8p2/module/owlib/src/include/ow_parsedname.h owfs-2.8p2/module/owlib/src/include/ow_global.h owfs-2.8p2/module/owlib/src/include/ow_1820.h owfs-2.8p2/module/owlib/src/include/ow_2502.h owfs-2.8p2/module/owlib/src/include/ow_2415.h owfs-2.8p2/module/owlib/Makefile.am owfs-2.8p2/module/owhttpd/ owfs-2.8p2/module/owhttpd/Makefile.in owfs-2.8p2/module/owhttpd/src/ owfs-2.8p2/module/owhttpd/src/Makefile.in owfs-2.8p2/module/owhttpd/src/Makefile.am owfs-2.8p2/module/owhttpd/src/c/ owfs-2.8p2/module/owhttpd/src/c/Makefile.in owfs-2.8p2/module/owhttpd/src/c/owhttpd_dir.c owfs-2.8p2/module/owhttpd/src/c/owhttpd_escape.c owfs-2.8p2/module/owhttpd/src/c/owhttpd_write.c owfs-2.8p2/module/owhttpd/src/c/owhttpd_present.c owfs-2.8p2/module/owhttpd/src/c/Makefile.am owfs-2.8p2/module/owhttpd/src/c/owhttpd.c owfs-2.8p2/module/owhttpd/src/c/owhttpd_favicon.c owfs-2.8p2/module/owhttpd/src/c/owhttpd_read.c owfs-2.8p2/module/owhttpd/src/c/owhttpd_handler.c owfs-2.8p2/module/owhttpd/src/include/ owfs-2.8p2/module/owhttpd/src/include/Makefile.in owfs-2.8p2/module/owhttpd/src/include/owhttpd.h owfs-2.8p2/module/owhttpd/src/include/Makefile.am owfs-2.8p2/module/owhttpd/Makefile.am owfs-2.8p2/module/owshell/ owfs-2.8p2/module/owshell/Makefile.in owfs-2.8p2/module/owshell/src/ owfs-2.8p2/module/owshell/src/Makefile.in owfs-2.8p2/module/owshell/src/Makefile.am owfs-2.8p2/module/owshell/src/c/ owfs-2.8p2/module/owshell/src/c/ow_dl.c owfs-2.8p2/module/owshell/src/c/Makefile.in owfs-2.8p2/module/owshell/src/c/owread.c owfs-2.8p2/module/owshell/src/c/ow_browse.c owfs-2.8p2/module/owshell/src/c/globals.c owfs-2.8p2/module/owshell/src/c/Makefile.am owfs-2.8p2/module/owshell/src/c/ow_help.c owfs-2.8p2/module/owshell/src/c/owpresent.c owfs-2.8p2/module/owshell/src/c/ow_tcp_read.c owfs-2.8p2/module/owshell/src/c/getaddrinfo.c owfs-2.8p2/module/owshell/src/c/ow_net.c owfs-2.8p2/module/owshell/src/c/owget.c owfs-2.8p2/module/owshell/src/c/getopt.c owfs-2.8p2/module/owshell/src/c/ow_server.c owfs-2.8p2/module/owshell/src/c/ow_dnssd.c owfs-2.8p2/module/owshell/src/c/owdir.c owfs-2.8p2/module/owshell/src/c/ow_opt.c owfs-2.8p2/module/owshell/src/c/owwrite.c owfs-2.8p2/module/owshell/src/include/ owfs-2.8p2/module/owshell/src/include/Makefile.in owfs-2.8p2/module/owshell/src/include/Makefile.am owfs-2.8p2/module/owshell/src/include/owshell.h owfs-2.8p2/module/owshell/Makefile.am owfs-2.8p2/module/owmon/ owfs-2.8p2/module/owmon/Makefile.in owfs-2.8p2/module/owmon/owmon.tcl owfs-2.8p2/module/owmon/Makefile.am owfs-2.8p2/module/owfs/ owfs-2.8p2/module/owfs/Makefile.in owfs-2.8p2/module/owfs/src/ owfs-2.8p2/module/owfs/src/Makefile.in owfs-2.8p2/module/owfs/src/Makefile.am owfs-2.8p2/module/owfs/src/c/ owfs-2.8p2/module/owfs/src/c/Makefile.in owfs-2.8p2/module/owfs/src/c/fuse_line.c owfs-2.8p2/module/owfs/src/c/Makefile.am owfs-2.8p2/module/owfs/src/c/owfs.c owfs-2.8p2/module/owfs/src/c/owfs_callback.c owfs-2.8p2/module/owfs/src/include/ owfs-2.8p2/module/owfs/src/include/Makefile.in owfs-2.8p2/module/owfs/src/include/owfs.h owfs-2.8p2/module/owfs/src/include/Makefile.am owfs-2.8p2/module/owfs/Makefile.am owfs-2.8p2/NEWS owfs-2.8p2/TODO owfs-2.8p2/Makefile.am owfs-2.8p2/configure.ac owfs-2.8p2/COPYING.LIB owfs-2.8p2/COPYING owfs-2.8p2/AUTHORS owfs-2.8p2/acinclude.m4 owfs-2.8p2/ChangeLog owfs-2.8p2/bootstrap owfs-2.8p2/README owfs-2.8p2/aclocal.m4 root@dhcp-179:/etc/owfs-2.8p2# **7. $ ./configure --prefix=/usr --enable-owfs --enable-usb**\\ root@dhcp-179:/etc/owfs-2.8p2# ./configure --prefix=/usr --enable-owfs --enable-usb Configuring owfs-2.8p2 checking build system type... i686-pc-linux-gnu checking host system type... i686-pc-linux-gnu checking target system type... i686-pc-linux-gnu checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... /bin/mkdir -p checking for gawk... no checking for mawk... mawk checking whether make sets $(MAKE)... yes checking for echo... /bin/echo checking for test... /usr/bin/test checking for rm... /bin/rm checking for rpm... no checking for rpmbuild... no checking for swig... no checking for gcc... gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ISO C89... none needed checking for style of include used by make... GNU checking dependency style of gcc... gcc3 checking how to run the C preprocessor... gcc -E checking whether ln -s works... yes checking whether make sets $(MAKE)... (cached) yes checking for ranlib... ranlib checking for gawk... (cached) mawk checking for a sed that does not truncate output... /bin/sed checking for grep that handles long lines and -e... /bin/grep checking for egrep... /bin/grep -E checking for fgrep... /bin/grep -F checking for ld used by gcc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... BSD nm checking the maximum length of command line arguments... 1572864 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... yes checking for /usr/bin/ld option to reload object files... -r checking for objdump... objdump checking how to recognize dependent libraries... pass_all checking for ar... ar checking for strip... strip checking for ranlib... (cached) ranlib checking command to parse /usr/bin/nm -B output from gcc object... ok checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking for dlfcn.h... yes checking for objdir... .libs checking if gcc supports -fno-rtti -fno-exceptions... no checking for gcc option to produce PIC... -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... /bin/rm: cannot remove `conftest*': No such file or directory yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... /bin/rm: cannot remove `conftest*': No such file or directory no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking for shl_load... no checking for shl_load in -ldld... no checking for dlopen... no checking for dlopen in -ldl... yes checking whether a program can dlopen itself... yes checking whether a statically linked program can dlopen itself... no checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... yes checking if debian-system is used... no (default) checking for special host... Other host checking if compiler supports nested functions... yes checking for dirent.h that defines DIR... yes checking for library containing opendir... none required checking for ANSI C header files... (cached) yes checking asm/types.h usability... yes checking asm/types.h presence... yes checking for asm/types.h... yes checking arpa/inet.h usability... yes checking arpa/inet.h presence... yes checking for arpa/inet.h... yes checking sys/ioctl.h usability... yes checking sys/ioctl.h presence... yes checking for sys/ioctl.h... yes checking sys/mkdev.h usability... no checking sys/mkdev.h presence... no checking for sys/mkdev.h... no checking sys/socket.h usability... yes checking sys/socket.h presence... yes checking for sys/socket.h... yes checking sys/time.h usability... yes checking sys/time.h presence... yes checking for sys/time.h... yes checking sys/times.h usability... yes checking sys/times.h presence... yes checking for sys/times.h... yes checking for sys/types.h... (cached) yes checking sys/uio.h usability... yes checking sys/uio.h presence... yes checking for sys/uio.h... yes checking feature_tests.h usability... no checking feature_tests.h presence... no checking for feature_tests.h... no checking fcntl.h usability... yes checking fcntl.h presence... yes checking for fcntl.h... yes checking netinet/in.h usability... yes checking netinet/in.h presence... yes checking for netinet/in.h... yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for strings.h... (cached) yes checking sys/file.h usability... yes checking sys/file.h presence... yes checking for sys/file.h... yes checking syslog.h usability... yes checking syslog.h presence... yes checking for syslog.h... yes checking termios.h usability... yes checking termios.h presence... yes checking for termios.h... yes checking for unistd.h... (cached) yes checking limits.h usability... yes checking limits.h presence... yes checking for limits.h... yes checking for stdint.h... (cached) yes checking features.h usability... yes checking features.h presence... yes checking for features.h... yes checking getopt.h usability... yes checking getopt.h presence... yes checking for getopt.h... yes checking resolv.h usability... yes checking resolv.h presence... yes checking for resolv.h... yes checking semaphore.h usability... yes checking semaphore.h presence... yes checking for semaphore.h... yes checking linux/limits.h usability... yes checking linux/limits.h presence... yes checking for linux/limits.h... yes checking linux/types.h usability... yes checking linux/types.h presence... yes checking for linux/types.h... yes checking netdb.h usability... yes checking netdb.h presence... yes checking for netdb.h... yes checking for dlfcn.h... (cached) yes checking if debug-output is enabled... yes (default) checking if OWSHELL support is enabled... yes (default) checking if OWLIB support is enabled... yes (default) checking if OWNETLIB support is enabled... yes (default) checking if TAI8570 barometer support is enabled... yes (default) checking if thermocouple support is enabled... yes (default) checking if multithreading is enabled... yes (default) checking for the pthreads library -lpthreads... no checking whether pthreads work without any flags... no checking whether pthreads work with -Kthread... no checking whether pthreads work with -kthread... no checking for the pthreads library -llthread... no checking whether pthreads work with -pthread... yes checking for joinable pthread attribute... PTHREAD_CREATE_JOINABLE checking if more special flags are required for pthreads... no checking if i2c(DS2482-x00) is enabled... yes (default) checking if HA7Net is enabled... yes (default) checking if W1 is enabled... yes (default) checking if owhttpd is enabled... yes (default) checking if owftpd is enabled... yes (default) checking if owserver is enabled... yes (default) checking if ownet is enabled... yes (default) checking if owtap is enabled... yes (default) checking if owmalloc is enabled... no (default) checking if bus traffic reports is enabled... no (default) checking if owmon is enabled... yes (default) checking if owcapi is enabled... yes (default) checking if swig is enabled... auto (default) checking if owperl is enabled... no (swig disabled) Looking for location of Perl executable checking for perl... perl checking for Perl5 header files... /usr/lib/perl/5.10/CORE checking for Perl5 library... perl.so.5.10.1 checking for Perl5 compiler options... -D_REENTRANT -D_GNU_SOURCE -DDEBIAN -fno-strict-aliasing -pipe -fstack-protector /usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 checking if owphp is enabled... no (swig disabled) Looking for location of Php executable checking for php... no checking for php5... no checking for php4... no checking for php-config... no checking for php5-config... no checking for php-config5... no checking for php4-config... no checking for php-config4... no checking for PHP header files... /usr/include/php /usr/local/include/php /usr/include/php5 /usr/local/include/php5 /usr/include/php4 /usr/local/include/php4 /usr/local/apache/php not found checking for PHP extension-dir... not found configure: WARNING: Cannot find php binary. Install php or php5 package configure: WARNING: OWPHP is disabled because php binary is not found checking if owpython is enabled... no (swig disabled) Looking for location of Python executable checking for python-config... no checking for python2.5-config... no checking for python2.4-config... no checking for python2.3-config... no checking for python... python checking for Python prefix... /usr checking for Python exec-prefix... /usr checking for Python version... python2.6 checking for Python lib dir... lib checking for Python site-dir... /usr/lib/python2.6/dist-packages checking for Python header files... checking for Python library... /usr/lib/python2.6/config checking for Python LDFLAGS... -lpython2.6 configure: WARNING: Cannot find python include-file. Install python-devel package. configure: WARNING: OWPYTHON is disabled because python include-file is not found checking if owtcl is enabled... yes (default) Looking for tclConfig.sh checking for Tcl configuration... configure: WARNING: Can't find Tcl configuration definitions configure: WARNING: OWTCL is disabled because tclConfig.sh is not found checking if cflag _XOPEN_SOURCE is required... -D_XOPEN_SOURCE=500 checking if cflag _BSD_SOURCE is required... -D_BSD_SOURCE=1 -D_ISOC99_SOURCE=1 -D_POSIX_C_SOURCE=200112L checking if extra libs are required... -Wl,--rpath -Wl,${exec_prefix}/lib checking if profiling is enabled... no (default) configure: WARNING: LD_EXTRALIBS=-Wl,--rpath -Wl,/usr/lib OSLIBS= checking if owfs is enabled... yes checking fuse.h usability... yes checking fuse.h presence... yes checking for fuse.h... yes checking for fuse_main in -lfuse... yes checking For supported FUSE API version... yes checking For FUSE version ... 2.2 or later checking if caching is enabled... yes (default) checking if zeroconf/bonjour is enabled... yes (default) checking for libusb-config... libusb-config checking if usb support is enabled... yes checking if libusb compiles with includes+lib ... ok checking if usb_interrupt_read is found... yes checking if parallel port support is enabled... yes (default) checking linux/ppdev.h usability... yes checking linux/ppdev.h presence... yes checking for linux/ppdev.h... yes checking for struct sockaddr_storage... yes checking for struct addrinfo... yes checking for socklen_t... yes checking for AF_NETLINK... yes checking for broken glibc with __ss_family... no checking for core ipv6 support... no checking if sem_timedwait exists... yes checking whether string.h and strings.h may both be included... yes checking for an ANSI C-conforming const... yes checking for off_t... yes checking for pid_t... yes checking for size_t... yes checking whether time.h and sys/time.h may both be included... yes checking for stdbool.h that conforms to C99... yes checking for _Bool... yes checking whether struct tm is in sys/time.h or time.h... time.h checking vfork.h usability... no checking vfork.h presence... no checking for vfork.h... no checking for fork... yes checking for vfork... yes checking for working fork... yes checking for working vfork... (cached) yes checking sys/select.h usability... yes checking sys/select.h presence... yes checking for sys/select.h... yes checking for sys/socket.h... (cached) yes checking types of arguments for select... int,fd_set *,struct timeval * checking for strftime... yes checking for working strtod... yes checking return type of signal handlers... void checking for accept... yes checking for daemon... yes checking for getaddrinfo... yes checking for freeaddrinfo... yes checking for gethostbyname2_r... yes checking for gethostbyaddr_r... yes checking for gethostbyname_r... yes checking for getservbyname_r... yes checking for getopt... yes checking for getopt_long... yes checking for gettimeofday... yes checking for inet_ntop... yes checking for inet_pton... yes checking for memchr... yes checking for memset... yes checking for select... yes checking for socket... yes checking for strcasecmp... yes checking for strchr... yes checking for strdup... yes checking for strncasecmp... yes checking for strtol... yes checking for strtoul... yes checking for twalk... yes checking for tsearch... yes checking for tfind... yes checking for tdelete... yes checking for tdestroy... yes checking for vasprintf... yes checking for strsep... yes checking for vsprintf... yes checking for vsnprintf... yes checking for writev... yes checking for getline... yes checking for library containing dlopen... -ldl checking for library containing lrint... -lm checking for library containing nanosleep... none required configure: creating ./config.status config.status: creating Makefile config.status: creating module/Makefile config.status: creating module/owlib/Makefile config.status: creating module/owlib/src/Makefile config.status: creating module/owlib/src/include/Makefile config.status: creating module/owlib/src/c/Makefile config.status: creating module/owfs/Makefile config.status: creating module/owfs/src/Makefile config.status: creating module/owfs/src/include/Makefile config.status: creating module/owfs/src/c/Makefile config.status: creating module/owhttpd/Makefile config.status: creating module/owhttpd/src/Makefile config.status: creating module/owhttpd/src/include/Makefile config.status: creating module/owhttpd/src/c/Makefile config.status: creating module/owserver/Makefile config.status: creating module/owserver/src/Makefile config.status: creating module/owserver/src/include/Makefile config.status: creating module/owserver/src/c/Makefile config.status: creating module/owftpd/Makefile config.status: creating module/owftpd/src/Makefile config.status: creating module/owftpd/src/include/Makefile config.status: creating module/owftpd/src/c/Makefile config.status: creating module/ownet/Makefile config.status: creating module/ownet/php/Makefile config.status: creating module/ownet/php/examples/ownet_example.php config.status: creating module/ownet/python/Makefile config.status: creating module/ownet/perl5/Makefile config.status: creating module/ownet/c/Makefile config.status: creating module/ownet/c/src/Makefile config.status: creating module/ownet/c/src/include/Makefile config.status: creating module/ownet/c/src/c/Makefile config.status: creating module/ownet/c/src/example/Makefile config.status: creating module/owshell/Makefile config.status: creating module/owshell/src/Makefile config.status: creating module/owshell/src/include/Makefile config.status: creating module/owshell/src/c/Makefile config.status: creating module/owcapi/Makefile config.status: creating module/owcapi/src/Makefile config.status: creating module/owcapi/src/include/Makefile config.status: creating module/owcapi/src/c/Makefile config.status: creating module/owcapi/src/example/Makefile config.status: creating module/owcapi/src/example++/Makefile config.status: creating module/owtap/Makefile config.status: creating module/owmon/Makefile config.status: creating module/swig/Makefile config.status: creating module/swig/perl5/Makefile config.status: creating module/swig/perl5/OW/Makefile.linux config.status: creating module/swig/perl5/OW/Makefile.osx config.status: creating module/swig/php/Makefile config.status: creating module/swig/php/example/load_php_OW.php config.status: creating module/swig/python/Makefile config.status: creating module/swig/python/ow/Makefile config.status: creating module/swig/python/setup.py config.status: creating module/owtcl/Makefile config.status: creating src/Makefile config.status: creating src/include/Makefile config.status: creating src/man/Makefile config.status: creating src/rpm/Makefile config.status: creating src/rpm/owfs.spec config.status: creating src/scripts/Makefile config.status: creating src/scripts/windows/Makefile config.status: creating src/scripts/windows/owfs.nsi config.status: creating src/scripts/usb/Makefile config.status: creating src/scripts/usb/cygwin/Makefile config.status: creating src/scripts/usb/windows/Makefile config.status: creating src/include/owfs_config.h config.status: creating src/include/config.h config.status: src/include/config.h is unchanged config.status: executing depfiles commands config.status: executing libtool commands /bin/rm: cannot remove `libtoolT': No such file or directory Current configuration: Deployment location: /usr Compile-time options: Caching is enabled USB is enabled I2C is enabled HA7Net is enabled W1 is enabled Multithreading is enabled Parallel port DS1410E is enabled TAI8570 barometer is enabled Thermocouple is enabled Zeroconf/Bonjour is enabled Debug-output is enabled Profiling is DISABLED Tracing memory allocation is DISABLED 1wire bus traffic reports is DISABLED Module configuration: owlib is enabled owshell is enabled owfs is enabled owhttpd is enabled owftpd is enabled owserver is enabled ownet is enabled ownetlib is enabled owtap is enabled owmon is enabled owcapi is enabled swig is DISABLED owperl is DISABLED owphp is DISABLED owpython is DISABLED owtcl is DISABLED root@dhcp-179:/etc/owfs-2.8p2# **8. $ make**\\ root@dhcp-179:/etc/owfs-2.8p2# make Making all in src make[1]: Entering directory `/etc/owfs-2.8p2/src' Making all in include make[2]: Entering directory `/etc/owfs-2.8p2/src/include' make all-am make[3]: Entering directory `/etc/owfs-2.8p2/src/include' make[3]: Leaving directory `/etc/owfs-2.8p2/src/include' make[2]: Leaving directory `/etc/owfs-2.8p2/src/include' Making all in man make[2]: Entering directory `/etc/owfs-2.8p2/src/man' make[2]: Nothing to be done for `all'. make[2]: Leaving directory `/etc/owfs-2.8p2/src/man' Making all in rpm make[2]: Entering directory `/etc/owfs-2.8p2/src/rpm' make[2]: Nothing to be done for `all'. make[2]: Leaving directory `/etc/owfs-2.8p2/src/rpm' Making all in scripts make[2]: Entering directory `/etc/owfs-2.8p2/src/scripts' Making all in usb make[3]: Entering directory `/etc/owfs-2.8p2/src/scripts/usb' Making all in windows make[4]: Entering directory `/etc/owfs-2.8p2/src/scripts/usb/windows' make[4]: Nothing to be done for `all'. make[4]: Leaving directory `/etc/owfs-2.8p2/src/scripts/usb/windows' Making all in cygwin make[4]: Entering directory `/etc/owfs-2.8p2/src/scripts/usb/cygwin' make[4]: Nothing to be done for `all'. make[4]: Leaving directory `/etc/owfs-2.8p2/src/scripts/usb/cygwin' make[4]: Entering directory `/etc/owfs-2.8p2/src/scripts/usb' make[4]: Nothing to be done for `all-am'. make[4]: Leaving directory `/etc/owfs-2.8p2/src/scripts/usb' make[3]: Leaving directory `/etc/owfs-2.8p2/src/scripts/usb' Making all in windows make[3]: Entering directory `/etc/owfs-2.8p2/src/scripts/windows' make[3]: Nothing to be done for `all'. make[3]: Leaving directory `/etc/owfs-2.8p2/src/scripts/windows' make[3]: Entering directory `/etc/owfs-2.8p2/src/scripts' make[3]: Nothing to be done for `all-am'. make[3]: Leaving directory `/etc/owfs-2.8p2/src/scripts' make[2]: Leaving directory `/etc/owfs-2.8p2/src/scripts' make[2]: Entering directory `/etc/owfs-2.8p2/src' make[2]: Nothing to be done for `all-am'. make[2]: Leaving directory `/etc/owfs-2.8p2/src' make[1]: Leaving directory `/etc/owfs-2.8p2/src' Making all in module make[1]: Entering directory `/etc/owfs-2.8p2/module' Making all in owshell make[2]: Entering directory `/etc/owfs-2.8p2/module/owshell' Making all in src make[3]: Entering directory `/etc/owfs-2.8p2/module/owshell/src' Making all in c make[4]: Entering directory `/etc/owfs-2.8p2/module/owshell/src/c' make[4]: Nothing to be done for `all'. make[4]: Leaving directory `/etc/owfs-2.8p2/module/owshell/src/c' Making all in include make[4]: Entering directory `/etc/owfs-2.8p2/module/owshell/src/include' make[4]: Nothing to be done for `all'. make[4]: Leaving directory `/etc/owfs-2.8p2/module/owshell/src/include' make[4]: Entering directory `/etc/owfs-2.8p2/module/owshell/src' make[4]: Nothing to be done for `all-am'. make[4]: Leaving directory `/etc/owfs-2.8p2/module/owshell/src' make[3]: Leaving directory `/etc/owfs-2.8p2/module/owshell/src' make[3]: Entering directory `/etc/owfs-2.8p2/module/owshell' make[3]: Nothing to be done for `all-am'. make[3]: Leaving directory `/etc/owfs-2.8p2/module/owshell' make[2]: Leaving directory `/etc/owfs-2.8p2/module/owshell' Making all in ownet make[2]: Entering directory `/etc/owfs-2.8p2/module/ownet' Making all in c make[3]: Entering directory `/etc/owfs-2.8p2/module/ownet/c' Making all in src make[4]: Entering directory `/etc/owfs-2.8p2/module/ownet/c/src' Making all in c make[5]: Entering directory `/etc/owfs-2.8p2/module/ownet/c/src/c' make[5]: Nothing to be done for `all'. make[5]: Leaving directory `/etc/owfs-2.8p2/module/ownet/c/src/c' Making all in include make[5]: Entering directory `/etc/owfs-2.8p2/module/ownet/c/src/include' make[5]: Nothing to be done for `all'. make[5]: Leaving directory `/etc/owfs-2.8p2/module/ownet/c/src/include' make[5]: Entering directory `/etc/owfs-2.8p2/module/ownet/c/src' make[5]: Nothing to be done for `all-am'. make[5]: Leaving directory `/etc/owfs-2.8p2/module/ownet/c/src' make[4]: Leaving directory `/etc/owfs-2.8p2/module/ownet/c/src' make[4]: Entering directory `/etc/owfs-2.8p2/module/ownet/c' make[4]: Nothing to be done for `all-am'. make[4]: Leaving directory `/etc/owfs-2.8p2/module/ownet/c' make[3]: Leaving directory `/etc/owfs-2.8p2/module/ownet/c' Making all in perl5 make[3]: Entering directory `/etc/owfs-2.8p2/module/ownet/perl5' cd OWNet; make all make[4]: Entering directory `/etc/owfs-2.8p2/module/ownet/perl5/OWNet' make[4]: Leaving directory `/etc/owfs-2.8p2/module/ownet/perl5/OWNet' make[3]: Leaving directory `/etc/owfs-2.8p2/module/ownet/perl5' make[3]: Entering directory `/etc/owfs-2.8p2/module/ownet' make[3]: Nothing to be done for `all-am'. make[3]: Leaving directory `/etc/owfs-2.8p2/module/ownet' make[2]: Leaving directory `/etc/owfs-2.8p2/module/ownet' Making all in owlib make[2]: Entering directory `/etc/owfs-2.8p2/module/owlib' Making all in src make[3]: Entering directory `/etc/owfs-2.8p2/module/owlib/src' Making all in c make[4]: Entering directory `/etc/owfs-2.8p2/module/owlib/src/c' make[4]: Nothing to be done for `all'. make[4]: Leaving directory `/etc/owfs-2.8p2/module/owlib/src/c' Making all in include make[4]: Entering directory `/etc/owfs-2.8p2/module/owlib/src/include' make[4]: Nothing to be done for `all'. make[4]: Leaving directory `/etc/owfs-2.8p2/module/owlib/src/include' make[4]: Entering directory `/etc/owfs-2.8p2/module/owlib/src' make[4]: Nothing to be done for `all-am'. make[4]: Leaving directory `/etc/owfs-2.8p2/module/owlib/src' make[3]: Leaving directory `/etc/owfs-2.8p2/module/owlib/src' make[3]: Entering directory `/etc/owfs-2.8p2/module/owlib' make[3]: Nothing to be done for `all-am'. make[3]: Leaving directory `/etc/owfs-2.8p2/module/owlib' make[2]: Leaving directory `/etc/owfs-2.8p2/module/owlib' Making all in owhttpd make[2]: Entering directory `/etc/owfs-2.8p2/module/owhttpd' Making all in src make[3]: Entering directory `/etc/owfs-2.8p2/module/owhttpd/src' Making all in include make[4]: Entering directory `/etc/owfs-2.8p2/module/owhttpd/src/include' make[4]: Nothing to be done for `all'. make[4]: Leaving directory `/etc/owfs-2.8p2/module/owhttpd/src/include' Making all in c make[4]: Entering directory `/etc/owfs-2.8p2/module/owhttpd/src/c' make[4]: Nothing to be done for `all'. make[4]: Leaving directory `/etc/owfs-2.8p2/module/owhttpd/src/c' make[4]: Entering directory `/etc/owfs-2.8p2/module/owhttpd/src' make[4]: Nothing to be done for `all-am'. make[4]: Leaving directory `/etc/owfs-2.8p2/module/owhttpd/src' make[3]: Leaving directory `/etc/owfs-2.8p2/module/owhttpd/src' make[3]: Entering directory `/etc/owfs-2.8p2/module/owhttpd' make[3]: Nothing to be done for `all-am'. make[3]: Leaving directory `/etc/owfs-2.8p2/module/owhttpd' make[2]: Leaving directory `/etc/owfs-2.8p2/module/owhttpd' Making all in owserver make[2]: Entering directory `/etc/owfs-2.8p2/module/owserver' Making all in src make[3]: Entering directory `/etc/owfs-2.8p2/module/owserver/src' Making all in include make[4]: Entering directory `/etc/owfs-2.8p2/module/owserver/src/include' make[4]: Nothing to be done for `all'. make[4]: Leaving directory `/etc/owfs-2.8p2/module/owserver/src/include' Making all in c make[4]: Entering directory `/etc/owfs-2.8p2/module/owserver/src/c' make[4]: Nothing to be done for `all'. make[4]: Leaving directory `/etc/owfs-2.8p2/module/owserver/src/c' make[4]: Entering directory `/etc/owfs-2.8p2/module/owserver/src' make[4]: Nothing to be done for `all-am'. make[4]: Leaving directory `/etc/owfs-2.8p2/module/owserver/src' make[3]: Leaving directory `/etc/owfs-2.8p2/module/owserver/src' make[3]: Entering directory `/etc/owfs-2.8p2/module/owserver' make[3]: Nothing to be done for `all-am'. make[3]: Leaving directory `/etc/owfs-2.8p2/module/owserver' make[2]: Leaving directory `/etc/owfs-2.8p2/module/owserver' Making all in owfs make[2]: Entering directory `/etc/owfs-2.8p2/module/owfs' Making all in src make[3]: Entering directory `/etc/owfs-2.8p2/module/owfs/src' Making all in c make[4]: Entering directory `/etc/owfs-2.8p2/module/owfs/src/c' make[4]: Nothing to be done for `all'. make[4]: Leaving directory `/etc/owfs-2.8p2/module/owfs/src/c' Making all in include make[4]: Entering directory `/etc/owfs-2.8p2/module/owfs/src/include' make[4]: Nothing to be done for `all'. make[4]: Leaving directory `/etc/owfs-2.8p2/module/owfs/src/include' make[4]: Entering directory `/etc/owfs-2.8p2/module/owfs/src' make[4]: Nothing to be done for `all-am'. make[4]: Leaving directory `/etc/owfs-2.8p2/module/owfs/src' make[3]: Leaving directory `/etc/owfs-2.8p2/module/owfs/src' make[3]: Entering directory `/etc/owfs-2.8p2/module/owfs' make[3]: Nothing to be done for `all-am'. make[3]: Leaving directory `/etc/owfs-2.8p2/module/owfs' make[2]: Leaving directory `/etc/owfs-2.8p2/module/owfs' Making all in owftpd make[2]: Entering directory `/etc/owfs-2.8p2/module/owftpd' Making all in src make[3]: Entering directory `/etc/owfs-2.8p2/module/owftpd/src' Making all in c make[4]: Entering directory `/etc/owfs-2.8p2/module/owftpd/src/c' make[4]: Nothing to be done for `all'. make[4]: Leaving directory `/etc/owfs-2.8p2/module/owftpd/src/c' Making all in include make[4]: Entering directory `/etc/owfs-2.8p2/module/owftpd/src/include' make[4]: Nothing to be done for `all'. make[4]: Leaving directory `/etc/owfs-2.8p2/module/owftpd/src/include' make[4]: Entering directory `/etc/owfs-2.8p2/module/owftpd/src' make[4]: Nothing to be done for `all-am'. make[4]: Leaving directory `/etc/owfs-2.8p2/module/owftpd/src' make[3]: Leaving directory `/etc/owfs-2.8p2/module/owftpd/src' make[3]: Entering directory `/etc/owfs-2.8p2/module/owftpd' make[3]: Nothing to be done for `all-am'. make[3]: Leaving directory `/etc/owfs-2.8p2/module/owftpd' make[2]: Leaving directory `/etc/owfs-2.8p2/module/owftpd' Making all in owcapi make[2]: Entering directory `/etc/owfs-2.8p2/module/owcapi' Making all in src make[3]: Entering directory `/etc/owfs-2.8p2/module/owcapi/src' Making all in c make[4]: Entering directory `/etc/owfs-2.8p2/module/owcapi/src/c' make[4]: Nothing to be done for `all'. make[4]: Leaving directory `/etc/owfs-2.8p2/module/owcapi/src/c' Making all in include make[4]: Entering directory `/etc/owfs-2.8p2/module/owcapi/src/include' make[4]: Nothing to be done for `all'. make[4]: Leaving directory `/etc/owfs-2.8p2/module/owcapi/src/include' make[4]: Entering directory `/etc/owfs-2.8p2/module/owcapi/src' make[4]: Nothing to be done for `all-am'. make[4]: Leaving directory `/etc/owfs-2.8p2/module/owcapi/src' make[3]: Leaving directory `/etc/owfs-2.8p2/module/owcapi/src' make[3]: Entering directory `/etc/owfs-2.8p2/module/owcapi' make[3]: Nothing to be done for `all-am'. make[3]: Leaving directory `/etc/owfs-2.8p2/module/owcapi' make[2]: Leaving directory `/etc/owfs-2.8p2/module/owcapi' Making all in owtap make[2]: Entering directory `/etc/owfs-2.8p2/module/owtap' make[2]: Nothing to be done for `all'. make[2]: Leaving directory `/etc/owfs-2.8p2/module/owtap' Making all in owmon make[2]: Entering directory `/etc/owfs-2.8p2/module/owmon' make[2]: Nothing to be done for `all'. make[2]: Leaving directory `/etc/owfs-2.8p2/module/owmon' make[2]: Entering directory `/etc/owfs-2.8p2/module' make[2]: Nothing to be done for `all-am'. make[2]: Leaving directory `/etc/owfs-2.8p2/module' make[1]: Leaving directory `/etc/owfs-2.8p2/module' make[1]: Entering directory `/etc/owfs-2.8p2' make[1]: Nothing to be done for `all-am'. make[1]: Leaving directory `/etc/owfs-2.8p2' root@dhcp-179:/etc/owfs-2.8p2# **9. $ sudo checkinstall --pkgname=owfs --pkgversion=owfs-2.8p2 --backup=no --deldoc=yes --default**\\ I was logged in as the Super-user so no sudo required.\\ root@dhcp-179:/etc/owfs-2.8p2# checkinstall --pkgname=owfs --pkgversion=owfs-2.8p2 --backup=no --deldoc=yes --default . . .root@dhcp-179:/# mkdir mnt root@dhcp-179:/# cd mnt root@dhcp-179:/mnt# mkdir 1-wire make[4]: Entering directory `/etc/owfs-2.8p2/src/scripts/usb/windows' make[5]: Entering directory `/etc/owfs-2.8p2/src/scripts/usb/windows' make[5]: Nothing to be done for `install-exec-am'. make[5]: Nothing to be done for `install-data-am'. make[5]: Leaving directory `/etc/owfs-2.8p2/src/scripts/usb/windows' make[4]: Leaving directory `/etc/owfs-2.8p2/src/scripts/usb/windows' Making install in cygwin make[4]: Entering directory `/etc/owfs-2.8p2/src/scripts/usb/cygwin' make[5]: Entering directory `/etc/owfs-2.8p2/src/scripts/usb/cygwin' make[5]: Nothing to be done for `install-exec-am'. test -z "" || /bin/mkdir -p "" make[5]: Leaving directory `/etc/owfs-2.8p2/src/scripts/usb/cygwin' make[4]: Leaving directory `/etc/owfs-2.8p2/src/scripts/usb/cygwin' make[4]: Entering directory `/etc/owfs-2.8p2/src/scripts/usb' make[5]: Entering directory `/etc/owfs-2.8p2/src/scripts/usb' make[5]: Nothing to be done for `install-exec-am'. make[5]: Nothing to be done for `install-data-am'. make[5]: Leaving directory `/etc/owfs-2.8p2/src/scripts/usb' make[4]: Leaving directory `/etc/owfs-2.8p2/src/scripts/usb' make[3]: Leaving directory `/etc/owfs-2.8p2/src/scripts/usb' Making install in windows make[3]: Entering directory `/etc/owfs-2.8p2/src/scripts/windows' make[4]: Entering directory `/etc/owfs-2.8p2/src/scripts/windows' make[4]: Nothing to be done for `install-exec-am'. make[4]: Nothing to be done for `install-data-am'. make[4]: Leaving directory `/etc/owfs-2.8p2/src/scripts/windows' make[3]: Leaving directory `/etc/owfs-2.8p2/src/scripts/windows' make[3]: Entering directory `/etc/owfs-2.8p2/src/scripts' make[4]: Entering directory `/etc/owfs-2.8p2/src/scripts' make[4]: Nothing to be done for `install-exec-am'. make[4]: Nothing to be done for `install-data-am'. make[4]: Leaving directory `/etc/owfs-2.8p2/src/scripts' make[3]: Leaving directory `/etc/owfs-2.8p2/src/scripts' make[2]: Leaving directory `/etc/owfs-2.8p2/src/scripts' make[2]: Entering directory `/etc/owfs-2.8p2/src' make[3]: Entering directory `/etc/owfs-2.8p2/src' make[3]: Nothing to be done for `install-exec-am'. make[3]: Nothing to be done for `install-data-am'. make[3]: Leaving directory `/etc/owfs-2.8p2/src' make[2]: Leaving directory `/etc/owfs-2.8p2/src' make[1]: Leaving directory `/etc/owfs-2.8p2/src' Making install in module make[1]: Entering directory `/etc/owfs-2.8p2/module' Making install in owshell make[2]: Entering directory `/etc/owfs-2.8p2/module/owshell' Making install in src make[3]: Entering directory `/etc/owfs-2.8p2/module/owshell/src' Making install in c make[4]: Entering directory `/etc/owfs-2.8p2/module/owshell/src/c' make[5]: Entering directory `/etc/owfs-2.8p2/module/owshell/src/c' test -z "/usr/bin" || /bin/mkdir -p "/usr/bin" /bin/bash ../../../../libtool --mode=install /usr/bin/install -c owget owdir owread owwrite owpresent '/usr/bin' libtool: install: /usr/bin/install -c owget /usr/bin/owget libtool: install: /usr/bin/install -c owdir /usr/bin/owdir libtool: install: /usr/bin/install -c owread /usr/bin/owread libtool: install: /usr/bin/install -c owwrite /usr/bin/owwrite libtool: install: /usr/bin/install -c owpresent /usr/bin/owpresent make[5]: Nothing to be done for `install-data-am'. make[5]: Leaving directory `/etc/owfs-2.8p2/module/owshell/src/c' make[4]: Leaving directory `/etc/owfs-2.8p2/module/owshell/src/c' Making install in include make[4]: Entering directory `/etc/owfs-2.8p2/module/owshell/src/include' make[5]: Entering directory `/etc/owfs-2.8p2/module/owshell/src/include' make[5]: Nothing to be done for `install-exec-am'. make[5]: Nothing to be done for `install-data-am'. make[5]: Leaving directory `/etc/owfs-2.8p2/module/owshell/src/include' make[4]: Leaving directory `/etc/owfs-2.8p2/module/owshell/src/include' make[4]: Entering directory `/etc/owfs-2.8p2/module/owshell/src' make[5]: Entering directory `/etc/owfs-2.8p2/module/owshell/src' make[5]: Nothing to be done for `install-exec-am'. make[5]: Nothing to be done for `install-data-am'. make[5]: Leaving directory `/etc/owfs-2.8p2/module/owshell/src' make[4]: Leaving directory `/etc/owfs-2.8p2/module/owshell/src' make[3]: Leaving directory `/etc/owfs-2.8p2/module/owshell/src' make[3]: Entering directory `/etc/owfs-2.8p2/module/owshell' make[4]: Entering directory `/etc/owfs-2.8p2/module/owshell' make[4]: Nothing to be done for `install-exec-am'. make[4]: Nothing to be done for `install-data-am'. make[4]: Leaving directory `/etc/owfs-2.8p2/module/owshell' make[3]: Leaving directory `/etc/owfs-2.8p2/module/owshell' make[2]: Leaving directory `/etc/owfs-2.8p2/module/owshell' Making install in ownet make[2]: Entering directory `/etc/owfs-2.8p2/module/ownet' Making install in c make[3]: Entering directory `/etc/owfs-2.8p2/module/ownet/c' Making install in src make[4]: Entering directory `/etc/owfs-2.8p2/module/ownet/c/src' Making install in c make[5]: Entering directory `/etc/owfs-2.8p2/module/ownet/c/src/c' make[6]: Entering directory `/etc/owfs-2.8p2/module/ownet/c/src/c' test -z "/usr/lib" || /bin/mkdir -p "/usr/lib" /bin/bash ../../../../../libtool --mode=install /usr/bin/install -c libownet.la '/usr/lib' libtool: install: /usr/bin/install -c .libs/libownet-2.8.so.2.0.0 /usr/lib/libownet-2.8.so.2.0.0 libtool: install: (cd /usr/lib && { ln -s -f libownet-2.8.so.2.0.0 libownet-2.8.so.2 || { rm -f libownet-2.8.so.2 && ln -s libownet-2.8.so.2.0.0 libownet-2.8.so.2; }; }) libtool: install: (cd /usr/lib && { ln -s -f libownet-2.8.so.2.0.0 libownet.so || { rm -f libownet.so && ln -s libownet-2.8.so.2.0.0 libownet.so; }; }) libtool: install: /usr/bin/install -c .libs/libownet.lai /usr/lib/libownet.la libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/sbin" ldconfig -n /usr/lib ---------------------------------------------------------------------- Libraries have been installed in: /usr/lib If you ever happen to want to link against installed libraries in a given directory, LIBDIR, you must either use libtool, and specify the full pathname of the library, or use the `-LLIBDIR' flag during linking and do at least one of the following: - add LIBDIR to the `LD_LIBRARY_PATH' environment variable during execution - add LIBDIR to the `LD_RUN_PATH' environment variable during linking - use the `-Wl,-rpath -Wl,LIBDIR' linker flag - have your system administrator add LIBDIR to `/etc/ld.so.conf' See any operating system documentation about shared libraries for more information, such as the ld(1) and ld.so(8) manual pages. ---------------------------------------------------------------------- make[6]: Nothing to be done for `install-data-am'. make[6]: Leaving directory `/etc/owfs-2.8p2/module/ownet/c/src/c' make[5]: Leaving directory `/etc/owfs-2.8p2/module/ownet/c/src/c' Making install in include make[5]: Entering directory `/etc/owfs-2.8p2/module/ownet/c/src/include' make[6]: Entering directory `/etc/owfs-2.8p2/module/ownet/c/src/include' make[6]: Nothing to be done for `install-exec-am'. test -z "/usr/include" || /bin/mkdir -p "/usr/include" /usr/bin/install -c -m 644 ownetapi.h '/usr/include' make[6]: Leaving directory `/etc/owfs-2.8p2/module/ownet/c/src/include' make[5]: Leaving directory `/etc/owfs-2.8p2/module/ownet/c/src/include' make[5]: Entering directory `/etc/owfs-2.8p2/module/ownet/c/src' make[6]: Entering directory `/etc/owfs-2.8p2/module/ownet/c/src' make[6]: Nothing to be done for `install-exec-am'. make[6]: Nothing to be done for `install-data-am'. make[6]: Leaving directory `/etc/owfs-2.8p2/module/ownet/c/src' make[5]: Leaving directory `/etc/owfs-2.8p2/module/ownet/c/src' make[4]: Leaving directory `/etc/owfs-2.8p2/module/ownet/c/src' make[4]: Entering directory `/etc/owfs-2.8p2/module/ownet/c' make[5]: Entering directory `/etc/owfs-2.8p2/module/ownet/c' make[5]: Nothing to be done for `install-exec-am'. make[5]: Nothing to be done for `install-data-am'. make[5]: Leaving directory `/etc/owfs-2.8p2/module/ownet/c' make[4]: Leaving directory `/etc/owfs-2.8p2/module/ownet/c' make[3]: Leaving directory `/etc/owfs-2.8p2/module/ownet/c' Making install in perl5 make[3]: Entering directory `/etc/owfs-2.8p2/module/ownet/perl5' make[4]: Entering directory `/etc/owfs-2.8p2/module/ownet/perl5' make[4]: Nothing to be done for `install-exec-am'. (cd OWNet && make install DESTDIR="") make[5]: Entering directory `/etc/owfs-2.8p2/module/ownet/perl5/OWNet' Installing /usr/local/share/perl/5.10.1/OWNet.pm Installing /usr/local/man/man3/OWNet.3pm Appending installation info to /usr/local/lib/perl/5.10.1/perllocal.pod make[5]: Leaving directory `/etc/owfs-2.8p2/module/ownet/perl5/OWNet' make[4]: Leaving directory `/etc/owfs-2.8p2/module/ownet/perl5' make[3]: Leaving directory `/etc/owfs-2.8p2/module/ownet/perl5' make[3]: Entering directory `/etc/owfs-2.8p2/module/ownet' make[4]: Entering directory `/etc/owfs-2.8p2/module/ownet' make[4]: Nothing to be done for `install-exec-am'. make[4]: Nothing to be done for `install-data-am'. make[4]: Leaving directory `/etc/owfs-2.8p2/module/ownet' make[3]: Leaving directory `/etc/owfs-2.8p2/module/ownet' make[2]: Leaving directory `/etc/owfs-2.8p2/module/ownet' Making install in owlib make[2]: Entering directory `/etc/owfs-2.8p2/module/owlib' Making install in src make[3]: Entering directory `/etc/owfs-2.8p2/module/owlib/src' Making install in c make[4]: Entering directory `/etc/owfs-2.8p2/module/owlib/src/c' make[5]: Entering directory `/etc/owfs-2.8p2/module/owlib/src/c' test -z "/usr/lib" || /bin/mkdir -p "/usr/lib" /bin/bash ../../../../libtool --mode=install /usr/bin/install -c libow.la '/usr/lib' libtool: install: /usr/bin/install -c .libs/libow-2.8.so.2.0.0 /usr/lib/libow-2.8.so.2.0.0 libtool: install: (cd /usr/lib && { ln -s -f libow-2.8.so.2.0.0 libow-2.8.so.2 || { rm -f libow-2.8.so.2 && ln -s libow-2.8.so.2.0.0 libow-2.8.so.2; }; }) libtool: install: (cd /usr/lib && { ln -s -f libow-2.8.so.2.0.0 libow.so || { rm -f libow.so && ln -s libow-2.8.so.2.0.0 libow.so; }; }) libtool: install: /usr/bin/install -c .libs/libow.lai /usr/lib/libow.la libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/sbin" ldconfig -n /usr/lib ---------------------------------------------------------------------- Libraries have been installed in: /usr/lib If you ever happen to want to link against installed libraries in a given directory, LIBDIR, you must either use libtool, and specify the full pathname of the library, or use the `-LLIBDIR' flag during linking and do at least one of the following: - add LIBDIR to the `LD_LIBRARY_PATH' environment variable during execution - add LIBDIR to the `LD_RUN_PATH' environment variable during linking - use the `-Wl,-rpath -Wl,LIBDIR' linker flag - have your system administrator add LIBDIR to `/etc/ld.so.conf' See any operating system documentation about shared libraries for more information, such as the ld(1) and ld.so(8) manual pages. ---------------------------------------------------------------------- make[5]: Nothing to be done for `install-data-am'. make[5]: Leaving directory `/etc/owfs-2.8p2/module/owlib/src/c' make[4]: Leaving directory `/etc/owfs-2.8p2/module/owlib/src/c' Making install in include make[4]: Entering directory `/etc/owfs-2.8p2/module/owlib/src/include' make[5]: Entering directory `/etc/owfs-2.8p2/module/owlib/src/include' make[5]: Nothing to be done for `install-exec-am'. make[5]: Nothing to be done for `install-data-am'. make[5]: Leaving directory `/etc/owfs-2.8p2/module/owlib/src/include' make[4]: Leaving directory `/etc/owfs-2.8p2/module/owlib/src/include' make[4]: Entering directory `/etc/owfs-2.8p2/module/owlib/src' make[5]: Entering directory `/etc/owfs-2.8p2/module/owlib/src' make[5]: Nothing to be done for `install-exec-am'. make[5]: Nothing to be done for `install-data-am'. make[5]: Leaving directory `/etc/owfs-2.8p2/module/owlib/src' make[4]: Leaving directory `/etc/owfs-2.8p2/module/owlib/src' make[3]: Leaving directory `/etc/owfs-2.8p2/module/owlib/src' make[3]: Entering directory `/etc/owfs-2.8p2/module/owlib' make[4]: Entering directory `/etc/owfs-2.8p2/module/owlib' make[4]: Nothing to be done for `install-exec-am'. make[4]: Nothing to be done for `install-data-am'. make[4]: Leaving directory `/etc/owfs-2.8p2/module/owlib' make[3]: Leaving directory `/etc/owfs-2.8p2/module/owlib' make[2]: Leaving directory `/etc/owfs-2.8p2/module/owlib' Making install in owhttpd make[2]: Entering directory `/etc/owfs-2.8p2/module/owhttpd' Making install in src make[3]: Entering directory `/etc/owfs-2.8p2/module/owhttpd/src' Making install in include make[4]: Entering directory `/etc/owfs-2.8p2/module/owhttpd/src/include' make[5]: Entering directory `/etc/owfs-2.8p2/module/owhttpd/src/include' make[5]: Nothing to be done for `install-exec-am'. make[5]: Nothing to be done for `install-data-am'. make[5]: Leaving directory `/etc/owfs-2.8p2/module/owhttpd/src/include' make[4]: Leaving directory `/etc/owfs-2.8p2/module/owhttpd/src/include' Making install in c make[4]: Entering directory `/etc/owfs-2.8p2/module/owhttpd/src/c' make[5]: Entering directory `/etc/owfs-2.8p2/module/owhttpd/src/c' test -z "/usr/bin" || /bin/mkdir -p "/usr/bin" /bin/bash ../../../../libtool --mode=install /usr/bin/install -c owhttpd '/usr/bin' libtool: install: /usr/bin/install -c .libs/owhttpd /usr/bin/owhttpd make[5]: Nothing to be done for `install-data-am'. make[5]: Leaving directory `/etc/owfs-2.8p2/module/owhttpd/src/c' make[4]: Leaving directory `/etc/owfs-2.8p2/module/owhttpd/src/c' make[4]: Entering directory `/etc/owfs-2.8p2/module/owhttpd/src' make[5]: Entering directory `/etc/owfs-2.8p2/module/owhttpd/src' make[5]: Nothing to be done for `install-exec-am'. make[5]: Nothing to be done for `install-data-am'. make[5]: Leaving directory `/etc/owfs-2.8p2/module/owhttpd/src' make[4]: Leaving directory `/etc/owfs-2.8p2/module/owhttpd/src' make[3]: Leaving directory `/etc/owfs-2.8p2/module/owhttpd/src' make[3]: Entering directory `/etc/owfs-2.8p2/module/owhttpd' make[4]: Entering directory `/etc/owfs-2.8p2/module/owhttpd' make[4]: Nothing to be done for `install-exec-am'. make[4]: Nothing to be done for `install-data-am'. make[4]: Leaving directory `/etc/owfs-2.8p2/module/owhttpd' make[3]: Leaving directory `/etc/owfs-2.8p2/module/owhttpd' make[2]: Leaving directory `/etc/owfs-2.8p2/module/owhttpd' Making install in owserver make[2]: Entering directory `/etc/owfs-2.8p2/module/owserver' Making install in src make[3]: Entering directory `/etc/owfs-2.8p2/module/owserver/src' Making install in include make[4]: Entering directory `/etc/owfs-2.8p2/module/owserver/src/include' make[5]: Entering directory `/etc/owfs-2.8p2/module/owserver/src/include' make[5]: Nothing to be done for `install-exec-am'. make[5]: Nothing to be done for `install-data-am'. make[5]: Leaving directory `/etc/owfs-2.8p2/module/owserver/src/include' make[4]: Leaving directory `/etc/owfs-2.8p2/module/owserver/src/include' Making install in c make[4]: Entering directory `/etc/owfs-2.8p2/module/owserver/src/c' make[5]: Entering directory `/etc/owfs-2.8p2/module/owserver/src/c' test -z "/usr/bin" || /bin/mkdir -p "/usr/bin" /bin/bash ../../../../libtool --mode=install /usr/bin/install -c owserver '/usr/bin' libtool: install: /usr/bin/install -c .libs/owserver /usr/bin/owserver make[5]: Nothing to be done for `install-data-am'. make[5]: Leaving directory `/etc/owfs-2.8p2/module/owserver/src/c' make[4]: Leaving directory `/etc/owfs-2.8p2/module/owserver/src/c' make[4]: Entering directory `/etc/owfs-2.8p2/module/owserver/src' make[5]: Entering directory `/etc/owfs-2.8p2/module/owserver/src' make[5]: Nothing to be done for `install-exec-am'. make[5]: Nothing to be done for `install-data-am'. make[5]: Leaving directory `/etc/owfs-2.8p2/module/owserver/src' make[4]: Leaving directory `/etc/owfs-2.8p2/module/owserver/src' make[3]: Leaving directory `/etc/owfs-2.8p2/module/owserver/src' make[3]: Entering directory `/etc/owfs-2.8p2/module/owserver' make[4]: Entering directory `/etc/owfs-2.8p2/module/owserver' make[4]: Nothing to be done for `install-exec-am'. make[4]: Nothing to be done for `install-data-am'. make[4]: Leaving directory `/etc/owfs-2.8p2/module/owserver' make[3]: Leaving directory `/etc/owfs-2.8p2/module/owserver' make[2]: Leaving directory `/etc/owfs-2.8p2/module/owserver' Making install in owfs make[2]: Entering directory `/etc/owfs-2.8p2/module/owfs' Making install in src make[3]: Entering directory `/etc/owfs-2.8p2/module/owfs/src' Making install in c make[4]: Entering directory `/etc/owfs-2.8p2/module/owfs/src/c' make[5]: Entering directory `/etc/owfs-2.8p2/module/owfs/src/c' test -z "/usr/bin" || /bin/mkdir -p "/usr/bin" /bin/bash ../../../../libtool --mode=install /usr/bin/install -c owfs '/usr/bin' libtool: install: /usr/bin/install -c .libs/owfs /usr/bin/owfs make[5]: Nothing to be done for `install-data-am'. make[5]: Leaving directory `/etc/owfs-2.8p2/module/owfs/src/c' make[4]: Leaving directory `/etc/owfs-2.8p2/module/owfs/src/c' Making install in include make[4]: Entering directory `/etc/owfs-2.8p2/module/owfs/src/include' make[5]: Entering directory `/etc/owfs-2.8p2/module/owfs/src/include' make[5]: Nothing to be done for `install-exec-am'. make[5]: Nothing to be done for `install-data-am'. make[5]: Leaving directory `/etc/owfs-2.8p2/module/owfs/src/include' make[4]: Leaving directory `/etc/owfs-2.8p2/module/owfs/src/include' make[4]: Entering directory `/etc/owfs-2.8p2/module/owfs/src' make[5]: Entering directory `/etc/owfs-2.8p2/module/owfs/src' make[5]: Nothing to be done for `install-exec-am'. make[5]: Nothing to be done for `install-data-am'. make[5]: Leaving directory `/etc/owfs-2.8p2/module/owfs/src' make[4]: Leaving directory `/etc/owfs-2.8p2/module/owfs/src' make[3]: Leaving directory `/etc/owfs-2.8p2/module/owfs/src' make[3]: Entering directory `/etc/owfs-2.8p2/module/owfs' make[4]: Entering directory `/etc/owfs-2.8p2/module/owfs' make[4]: Nothing to be done for `install-exec-am'. make[4]: Nothing to be done for `install-data-am'. make[4]: Leaving directory `/etc/owfs-2.8p2/module/owfs' make[3]: Leaving directory `/etc/owfs-2.8p2/module/owfs' make[2]: Leaving directory `/etc/owfs-2.8p2/module/owfs' Making install in owftpd make[2]: Entering directory `/etc/owfs-2.8p2/module/owftpd' Making install in src make[3]: Entering directory `/etc/owfs-2.8p2/module/owftpd/src' Making install in c make[4]: Entering directory `/etc/owfs-2.8p2/module/owftpd/src/c' make[5]: Entering directory `/etc/owfs-2.8p2/module/owftpd/src/c' test -z "/usr/bin" || /bin/mkdir -p "/usr/bin" /bin/bash ../../../../libtool --mode=install /usr/bin/install -c owftpd '/usr/bin' libtool: install: /usr/bin/install -c .libs/owftpd /usr/bin/owftpd make[5]: Nothing to be done for `install-data-am'. make[5]: Leaving directory `/etc/owfs-2.8p2/module/owftpd/src/c' make[4]: Leaving directory `/etc/owfs-2.8p2/module/owftpd/src/c' Making install in include make[4]: Entering directory `/etc/owfs-2.8p2/module/owftpd/src/include' make[5]: Entering directory `/etc/owfs-2.8p2/module/owftpd/src/include' make[5]: Nothing to be done for `install-exec-am'. make[5]: Nothing to be done for `install-data-am'. make[5]: Leaving directory `/etc/owfs-2.8p2/module/owftpd/src/include' make[4]: Leaving directory `/etc/owfs-2.8p2/module/owftpd/src/include' make[4]: Entering directory `/etc/owfs-2.8p2/module/owftpd/src' make[5]: Entering directory `/etc/owfs-2.8p2/module/owftpd/src' make[5]: Nothing to be done for `install-exec-am'. make[5]: Nothing to be done for `install-data-am'. make[5]: Leaving directory `/etc/owfs-2.8p2/module/owftpd/src' make[4]: Leaving directory `/etc/owfs-2.8p2/module/owftpd/src' make[3]: Leaving directory `/etc/owfs-2.8p2/module/owftpd/src' make[3]: Entering directory `/etc/owfs-2.8p2/module/owftpd' make[4]: Entering directory `/etc/owfs-2.8p2/module/owftpd' make[4]: Nothing to be done for `install-exec-am'. make[4]: Nothing to be done for `install-data-am'. make[4]: Leaving directory `/etc/owfs-2.8p2/module/owftpd' make[3]: Leaving directory `/etc/owfs-2.8p2/module/owftpd' make[2]: Leaving directory `/etc/owfs-2.8p2/module/owftpd' Making install in owcapi make[2]: Entering directory `/etc/owfs-2.8p2/module/owcapi' Making install in src make[3]: Entering directory `/etc/owfs-2.8p2/module/owcapi/src' Making install in c make[4]: Entering directory `/etc/owfs-2.8p2/module/owcapi/src/c' make[5]: Entering directory `/etc/owfs-2.8p2/module/owcapi/src/c' test -z "/usr/lib" || /bin/mkdir -p "/usr/lib" /bin/bash ../../../../libtool --mode=install /usr/bin/install -c libowcapi.la '/usr/lib' libtool: install: warning: relinking `libowcapi.la' libtool: install: (cd /etc/owfs-2.8p2/module/owcapi/src/c; /bin/bash /etc/owfs-2.8p2/libtool --tag CC --mode=relink gcc -I../include -I../../../owlib/src/include -L../../../owlib/src/c -fexceptions -Wall -W -Wundef -Wshadow -Wpointer-arith -Wcast-qual -Wcast-align -Wstrict-prototypes -Wredundant-decls -D__EXTENSIONS__ -D_FILE_OFFSET_BITS=64 -D_XOPEN_SOURCE=500 -D_BSD_SOURCE=1 -D_ISOC99_SOURCE=1 -D_POSIX_C_SOURCE=200112L -pthread -g -O2 -D_XOPEN_SOURCE=500 -D_BSD_SOURCE=1 -D_ISOC99_SOURCE=1 -D_POSIX_C_SOURCE=200112L -low -version-info 2:0:0 -release 2.8 -L/usr/lib -lusb -Wl,--rpath -Wl,/usr/lib -shared -shrext .so -o libowcapi.la -rpath /usr/lib owcapi.lo -lm -ldl ) libtool: relink: gcc -shared .libs/owcapi.o -L/etc/owfs-2.8p2/module/owlib/src/c -L/usr/lib -low -lusb -lm -ldl -pthread -Wl,--rpath -Wl,/usr/lib -pthread -Wl,-soname -Wl,libowcapi-2.8.so.2 -o .libs/libowcapi-2.8.so.2.0.0 libtool: install: /usr/bin/install -c .libs/libowcapi-2.8.so.2.0.0T /usr/lib/libowcapi-2.8.so.2.0.0 libtool: install: (cd /usr/lib && { ln -s -f libowcapi-2.8.so.2.0.0 libowcapi-2.8.so.2 || { rm -f libowcapi-2.8.so.2 && ln -s libowcapi-2.8.so.2.0.0 libowcapi-2.8.so.2; }; }) libtool: install: (cd /usr/lib && { ln -s -f libowcapi-2.8.so.2.0.0 libowcapi.so || { rm -f libowcapi.so && ln -s libowcapi-2.8.so.2.0.0 libowcapi.so; }; }) libtool: install: /usr/bin/install -c .libs/libowcapi.lai /usr/lib/libowcapi.la libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/sbin" ldconfig -n /usr/lib ---------------------------------------------------------------------- Libraries have been installed in: /usr/lib If you ever happen to want to link against installed libraries in a given directory, LIBDIR, you must either use libtool, and specify the full pathname of the library, or use the `-LLIBDIR' flag during linking and do at least one of the following: - add LIBDIR to the `LD_LIBRARY_PATH' environment variable during execution - add LIBDIR to the `LD_RUN_PATH' environment variable during linking - use the `-Wl,-rpath -Wl,LIBDIR' linker flag - have your system administrator add LIBDIR to `/etc/ld.so.conf' See any operating system documentation about shared libraries for more information, such as the ld(1) and ld.so(8) manual pages. ---------------------------------------------------------------------- make[5]: Nothing to be done for `install-data-am'. make[5]: Leaving directory `/etc/owfs-2.8p2/module/owcapi/src/c' make[4]: Leaving directory `/etc/owfs-2.8p2/module/owcapi/src/c' Making install in include make[4]: Entering directory `/etc/owfs-2.8p2/module/owcapi/src/include' make[5]: Entering directory `/etc/owfs-2.8p2/module/owcapi/src/include' make[5]: Nothing to be done for `install-exec-am'. test -z "/usr/include" || /bin/mkdir -p "/usr/include" /usr/bin/install -c -m 644 owcapi.h '/usr/include' make[5]: Leaving directory `/etc/owfs-2.8p2/module/owcapi/src/include' make[4]: Leaving directory `/etc/owfs-2.8p2/module/owcapi/src/include' make[4]: Entering directory `/etc/owfs-2.8p2/module/owcapi/src' make[5]: Entering directory `/etc/owfs-2.8p2/module/owcapi/src' make[5]: Nothing to be done for `install-exec-am'. make[5]: Nothing to be done for `install-data-am'. make[5]: Leaving directory `/etc/owfs-2.8p2/module/owcapi/src' make[4]: Leaving directory `/etc/owfs-2.8p2/module/owcapi/src' make[3]: Leaving directory `/etc/owfs-2.8p2/module/owcapi/src' make[3]: Entering directory `/etc/owfs-2.8p2/module/owcapi' make[4]: Entering directory `/etc/owfs-2.8p2/module/owcapi' make[4]: Nothing to be done for `install-exec-am'. make[4]: Nothing to be done for `install-data-am'. make[4]: Leaving directory `/etc/owfs-2.8p2/module/owcapi' make[3]: Leaving directory `/etc/owfs-2.8p2/module/owcapi' make[2]: Leaving directory `/etc/owfs-2.8p2/module/owcapi' Making install in owtap make[2]: Entering directory `/etc/owfs-2.8p2/module/owtap' /usr/bin/install -c -d /usr/bin /usr/bin/install -c -m 755 owtap.tcl /usr/bin/owtap make[2]: Leaving directory `/etc/owfs-2.8p2/module/owtap' Making install in owmon make[2]: Entering directory `/etc/owfs-2.8p2/module/owmon' /usr/bin/install -c -d /usr/bin /usr/bin/install -c -m 755 owmon.tcl /usr/bin/owmon make[2]: Leaving directory `/etc/owfs-2.8p2/module/owmon' make[2]: Entering directory `/etc/owfs-2.8p2/module' make[3]: Entering directory `/etc/owfs-2.8p2/module' make[3]: Nothing to be done for `install-exec-am'. make[3]: Nothing to be done for `install-data-am'. make[3]: Leaving directory `/etc/owfs-2.8p2/module' make[2]: Leaving directory `/etc/owfs-2.8p2/module' make[1]: Leaving directory `/etc/owfs-2.8p2/module' make[1]: Entering directory `/etc/owfs-2.8p2' make[2]: Entering directory `/etc/owfs-2.8p2' make[2]: Nothing to be done for `install-exec-am'. make[2]: Nothing to be done for `install-data-am'. make[2]: Leaving directory `/etc/owfs-2.8p2' make[1]: Leaving directory `/etc/owfs-2.8p2' ======================== Installation successful ========================== Copying documentation directory... ./ ./ChangeLog ./AUTHORS ./COPYING.LIB ./NEWS ./INSTALL ./TODO ./COPYING ./README Copying files to the temporary directory...OK Stripping ELF binaries and libraries...OK Compressing man pages...OK Building file list...OK Building Debian package...OK Installing Debian package...OK Erasing temporary files...OK Deleting doc-pak directory...OK Deleting temp dir...OK ********************************************************************** Done. The new package has been installed and saved to /etc/owfs-2.8p2/owfs_0-1_i386.deb You can remove it from your system anytime using: dpkg -r owfs ********************************************************************** root@dhcp-179:/etc/owfs-2.8p2# **10. $ sudo mkdir /mnt/1-wire**\\ Once again, since I was logged in as the Super-user, no sudo needed.\\ root@dhcp-179:/# mkdir /mnt/1-wire mkdir: cannot create directory `/mnt/1-wire': No such file or directory root@dhcp-179:/# mkdir mnt root@dhcp-179:/# cd mnt root@dhcp-179:/mnt# mkdir 1-wire **11. With the Dallas one-wire adapter plugged into the USB port, and the sensor plugged into the Dallas one-wire adapter, mount the OWFS file system.**\\ root@dhcp-179:/# owfs /dev/ttyUSB0 [tab complete ttyUSB] /mnt/1-wire **12. Change the directory to /mnt/1-wire and performed a listing of the 1-wire directory:**\\ root@dhcp-179:/# cd /mnt/1-wire/ root@dhcp-179:/mnt/1-wire# ls 26.54538C000000 settings statistics system bus.0 simultaneous structure uncached **13. Change directory to the /mnt/1-wire directory**\\ root@dhcp-179:/mnt/1-wire# cd 26.54538C000000 **14. "Cat" the sensor file**\\ root@dhcp-179:/mnt/1-wire/26.54538C000000# cat temperature 24.0938root@dhcp-179:/mnt/1-wire/26.54538C000000# Since 24.0938 isn't room temperature in degrees Fahrenheit, I converted this number to Fahrenheit to see what is its value would be. It turns out, it converts to 75.3688 ºF. I didn't think the LAIR was that hot.\\ ======References====== * Getting 1-wire sensors working in Linux: http://www.technotes.se/?p=26 * Installation of OWFS: http://automation.binarysage.net/?p=1244&cpage=1 * The instructor's experience with OWFS: http://lab46.corning-cc.edu/haas/status/status_201010#october_10th_2010 * OWFS.Org: http://owfs.org/ * One-Wire Devices: http://www.maxim-ic.com/products/1-wire/