File editing

Results 1 to 6 of 6
  1. #1
    Member AcidRayne is offline
    MemberRank
    Nov 2010 Join Date
    92Posts

    sad File editing

    i wasn't completely sure on where to put this but basically my problem is i log into pwAdmin and go to server config and notice my servers rates are 0 for everything so i have spent hours searching on how to edit my rates and nothing came up i kept hearing about winscp but winscp keeps refusing connection with vbox tryed installing openssh-server and client but something about unmet dependencies on alot of stuff i can log into my server just fine and play and connect to register page and pwAdmin works fine but no rates and no way to edit the file i need is there a way to fix winscp or maybe another way to edit the file i need? sorry for noob thread lol i got tired of searching and searching


  2. #2
    Nerd-IO Romulan is offline
    MemberRank
    Feb 2009 Join Date
    BelgiumLocation
    3,333Posts

    Re: File editing

    In your vbox, do you get a ping from Google ? If yes then you should able to install openssh-server package.
    Code:
    apt-get update
    apt-get install openssh-server
    If you don't get a ping from google then your DNS settings are wrong.

  3. #3
    Member AcidRayne is offline
    MemberRank
    Nov 2010 Join Date
    92Posts

    Re: File editing

    Quote Originally Posted by Romulan View Post
    In your vbox, do you get a ping from Google ? If yes then you should able to install openssh-server package.
    Code:
    apt-get update
    apt-get install openssh-server
    If you don't get a ping from google then your DNS settings are wrong.
    at risk of sounding like a complete nub i went into vbox and typed ping google.com and got back 64 bytes from tul01m01-in-f103.1e100.net (IP Address): icmp req=(varied number mostly) ttl=53 time=(40 - 42 ms) guessing that was my vbox getting a ping from google i did apt-get update then after it was finish apt-get install openssh-server and still the same thing about dependencies :/ im kinda new to this programming networking stuff so sorry if im getting on your nerves lol

  4. #4
    Black Magic Development das7002 is offline
    MemberRank
    Apr 2010 Join Date
    EarthLocation
    2,188Posts

    Re: File editing

    That was your ping reply from Google. 1e100.net is just Google being sarcastic as 1^100 is a Googol which is where Google's name came from.

    It does at least seem you are somewhat trying(unlike some people) so I'd suggest reading some Linux basics https://help.ubuntu.com/11.04/serverguide/C/index.html

    help.ubuntu.com does have amazing documentation (and so does just about every other place that gives it out). If you ever need help with a specific command

    Code:
    command --help
    usually works and if it doesn't then there is always
    Code:
    man command
    which gives that commands man(ual) page and most of the time has a few examples

  5. #5
    Member AcidRayne is offline
    MemberRank
    Nov 2010 Join Date
    92Posts

    Re: File editing

    Quote Originally Posted by das7002 View Post
    That was your ping reply from Google. 1e100.net is just Google being sarcastic as 1^100 is a Googol which is where Google's name came from.

    It does at least seem you are somewhat trying(unlike some people) so I'd suggest reading some Linux basics https://help.ubuntu.com/11.04/serverguide/C/index.html

    help.ubuntu.com does have amazing documentation (and so does just about every other place that gives it out). If you ever need help with a specific command

    Code:
    command --help
    usually works and if it doesn't then there is always
    Code:
    man command
    which gives that commands man(ual) page and most of the time has a few examples
    yea thanks ill read into those linux basics could help with stuff in the future lol knowing me there will be something in there i wish i would have known about a year ago when i first tryed to make a server lmfao

    ---------- Post added at 03:45 AM ---------- Previous post was at 02:54 AM ----------

    The unmet dependencies error can happen randomly on many different components or modules such as libsasl2, libssl, python-wxversion, zlib, libidn, libldap, libkrb, libgssapi, libstdc++, libstdc++-devel and etc, different by each system.

    Although the system suggested resolution for the error is to try to reinstall the affected dependency modules by “apt-get -f install” command to attempt to fix and correct a system with broken dependencies in place, however, many users found that the error happens again, throwing up more unmet dependencies for “first level original” unmet dependencies, causing infinite loop of the error.

    The cause of the issue of unmet dependencies, despite the fact that the modules and all dependencies have been properly installed, is probably due to corrupted package database, and/or some packages weren’t installed properly. Thus, to fix and resolve the problem, try to run one of the following commands:

    sudo apt-get clean

    or,

    sudo apt-get autoclean

    “apt-get clean” clears out the local repository of retrieved package files (i.e. the .deb files). It removes everything but the lock file from /var/cache/apt/archives/ and /var/cache/apt/archives/partial/. “apt-get autoclean” clears out the local repository of retrieved package files, but unlike “apt-get clean”, it only removes package files that can no longer be downloaded, and are largely useless.

    After running “apt-get clean” or “apt-get autoclean”, re-run the “apt-get -f install” command in affected modules the show in the error message:

    sudo apt-get -f install <module name>

    Finally, try to install the package(s) again. It should be able to install properly now.
    this is what fixed my problem a few more hours of searching payed off thank god thank you guys for your help WinSCP connects now

  6. #6
    Nerd-IO Romulan is offline
    MemberRank
    Feb 2009 Join Date
    BelgiumLocation
    3,333Posts

    Re: File editing

    Perfect



Advertisement