Unidentified subject!

Ask a Question related to Debian, Design and Development.

  1. #1

    Default Unidentified subject!

    Does anyone have experience running (or trying to run) debian on the Elite-4
    Zero Footprint PC? I've searched via google, but the only references I can
    find to it and linux are a bunch of C64 guys commenting on how it looks like
    a Commodore64. One of them says its good with linux, but its just a 1
    sentence comment not backed up by anything, and plus they're talking about
    an old version with a celeron 733 CPU. I really like this design of it, but
    if it doesn't run debian then forget it. I could live without the USB, but
    video, sound, the CDR-burner and the built-in network are must haves.

    The company's stupid website doesn't mention linux compatability, but here
    is the machine:

    [url]http://www.cybernetman.com/default.cfm?docId=616[/url]

    I'm looking at the ZPC-4023 P4 2.4ghz

    Thanks.

    __________________________________________________ _______________
    Add photos to your e-mail with MSN 8. Get 2 months FREE*.
    [url]http://join.msn.com/?page=features/featuredemail[/url]


    --
    To UNSUBSCRIBE, email to [email]debian-user-request@lists.debian.org[/email]
    with a subject of "unsubscribe". Trouble? Contact [email]listmaster@lists.debian.org[/email]
    Moe Binkerman Guest

  2. Similar Questions and Discussions

    1. 'unidentified error' when connecting PHP/MySQL
      Hello, I've been following the Dreamweaver article instructions for setting up PHP, MySQL and Apache on Mac OS X for Dreamweaver. Everything...
    2. An unidentified error has occurred.
      While working on a php/mysql application, Dreamweaver 6.1 suddenly went stupid. My first symptom was that upon trying to add an additional recordset...
    3. An Unidentified error has occurred!!!!
      :disgust; I've been trying for 2 days now to resolve the problem of connecting to my MySql database using Dreamweaver MX O4. My Server IIS server...
    4. PHP/MySQL connection unidentified??
      Hi, I have successfully set up MySQL and PHP (thanks to those who helped!) but now i am having trouble connecting dreamweaver to the database. I...
    5. unidentified error
      Hi i am using impakt extentions and when i try to test a database connection, an error appears displaying "an unidentified error has occurred" i...
  3. #2

    Default Unidentified subject!

    Hi,

    I was wondering if anyone could point me in the direction of a good USB
    CD-RW drive with linux support. As I'm not familiar with usb and linux, I
    don't know if its as setup friendly as with windows.

    Thanks

    Ahmed Charles

    __________________________________________________ _______________
    Tired of spam? Get advanced junk mail protection with MSN 8.
    [url]http://join.msn.com/?page=features/junkmail[/url]


    --
    To UNSUBSCRIBE, email to [email]debian-user-request@lists.debian.org[/email]
    with a subject of "unsubscribe". Trouble? Contact [email]listmaster@lists.debian.org[/email]
    Ahmed Charles Guest

  4. #3

    Default Unidentified subject!

    I like the idea of copying the package selections and
    letting apt reinstall. But there will still be a lot of
    questions from the install scripts and stuff.

    If Perrin is perfectly happy with his old machine,
    and it's on the same LAN as the new one with the fresh
    hard drive, why not just tar+ssh the whole thing over?

    Boot Knoppix on the new box, get a shell and go "sudo su -"
    to get root. Give root a password.
    Partition the new drive.
    Make file systems and swap areas.
    Mount what will be the new root at /target and mount any other
    new partitions whereever they are going to go under /target/.
    Make any storage management symlinks. Eg,
    cd /target
    mkdir usr/home
    ln -s usr/home home
    if you keep /home and /usr on the same partition.

    Make the directories you're *not* going to copy across,
    mkdir /target/{tmp,proc}
    mkdir -p /target/var/log/{apache,exim,gdm,ksymoops,news}

    ifconfig and route as needed, then /usr/sbin/startssh

    Then on the old box, telinit 1 to stop any pesky daemons, then
    ssh -l root new.box.IP.address uname -a

    to see if the new box is listening, and then something like

    cat > /tmp/leavem <<Yowza
    ../proc
    ../tmp
    ../var/log
    Yowza
    cd /
    tar cjf - -X /tmp/leavem . | ssh -l root 192.168.new.box tar xjf - -C /target

    to copy the entire system except the logs and proc.

    Back on the new box, if the partitioning is different, edit /target/etc/fstab.
    If other hardware is different, edit /target/etc/modules as needed.
    Then shutdown the new box and reboot with some rescue disk,
    bf24 root=/dev/hda1
    or whatever.
    Log in, and run /sbin/lilo. What did I miss? The new system is
    a faithful clone, isn't it? Nicely defragmented, too.
    That should be a lot faster than reinstalling.


    Cameron





    --
    To UNSUBSCRIBE, email to [email]debian-user-request@lists.debian.org[/email]
    with a subject of "unsubscribe". Trouble? Contact [email]listmaster@lists.debian.org[/email]
    cls@truffula.sj.ca.us Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139