"Linux has internet connectivity built in"

Can any one please tell me what does it mean "Linux has internet connectivity built in".
Information that I have is
Linux has built in internet connectivity : Internet connectivity is part of Linux's Unix heritage. Every major distribution of Linux comes with tools that can immediately get you up and running on the internet. Most even include Netscape Navigator as their browser of choice.
How I can make use of this in my e-business application? Help would be appriciated.
Thanks in advance.

Well, the sentence you quoted sounds a lot like some basic marketing babble.
All this says is: Linux can be used to access the Internet in some way, straight from the box. So what they're saying is that you can browse the web and probably send some e-mail as well.
The point is that just about any UNIX can do this out of the box.
The nice thing about Linux is the fact that a number of its distributions come packaged with other nice tools, like web servers, DNS server software, mail server software, IRC server software, database server software... Stuff like that. But the same thing goes for these: a lot of UNIX flavors (chocolat's my favourite!) come with stuff like this!
Solaris comes with BIND for DNS, Apache for Web serving and Sendmail for mail serving.
Maybe you could tell us a little bit more about your situation and what you're trying to do. That way we can give you some more interesting info!
Cheers!
Thomas
P.S.
I have to wonder though which article you got your quote from! Because I'm curious which Linux distro would be proud to call Netscape Navigator it's "browser of choice" these days!

Similar Messages

  • Can I install Arch Linux without Internet connection ?

    It sounds noobish but my friends like to know if they can install Arch Linux without Internet connection ?

    mcmillan wrote:
    The core iso should be all you need, just boot off that to start the installation. It's been a while since I did an install, but somewhere along the way it gives you an option to install off the cd or do a net install. You just need to choose the cd installation.
    That being said, all you'll have without internet will be what's on the cd, so you'll be left with a pretty minimal install. If you want to update and install additional software then you'll either need to get the computer temporarily  connected, or download the packages on a different computer and transfer them.
    I am looking to do something similar. I have the core system installed on an older laptop, but I cannot get the wireless working (it has no ethernet). I've tried downloading the libgl packagesfrom a mirror to a thumbdrive, but it's a dependency nightmare. Is there a better way to do this?

  • Install 2nd instance of Arch Linux without internet connection

    I have successfully install a first instance of Arch Linux using Arch Linux ISO + pacstrap + pacman with internet connection.
    I have updated to latest package database list (/var/lib/pacman/sync) and package cache files (/var/cache/pacman/pkg) in first instance of Arch Linux with "pacman -Swyu".
    Next, I would like to install 2nd instance of Arch Linux without using internet connection.
    I share the "/var/lib/pacman/sync" and "/var/cache/pacman/pkg" via NFS from first Arch Linux instance.
    I boot the 2nd instance with Arch Linux ISO and attempt to install without internet connection.  I mount the two NFS shares from 1st instance to "/var/cache/pacman/pkg" and "/mnt/var/lib/pacman/sync" respectively.  I execute
       # pacstrap -i -c /mnt"
    to start installation.
    I found it is almost impossible with current implementation of pacstrap script.  The pacstrap script always attempt to update package database list with -Sy option.
    I think some amendments on pacstrap script is needed to install Arch Linux without internet connection.

    I made the edit by adding the option -o to do what you want.
    I am too lazy for a feature request right now...
    #!/bin/bash
    # Assumptions:
    # 1) User has partitioned, formatted, and mounted partitions on /mnt
    # 2) Network is functional
    # 3) Arguments passed to the script are valid pacman targets
    # 4) A valid mirror appears in /etc/pacman.d/mirrorlist
    shopt -s extglob
    out() { printf "$1 $2\n" "${@:3}"; }
    error() { out "==> ERROR:" "$@"; } >&2
    msg() { out "==>" "$@"; }
    msg2() { out " ->" "$@";}
    die() { error "$@"; exit 1; }
    in_array() {
    local i
    for i in "${@:2}"; do
    [[ $1 = "$i" ]] && return
    done
    track_mount() {
    mount "$@" && CHROOT_ACTIVE_MOUNTS=("$2" "${CHROOT_ACTIVE_MOUNTS[@]}")
    api_fs_mount() {
    CHROOT_ACTIVE_MOUNTS=()
    { mountpoint -q "$1" || track_mount "$1" "$1" --bind; } &&
    track_mount proc "$1/proc" -t proc -o nosuid,noexec,nodev &&
    track_mount sys "$1/sys" -t sysfs -o nosuid,noexec,nodev &&
    track_mount udev "$1/dev" -t devtmpfs -o mode=0755,nosuid &&
    track_mount devpts "$1/dev/pts" -t devpts -o mode=0620,gid=5,nosuid,noexec &&
    track_mount shm "$1/dev/shm" -t tmpfs -o mode=1777,nosuid,nodev &&
    track_mount run "$1/run" -t tmpfs -o nosuid,nodev,mode=0755 &&
    track_mount tmp "$1/tmp" -t tmpfs -o mode=1777,strictatime,nodev,nosuid
    api_fs_umount() {
    umount "${CHROOT_ACTIVE_MOUNTS[@]}"
    valid_number_of_base() {
    local base=$1 len=${#2} i=
    for (( i = 0; i < len; i++ )); do
    (( (${2:i:1} & ~(base - 1)) == 0 )) || return
    done
    mangle() {
    local i= chr= out=
    unset {a..f} {A..F}
    for (( i = 0; i < ${#1}; i++ )); do
    chr=${1:i:1}
    case $chr in
    [[:space:]\\])
    printf -v chr '%03o' "'$chr"
    out+=\\
    # fallthrough
    out+=$chr
    esac
    done
    printf '%s' "$out"
    unmangle() {
    local i= chr= out= len=$(( ${#1} - 4 ))
    unset {a..f} {A..F}
    for (( i = 0; i < len; i++ )); do
    chr=${1:i:1}
    case $chr in
    if valid_number_of_base 8 "${1:i+1:3}" ||
    valid_number_of_base 16 "${1:i+1:3}"; then
    printf -v chr '%b' "${1:i:4}"
    (( i += 3 ))
    fi
    # fallthrough
    out+=$chr
    esac
    done
    printf '%s' "$out${1:i}"
    dm_name_for_devnode() {
    read dm_name <"/sys/class/block/${1#/dev/}/dm/name"
    if [[ $dm_name ]]; then
    printf '/dev/mapper/%s' "$dm_name"
    else
    # don't leave the caller hanging, just print the original name
    # along with the failure.
    print '%s' "$1"
    error 'Failed to resolve device mapper name for: %s' "$1"
    fi
    fstype_is_pseudofs() {
    # list taken from util-linux source: libmount/src/utils.c
    local -A pseudofs_types=([anon_inodefs]=1
    [autofs]=1
    [bdev]=1
    [binfmt_misc]=1
    [cgroup]=1
    [configfs]=1
    [cpuset]=1
    [debugfs]=1
    [devfs]=1
    [devpts]=1
    [devtmpfs]=1
    [dlmfs]=1
    [fuse.gvfs-fuse-daemon]=1
    [fusectl]=1
    [hugetlbfs]=1
    [mqueue]=1
    [nfsd]=1
    [none]=1
    [pipefs]=1
    [proc]=1
    [pstore]=1
    [ramfs]=1
    [rootfs]=1
    [rpc_pipefs]=1
    [securityfs]=1
    [sockfs]=1
    [spufs]=1
    [sysfs]=1
    [tmpfs]=1)
    (( pseudofs_types["$1"] ))
    newroot=/mnt
    hostcache=0
    copykeyring=1
    copymirrorlist=1
    offline=0
    usage() {
    cat <<EOF
    usage: ${0##*/} [options] root [packages...]
    Options:
    -C config Use an alternate config file for pacman
    -c Use the package cache on the host, rather than the target
    -d Allow installation to a non-mountpoint directory
    -G Avoid copying the host's pacman keyring to the target
    -i Avoid auto-confirmation of package selections
    -M Avoid copying the host's mirrorlist to the target
    -o Do not update the pacman cache for offline installation
    -h Print this help message
    pacstrap installs packages to the specified new root directory. If no packages
    are given, pacstrap defaults to the "base" group.
    EOF
    if [[ -z $1 || $1 = @(-h|--help) ]]; then
    usage
    exit $(( $# ? 0 : 1 ))
    fi
    (( EUID == 0 )) || die 'This script must be run with root privileges'
    while getopts ':C:cdGiMo' flag; do
    case $flag in
    C)
    pacman_config=$OPTARG
    d)
    directory=1
    c)
    hostcache=1
    i)
    interactive=1
    G)
    copykeyring=0
    M)
    copymirrorlist=0
    o)
    offline=1
    die '%s: option requires an argument -- '\''%s'\' "${0##*/}" "$OPTARG"
    die '%s: invalid option -- '\''%s'\' "${0##*/}" "$OPTARG"
    esac
    done
    shift $(( OPTIND - 1 ))
    (( $# )) || die "No root directory specified"
    newroot=$1; shift
    pacman_args=("${@:-base}")
    if (( ! hostcache )); then
    pacman_args+=(--cachedir="$newroot/var/cache/pacman/pkg")
    fi
    if (( ! interactive )); then
    pacman_args+=(--noconfirm)
    fi
    if (( ! offline )); then
    pacman_args+=(-y)
    fi
    if [[ $pacman_config ]]; then
    pacman_args+=(--config="$pacman_config")
    fi
    [[ -d $newroot ]] || die "%s is not a directory" "$newroot"
    if ! mountpoint -q "$newroot" && (( ! directory )); then
    die '%s is not a mountpoint!' "$newroot"
    fi
    # create obligatory directories
    msg 'Creating install root at %s' "$newroot"
    mkdir -m 0755 -p "$newroot"/var/{cache/pacman/pkg,lib/pacman,log} "$newroot"/{dev,run,etc}
    mkdir -m 1777 -p "$newroot"/tmp
    mkdir -m 0555 -p "$newroot"/{sys,proc}
    # always call umount on quit after this point
    trap 'api_fs_umount "$newroot" 2>/dev/null' EXIT
    # mount API filesystems
    api_fs_mount "$newroot" || die "failed to setup API filesystems in new root"
    msg 'Installing packages to %s' "$newroot"
    if ! pacman -r "$newroot" -S "${pacman_args[@]}"; then
    die 'Failed to install packages to new root'
    fi
    if (( copykeyring )); then
    # if there's a keyring on the host, copy it into the new root, unless it exists already
    if [[ -d /etc/pacman.d/gnupg && ! -d $newroot/etc/pacman.d/gnupg ]]; then
    cp -a /etc/pacman.d/gnupg "$newroot/etc/pacman.d/"
    fi
    fi
    if (( copymirrorlist )); then
    # install the host's mirrorlist onto the new root
    cp -a /etc/pacman.d/mirrorlist "$newroot/etc/pacman.d/"
    fi
    # vim: et ts=2 sw=2 ft=sh:

  • Registry name and value to check if server has internet connection

    Hi
    I want to check that if server has internet connection though registry value. Can any one help me the path of registry to check if server has an internet connection or not

    > Martin Can I get the script to check the server has an internet
    > connection ?
    Sorry, I don't have one - we never had the need to check this... Short
    VBS snippet:
    strURL = "https://www.grumpfasdklfhsdf.comm"
    Set objExplorer = WScript.CreateObject("InternetExplorer.Application",
    "IEWindow_")
    objExplorer.Navigate strURL
    Do While objExplorer.ReadyState <> 4
        WScript.Sleep 100
    Loop
    Sub IEWindow_NavigateError( pDisp, sURL, sFrame, sStatus, sCancel )
        WScript.Echo sStatus
    End Sub
     sStatus in the Sub will contain HTTP error codes. 502 for "Host not found".
    Martin
    Mal ein
    GUTES Buch über GPOs lesen?
    NO THEY ARE NOT EVIL, if you know what you are doing:
    Good or bad GPOs?
    And if IT bothers me - coke bottle design refreshment :))

  • It appears since my Windows PC McAfee AV subscription expired my PC's iTunes doesn't see my two Apple TV2's.  My computer has internet connection thru router and my ATV has internet connection thru same router.  My iPad can see the ATV but it can't see iT

    My Windows PC iTunes doesn't see my two Apple TV2's (in the speaker button in lower right of iTunes), I believe this problem began when my PC's McAfee AV subscription expired.  My computer has internet connection thru router and my ATVs have internet connection thru same router so it's not a networking issue.  My iPad can see the ATVs but it can't see iTunes so the problem appears to be PC/iTunes related.  I turned the PC's firewall off but no joy.  I uninstalled the expired McAfee and still no joy.  Reboot = no joy.  Glass of scotch = no joy.  Need help!!

    Wanted to add that I turned on Home Sharing w/the same account in iTunes and ATVs.  And I've successfully streamed music/photos to my ATVs for over a year.

  • Hi I am having iphone 4S. Today while connecting to my laptop for regular update, my phone started rebooting and message showed error in rebooting. Now even though i connected to laptop which has internet connection, i phone OS booting still not completed

    Hi I am having iphone 4S. Today while connecting to my laptop for regular update, my phone started rebooting and message showed error in rebooting. Now even though i connected to laptop which has internet connection, i phone OS booting still not completed

    I have factory reset my phone twice.. I have disabled iCloud settings.. I looked up possible downgrading options.. which isn't possible. I feel as if my iPhone 4 was offered the update so I was forced to get another phone

  • HT1688 My husband's iphone can't connect to the App store after he updated to ios.7.  He updated it yesterday and he has had problems since.  He gets a message that the iphone can't connect to the app store and he has internet connection.  Please help.

    My husband's iphone can't connect to the app store after updated his phone to ios.7. and has internet connection.

    Any update will cause problems for a few users. And those users will rush here and post "the sky is falling" stories about their experience. The 99.99% of people who have no problems after an update won't bother to post here; indeed, most of them don't even know ASC exists. FWIW, I had no problems with iOS 7 on my 4S. Your problem is most likely not related to iOS 6, but you should probably update anyway. For addressing the battery issue see this outstanding article: http://www.overthought.org/blog/2014/the-ultimate-guide-to-solving-ios-battery-d rain

  • HT6010 I have tried to update my iOS 7.3.0 and I keep getting a msg saying bit connected to the Internet and I am connected by WiFi plus my phone has Internet connected also, I have repeatedly clicked on retry, still get message bit connected to Internet

    I have tried to update my iOS 7.3.0 and I keep getting a msg saying bit connected to the Internet and I am connected by WiFi plus my phone has Internet connected also, I have repeatedly clicked on retry, still get message bit connected to Internet

    Try this support document http://support.apple.com/kb/TS3694 and look at this section.
    Unable to contact the iOS software update server gs.apple.com
    Error 1004, 1013, 1638, 3194: These errors may be the result of the connection to gs.apple.com being redirected or blocked. Follow these steps to resolve these errors: 
    Install the latest version of iTunes.
    Check security software. Ensure that communication to gs.apple.com is allowed. Follow this article for assistance with security software. iTunes for Windows: Troubleshooting security software issues.
    Check the hosts file. The restore will fail if there is an active entry to redirect gs.apple.com. Follow iTunes: Advanced iTunes Store troubleshooting to edit the hosts file or revert to a default hosts file. See section "Blocked by configuration: (Mac OS X/Windows) > Rebuild network information".
    Try to restore from another known-good computer and network.
    If the errors persist on another computer, the device may need service.

  • After installing IOS 6, my iphone started to close applications alone and has internet connection instability Wi-fi

    After installing IOS 6, my iphone started to close applications alone and has internet connection instability Wi-fi

    please try this.
    airplane mode on + wifi
    You will get very good Internet connection.
    This is bug of iOS 8. I already reported this to Apple to solve this problem ASAP.

  • EA6900 has internet connection but the networksatus gives a sign no connection

    I have manually set up my EA6900. It does work fine but on the UI screen by networkstatus it signs with a red dot that there is no internet connection but i can normal use the internet. Is there is something wrong with the firmware?

    What Firmware version is currently loaded?
    What region are you located?
    Has a Factory Reset been performed?
    Was a Factory Reset performed before and after any firmware updates then set up from scratch?
    Internet Service Provider and Modem Configurations
    What ISP Service do you have? Cable or DSL?
    What ISP Modem Mfr. and model # do you have?
    Is ISP Modem/Service using Dynamic or Static WAN IP addressing?
    What ISP Modem service link speeds UP and Down do you have?
    Check cable between Modem and Router, swap out to be sure. Link>http://en.wikipedia.org/wiki/CAT6 is recommended.
    Check ISP MTU requirements, Cable is usually 1500, DSL is around 1492 down to 1472. Call the ISP and ask.
    http://kb.linksys.com/Linksys/ukp.aspx?vw=1&docid=88e63d78588142e6bb68e22d7faf2046_Configuring_the_M...
    For DSL/PPPoE connections on the router, ensure that "Always ON" option is enabled.
    If the ISP modem has a built in router, it's best to bridge the modem. Having 2 routers on the same line can cause connection problems: Link>http://www.practicallynetworked.com/networking/fixing_double_nat.htm and http://cognitiveanomalies.com/cisco-nat-how-nat-works/. If the modem can't be bridged then see if the modem has a DMZ option and input the IP address the router gets from the modem and put that into the modems DMZ. Also check the routers DHCP IP address maybe conflicting with the ISP modems IP address of 192.168.0.1. Check to see if this is the same on the ISP modem, and if modem can't be bridged, change the DIR router to 192.168.1.1 or .0.254.

  • Husband uninstalled Elements 9 without deactivating. Computer it is on no longer has internet connection to do anything. He needs to install it on a different computer. What can we do?

    Older desktop with lots of problems. Husband now uses a laptop. He uninstalled Photoshop Elements 9 without de-activating it. The computer that has/had Elements 9 on it no longer has an internet connection. He wants to install the software on his laptop but is unable to do so since he did not de-activate on the other computer. We hope someone can help here.  If there were a way to send a quick email or contact Adobe, there is probably an answer to make this process not so aggravating. Please help if you can. thanks

    If you are getting a message that you have used up both activations, you need Activation Support:
    Activation & Deactivation Help
    Scroll down to "Still need help? Contact us" and keep going even when it looks like you're getting looped back to where you just were. Eventually you will be able to start a chat session and get it straightened out.

  • WRT54GS and MAC OSX "has internet connection, but cannot load page"

    Ok, I have skimmed through the threads here and the FAQ and still am having troubles. I amt trying to connect a MacbookPro to this wireless router. I have had it connected before which adds to my frustration. I ran all the system diagnostics and come to a point where it says, "This device has an internet connect but cannot load __________. Make sure you have the address typed in correctly." My MAC picks up the router signal, but in the diagnostics it goes as follows. AirPort - Yes Airport Settings - Yes Network Settings - Yes ISP - Yes Internet - No Server - No Please, any help is very appreciated.

    Also tried the factory reset and starting from scratch and nothing...

  • My iphone has internet connection and i can connect to the app store,but wen i go2 download stuf i hve to review my account 1st as i havent downlaod nething yet.. after i enter the card details it says your request is temporarily unavailable

    my iphone has an internet connect and can browse safari, and it can also connect to the app store, but wen i go to download anything it says i have to review my account.. so i enter all my details and card details and move on to the next step.. but it says "cannot connect to itunes " and " your request is temporarly unavailable"

    Emily,
    thanks for your posting, it just reflects my experience (although I didn't contact the helpdesk, but after what you wrote I think I can skip that part). I am livin in China and buy from the German MS, worked fine until about a week ago when the download of an album stopped just after 5 songs. I have never been able to connect to the shop ever since.
    The interesting thing is, that I get a response from their server in the domain phobos.apple.com (phobos.apple.com/WebObjects/MZStore.woa/wa/storeFront) which I would interpret that there can't be a problem which they always list (Antivirus, Firewall etc...)
    So will there ever be somebody from Apple who is going to give a better explanation how to solve the problem ? Or are there already too many people buying iPods and music ???

  • Cant play multiplayer games but ps4 has internet connection

    My PS4 has a internet connection, sometime it works normal, i log in and can see my friend list, who is in a party chat but i cant join the party chat or make my own one.My playstation does sometimes let me got online for COD AW i cant join my friends or they join me, i play a few random games and then it freezes in game and tells me i am disconnected from servers? After that i cant log into cod anymore, the party chat is gone and wont load and my friends list but i still have internet on the ps4 i can use you tube and even browser but none of my online games work and none of my friends can see me online and my friend list wont load but i know the ps4 has a internet connection.my isp has been out and we have activated DMZ he has put in a DNS setting, the connection is type 2 and the down speed is near 4mb and upload speed is 2.5mb ( i only have a 4mb line at home). the isp guy who is a gamer has a ps3 and a xbox one on the same network and does not have any problems, we spend about 3 hours trying to look for a setting restarting and trying new DNS settings, i did get online for a bit but after about a hour i got kicked off cod aw again and could not get back online. my ping is never more then 68. the ISP guy cant understand how the internet works for you tube on the PS4 and to use the brouser on the ps4? but cant get online for games, also when i did get online i had a Moderate NAT and not open like he has with the DMZ setting in?is there anything we are missing to do?

    Its quite easy to sort out, this link should help.
    NAT problems
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

  • My I-Pod Touch 3Gen 32GB has internet connection when plugged into my PC, but loses it when I unplug it.

    When I have my 32GB I-Pod touch ( 3rd Generation ) plugged into my PC, the internet works fine. When I unplug it, it says I'm still connected, but can't load anything. What's going on?

    Error 1604
    This error is often related to USB timing. Try changing USB ports, using a different dock connector to USB cable, and other available USB troubleshooting steps (troubleshooting USB connections. If you are using a dock, bypass it and connect directly to the white Apple USB dock connector cable. If the issue persists on a known-good computer, the device may need service.
    If the issue is not resolved by USB isolation troubleshooting, and another computer is not available, try these steps to resolve the issue:
    Connect the device to iTunes, confirm that the device is in Recovery Mode. If it's not in Recovery Mode, put it into Recovery Mode.
    Restore and wait for the error.
    When prompted, click OK.
    Close and reopen iTunes while the device remains connected.
    The device should now be recognized in Recovery Mode again.
    Try to restore again.
    If the steps above do not resolve the issue, try restoring using a known-good USB cable, computer, and network connection.
    Error 1600, 1601, 1602
    Follow the steps listed above for Error 1604. This error may also be resolved by disabling, deactivating, or uninstalling third-party security, antivirus, and firewall software. See steps in this article for details on troubleshooting security software.

Maybe you are looking for

  • Issues in WSDL Import

    Hi all, I'm trying to import a WSDL file into XI and I get this error Unable to convert imported document to WSDL Reason: Tag definitions cannot have an attribute version from namespace urn:ebay:api:PayPalAPI Check the selected category Kindly provid

  • Wireless Printer keep freezing when trying to connect to network

    I have a HP Officejet Pro L7780 All In One and it keeps freezing whenever I try to connect it to the network via Wireless Setup Wizard on the printer control panel. I tried uninstalling and reinstalling the software but it asks for me to connect my n

  • TranslationHub memory requirements

    I am using TranslationHub 9.0.4.0.8. When trying to import a v9i form (9.0.4.0.19) I am getting an "Out of Memory" error. The form is not that big, so I am wondering if there are any special memory settings that I need to make? I have a P4, 2.8GH, 1G

  • One user invisible via CUPS Federation

    I have one user whose status is not visible by users that are connected via Federation.  Users within the same cluster can see his status normally.  And he can see others, both locally and across a Federation connection.  However, when someone in ano

  • Extensions stop working if Firefox was closed forcibly

    If Firefox was stopped forcibly for a few times then add-ons disappear from Firefox menu and stop working. But if I try to disable and re-enable add-on this issue no longer reproducable. How to reproduce: 1. Open Firefox 2. Go to Settings->Apps->Fire