Arch without Internet

I am rehashing an interest in Linux,  I've been goofing off with it since 1991.  Including installing many distros Slackware 0.94 being my first ever distro off of 3.5 diskettes.  I have been working with Crux for the last two months, but I'm tired of watching my Thinkpad T30 compile and compile and compile.  So now I've become intrigued with Arch and their precompiled binaries.  This is merely an exercise and toy for me to enjoy and learn from.
Here's my problem, I don't have internet at home.  I have free use of it at work.  So I've been carring tarballs home to compile.  Then realizing I missed a dependency and having to bring them home the next day.  I can't continue doing this as the frustration is certainly going to kill my wife.
Finally here comes the question
Is there an Arch install disk with Xorg and a basic desktop so I can at least get that far?
Is there a repository I can burn to a CD with the most common apps and their dependents?
Is there any other way to install and maintain Arch without internet? (redundent I know)
Am I going to be forced to go to the library to access a network point just to get a base (not core) system up and running?  Things I want to install are Abiword, Xine, XMMS, burn some CD's, and maybe later play some small games.
Thanks

Bear Chow wrote:
I am rehashing an interest in Linux,  I've been goofing off with it since 1991.  Including installing many distros Slackware 0.94 being my first ever distro off of 3.5 diskettes.  I have been working with Crux for the last two months, but I'm tired of watching my Thinkpad T30 compile and compile and compile.  So now I've become intrigued with Arch and their precompiled binaries.  This is merely an exercise and toy for me to enjoy and learn from.
Here's my problem, I don't have internet at home.  I have free use of it at work.  So I've been carring tarballs home to compile.  Then realizing I missed a dependency and having to bring them home the next day.  I can't continue doing this as the frustration is certainly going to kill my wife.
Finally here comes the question
Is there an Arch install disk with Xorg and a basic desktop so I can at least get that far?
Is there a repository I can burn to a CD with the most common apps and their dependents?
Is there any other way to install and maintain Arch without internet? (redundent I know)
Am I going to be forced to go to the library to access a network point just to get a base (not core) system up and running?  Things I want to install are Abiword, Xine, XMMS, burn some CD's, and maybe later play some small games.
Thanks
You could eg install faunos to disc.
Edit: A better solution would probably be to make a mirror of the arch mirrors on a external hd, and sync that on work from time to time.
Last edited by Mr.Elendig (2008-11-14 16:03:40)

