From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from lists.gentoo.org ([140.105.134.102] helo=robin.gentoo.org) by nuthatch.gentoo.org with esmtp (Exim 4.54) id 1FGG0S-0001qj-6p for garchives@archives.gentoo.org; Mon, 06 Mar 2006 13:44:12 +0000 Received: from robin.gentoo.org (localhost [127.0.0.1]) by robin.gentoo.org (8.13.5/8.13.5) with SMTP id k26DgslO001882; Mon, 6 Mar 2006 13:42:54 GMT Received: from mail45.e.nsc.no (mail45.e.nsc.no [193.213.115.45]) by robin.gentoo.org (8.13.5/8.13.5) with ESMTP id k26DgrvV018811 for ; Mon, 6 Mar 2006 13:42:54 GMT Received: from mail.nor.wtbts.org ([213.234.126.131]) by mail45.nsc.no (8.13.5/8.13.5) with ESMTP id k26DgqQl002271 for ; Mon, 6 Mar 2006 14:42:53 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by mail.nor.wtbts.org (Postfix) with ESMTP id 6B3BD3FA32 for ; Mon, 6 Mar 2006 14:42:52 +0100 (CET) Received: from mail.nor.wtbts.org ([127.0.0.1]) by localhost (mail [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 19896-03 for ; Mon, 6 Mar 2006 14:42:51 +0100 (CET) Received: from nc (unknown [192.168.65.211]) by mail.nor.wtbts.org (Postfix) with ESMTP id 5AED33FA04 for ; Mon, 6 Mar 2006 14:42:51 +0100 (CET) Subject: Re: [gentoo-embedded] dropbear and telnetd problem From: Natanael Copa To: gentoo-embedded@lists.gentoo.org In-Reply-To: <200603061125.34119.ladmanj@volny.cz> References: <200603050019.59758.ladmanj@volny.cz> <200603051404.36138.ladmanj@volny.cz> <200603051515.57471.ladmanj@volny.cz> <200603061125.34119.ladmanj@volny.cz> Content-Type: text/plain Date: Mon, 06 Mar 2006 14:42:51 +0100 Message-Id: <1141652571.21212.9.camel@nc> Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-embedded@gentoo.org Reply-to: gentoo-embedded@lists.gentoo.org Mime-Version: 1.0 X-Mailer: Evolution 2.4.2.1 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new-20030616-p10 (Debian) at wtbts.no X-Archives-Salt: 2bd71ffa-30d2-4047-af01-4571eb5a19f1 X-Archives-Hash: a1f8a385ff3a8d6b27bb79d63575775f On man, 2006-03-06 at 11:25 +0100, Jakub Ladman wrote: > On Sunday 05 of March 2006 15:15, Jakub Ladman wrote: > > > > Sounds like the /dev/pts issue solar mentioned a few mails back. Make > > > > sure /dev/pts exists, and you have it mounted as devpts (mount devpts > > > > /dev/pts -t devpts), and see if that fixes it. > > > > > > Mounting /dev/pts > > > mount: Mounting none on /dev/pts failed: No such device > > > > I have two host computers, at home and at work. Unfortunately here, at > > home, i have forgotten to setup kernel symlinks. > > After making it i am trying to recompile everything. > > I hope that it may help. > > No it helps me not. I still see "mount: Mounting none on /dev/pts failed: No > such device" and i am dead, i can't move any step forward. > > Do you know, how to make /dev/pts work? You need Unix98 PTY support in your kernel: Device Drivers ---> Character devices ---> [*] Unix98 PTY support Here is a cut from my udev init.d script that mounts the pts. # create pts file system [ -d /dev/pts ] || mkdir --mode=755 /dev/pts [ -c /dev/ptmx ] || mknod --mode=666 /dev/ptmx c 5 2 mount /dev/pts and the line in fstab: none /dev/pts devpts defaults 0 0 If you dont want depend on your fstab, replace the above "mount /dev/pts" with "mount -t devpts none /dev/pts" -- Natanael Copa -- gentoo-embedded@gentoo.org mailing list