| --- | Log | opened Sat Dec 13 00:00:44 2003 |
| 00:02 | inkblot> | w00t |
| 00:02 | inkblot> | it's /dev/ubd/disc1/disc |
| 00:04 | @mikegrb> | :) |
| 00:04 | @mikegrb> | I'm dl'ing a rootfs |
| 00:04 | @mikegrb> | got the kernel and the utilities dl'ed and compiled |
| 00:04 | @mikegrb> | 1:45 for rootfs |
| 00:05 | @mikegrb> | though if I decide to play more I will probably make a rootfs from my linode backup |
| 00:05 | inkblot> | w00t0r0ll4! |
| 00:05 | inkblot> | it's working! |
| 00:05 | @mikegrb> | inkblot++ |
| 00:07 | inkblot> | crap |
| 00:07 | inkblot> | i gotz me a rootfs |
| 00:07 | inkblot> | now what? |
| 00:07 | inkblot> | hmmm |
| 00:07 | inkblot> | it lacks the modules for this uml kernel |
| 00:08 | inkblot> | more importantly, |
| 00:08 | inkblot> | i have a script to automatically build a rootfs |
| 00:09 | * | inkblot runs it again |
| 00:13 | @mikegrb> | :) |
| 00:19 | @mikegrb> | what did you use your first time with uml? |
| 00:19 | @mikegrb> | a kernel from kernels.usermodelinux.org? |
| 00:20 | inkblot> | [build] complete for lnx-uml. |
| 00:20 | inkblot> | mikegrb, sudo apt-get install user-mode-linux |
| 00:20 | @mikegrb> | heh |
| 00:21 | @mikegrb> | this isn't a debian box |
| 00:21 | @mikegrb> | I guess I'll grab a kernel from the sf page |
| 00:21 | inkblot> | i am debianista! |
| 00:21 | inkblot> | r0r! |
| 00:23 | inkblot> | 176MB |
| 00:23 | inkblot> | i'll upload it |
| 00:24 | @mikegrb> | :) |
| 00:25 | @mikegrb> | the problem I am having |
| 00:26 | inkblot> | [inkblot@goose:~/var/egg][inkblot@goose:~/var/egg]$ ls |
| 00:26 | inkblot> | boot rootstrap.conf ubda.img ubdb.img |
| 00:26 | @mikegrb> | devfs isn't being mounted |
| 00:26 | inkblot> | [inkblot@goose:~/var/egg][inkblot@goose:~/var/egg]$ cat boot |
| 00:26 | inkblot> | #!/bin/bash |
| 00:26 | inkblot> | screen -D -R -A -S egg -e^yy linux umid=egg mem=64M con0=fd:0,fd:1 con=null eth0=tuntap,inkblot_0,ca:fe:7d:5d:80:c0 root=/dev/ubda ubda=ubda.img ubdb=ubdb.img $* |
| 00:26 | inkblot> | mikegrb, devfs=mount |
| 00:26 | inkblot> | on the command line |
| 00:26 | @mikegrb> | thanks |
| 00:27 | @mikegrb> | boots perfect now :) |
| 00:27 | @mikegrb> | I always compile that in |
| 00:28 | inkblot> | 41287680 23% 182.75kB/s 0:12:19 |
| 00:28 | @mikegrb> | pwahah |
| 00:28 | @mikegrb> | cricket:~# |
| 00:28 | @mikegrb> | cricket is on iguana |
| 00:29 | inkblot> | ha ha |
| 00:29 | @mikegrb> | well inside :) |
| 00:29 | @mikegrb> | that was amazingly less painful then I expected |
| 00:29 | inkblot> | iguanas lay eggs, too, you know |
| 00:29 | @mikegrb> | yes, you are right |
| 00:29 | inkblot> | yeah i know |
| 00:29 | inkblot> | it's crazy simple once you get the details straight |
| 00:30 | @mikegrb> | just need to get network up |
| 00:31 | inkblot> | oh boy! |
| 00:31 | inkblot> | the networking is really the trickiest part |
| 00:31 | inkblot> | well, actually, |
| 00:31 | inkblot> | have you done bridging before? |
| 00:31 | @mikegrb> | no, I haven't |
| 00:31 | inkblot> | ok |
| 00:31 | @mikegrb> | I know there is a howto on the site |
| 00:31 | inkblot> | yeah |
| 00:32 | inkblot> | your host system needs to have its own networking rearranged for this |
| 00:32 | @mikegrb> | aye |
| 00:32 | inkblot> | first, pick the ethernet network that you want your linode to "be on" |
| 00:32 | inkblot> | as if it had an actual ethernet connection to that network |
| 00:33 | inkblot> | shutdown that ethernet interface on the host |
| 00:33 | inkblot> | remove it from the host's configuration |
| 00:33 | inkblot> | replace it with a bridge device, which you create with brctl |
| 00:34 | inkblot> | then attach the ethernet interface to that bridge device, |
| 00:34 | inkblot> | create a tuntap device, using tunctl |
| 00:34 | inkblot> | and attach the tuntap device to the bridge |
| 00:34 | inkblot> | i called my bridge device br0 |
| 00:35 | inkblot> | and it replaces eth0 |
| 00:35 | inkblot> | the ip address which was originally on eth0 is now on br0 |
| 00:35 | inkblot> | and i have scripted the thing up so that when i bring up br0, |
| 00:35 | inkblot> | eth0 is properly configured and attached to the brigde |
| 00:36 | inkblot> | i still have to do the tuntap manually |
| 00:36 | @mikegrb> | interesting |
| 00:36 | inkblot> | but anyway, at this point, i'm free to reboot the host and it will come up fully functional |
| 00:36 | @mikegrb> | spiffy |
| 00:36 | inkblot> | so, your uml instance will attach to the tuntap device |
| 00:37 | inkblot> | and it will appear as eth0 |
| 00:37 | inkblot> | my tuntap device is called inkblot_0 |
| 00:38 | inkblot> | and the uml command line option to create eth0 in the uml instance is "eth0=tuntap,inkblot_0,ca:fe:7d:5d:80:c0" |
| 00:38 | inkblot> | all that hex is the ethernet hardware address for eth0 in the uml instance |
| 00:38 | inkblot> | i basically took goose's address from eth0 and replaced the first two octets with "cafe" |
| 00:38 | * | inkblot shrugs |
| 00:39 | @mikegrb> | heh |
| 00:39 | inkblot> | some considerations, |
| 00:39 | - | sjansen [~sjansen@128.187.244.50] left #linode (Tchauzinho) |
| 00:39 | inkblot> | i also had to reconfigure things like the dhcp server, which runs on goose |
| 00:39 | inkblot> | it has to listen on br0 now instead of eth0 |
| 00:40 | inkblot> | and the firewall rules that i had applied to eth0 originally are now on br0 |
| 00:40 | inkblot> | i think there may have been some other tweaking i had to do |
| 00:40 | inkblot> | all along those lines |
| 00:40 | inkblot> | mrtg needed none |
| 00:40 | inkblot> | whatever, if it's happy, i'm happy |
| 00:40 | @mikegrb> | heh |
| 00:41 | inkblot> | hope that helps |
| 00:41 | inkblot> | oh, and also: |
| 00:42 | inkblot> | http://dorothy.movealong.org/builds/lnx-uml-i386-2003-12-12T23:15:01-0600.img <-- ext2, requires devfs, includes modules for the uml kernel version 2.4.22-5um-1 available from the debian user-mode-linux package |
| 00:43 | inkblot> | enjoy |
| 00:43 | @mikegrb> | thanks |
| 00:44 | @mikegrb> | would it be too much of a hassle to put that kernel up so I can grab it? |
| 00:44 | inkblot> | yes |
| 00:44 | inkblot> | dude |
| 00:44 | inkblot> | apt-get |
| 00:44 | @mikegrb> | like I said, not using debian on that box heh |
| 00:44 | inkblot> | the image should work with any statically compiled uml kernel |
| 00:44 | @mikegrb> | okay |
| 00:44 | @mikegrb> | I'll use apt-get on the xbox |
| 00:44 | @mikegrb> | once it is done with a compile |
| 00:45 | inkblot> | or if you just don't need any of your modules |
| 00:45 | @mikegrb> | and scp it over |
| 00:45 | @mikegrb> | right |
| 00:45 | inkblot> | i haven't tried booting it yet |
| 00:45 | inkblot> | :D |
| 00:45 | @mikegrb> | I think I'm going to go to bed soon |
| 00:45 | @mikegrb> | been up too long |
| 00:46 | inkblot> | i'm going to try it with this: |
| 00:46 | inkblot> | linux con=null con1=fd:0,fd:1 ubda=.nobackup/work/main.d/lnx-uml-i386-2003-12-12T23\:15\:01-0600.img devfs=mount init=/sbin/singularity-init |
| 00:48 | @mikegrb> | heh I'm trolling people in #xbox on efnet |
| 00:48 | @mikegrb> | they ask if people wanna trade and I say me! |
| 00:48 | @mikegrb> | they message me |
| 00:48 | @mikegrb> | I told one guy I had xebian itz really k00l |
| 00:49 | @mikegrb> | he said I don't think so, I only wanna trade games I know |
| 00:49 | inkblot> | that may have worked |
| 00:49 | inkblot> | i have no idea |
| 00:53 | inkblot> | doesn't work |
| 00:53 | inkblot> | hmmm |
| 00:53 | inkblot> | it's a console issue though |
| 01:05 | inkblot> | :< |
| 01:05 | inkblot> | with con=pty it won't tell me what devices it's attaching to on the host system |
| 01:05 | inkblot> | waaaaaaaaaaaaaaaaaaaaaaaaaaaaah |
| 01:06 | @mikegrb> | heh |
| 01:07 | @mikegrb> | In the boot output, find a line that looks like: |
| 01:07 | @mikegrb> | serial line 0 assigned pty /dev/ptyp1 |
| 01:07 | + | Artifex_ [~Arti@dhcp065-025-115-230.neo.rr.com] joined #linode |
| 01:07 | Artifex_> | hi |
| 01:07 | inkblot> | yeah, i don't see anything like that |
| 01:07 | Artifex_> | uhm |
| 01:08 | inkblot> | hi |
| 01:08 | Artifex_> | i just did something very bad to my linode, and i'm not sure what |
| 01:08 | inkblot> | i'm using con, not ssl |
| 01:08 | inkblot> | Artifex_, ? |
| 01:08 | tjfontaine> | rut roh arti |
| 01:09 | Artifex_> | well... i ran a very simple process as a non-root user... and the linode stopped responding.... so, i decide to ssh to console, and... sure enough... it's power off. |
| 01:09 | Artifex_> | *powered off |
| 01:09 | * | Artifex_ nudges caker |
| 01:09 | Artifex_> | is there any way to 'debug' such situations? determine what the hell just happened? |
| 01:09 | inkblot> | wow |
| 01:10 | inkblot> | what what that "very simple process"? |
| 01:10 | inkblot> | what was |
| 01:10 | Artifex_> | more or less the equivalent of 'hello world.' :-| |
| 01:10 | Artifex_> | as in... doesnt actually DO jack squat. |
| 01:10 | @mikegrb> | pwahaha |
| 01:10 | * | mikegrb waddles off to bed |
| 01:11 | Artifex_> | booted back up ok |
| 01:11 | Artifex_> | lets see if it does it again |
| 01:12 | Artifex_> | nope. :-\ |
| 01:12 | Artifex_> | oh |
| 01:12 | Artifex_> | yup |
| 01:12 | Artifex_> | Debian GNU/Linux 3.0 Haruko tty0 |
| 01:12 | Artifex_> | Haruko login: Kernel panic: Kernel mode signal 5 |
| 01:12 | Artifex_> | [screen is terminating][screen is terminating] |
| 01:13 | Artifex_> | [artifex@host10 lish][artifex@host10 lish]# |
| 01:13 | = | artifex [~artifex@li3-105.members.linode.com] quit (Ping timeout: 499 seconds) |
| 01:13 | Artifex_> | very very very very strange |
| 01:14 | Artifex_> | no problems on a nearly identical box here at home. |
| 01:15 | inkblot> | so, uh |
| 01:15 | inkblot> | what kind of hello world program, exactly? |
| 01:16 | Artifex_> | uhm, an rc4 |
| 01:16 | tjfontaine> | haha |
| 01:16 | tjfontaine> | linode, effective against copyright infringement |
| 01:16 | inkblot> | don't be a pig |
| 01:16 | inkblot> | tjfontaine, what's that got to do with copyrights? |
| 01:17 | inkblot> | rc4 is a hashing algorithm |
| 01:17 | tjfontaine> | very true very true |
| 01:17 | tjfontaine> | perhaps rc4 could be used to protect copyrights? |
| 01:17 | * | inkblot beats tjfontaine with a cluestick |
| 01:17 | inkblot> | tjfontaine, perhaps you're out on a limb |
| 01:18 | tjfontaine> | true true |
| 01:18 | tjfontaine> | otoh |
| 01:19 | Artifex_> | NOTHING in logs |
| 01:20 | Artifex_> | oh, hey, i think i did just find the source of my samba problems, tho... |
| 01:20 | Artifex_> | its looking in the wrong place for smb.conf |
| 01:20 | Artifex_> | odd |
| 01:20 | Artifex_> | but |
| 01:20 | Artifex_> | anyways |
| 01:20 | inkblot> | kernel mode signal 5 means that the kernel is receiving a SIGTRAP |
| 01:20 | inkblot> | i'm not sure what conditions that occurs under |
| 01:20 | inkblot> | but i know that gdb uses it |
| 01:21 | Artifex_> | rc4ing, apparently. |
| 01:21 | inkblot> | so, is this "rc4" thing the dnet client? |
| 01:21 | Artifex_> | uhm, no |
| 01:21 | Artifex_> | it's test.c from the obcode library |
| 01:21 | inkblot> | ok |
| 01:22 | Artifex_> | hrmm |
| 01:22 | Artifex_> | seems to only die on it about 50% of the time, too |
| 01:23 | inkblot> | ok, so basically |
| 01:23 | inkblot> | you're running code that does deliberately obtuse things |
| 01:23 | inkblot> | in order to be obtuse |
| 01:23 | inkblot> | <patient> my arm hurts when i do this |
| 01:23 | inkblot> | * patient bends arm |
| 01:23 | inkblot> | <doctor> don't do that |
| 01:25 | Artifex_> | well... im trying to determine exactly WHY it's killing the kernel from userland. i mean... i want to implement some obcode based rc4 decryption in a production environment.... but CERTAINLY not if it's going to nuke the kernel everytime someone tries to run my code. :-| |
| 01:26 | Artifex_> | and... it's going to make the development process rather tedious, heh |
| 01:27 | + | artifex [~artifex@li3-105.members.linode.com] joined #linode |
| 01:27 | * | artifex waves |
| 01:27 | * | artifex frowns |
| 01:34 | inkblot> | i'm not sure this things is even allocating the pts terminals |
| 01:34 | inkblot> | thing |
| 01:34 | inkblot> | init is disabling the gettys because they respawn too fast |
| 01:35 | inkblot> | and it's not reporting any allocated |
| 01:37 | = | artifex [~artifex@li3-105.members.linode.com] quit (Read error: Connection reset by peer) |
| 01:43 | + | tjfontaine_h [~tjfontain@adsl-65-42-49-192.dsl.akrnoh.ameritech.net] joined #linode |
| 01:43 | tjfontaine_h> | er I got it too Artifex_ |
| 01:43 | Artifex_> | only after recompile? |
| 01:43 | tjfontaine_h> | yes |
| 01:43 | Artifex_> | odd |
| 01:43 | Artifex_> | even more odd then before |
| 01:43 | Artifex_> | lol |
| 01:43 | tjfontaine_h> | ran fine once |
| 01:44 | Artifex_> | yah... seems to be about a 50/50 chance |
| 01:44 | Artifex_> | died on "test" or "obrc4"? |
| 01:44 | tjfontaine_h> | test |
| 01:44 | Artifex_> | let me try recompiling on a local box as well |
| 01:44 | Artifex_> | brb |
| 01:45 | tjfontaine_h> | k |
| 01:45 | = | tjfontaine [~tjfontain@atxconsulting.com] quit (Read error: No route to host) |
| 01:45 | tjfontaine_h> | won't compile with gcc 3.3 |
| 01:45 | tjfontaine_h> | wait |
| 01:45 | tjfontaine_h> | mcpu=athlon |
| 01:46 | tjfontaine_h> | that seems awfully silly |
| 01:46 | inkblot> | huk huk |
| 01:46 | tjfontaine_h> | hmm it's adding that on its own? |
| 01:46 | Artifex_> | yah, thats not in the makefiles anywhere |
| 01:47 | tjfontaine_h> | its in that shell script |
| 01:47 | tjfontaine_h> | # This script tries to detect compiler flags best for the host |
| 01:47 | tjfontaine_h> | # system. This is currently gcc and Linux oriented. It tries to |
| 01:47 | tjfontaine_h> | # use CPU instructions best for present processor and moderate |
| 01:47 | tjfontaine_h> | # compiler optimizations. HIGH OPTIMIZATIONS MAY RENDER ANTI-DEBUGGING |
| 01:47 | tjfontaine_h> | # TRICKS INEFFECTIVE! |
| 01:47 | tjfontaine_h> | shitty is what it is |
| 01:47 | Artifex_> | doesnt add that on the linode |
| 01:48 | * | Artifex_ reads the script |
| 01:48 | tjfontaine_h> | its not really all important |
| 01:48 | tjfontaine_h> | still fails on gcc 3.3 |
| 01:50 | + | tjfontaine [~tjfontain@atxconsulting.com] joined #linode |
| 01:52 | Artifex_> | builds ok on 3.2.2 |
| 01:52 | Artifex_> | whats the err on 3.3? |
| 01:52 | tjfontaine_h> | In file included from obcode.c:23: |
| 01:52 | tjfontaine_h> | version.c:3:21: version.h: No such file or directory |
| 01:52 | tjfontaine_h> | In file included from obcode.c:23: |
| 01:52 | tjfontaine_h> | version.c:5: error: `VERSION' undeclared here (not in a function) |
| 01:53 | inkblot> | so basically, that stupid script has no idea what to do when /proc/cpuinfo says: |
| 01:53 | inkblot> | processor : 0 |
| 01:53 | inkblot> | vendor_id : User Mode Linux |
| 01:53 | inkblot> | model name : UML |
| 01:53 | tjfontaine_h> | its not hard to remove it from the makefil |
| 01:53 | tjfontaine_h> | e |
| 01:53 | Artifex_> | inkblot: you're not following. |
| 01:54 | Artifex_> | tjfontaine: is your version.h being created? |
| 01:54 | Artifex_> | if not, just make one |
| 01:54 | Artifex_> | gcc -Wall -g -fomit-frame-pointer -O -c -o obrc4.o obrc4.c |
| 01:54 | Artifex_> | gcc -Wall -g -fomit-frame-pointer -O -o obrc4 obrc4.o -L. -lobcode |
| 01:55 | Artifex_> | err |
| 01:55 | Artifex_> | gentoox@Pro ob $ cat version.h |
| 01:55 | Artifex_> | #define VERSION "1.0.6" |
| 01:55 | Artifex_> | gentoox@Pro ob $ |
| 01:56 | Artifex_> | or dont do "make clean all" apparently |
| 01:57 | Artifex_> | "make clean; make all" goes ok, though |
| 01:58 | = | vitrum [~vitrum@adsl-63-198-239-178.dsl.lsan03.pacbell.net] quit () |
| 01:58 | + | artifex [~artifex@li3-105.members.linode.com] joined #linode |
| 02:00 | Artifex_> | yup, only seems to kill the linode. |
| 02:00 | Artifex_> | fun. |
| 02:01 | = | Artifex_ [~Arti@dhcp065-025-115-230.neo.rr.com] quit (Quit: Leaving) |
| 02:04 | tjfontaine_h> | obcode.c:49:25: missing terminating " character |
| 02:04 | tjfontaine_h> | obcode.c: In function `ob_evenness': |
| 02:04 | tjfontaine_h> | obcode.c:50: error: syntax error before "int3" |
| 02:06 | = | Newsome [~sorenson@byu-gw.customer.csolutions.net] quit (Quit: Leaving) |
| 02:07 | * | artifex shrugs |
| 02:07 | artifex> | hang on |
| 02:08 | tjfontaine_h> | still can't kill other boxes |
| 02:10 | - | tjfontaine_h [~tjfontain@adsl-65-42-49-192.dsl.akrnoh.ameritech.net] left #linode (Leaving) |
| 02:14 | * | artifex goes to sleep |
| 02:15 | * | tjfontaine topo |
| 02:15 | artifex> | night. :-) |
| 02:15 | tjfontaine> | later |
| 02:45 | = | Griswald [Griswald@AC9C039A.ipt.aol.com] quit (Read error: Connection reset by peer) |
| 03:04 | guinea-sleep | is now known as guinea-work |
| 04:07 | wap> | Morning. |
| 04:07 | inkblot> | hi |
| 05:48 | adamg> | sighup g7 adamg |
| 05:48 | sighup> | #G7 stats for adamgent, the sleepy -- 22/105 Current Level: 40 | Time to next level: 1 days, 04:48:03 | Status: online | Item Total: 362 | Total Time Idled: 19 days, 13:39:55 |
| 07:03 | = | adamg [~a.l.gent@cpc1-cdif1-5-0-cust33.cdif.cable.ntl.com] quit (Ping timeout: 482 seconds) |
| 09:45 | + | Griswald [Griswald@AC8EFDB3.ipt.aol.com] joined #linode |
| 09:54 | + | Newsome [~sorenson@byu-gw.customer.csolutions.net] joined #linode |
| 09:55 | + | sjansen [~sjansen@128.187.245.97] joined #linode |
| 10:32 | Griswald> | so... 'sup everyone? |
| 10:33 | inkblot> | INIT: Id "0" respawning too fast: disabled for 5 minutes |
| 10:33 | inkblot> | other than that, i've got a working lnx-uml image |
| 10:33 | Griswald> | lol |
| 10:33 | Griswald> | :D |
| 10:33 | Griswald> | awesome :) |
| 10:34 | inkblot> | and the code to build it is *almost* all in CVS now |
| 10:35 | Griswald> | =D |
| 10:37 | inkblot> | sighup, jan lays down and rustles in her sleep is <reply>moonlight spills on comic books and superstars in magazines |
| 10:37 | sighup> | OK, inkblot. |
| 10:38 | inkblot> | sighup, an old friend calls and tells us where to meet is <reply>her plane takes off from baltimore and touches down on bourbon street |
| 10:38 | sighup> | bugger all, i dunno, inkblot |
| 10:38 | inkblot> | sighup, an old friend calls and tells \us \where to meet is <reply>her plane takes off from baltimore and touches down on bourbon street |
| 10:38 | sighup> | OK, inkblot. |
| 10:39 | inkblot> | sighup, we sit outside and argue all night long is <reply>about a god we've never seen but never fails to side with \me |
| 10:39 | sighup> | OK, inkblot. |
| 10:40 | inkblot> | sighup, sunday comes and all the papers say is <reply>ma theresa's joined the mob and happy with her full time job |
| 10:40 | sighup> | OK, inkblot. |
| 10:41 | inkblot> | sighup, \am \i alive or thoughts that drift away is <reply>does summer come for everyone% can humans do as prophets say% |
| 10:41 | sighup> | OK, inkblot. |
| 10:41 | inkblot> | sighup, \am \i alive or thoughts that drift away is =~ s/%/?/ |
| 10:41 | sighup> | I didn't have anything matching '\am \i alive or thoughts that drift away is', inkblot |
| 10:41 | inkblot> | sighup, am i alive or thoughts that drift away is =~ s/%/?/ |
| 10:41 | sighup> | I didn't have anything matching 'am i alive or thoughts that drift away is', inkblot |
| 10:42 | inkblot> | bah |
| 10:42 | inkblot> | sighup, and if \i die before \i learn to speak is <reply>can money pay for all the days \i lived awake but half asleep |
| 10:42 | sighup> | OK, inkblot. |
| 10:43 | inkblot> | sighup, a life \is time, they teach \us growing up is <reply>the seconds ticking killed \us all a million years before the fall |
| 10:43 | sighup> | OK, inkblot. |
| 10:44 | inkblot> | sighup, \you ride the waves and don't ask \where they go is <reply>\you swim like lions through the crest and bathe \yourself in zebra flesh |
| 10:44 | sighup> | OK, inkblot. |
| 10:45 | inkblot> | sighup, am i alive or thoughts that drift away =~ s/%/?/ |
| 10:45 | sighup> | OK, inkblot |
| 10:45 | inkblot> | ha! |
| 10:47 | sjansen> | Teaching sighup to sing? |
| 10:48 | inkblot> | yes |
| 10:51 | inkblot> | sighup, \i got the style is <reply>but not the grace |
| 10:51 | sighup> | OK, inkblot. |
| 10:51 | inkblot> | sighup, \i got the clothes is <reply>but not the fleece |
| 10:51 | sighup> | OK, inkblot. |
| 10:51 | inkblot> | sighup, \i got the bread is <reply>but not the butter |
| 10:51 | sighup> | OK, inkblot. |
| 10:52 | inkblot> | sighup, \i got the window is <reply>but not the shutter |
| 10:52 | sighup> | OK, inkblot. |
| 10:52 | @guinea-work> | jaja |
| 10:52 | @guinea-work> | (tom waits)++ |
| 10:52 | inkblot> | sighup, but \i'm big in japan is <reply>\i'm big in japan, but hey \i'm big in japan |
| 10:52 | sighup> | OK, inkblot. |
| 10:52 | @guinea-work> | sighup, the new dumont! |
| 10:52 | sighup> | guinea-work: excuse me? |
| 10:53 | inkblot> | sighup, \i got the moon is <reply>\i got the cheese |
| 10:53 | sighup> | OK, inkblot. |
| 10:53 | inkblot> | hmmmm |
| 10:53 | inkblot> | no sighup, \i got the moon is <reply>\i got the cheese. \i got the whole damn nation on its knees. |
| 10:53 | inkblot> | ... |
| 10:53 | inkblot> | grrr |
| 10:54 | inkblot> | sighup, literal i got the moon |
| 10:54 | sighup> | inkblot: i'm not following you... |
| 10:54 | @guinea-work> | heh |
| 10:54 | inkblot> | whatever |
| 10:54 | inkblot> | sighup, \i got the rooster is <reply>\i got the crow |
| 10:54 | sighup> | OK, inkblot. |
| 10:55 | @guinea-work> | can't teach a new bot old tricks |
| 10:55 | inkblot> | sighup, \i got the ebb is <reply>\i got the flow |
| 10:55 | sighup> | OK, inkblot. |
| 10:55 | inkblot> | damn bot |
| 10:55 | inkblot> | sighup, \i got the house is <reply>but not the deed |
| 10:55 | sighup> | OK, inkblot. |
| 10:55 | inkblot> | sighup, \i got the horn is <reply>but not the reed |
| 10:55 | sighup> | OK, inkblot. |
| 10:55 | inkblot> | sighup, \i got the cards is <reply>but not the luck |
| 10:55 | sighup> | OK, inkblot. |
| 10:55 | inkblot> | sighup, \i got the wheel is <reply>but not the truck |
| 10:55 | sighup> | OK, inkblot. |
| 10:56 | inkblot> | sighup, but i'm big in japan |
| 10:56 | sighup> | inkblot: sorry... |
| 10:56 | inkblot> | ... |
| 10:56 | inkblot> | sighup, damn bot |
| 10:56 | sighup> | inkblot: sorry... |
| 10:56 | inkblot> | i like dumont better |
| 10:57 | @guinea-work> | ditto |
| 10:57 | @guinea-work> | dumont loves me |
| 10:57 | inkblot> | * inkblot hugs Dumont |
| 10:57 | inkblot> | <+Dumont> GET OFF |
| 11:02 | Griswald> | :P |
| 11:12 | + | You_Wish [~You_Wish@adsl-068-209-131-003.sip.jax.bellsouth.net] joined #linode |
| 11:12 | You_Wish> | anybody free |
| 11:12 | Griswald> | I'm here |
| 11:12 | Griswald> | doubt I count though |
| 11:12 | Griswald> | :) |
| 11:12 | inkblot> | TEN DOLLAH! |
| 11:13 | You_Wish> | want to give it a shot |
| 11:13 | Griswald> | k |
| 11:13 | You_Wish> | samba i am trying to install in rh |
| 11:13 | You_Wish> | here is the erro i get |
| 11:14 | You_Wish> | Err http://ayo.freshrpms.net redhat/8.0/i386/updates cups-libs 1:1.1.17-0.7 |
| 11:14 | You_Wish> | 404 Not Found [IP: 193.1.219.82 80] |
| 11:14 | You_Wish> | Failed to fetch http://ayo.freshrpms.net/redhat/8.0/i386/RPMS.updates/cups-libs- |
| 11:14 | You_Wish> | 219.82 80] |
| 11:14 | You_Wish> | artifex: Unable to fetch some archives, maybe run apt-get update or try with --fix-mis |
| 11:14 | You_Wish> | [ |
| 11:14 | Griswald> | it dosen't exist at that site |
| 11:14 | You_Wish> | i tried update nothing |
| 11:14 | You_Wish> | and i dont know how to use --fix-mis |
| 11:14 | You_Wish> | any suggestions |
| 11:14 | Griswald> | well, I don't know much about samba, but perhaps it's just trying to update itself? |
| 11:15 | You_Wish> | hmm |
| 11:15 | Griswald> | you COULD download the latest samba rpm and then install that though, and see if that works |
| 11:15 | % | Netsplit uranium.oftc.net <-> jupiter.oftc.net quits: nick_, Efudd-he, risto, sjansen, Newsome |
| 11:15 | You_Wish> | so may i should just got to the main site and down load it |
| 11:15 | Griswald> | indeed |
| 11:15 | You_Wish> | k |
| 11:15 | You_Wish> | good idea |
| 11:15 | Griswald> | that would always be the best thing |
| 11:15 | You_Wish> | k |
| 11:16 | You_Wish> | thanks |
| 11:16 | = | You_Wish [~You_Wish@adsl-068-209-131-003.sip.jax.bellsouth.net] quit (Client Quit) |
| 11:16 | % | Netsplit over, joins: sjansen, Newsome, risto, nick_, Efudd-he |
| 11:24 | + | ElfStone [elfstone@AC868E07.ipt.aol.com] joined #linode |
| 11:37 | guinea-work | is now known as guinea-pig |
| 11:38 | ElfStone> | sighup linode avail |
| 11:38 | sighup> | Linode availability -- [Linode 64: 1] [Linode 96: 1] [Linode 128: 1] [Linode 192: 0] [Linode 256: 0] |
| 11:38 | @guinea-pig> | sighup: g7 gp |
| 11:38 | sighup> | #G7 stats for gp, the Emperor of New England -- 8/106 Current Level: 43 | Time to next level: 3 days, 22:03:34 | Status: online | Item Total: 394 | Total Time Idled: 24 days, 21:05:40 |
| 11:39 | ElfStone> | sighup: g7 ElfStone |
| 11:39 | sighup> | #G7 stats for ElfStone, the ElfGod -- 77/106 Current Level: 27 | Time to next level: 0 days, 01:33:47 | Status: online | Item Total: 226 | Total Time Idled: 2 days, 16:17:25 |
| 12:19 | % | Netsplit uranium.oftc.net <-> jupiter.oftc.net quits: nick_, Efudd-he, risto, sjansen, Newsome |
| 12:20 | % | Netsplit over, joins: sjansen, Newsome, risto, nick_, Efudd-he |
| 12:21 | = | ElfStone [elfstone@AC868E07.ipt.aol.com] quit (Quit: I'm root I'm allowed to do that!) |
| 12:25 | % | Netsplit jupiter.oftc.net <-> arion.oftc.net quits: Newsome, nick_, sjansen, risto |
| 12:25 | % | Netsplit over, joins: nick_, sjansen, Newsome, risto |
| 13:31 | guinea-pig | is now known as guinea-beantown |
| 15:05 | + | adamgent [~a.l.gent@p48-mizar-rea.tch.cableol.net] joined #linode |
| 15:06 | adamgent | is now known as Guest6 |
| 15:06 | ~ | ChanServ set +o Guest6 on #linode |
| 15:06 | Guest6 | is now known as adamg |
| 15:06 | adamg | is now known as adamgent |
| 15:06 | adamgent | is now known as adamg |
| 15:10 | * | adamg is stuck on a 56k connection for the next 3 weeks :-( |
| 15:23 | inkblot> | ha ha christmas |
| 15:28 | inkblot> | Dumont in action: |
| 15:28 | inkblot> | <@Torsten> it's the only way |
| 15:28 | inkblot> | * Dumont Shoots both Torstens. |
| 16:48 | @adamg> | is -9 the best compression for bzip2 |
| 17:03 | @mikegrb> | perhaps |
| 17:08 | @mikegrb> | cricket:~# uptime |
| 18:06 | inkblot> | ____ _ _ ____ ____ _____ ____ ____ |
| 18:06 | inkblot> | / ___|| | | |/ ___/ ___| ____/ ___/ ___| |
| 18:06 | inkblot> | \___ \| | | | | | | | _| \___ \___ \ |
| 18:06 | inkblot>___) | |_| | |__| |___| |___ ___) |__) | |
| 18:06 | inkblot> | |____/ \___/ \____\____|_____|____/____/ |
| 18:06 | inkblot> | |
| 18:06 | inkblot> | ATTENTION |
| 18:06 | inkblot> | I have code to produce working lnx-uml images |
| 18:06 | inkblot> | That is all. |
| 18:13 | Griswald> | YAY |
| 18:17 | + | Guest6 [~a.l.gent@p48-mizar-rea.tch.cableol.net] joined #linode |
| 18:17 | = | adamg [~a.l.gent@p48-mizar-rea.tch.cableol.net] quit (Read error: Connection reset by peer) |
| 18:17 | Guest6 | is now known as adamgent |
| 18:17 | ~ | ChanServ set +o adamgent on #linode |
| 18:17 | adamgent | is now known as adamg |
| 18:17 | @adamg> | g7 |
| 18:17 | @adamg> | sighup g7 adamg |
| 18:17 | sighup> | #G7 stats for adamgent, the sleepy -- 24/106 Current Level: 40 | Time to next level: 1 days, 02:56:07 | Status: online | Item Total: 362 | Total Time Idled: 19 days, 17:37:45 |
| 19:25 | @adamg> | sighup change 25 usd to gbp |
| 19:25 | sighup> | adamg: 25 U.S. Dollar makes 14.31 British Pound |
| 19:31 | @adamg> | sighup g7 adamg |
| 19:31 | sighup> | #G7 stats for adamgent, the sleepy -- 24/106 Current Level: 40 | Time to next level: 1 days, 01:50:37 | Status: online | Item Total: 362 | Total Time Idled: 19 days, 18:43:15 |
| 19:52 | + | david [~d@vidcoulson.com] joined #linode |
| 19:57 | @caker> | hello david |
| 19:57 | @caker> | sighup ups 1Z3E74561365490848 |
| 19:57 | sighup> | In Transit [ On-Time ] Sched. Delivery: Dec 15, 2003 Shipped to: FREMONT, CA, US Service Type: NEXT DAY AIR SAVER. Results as of Dec 13, 2003 7:57 P.M. Eastern Time (USA) |
| 19:59 | david> | caker: nice :-) |
| 19:59 | @caker> | releasing a 2.4.23 djc kernel anytime soon? |
| 20:00 | @caker> | 2.4.23-rc3-djc3-6um.diff.bz2 will prob apply w/ no problems, so maybe I'll just use that to 2.4.23 :) |
| 20:01 | david> | caker: when I get time :-) |
| 20:03 | inkblot> | caker, lnx-uml works |
| 20:04 | @caker> | inkblot: cool -- I wasn't around to help you with the inittab, but I see you got it workin :) |
| 20:04 | inkblot> | yeah, the lnx-bbc uses devfs, too |
| 20:04 | @caker> | inkblot: so what is it? A script that generates the image? |
| 20:05 | inkblot> | so it was really confusing that /dev/tty0 existed there but not in lnx-uml |
| 20:05 | inkblot> | caker, it's a GAR package... meta/lnx-uml |
| 20:05 | inkblot> | like meta/lnx-bbc |
| 20:05 | inkblot> | except it builds a different image |
| 20:05 | @caker> | ok |
| 20:05 | inkblot> | the difference is that lnx-bbc includes devfsd, and lnx-uml does not |
| 20:05 | inkblot> | and devfsd creates the canonical nodes |
| 20:06 | @mikegrb> | cricket:~# uname -a |
| 20:06 | @mikegrb> | Linux cricket 2.4.23-rc3-djc3-6um #2 Fri Nov 21 22:48:44 EST 2003 i686 unknown |
| 20:06 | inkblot> | i forget why i excluded it |
| 20:06 | @mikegrb> | :) |
| 20:06 | inkblot> | probably something to do with discover |
| 20:06 | @caker> | mikegrb: where's that running? |
| 20:06 | @mikegrb> | in a system called iguana at home |
| 20:07 | @mikegrb> | so cricket runs in iguana |
| 20:07 | @mikegrb> | just like inkblot has egg running in goose |
| 20:07 | @caker> | hhehe |
| 20:08 | @mikegrb> | I need to setup networking still |
| 20:08 | @mikegrb> | inkblot gave me some pointers and the docs don't look to hard to understand |
| 20:23 | @caker> | sighup: linode forums |
| 20:24 | sighup> | caker: Linode.com Announcements: Hurricane Electric corrects ... ; Linux, Apache, Mysql and PHP (LAMP) Forum: Where is apxs? ; Linux Networking: DNS and rest of the stuff ; General Discussion: performance of linode ... ; Feature Request/Bug Report: linode (running on host10) ... |
| 20:28 | @mikegrb> | ahhh |
| 20:28 | @mikegrb> | HE :) |
| 20:28 | @caker> | Yup |
| 20:28 | @caker> | we're averaging about 300kbits/sec vs 6000 :) |
| 20:31 | @mikegrb> | heh |
| 20:31 | @mikegrb> | so uml_net helper isn't talked about much in the doc |
| 20:31 | @mikegrb> | it mentions the sittings to add to the command line when starting the uml kernel |
| 20:32 | @mikegrb> | if uml_net is suid then it gets called and automatically setsup the tap device on the host? |
| 20:32 | @caker> | it should, but I still strongly recommend using bridge :) |
| 20:32 | @caker> | manually |
| 20:33 | @mikegrb> | yes |
| 20:33 | @mikegrb> | I think so |
| 20:33 | @mikegrb> | heh |
| 20:34 | @mikegrb> | http://www.usermodelinux.org/modules.php?name=News&file=article&sid=4 |
| 20:34 | @mikegrb> | heh |
| 20:34 | @mikegrb> | by david about setting up bridging |
| 20:40 | * | mikegrb emerges bridge-utils |
| 20:55 | inkblot> | oh, i see why i omitted devfsd |
| 20:55 | inkblot> | it needs the kernel headers to compile |
| 20:55 | inkblot> | actually, that can't be it |
| 20:55 | inkblot> | hmmmmmm |
| 20:55 | % | Netsplit uranium.oftc.net <-> jupiter.oftc.net quits: david, Efudd-he |
| 20:56 | % | Netsplit over, joins: david, Efudd-he |
| 21:00 | % | Netsplit jupiter.oftc.net <-> lepton.oftc.net quits: david, Efudd-he |
| 21:01 | % | Netsplit over, joins: david, Efudd-he |
| 21:01 | @mikegrb> | depmod: *** Unresolved symbols in /lib/modules/2.4.20-gentoo-r7/kernel/net/bridge/bridge.o |
| 21:02 | @mikegrb> | :< |
| 21:03 | @mikegrb> | br_ioctl_hook and br_handle_frame_hook |
| 21:03 | @mikegrb> | from those names it almost looks like the kernel needs to be compiled with it selected as a module |
| 21:03 | @mikegrb> | rather then compiling the module at a later time |
| 21:06 | % | Netsplit uranium.oftc.net <-> jupiter.oftc.net quits: david, Efudd-he |
| 21:06 | % | Netsplit over, joins: david, Efudd-he |
| 22:29 | % | Netsplit jupiter.oftc.net <-> lepton.oftc.net quits: david, Efudd-he |
| 22:29 | % | Netsplit over, joins: david, Efudd-he |
| 22:36 | - | Griswald [Griswald@AC8EFDB3.ipt.aol.com] left #linode () |
| 22:44 | = | sighup [~sighup@webuser.thegrebs.com] quit (Remote host closed the connection) |
| 23:30 | + | sighup [~sighup@webuser.thegrebs.com] joined #linode |
| 23:57 | - | UML_ChanLog [~stats@64.35.99.206] left #linode (Rotating Logs) |
| 23:57 | + | UML_ChanLog [~stats@64.35.99.206] joined #linode |
| --- | Log | closed Sun Dec 14 00:00:03 2003 |