Jump to content

idud

Members
  • Posts

    114
  • Joined

  • Last visited

Posts posted by idud

  1. I've changed some values in, euh, sorry I forgot, it's a file that belongs to harddrake. I added value `umask=0000', and when I plugged flashdrive in, harddrake autodetect it and then adding appropriate entry in fstab and then mount it with umask=0000. All users can get all access.

  2. /etc/xinetd.d/telnet is a normal file, and it comes from package telnetd. So if the file doesn't exist, it means that you don't have any telnet-run-from-xinetd service running on port 23. (I feel strange now)

     

    How about the output from this command:

    $ nmap -P0 localhost

  3. Wget will recursively lists all files under the directory that you wish to download, and save it to .listing. But wildcards is not allowed in HTTP. So I think the problem is your http_proxy, CMIIW. Can you just unexport the http_proxy and use only ftp_proxy? So wget will try to connect to the server's ftp port. Or maybe you can add the servers ftp port number, such as ftp://ftp.aso.ee:21/pub/Mandrake/official/2005/i586/*.

     

    Btw, can you translate the error messages to English? I don't understand Estonian.

  4. Telnetd is in xinetd, once you turn xinetd off telnetd will be killed too. Or you can edit file /etc/xinetd.d/telnet from this:

    service telnet
    {
           flags           = REUSE
           socket_type     = stream
           wait            = no
           user            = root
           server          = /usr/sbin/in.telnetd
           log_on_failure  += USERID
           disable         = no
    }

    to this

    service telnet
    {
           flags           = REUSE
           socket_type     = stream
           wait            = no
           user            = root
           server          = /usr/sbin/in.telnetd
           log_on_failure  += USERID
           disable         = yes
    }

     

    Then restart xinetd,

    # service xinetd restart

    so you can still have xinetd running while telnetd stopped.

×
×
  • Create New...