From owner-freebsd-questions@FreeBSD.ORG Fri Mar 28 11:34:48 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1920B1065670 for ; Fri, 28 Mar 2008 11:34:48 +0000 (UTC) (envelope-from sys@sellerbay.org) Received: from rv-out-0910.google.com (rv-out-0910.google.com [209.85.198.191]) by mx1.freebsd.org (Postfix) with ESMTP id 9AC188FC1E for ; Fri, 28 Mar 2008 11:34:46 +0000 (UTC) (envelope-from sys@sellerbay.org) Received: by rv-out-0910.google.com with SMTP id g13so113453rvb.43 for ; Fri, 28 Mar 2008 04:34:39 -0700 (PDT) Received: by 10.141.168.7 with SMTP id v7mr1261671rvo.118.1206704079263; Fri, 28 Mar 2008 04:34:39 -0700 (PDT) Received: by 10.141.96.4 with HTTP; Fri, 28 Mar 2008 04:34:39 -0700 (PDT) Message-ID: <6a5b467e0803280434y571fa95exec22778fab0fbd82@mail.gmail.com> Date: Fri, 28 Mar 2008 12:34:39 +0100 From: "Ashant Chalasani" To: freebsd-questions@freebsd.org In-Reply-To: <6a5b467e0803270601h5590da83w76e159d9c445bbc4@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <6a5b467e0803270601h5590da83w76e159d9c445bbc4@mail.gmail.com> Subject: Re: tinybsd doesn't have /etc/rc.d/ ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Mar 2008 11:34:48 -0000 Still no go on getting sshd to start. A few things have gotten better though.. Both /etc/rc and /etc/defaults/rc.conf were missing. Copying these from host to tinybsd_ap helped. init right now looks like: -------------------------------------- Timecounters tick every 1.000 msec Elan-mmcr driver: MMCR at 0xc5ad7000. PPS support. Elan-mmcr Soekris net45xx comBIOS ver. 1.23a 20040211 Copyright (C) 2000-2003 ipfw2 initialized, divert enabled, rule-based forwarding disabled, default to accept, logging disabled ad0: 124MB at ata0-master PIO4 Trying to mount root from ufs:/dev/ad0a WARNING: /mnt was not properly dismounted Invalid time in clock: check and reset the date! Loading configuration files. WARNING: / was not properly dismounted mtree: line 6: unknown group wheel cp: /var/log/lastlog: No such file or directory chmod: /var/log/lastlog: No such file or directory cp: /var/log/wtmp: No such file or directory chmod: /var/log/wtmp: No such file or directory eval: cannot create /var/run/dmesg.boot: No such file or directory eval: cannot create /var/run/syslogd.sockets: No such file or directory Starting syslogd. syslogd: cannot open pid file: No such file or directory Mar 28 08:52:31 syslogd: cannot create /var/run/log: No such file or directory syslogd: child pid 83 exited with return code 1 Flushed all rules. 00100 allow ip from any to any via lo0 00200 deny ip from any to 127.0.0.0/8 00300 deny ip from 127.0.0.0/8 to any Firewall rules loaded. net.inet.ip.fw.enable: 1 -> 1 lo0: flags=8049 metric 0 mtu 16384 inet 127.0.0.1 netmask 0xff000000 Additional routing options:. Additional IP options:. Starting sshd. Missing privilege separation directory: /var/empty bridge0: Ethernet address: ca:03:78:21:3c:50 bridge0 ath0: promiscuous mode enabled sis0: promiscuous mode enabled Starting cron. cron: can't open or create /var/run/cron.pid: No such file or directory Fri M1sis0: Applying short cable fix (reg=f5) sis0: link state changed to UP ------------------------------------------------- /var/log/ and /var/run/ directory contents are: [root@fbsd70 /var/log]# l total 4 drwxr-xr-x 24 root 0 512 Mar 25 19:37 .. -rw-r--r-- 1 root 0 0 Mar 27 14:00 lastlog -rw-r--r-- 1 root 0 0 Mar 27 14:00 wtmp drwxr-xr-x 2 root 0 512 Mar 27 14:01 . [root@fbsd70 /var/run]# l total 20 drwxr-xr-x 2 bind 53 512 Mar 25 17:02 named drwxrwx--- 2 root 69 512 Mar 25 17:02 ppp drwxr-xr-x 24 root 0 512 Mar 25 19:37 .. -rw-r--r-- 1 root 0 0 Mar 28 09:36 utmp -rw-r--r-- 1 root 0 0 Mar 28 09:36 syslogd.sockets -rw-r--r-- 1 root 0 8879 Mar 28 09:36 dmesg.boot -rw-r--r-- 1 root 0 0 Mar 28 09:36 clean_var drwxr-xr-x 4 root 0 512 Mar 28 09:36 . -rw------- 1 root 0 4 Mar 28 09:36 cron.pid Can anyone see why the /var/log and /var/run errors are occuring inspite of files existing and writable? Thanks Ashant On Thu, Mar 27, 2008 at 2:01 PM, Ashant Chalasani wrote: > The whole of /etc/rc.d/ directory is missing on TinyBSD 0.9. Is this > by design? I'm hoping someone can throw light on it. > > I copied the sshd script manually from my 7.0-REL host onto the flash > image, as also a simple initialization script that I wrote for setting > up the network. But it looks like lot more startup scripts from > /etc/rc.d/ are required to initialize the system. I can ping the > device on the network port, which means my network script ran. But > sshd on port 22 isn't available, so I guess /etc/rc.d/sshd failed. > > I prefer to copy only the necessary scripts into my target's > /etc/rc.d/ from the host, and not the whole directory. There are 143 > scripts in rc.d. Is there a minimal subset of scripts to setup the > system, networking + basic services (dhclient, sshd etc)? > > Thanks > Ashant > > -- > http://code.google.com/p/tinybsdap/ > -- http://code.google.com/p/tinybsdap/