The Notebook Review forums were hosted by TechTarget, who shut down them down on January 31, 2022. This static read-only archive was pulled by NBR forum users between January 20 and January 31, 2022, in an effort to make sure that the valuable technical information that had been posted on the forums is preserved. For current discussions, many NBR forum users moved over to NotebookTalk.net after the shutdown.
Problems? See this thread at archive.org.

    VNC viewer

    Discussion in 'Linux Compatibility and Software' started by T3Knical5urg3, Aug 21, 2006.

  1. T3Knical5urg3

    T3Knical5urg3 Notebook Geek

    Reputations:
    0
    Messages:
    97
    Likes Received:
    0
    Trophy Points:
    15
    I am using a laptop for my work where i do a lot of vncing into machines. I installed ubuntu linux on it to try to use it as my machine. The problem is that with this machine, i have to type in the ip address instead of the computer name. Is there anything i can set so that i can use the computer name?
     
  2. Pitabred

    Pitabred Linux geek con rat flail!

    Reputations:
    3,300
    Messages:
    7,115
    Likes Received:
    3
    Trophy Points:
    206
    The problem is that Linux doesn't natively do WINS resolution. Check into installing Samba and Winbind.
    You should also check into just getting a good internal DNS server set up, and put the machine names in that. Sounds like you're using a Windows-centric network, just a workgroup rather than an actual domain or anything.
     
  3. T3Knical5urg3

    T3Knical5urg3 Notebook Geek

    Reputations:
    0
    Messages:
    97
    Likes Received:
    0
    Trophy Points:
    15
    Well i have samba installed and working but not Winbind, would installing that help, because im not sure im up for putting a dns server in ATM.
     
  4. Pitabred

    Pitabred Linux geek con rat flail!

    Reputations:
    3,300
    Messages:
    7,115
    Likes Received:
    3
    Trophy Points:
    206
    Winbind would probably work. I'm just guessing, though. Never tried a situation like yours.
    What you can also do is edit your /etc/hosts file to point to the correct computers (since I assume they have static IP's)

    Mine looks like this:

    Code:
    127.0.0.1 localhost dualie
    127.0.1.1 dualie
    
    # personal network
    192.168.1.5 media
    192.168.1.3 server
    
    And as you may notice in the first line, there can be any number of "aliases" for each IP you choose (dualie and localhost both mean 127.0.0.0.1 in this file)