Similar Messages

  • Installing Arch on PC without Internet Connection/Slow Connection

    Arch Linux requires a fairly good internet connection to set up. How can one install it on machines which don't have any internet connectivity? Is there any way to make a DVD of Arch on a computer connected to internet and having Arch setup(DE,Media Players,Codecs etc) which can then be used on machines without internet connections This would come useful for me to install at my friends place. Does anyone even has a remote solution on this?

    https://wiki.archlinux.org/index.php/Of … f_Packages
    https://wiki.archlinux.org/index.php/Lo … ory_HOW-TO
    and, of course:
    https://wiki.archlinux.org/index.php/Beginners%27_Guide
    You could also install on a computer with a connection, then use something like Clonezilla to deploy it.

  • 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:

  • How can I transfer all of my music library from my iTunes library on my PC to my iPhone without Internet connection will filesharing for home sharing allow me to access my iTunes library from my iPhone if I do not have Internet access on my PC

    How can I transfer music from my home PC in my iTunes library to my iPhone for without Internet access will home sharing allow me to access my iTunes library from my iPhone 4 without Internet

    Why don't you just sync it to your phone?

  • If I download Mountain Lion on my MBP , can I use the same installer file on a different computer and continue the installation without Internet connectivity?

    Hi Folks,
    I have just downloaded Mountain lion on my  Macbook Pro(haven't installed it yet) . My question is, can I copy the same downloaded Mountain Lion from the Applications on to an external hard drive and use the same on a different computer? I am having problems with internet connectivity right now, it would be amazing if it can be installed on the iMac without internet connection.
    So is that doable?
    Thanks in advance

    And the 2nd installation would not require internet connectivity? Except , of course during the set up and the configuration of iCloud and location based services, which I can skip at the time

  • Connecting 2 computers thru Time Capsule without Internet?

    I had started a question in another area (Mountain Lion) because I am trying desperately to migrate a Windows PC running Windows 7 to a new iMac.  The Migration assistant on both computers does not find any computers.  The Apple Care people say I am doing everything right, but now some people online are saying that I can't do this wirelessly thru Time Capsule (which we have and is the router for our office which the PC is connected to wirelessly).
    The new Mac is in set up beginning mode (meaning it has not been set up wirelessly or anything yet), because on launch it offers to move the data from the PC to set up the new Mac.  It is stuck "looking for a computer"
    Here is the whole discussion:
    https://discussions.apple.com/message/23377824#23377824
    Today I went by an Apple store to ask their opinion and the guy told me that I can't connect the 2 computers via ethernet (even though that is what the Migration insturctions say to do), but he said that I shoud be able to connect each computer via ethernet to the Time Capsule and have them recognize each other.
    Does this sound right to any of you???
    The PC is clear across the room and no where near the internet line, so I would either have to buy a REALLY long ethernet cable to drag over to it, or take the whole computer apart to try and get it near the TC.  The mac of course is no problem to move.
    I just don't want to do all this if this will not really act as a network (I guess as a server of sorts).
    I am confused as the TC manual says that it can be used without internet, but I don't seehow (I've tried rebooting it without a connection).  I do not know why the internet is involved at all since what we need is the TC to act as a wireless router (which it is) and do not need to involve the internet at all to link the 2 computers.
    I am just totally frustrated that these computers should just communicate wirelessly and/or with each other somehow and do not seem to, as Apple says they should.  I know this will turn out to be something really simple and dumb and I'm just not seeing it.
    Is it not possible to take the TC and reboot it with the 2 computers connected to it and create a network using the TC as a server or router without needing any internet just so I can get this stuff from the PC migrated (and then never have to deal with it again!!!!)
    Any help is greatly appreciated.
    Thanks!

    I think where the confusion lies is that this is a brand new Mac and NEVER been set up.  We are trying to Migrate from the Windows on initial setup - which is what the Mac asks you when you first start it:  Language, Keyboard (english) and then if you are setting a New Mac or wanting to tranfer your info to set up from another Mac or from a PC.  You choose PC and the MA automatically looks for the other PC.  The Windows MA does the same thing.  You launch it on the PC and it looks for the Mac to connect to.
    They are not "finding" each other - even when connected directly via the ethernet cable to each other as dictated by the MA instructions  (see the link you provided and click:
    Transferring with the Setup Assistant that appears when your Mac starts up for the first time
    This is what I am doing.  This is what 2 different guys from Apple Care also said was correct.
    They do not communicate.  This is why some in the ML discussion area are telling me I can't do this with an ethernet cable even though these are the instructions.  They are telling me to use the TC as a router between them.
    The PC is already wirelessly connected to the TC but when I connect the Mac to the TC it still does nothing (because I assume it hasn't been "set up" yet to the wireless network).
    I did not want to set up the Mac initially on its own because then you create a User and Password and when you migrate it creates a second User and will not migrate into the initial one you set up, ergo you forever are stuck with 2 users on login and 2 sets of stuff taking up space in your Mac.
    It should do this on start up.  I have NO doubt this is a PC issue, even though I disabled everything I could possibly see to do on it (this is why I need the PC geek in the UK to make sure).  The Apple techs have told me some people have to disable and reboot this stuff several times (ARGH!) LOL!
    Anyway I did wonder when I tried yesterday to simply take TC off the internet connection and set it up on its own, I could never get it to stop looking for internet (I rebooted it and reinstalled it with a new name and password), but when you look at it in Airport Utility (I'm using a Macbook for the set up), you see it still blinking looking for internet.
    I could not find any instructions for someone to use the TC as a router only or as a server, even though you can see there are more choices in the AU setup tabs.  The one guy at the Apple store (not Apple Care) said that if I connected the 2 computers to the TC it would act as a router and they could "see" each other for me to setup - but this did not work, hence I came here.
    Hope I'm making sense!  Thanks so much for your help.

  • Is there a way to display movies purchased from itunes from my ipad to my apple TV without internet (still using wifi)

    I am going on vacation and will have a wifi network, but no internet access. I have tried to display downloaded movies from my ipad purchased on itunes to my apple TV, but get "Unknown Error -3". I can use mirroring, but not show the video. I am signed into the same account on both devices and the movie is downloaded to the ipad. The only issue I can think of is some DRM check, but I am not sure.
    Has anyone been able to do this? It would be nice to be able to use my purchased movies on vacation without needing internet.
    thanks for any help

    DBK@apple wrote:
    Is there anyway that you know of to utilize iTunes purchased content that has been downloaded to a device on a TV without internet? This really limits when it can be used on vacation or when internet is down etc.
    Will the lightning to HDMI dongle work?
    thanks for any help!
    This was a big advantage of AppleTV1 - generally it did not need internet authorisation for synced material on its internal drive and was great for holiday/vacation.
    I tend to use a Mac Mini these days when going away.

  • I am unable to open my html files saved from mozilla firefox without internet connection...........each time it shows the error message as follows:-

    I have saved some internet pages from mozilla firefox as html pages in F:/ drive....i am using windows7...whenever i open these files without internet connection....then it opens only for a short time and suddenly crashes by displaying the message like that:-
    File not found
    Firefox can't find the file at jar:file:///C:/Program Files (x86)/Mozilla Firefox/omni.ja!/chrome/browser/content/browser/undefinedgoogleads.g.doubleclick.netpagead/ads?client=ca-pub-7133395778201029&format=468x60_as&output=html&h=60&w=468&lmt=1346242109&ad_type=image&flash=11.3.300&url=file:///F:/UJJWAL/C%20TUTORIAL/c_arrays.htm&dt=1346323041583&bpp=19&shv=r20120815&jsv=r20110914&correlator=1346323042092&frm=20&adk=4203423324&ga_vid=377128990.1346323043&ga_sid=1346323043&ga_hid=232002736&ga_fc=0&u_tz=330&u_his=1&u_java=0&u_h=768&u_w=1366&u_ah=728&u_aw=1366&u_cd=24&u_nplug=11&u_nmime=30&dff=helvetica&dfs=12&adx=457&ady=211&biw=1349&bih=664&oid=3&fu=0&ifi=1&dtd=952&xpc=R193iApDeg&p=file://.
    Check the file name for capitalization or other typing errors.
    Check to see if the file was moved, renamed or deleted.
    can anyone fix my problem please?

    What extensions do you have installed? To get a full list, do the following:
    In order to be able to find the correct solution to your problem, we require some more non-personal information from you. Please do the following:
    *Click the Firefox button at the top left, then click the ''Help'' menu and select ''Troubleshooting information'' from the submenu. If you don't have a Firefox button, click the Help menu at the top and select ''Troubleshooting information'' from the menu.
    Now, a new tab containing your troubleshooting information should open.
    *At the top of the page, you should see a button that says "Copy all to clipboard''. Click it.
    *Now, go back to your forum post and click inside the reply box. Press Ctrl+V to paste all the information you copied into the forum post.
    If you need further information about the Troubleshooting information page, please read the article [[Using the Troubleshooting Information page]].
    Thanks in advance for your help!

  • How to install Adobe Reader without internet!

    How am I able to install Adobe (PDF) Reader on a PC without Internet.
    Downloading the installer and moving the file on the other pc didn't work sadly.
    Is there a full installation zip file? If so i definitly missed it !
    I hope for a response soon because I have an important deadline to catch!
    Thank you for your time!

    Use the offline installer from http://get.adobe.com/reader/enterprise/
    [topic moved to Adobe Reader forum]

  • Problem with InDesign CS6 start (without internet)

    Hello,
    I have a problem with the start of InDesign CS6 linked to the presence or absence of internet.
    I need to set an IP without internet on the Mac where I installed InDesign, but when I do it right after the splash screen the program freezes for a few minutes, after which starts.
    With internet this problem does not occur.
    I have already activated the CS6 both online and offline, but the problem continues.
    I need to open something on firewall?
    Can you help me?
    Thanks in advance

    You need to tell us more about what you are doing. Once activated, ID should not require internet access to run unless it needs to verify the subscription status.

  • I need a app which can record incoming and outgoing calls automatically without internet

    i need a app which can record incoming and outgoing calls automatically without internet.
    Can some help me on this ?

    As far as I know there is no app to record phonecalls because US regulations, but I am not using iphone in US so we definately need call recorder. HTC or Samsung has call recorder so why we dont?

  • Communicate between Mbp without internet

    Is it possible or any software that allow me to speak, chat or even video between macbook pro computer or maybe iphone without internet access?
    by using a router network?

    If you have a wired or wireless network at home.
    You can use bonjor chat in ichat to text/talk/video chat/send files. to use bonjor , open ichat, go to the windows menu and chose Bonjor list. And then change your status to a viable. You need to do this on both computers.
    Files can be exchange though file sharing. You can turn this on in system preferences, sharing, check file sharing.
    if you don't have a network you can create one. Or use the tricks bellow to make a temporary network.
    If you plug to macs together with an ethernet cable. They will create a network between them selfs automatically. (long as your not connected to a wireless network)
    If you want to do this wirelessly , you can chose "create network" under the airport menu on the menu bar. to create a wireless network. You could then join the network from the other computer. And use iChat to walk wirelessly.

  • How to save Pdf form localy without internet

    How to save Pdf form localy without internet?
    I thought in the beginning about advanced user rights and pure saving them on adobe reader but i saw legal notes about 500 user who can legaly save it localy and answer to me (bu they can`t answer to my client who paid me for doing this form).
    Other thing is to do Air Application which would collect data from Pdf Form and save it (localy without internet) to use it later.
    I thought about that second possibility but i can`t find any clue to do it myself.
    Any help will be appreciated...

    Hi,
    Are you downloading responses as PDF forms after forms are submitted? If so, FormsCentral doesn't provide an option to exclude empty fields and you won't be able to save PDF forms without empty fields.
    You can use this form to "vote" on popular feature requests, or to add a new one of your own:
    https://adobeformscentral.com/?f=XnF-KJVCovcEVQz9tZHYPQ
    Thanks,
    Wenlan

  • How I find my iPod touch 4g without Internet acces.because my iPod lost on a trip so how I find that?

    How I find my iPod touch 4g without Internet acces.because my iPod lost on a trip so how I find that?

    you will have to use the old fashioned way, like if you lost a wallet or purse.

Maybe you are looking for