{"id":37,"date":"2008-06-07T11:54:00","date_gmt":"2008-06-07T11:54:00","guid":{"rendered":"https:\/\/knielsen-hq.org\/w\/?p=37"},"modified":"2021-09-01T06:38:10","modified_gmt":"2021-09-01T06:38:10","slug":"zepto-znote-6024w-laptop","status":"publish","type":"post","link":"https:\/\/knielsen-hq.org\/w\/zepto-znote-6024w-laptop\/","title":{"rendered":"Zepto Znote 6024W laptop"},"content":{"rendered":"\n<p>So I got a new laptop, a Zepto Znote 6024W.<\/p>\n\n\n\n<p>I got it with 2GB of RAM, a 7200RPM 120GB harddisk, 1440&#215;900 screen, 2.4GHz Intel Core Duo CPU, and Intel Pro\/Wireless 4965AGN.<\/p>\n\n\n\n<p>First overall impressions are quite good. The good stuff:<\/p>\n\n\n\n<ul><li>Everything seems to work out-of-the-box with Ubuntu Hardy.<\/li><li>You can customize the configuration when you order it, so you don&#8217;t have to pay (money and power wise) for stuff you do not need. This includes the Operating System, so no Microsoft tax (I would probably have gotten a Thinkpad if I could have found a place to buy it without Windows).<\/li><li>The machine feels fairly small, and not too heavy.<\/li><li>The machine feels generally quite fast.<\/li><li>It has 4 USB ports (my old one had only two).<\/li><li>The mains adapter is two-legged with the cord on top, so should fit everywhere (for some reason it is quite common to get three-legged plugs which only fit in some sockes, and with a bent cord so it only fits at the ends of a multi-connector extension cable).<\/li><\/ul>\n\n\n\n<p>Some bad points:<\/p>\n\n\n\n<ul><li>There is no DVI-B output (only VGA). A bit sad, since I will use it with a big external monitor maybe 90% of the time.<\/li><li>Keyboard feels a bit uncomfortable (but then all laptop keybords do, I mostly use an external USB keyboard and mouse).<\/li><li>Fan tends to spin up and down all the time.<\/li><li>The machine seems to run quite hot.<\/li><\/ul>\n\n\n\n<p>Zepto (<a href=\"http:\/\/www.zepto.dk\/\">www.zepto.dk<\/a>) is a Danish company I believe, but it seems they deliver to several other contries as well.<\/p>\n\n\n\n<h4>Installation<\/h4>\n\n\n\n<p>I first went into the BIOS to see what was there. I only made a few changes:<\/p>\n\n\n\n<ul><li>Advanced \/ Installed OS: Changed from &#8220;WinXP&#8221; to &#8220;Other&#8221;.<\/li><li>Advanced \/ Large disk access mode: Changed from &#8220;DOS&#8221; to &#8220;Other&#8221;.<\/li><\/ul>\n\n\n\n<p>Not sure exactly what these do, or if the changes even have any effect\u2026<\/p>\n\n\n\n<p>Next, I went on to install Ubuntu Hardy. I choose the 64-bit version. Let&#8217;s face it, the 32-bit days are over, some people also ran DOS on their shiny new 386 computers back then. Besides, I need the 64-bit capabilities for some of my projects. Java and Flash Firefox plugins will suffer&#8230; I will probably install a 32-bit KVM guest later just to get the internet banking working.<\/p>\n\n\n\n<p>For some reason I hate juggling with CDs\/DVDs, so I always do a network install. The BIOS was already configured to boot from network.<\/p>\n\n\n\n<p>To do a network installation, I use another existing linux host which I set up as follows:<\/p>\n\n\n\n<ol><li>Connect an ethernet cross-cable from a spare ethernet port to the machine to be installed.<\/li><li><code>sudo apt-get install dhcp3-server<\/code><\/li><li>Edit <code>\/etc\/dhcp3\/dhcpd.conf<\/code>, add this: <br>   <code>&nbsp;&nbsp;&nbsp;&nbsp;subnet 10.10.0.0 netmask 255.255.255.0 {<\/code><br><code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;range 10.10.0.10 10.10.0.245;<\/code><br>                   <code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;option routers 10.10.0.1;<\/code><br>   <code>&nbsp;&nbsp;&nbsp;&nbsp;}<\/code><br>   <code>&nbsp;&nbsp;&nbsp;&nbsp;filename=\"pxelinux.0\";<\/code><\/li><li><code>sudo ifconfig eth0 10.10.0.1 netmask 255.255.255.0<\/code><\/li><li><code>sudo \/etc\/init.d\/dhcp3-server start<\/code><\/li><li><code>sudo apt-get install tftpd-hpa<\/code><\/li><li><code>sudo sh -c 'echo 1 &gt; \/proc\/sys\/net\/ipv4\/ip_forward '<\/code><\/li><li>Set up reverse route in main router\/firewall (this is needed so that when the machine to be installed uses a 10.10.0.x address to contact the Internet, the ADSL router will know how to route return packets back through the helper host to the machine).<\/li><li>Download these files from http<code>:\/\/mirror.uni-c.dk\/pub\/ubuntu\/dists\/hardy\/main\/installer-amd64\/20070308ubuntu40\/images\/netboot\/<\/code> into <code>\/var\/lib\/tftp-boot\/<\/code>:<br><code>&nbsp;&nbsp;&nbsp;&nbsp;pxelinux.0<br>&nbsp;&nbsp;&nbsp;&nbsp;ubuntu-installer\/amd64\/initrd.gz<br>&nbsp;&nbsp;&nbsp;&nbsp;ubuntu-installer\/amd64\/linux<br>&nbsp;&nbsp;&nbsp;&nbsp;ubuntu-installer\/amd64\/boot-screens\/f7.txt<br>&nbsp;&nbsp;&nbsp;&nbsp;ubuntu-installer\/amd64\/boot-screens\/f9.txt<br>&nbsp;&nbsp;&nbsp;&nbsp;ubuntu-installer\/amd64\/boot-screens\/boot.txt<br>&nbsp;&nbsp;&nbsp;&nbsp;ubuntu-installer\/amd64\/boot-screens\/f6.txt<br>&nbsp;&nbsp;&nbsp;&nbsp;ubuntu-installer\/amd64\/boot-screens\/f5.txt<br>&nbsp;&nbsp;&nbsp;&nbsp;ubuntu-installer\/amd64\/boot-screens\/f4.txt<br>&nbsp;&nbsp;&nbsp;&nbsp;ubuntu-installer\/amd64\/boot-screens\/f1.txt<br>&nbsp;&nbsp;&nbsp;&nbsp;ubuntu-installer\/amd64\/boot-screens\/f2.txt<br>&nbsp;&nbsp;&nbsp;&nbsp;ubuntu-installer\/amd64\/boot-screens\/f10.txt<br>&nbsp;&nbsp;&nbsp;&nbsp;ubuntu-installer\/amd64\/boot-screens\/f8.txt<br>&nbsp;&nbsp;&nbsp;&nbsp;ubuntu-installer\/amd64\/boot-screens\/f3.txt<br>&nbsp;&nbsp;&nbsp;&nbsp;pxelinux.cfg\/default<\/code><\/li><\/ol>\n\n\n\n<p>With these preparations done, just boot the new machine to be installed. It will boot from network into the installer and download everything needed to finish the install.<\/p>\n\n\n\n<h4>Customization<\/h4>\n\n\n\n<p>After installation, I did some customization to get the machine into a comfortable state for me to work on:<\/p>\n\n\n\n<ul><li>Install some extra programs:<br><code>&nbsp;sudo&nbsp;apt-get&nbsp;install&nbsp;fvwm&nbsp;build-essentials&nbsp;emacs21&nbsp;gnus&nbsp;emacs-goodies-el&nbsp;xchat<\/code><br><code>&nbsp;&nbsp;&nbsp;&nbsp;sudo&nbsp;apt-get&nbsp;install&nbsp;twinkle&nbsp;imagemagick&nbsp;gnus-doc&nbsp;emacs21-common-non-dfsg&nbsp;liferea<\/code><br><code>&nbsp;&nbsp;&nbsp;&nbsp;sudo&nbsp;apt-get&nbsp;build-dep&nbsp;mysql-server-5.0<\/code><\/li><li>Setup the X server for dual-head operation, fix the useless caps lock key to be a control key, and disable Ctrl-Alt-Backspace killing the session:<br><code>&nbsp;&nbsp;&nbsp;&nbsp;--- xorg.conf 2008\/06\/05 15:16:01 1.1<\/code><br><code>&nbsp;&nbsp;&nbsp;&nbsp;+++ xorg.conf 2008\/06\/05 19:36:38 1.2<\/code><br><code>&nbsp;&nbsp;&nbsp;&nbsp;@@ -20,6 +20,7 @@<\/code><br><code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Option \"XkbRules\" \"xorg\"<\/code><br><code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Option \"XkbModel\" \"pc105\"<\/code><br><code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Option \"XkbLayout\" \"us\"<\/code><br><code>&nbsp;&nbsp;&nbsp;&nbsp;+&nbsp;&nbsp;Option \"XkbOptions\" \"ctrl:nocaps\"<\/code><br><code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;EndSection<\/code><br><br><code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Section \"InputDevice\"<\/code><br><code>&nbsp;&nbsp;&nbsp;&nbsp;@@ -30,19 +31,35 @@<\/code><br><code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Section \"Device\"<\/code><br><code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Identifier \"Configured Video Device\"<\/code><br><code>&nbsp;&nbsp;&nbsp;&nbsp;+&nbsp;&nbsp;Option \"Monitor-LVDS\" \"Internal Panel\"<\/code><br><code>&nbsp;&nbsp;&nbsp;&nbsp;+&nbsp;&nbsp;Option \"Monitor-VGA\" \"External VGA Monitor\"<\/code><br><code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;EndSection<\/code><br><br><code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Section \"Monitor\"<\/code><br><code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Identifier \"Configured Monitor\"<\/code><br><code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;EndSection<\/code><br><br><code>&nbsp;&nbsp;&nbsp;&nbsp;+Section \"Monitor\"<\/code><br><code>&nbsp;&nbsp;&nbsp;&nbsp;+&nbsp;&nbsp;Identifier \"Internal Panel\"<\/code><br><code>&nbsp;&nbsp;&nbsp;&nbsp;+EndSection<\/code><br><code>&nbsp;&nbsp;&nbsp;&nbsp;+<\/code><br><code>&nbsp;&nbsp;&nbsp;&nbsp;+Section \"Monitor\"<\/code><br><code>&nbsp;&nbsp;&nbsp;&nbsp;+&nbsp;&nbsp;Identifier \"External VGA Monitor\"<\/code><br><code>&nbsp;&nbsp;&nbsp;&nbsp;+&nbsp;&nbsp;Option \"RightOf\" \"Internal Panel\"<\/code><br><code>&nbsp;&nbsp;&nbsp;&nbsp;+EndSection<\/code><br><code>&nbsp;&nbsp;&nbsp;&nbsp;+<\/code><br><code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Section \"Screen\"<\/code><br><code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Identifier \"Default Screen\"<\/code><br><code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Monitor \"Configured Monitor\"<\/code><br><code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Device \"Configured Video Device\"<\/code><br><code>&nbsp;&nbsp;&nbsp;&nbsp;+&nbsp;&nbsp;SubSection \"Display\"<\/code><br><code>&nbsp;&nbsp;&nbsp;&nbsp;+&nbsp;&nbsp;&nbsp;&nbsp;Depth 24<\/code><br><code>&nbsp;&nbsp;&nbsp;&nbsp;+&nbsp;&nbsp;&nbsp;&nbsp;Virtual 3040 1200<\/code><br><code>&nbsp;&nbsp;&nbsp;&nbsp;+&nbsp;&nbsp;EndSubSection<\/code><br><code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;EndSection<\/code><br><br><code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Section \"ServerLayout\"<\/code><br><code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Identifier \"Default Layout\"<\/code><br><code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Screen \"Default Screen\"<\/code><br><code>&nbsp;&nbsp;&nbsp;&nbsp;+&nbsp;&nbsp;Option \"DontZap\" \"on\"<\/code><br><code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;EndSection<\/code><\/li><li>Copy over my old homedir to get customizations included. I have a lot of those, and seems they all basically work! That&#8217;s pretty good considering that I copied from 32-bit into 64-bit linux. I did had to tweak my FVWM configuration slightly, since apparently screen 0 and 1 are reversed compared to my old setup.<\/li><\/ul>\n\n\n\n<p>That&#8217;s about it, I think. MySQL server 6.0 full &#8220;make&#8221; (<code>.\/configure --plugins=max<\/code>) runs in 7 minutes, which is quite respectable (my old laptop spent I think over 25 minutes on that).<\/p>\n","protected":false},"excerpt":{"rendered":"<p>So I got a new laptop, a Zepto Znote 6024W. I got it with 2GB of RAM, a 7200RPM 120GB harddisk, 1440&#215;900 screen, 2.4GHz Intel Core Duo CPU, and Intel Pro\/Wireless 4965AGN. First overall impressions are quite good. The good stuff: Everything seems to work out-of-the-box with Ubuntu Hardy. You can customize the configuration when&hellip; <a class=\"more-link\" href=\"https:\/\/knielsen-hq.org\/w\/zepto-znote-6024w-laptop\/\">Continue reading <span class=\"screen-reader-text\">Zepto Znote 6024W laptop<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[1],"tags":[11],"_links":{"self":[{"href":"https:\/\/knielsen-hq.org\/w\/wp-json\/wp\/v2\/posts\/37"}],"collection":[{"href":"https:\/\/knielsen-hq.org\/w\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/knielsen-hq.org\/w\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/knielsen-hq.org\/w\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/knielsen-hq.org\/w\/wp-json\/wp\/v2\/comments?post=37"}],"version-history":[{"count":10,"href":"https:\/\/knielsen-hq.org\/w\/wp-json\/wp\/v2\/posts\/37\/revisions"}],"predecessor-version":[{"id":48,"href":"https:\/\/knielsen-hq.org\/w\/wp-json\/wp\/v2\/posts\/37\/revisions\/48"}],"wp:attachment":[{"href":"https:\/\/knielsen-hq.org\/w\/wp-json\/wp\/v2\/media?parent=37"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/knielsen-hq.org\/w\/wp-json\/wp\/v2\/categories?post=37"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/knielsen-hq.org\/w\/wp-json\/wp\/v2\/tags?post=37"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}