Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
telnet on minimal install cd
View unanswered posts
View posts from last 24 hours

 
Reply to topic    Gentoo Forums Forum Index Installing Gentoo
View previous topic :: View next topic  
Author Message
DaggyStyle
Watchman
Watchman


Joined: 22 Mar 2006
Posts: 5910

PostPosted: Sat Apr 28, 2007 8:21 am    Post subject: telnet on minimal install cd Reply with quote

is there an telnet client on the minimal install cd? I need it inorder to connect to the internet during install
if not, where can I find an bin to use and can I get an usb support in the install cd inorder to run it?

I rather not install from the full cd


thanks
_________________
Only two things are infinite, the universe and human stupidity and I'm not sure about the former - Albert Einstein
Back to top
View user's profile Send private message
NeddySeagoon
Administrator
Administrator


Joined: 05 Jul 2003
Posts: 54300
Location: 56N 3W

PostPosted: Sat Apr 28, 2007 11:10 am    Post subject: Reply with quote

DaggyStyle,

Tell us all the parts of your problem rather that parts of your perceived solution. There is no telnet on the minimal liveCD.
However, if we knew what you wanted to do, we may be able to suggest an alternative way to achieve the same goal.
_________________
Regards,

NeddySeagoon

Computer users fall into two groups:-
those that do backups
those that have never had a hard drive fail.
Back to top
View user's profile Send private message
DaggyStyle
Watchman
Watchman


Joined: 22 Mar 2006
Posts: 5910

PostPosted: Sat Apr 28, 2007 2:09 pm    Post subject: Reply with quote

my uni uses an authentication system that requires me to logon an firewall using an telnet client, enter my username and password. if it is right, I can access the internet

thats my problem.
_________________
Only two things are infinite, the universe and human stupidity and I'm not sure about the former - Albert Einstein
Back to top
View user's profile Send private message
NeddySeagoon
Administrator
Administrator


Joined: 05 Jul 2003
Posts: 54300
Location: 56N 3W

PostPosted: Sat Apr 28, 2007 2:25 pm    Post subject: Reply with quote

DaggyStyle,

Does putting your user name and password in the proxy settings work ?

If not, I can build you a telnet for k6-2, P3, Athlon-XP or Sparc. The liveCD should understand usb-storage although you may need to do some manual modprobes. Let me know what arch you need telnet for. The P3 one will work on later systems. I also have a few P1 boxes around but they are not powered up, nor up to date.
_________________
Regards,

NeddySeagoon

Computer users fall into two groups:-
those that do backups
those that have never had a hard drive fail.
Back to top
View user's profile Send private message
Cyker
Veteran
Veteran


Joined: 15 Jun 2006
Posts: 1746

PostPosted: Sat Apr 28, 2007 2:48 pm    Post subject: Reply with quote

Try this. I found it on Freshmeat about 4 years ago and it made me laugh :):

It actually works, but is a bit laggy and gets confused on anything exotic... ;)

Code:
#!/bin/bash
# Copyright (C) 2000  Tim Waugh <twaugh@redhat.com>
# Licensed under the terms of the GNU General Public License v2
if [ "$1" = "--version" ]; then
  echo "Poor man's telnet 0.0.2"; exit 0
fi

if [ "$1" = "--help" ]; then
  echo "Poor man's telnet: a simple telnet client written in bash."
  echo "usage: pmt <host> <port>"
  echo "This only really works for SMTP-style connections."
  exit 0
fi

if [ -z $1 ]; then
  echo "Need hostname"; exit 1
fi

if [ -z $2 ]; then
  echo "Need port"; exit 1
fi

port=$2
if [ ! -z "${2##[0-9]*}" ]
then
  port=$( (while read line; do
      line=${line#$2}
      line=$(echo ${line%%/tcp*})
      if [ ! -z "$line" ]; then
        if [ -z "${line##[0-9]*}" ]; then
          echo $line
          break
        fi
      fi
    done
  ) < /etc/services)
fi

( while :; do
    while :; do
      read line <&3 || exit 0
      echo "$line"
      if [ ! -z "${line##???-*}" ]; then break; fi
    done
    read line; echo "$line" >&3
  done
) 3<>/dev/tcp/$1/$port
Back to top
View user's profile Send private message
DaggyStyle
Watchman
Watchman


Joined: 22 Mar 2006
Posts: 5910

PostPosted: Sat Apr 28, 2007 6:35 pm    Post subject: Reply with quote

thanks. I've got passed it using http based login.
_________________
Only two things are infinite, the universe and human stupidity and I'm not sure about the former - Albert Einstein
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Installing Gentoo All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum