[00:03] ubijtsa (n=ubijtsa@karlsson.force9.co.uk) joined #rocklinux. [00:38] <th> stf^rocklinux: your patch 2007011519073126110 sent today still does not conform to patch description... [00:57] <stf^rocklinux> th: sry, that was an older patch [06:34] rocklogbot (n=rocklogb@pallas.crash-override.net) left irc: Remote closed the connection [06:35] rocklogbot (n=rocklogb@pallas.crash-override.net) joined #rocklinux. [06:35] rocklogbot (n=rocklogb@pallas.crash-override.net) left irc: Remote closed the connection [06:35] rocklogbot (n=rocklogb@pallas.crash-override.net) joined #rocklinux. [07:57] <blindcoder> moin [10:01] esden (n=esden@wohnheim50.fh-rosenheim.de) left irc: [10:33] beetle (n=b33tl3@dslb-082-083-028-221.pools.arcor-ip.net) left irc: Read error: 145 (Connection timed out) [10:54] beetle (n=b33tl3@dslc-082-082-163-243.pools.arcor-ip.net) joined #rocklinux. [10:54] <beetle> moin [10:55] <blindcoder> moin moin beetle [11:31] <owl> moin [11:35] <beetle> is it somehow possible to build a preconfigured disc image? [11:35] <beetle> for CF-card use [11:35] <beetle> just dd it [11:35] <th> the steps for creating a preconfigured disc image are obvious: [11:35] <th> 1) create the disc image [11:35] <th> 2) configure it [11:36] <beetle> yep [11:36] <beetle> so there is nu fancy direct way to do that [11:36] <beetle> s/nu/no/ [11:36] <th> how can it be more direct than configuring? [11:37] <beetle> a build script? [11:37] <beetle> I provide a config [11:37] <beetle> the script makes me a dd img [11:37] <th> providing a config is what i call "configuring" [11:38] <beetle> so I have to boot the iso [11:38] <th> the result of building most distributions is a ISO image. [11:38] <th> and the config is given in ./config/ [11:40] <beetle> mybe I miss understud something [11:40] <beetle> I'll try.. [13:22] esden (n=esden@repl.esden.net) joined #rocklinux. [14:49] esden_ (n=esden@wohnheim50.fh-rosenheim.de) joined #rocklinux. [14:56] esden (n=esden@repl.esden.net) left irc: Read error: 110 (Connection timed out) [16:41] madtux (n=madtux@201.199.56.78) joined #rocklinux. [16:41] <madtux> moin. [16:42] <blindcoder> madtux! [16:42] <madtux> blindy! [16:42] <rxr> madtux: ! [16:42] <daja77> rxr! :) [16:42] <blindcoder> daja77! [16:43] <daja77> :D [16:43] <blindcoder> madtux: hey man, I almost thought you finally got rid of your computers :) [16:46] <rxr> madtux: I just had to fix/update your router target in T2 as someone asked aDbout it .. [16:46] <madtux> rxr: greetings. [16:47] <madtux> rxr: sounds terrific. [16:47] <madtux> blindcoder: why? for me been so ilvolved in my faith? [16:47] <rxr> madtux: yeah - especially since it is rm'ed in trunk and just shipped in the 6.0 stable series ... [16:49] <blindcoder> madtux: haven't seen you for ages [16:49] <madtux> rxr ok. [16:50] <madtux> blindcoder: well.. i'm still alive.. just busy as usual.. [16:50] <blindcoder> madtux: no doubt about that :) [17:49] kasc_ (n=kasc@dslb-084-061-223-209.pools.arcor-ip.net) joined #rocklinux. [18:01] <stf^rocklinux> beetle: you can of course create such a disc image manually on your build machine: [18:01] kasc (n=kasc@dslb-084-060-109-219.pools.arcor-ip.net) left irc: Read error: 113 (No route to host) [18:01] Nick change: kasc_ -> kasc [18:01] <stf^rocklinux> # create a 1 GB image file [18:01] <stf^rocklinux> dd if=/dev/zero of=/tmp/dd.img bs=1024 count=1024k [18:01] <stf^rocklinux> # create a file system on the image [18:01] <stf^rocklinux> mkfs.ext3 /tmp/dd.img [18:01] <stf^rocklinux> # mount the file system [18:01] <stf^rocklinux> mount -o loop /tmp/dd.img /mnt [18:02] <stf^rocklinux> # install packages on it [18:02] <stf^rocklinux> mine -i -R /mnt <pkg1.gem> <pkg2.gem> ... [18:02] <stf^rocklinux> # unmount and dd to cf, done! [18:02] <stf^rocklinux> umount /mnt [18:02] <stf^rocklinux> dd if=/tmp/dd.img of=/your-cf-drive bs=1024 [18:50] <stf^rocklinux> beetle: to additionally configure your installation, you can do sth. like this before the umount command: [18:50] <stf^rocklinux> # bind-mount /proc and /dev to the chroot environment [18:50] <stf^rocklinux> mount --bind /proc /mnt/proc [18:50] <stf^rocklinux> mount --bind /dev /mnt/dev [18:50] <stf^rocklinux> chroot /mnt [18:50] <stf^rocklinux> # do some post-install configuration, e.g.: [18:50] <stf^rocklinux> postinstall [18:50] <stf^rocklinux> stone [18:50] <stf^rocklinux> ... [18:50] <stf^rocklinux> # exit the chroot env [18:50] <stf^rocklinux> exit [18:50] <stf^rocklinux> # umount /proc and /dev [18:50] <stf^rocklinux> umount /mnt/proc /mnt/dev [18:50] <daja77> stf is raising our google hits again [18:51] <madtux> hey Mr. Daniel [18:51] <daja77> hi maddy [19:05] beetle (n=b33tl3@dslc-082-082-163-243.pools.arcor-ip.net) left irc: Read error: 110 (Connection timed out) [19:05] beetle (n=b33tl3@dslb-082-083-030-056.pools.arcor-ip.net) joined #rocklinux. [19:21] <beetle> stf^rocklinux: thanks! [19:54] <netrunner> beetle: there is scripts/Create-UMLRootfs (or similar) [19:54] <netrunner> it installs all packages of a build onto the rootfs [19:55] <netrunner> I wrote it for uml some years ago :) [20:13] kasc (n=kasc@dslb-084-061-223-209.pools.arcor-ip.net) left irc: Read error: 110 (Connection timed out) [20:16] blindcod1r (i=blindcod@gateway/gpg-tor/key-0x384243C9) joined #rocklinux. [20:16] blindcoder (i=blindcod@gateway/gpg-tor/key-0x384243C9) left irc: Nick collision from services. [20:16] Nick change: blindcod1r -> blindcoder [20:30] kasc (n=kasc@dslb-084-061-210-228.pools.arcor-ip.net) joined #rocklinux. [20:32] kasc (n=kasc@dslb-084-061-210-228.pools.arcor-ip.net) left irc: Client Quit [20:35] kasc (n=kasc@dslb-084-061-210-228.pools.arcor-ip.net) joined #rocklinux. [20:40] <beetle> yay! [20:40] <beetle> I'll have a look on it tomorrow :) [21:14] kasc (n=kasc@dslb-084-061-210-228.pools.arcor-ip.net) left irc: Read error: 110 (Connection timed out) [21:26] kasc (n=kasc@dslb-084-061-112-134.pools.arcor-ip.net) joined #rocklinux. [21:33] ija_ (n=ija@84.19.218.51) joined #rocklinux. [21:37] ija (n=ija@84.19.222.162) left irc: Nick collision from services. [21:37] Nick change: ija_ -> ija [21:53] madtux (n=madtux@201.199.56.78) left irc: "leaving" [00:00] --- Wed Jan 17 2007