Air Show Photos


Start Over

This free script provided by
By Lora Malunk

December 28, 2009

LTSP-5 step by step

Ubuntu 8.04 you will notice that it is very easy to get going in LTSP 5. Most of the configuration is automatically done for you. Install the Ubuntu 8.04 Desktop CD. You must have a graphical interface running on the server to be provided for the clients. Once you have installed the Desktop, be sure your network is set to operate on a static IP Address. Next you will need to install several programs required for the ltsp setup.
First you must install ltsp-server

$ sudo apt-get install ltsp-server-standalone openssh-server

Create your Thin Client environment on the server with this command:

$ sudo ltsp-build-client

Update the Desktop System



$ sudo apt-get update
$ sudo apt-get upgrade

Configure DHCP
You will supply IP Addresses to the thin clients using DHCP. The file you want to edit is /etc/ltsp/dhcpd.conf. Note this is not the normal dhcpd.conf file that you would edit, this is a special file for LTSP only.
Here is a partial example file. The first line ensures that clients will use this DHCP server:
authoritative;
The subnet is declared with the network and netmask:
subnet 192.168.0.0 netmask 255.255.255.0 {
The next line which is indented is the range that your DHCP server will supply. So on this network example you could have static IP Addresses from 192.168.0.1-192.168.0.200 and then the range will define what dynamic IPs will be supplied by the DHCP server.
range 192.168.0.1 192.168.0.200;

Define the broadcast address:
option broadcast-address 192.168.0.255;
The optional router will also be the gateway for your network:
option routers 192.168.0.254;
Now you can set up individual diskless workstations. In these examples the hostname for the workstation is declared:
host ws001 {
Because you want to declare these hosts it is important that you modify your /etc/hosts file so the workstation is listed there. Here the workstation number is tied to the IP Address on the network so that it is easy to trouble shoot as you know right where to go to fix either a network problem or a hardware issue.

The hardware MAC address for each network card is listed so that you can tie the IP to a specific diskless workstation.
Example :
hardware ethernet 00:13:90:00:D7:8F;
Fixed-address 192.168.7.205;

Finally a location to get the image for the diskless workstation is provided.
filename "/ltsp/i386/pxelinux.0";

Summary that's dhcp configuration is :
#
# Default LTSP dhcpd.conf config file.
#
authoritative;
subnet 192.168.0.0 netmask 255.255.255.0 {
range 192.168.0.1 192.168.0.200;
option broadcast-address 192.168.0.255;
option routers 192.168.0.254;

host ws001 {
hardware ethernet 00:13:90:00:D7:8F (example);
fixed-address 192.168.0.1;
filename "/ltsp/i386/pxelinux.0";
}

host ws247 {
hardware ethernet 00:13:90:00:67:AF (example);
fixed-address 192.168.0.2;
filename "/ltsp/i386/pxelinux.0";


When you have finished restart the server. Run these commands to update your ssh keys.

$ sudo ltsp-update-sshkeys
$ sudo ltsp-update-image

Be sure to do it in that order.
read more...

Beautiful Wallpaper and Themes Linux

If you want have beautiful wallpaper and themes linux in your desktop. My searching by google found this this site for beautiful wallpaper . You can find interesting themes linux in this site . So , congrotulation have beautiful Operating Sytem Free with Linux.
read more...

December 11, 2009

Make downloaded file in blogger

Sometimes, you want share file to others that's file can be downloaded. To do this, first you must have file to be share in webhost share file like box.net, ziddu etc. Assumption you have member's in webhost share file (to example is box.net). Step by step to share file in blogger is like this :
  1. Login in your webhost share file
  2. Upload your file in webhost
  3. Login in your blogger, choice tab Posting and New Post
  4. Write format and name file will be share. That file must be same with file in the webhost share.
Example










5. Back to webhost share, click Right mouse in the file will be share, click menu Link to this file








6. Copy web address link file that create your webhost, like this :







7. See step 4, blog file that you have web address link in step 6. Click ikon Link in the menu and paste in the windows web address link that you have, like this :









8. Do step 7 again for another file that you will be share
9. Open tab edit html file in the step 7, you can see windows like this :









10. Block and Copy that script html
11. Login in your blogger, choice tab Layout, and choice Edit HTML. Copy the script html at the position that you want it at the body of blog. Example :








read more...

December 04, 2009

Change themes blogger

If you want to know how to add or change themes in blogger, make your's blog more beautiful or interesting. There is tutorial step by step :
  • Open a new tab or window and go to Blogger.com.
  • Log in to the website. If you are already logged in,Click the Manage layout link
  • Now you should see your blog's template. Here you can move sidebar items (called widgets) and add new ones.
  • In the menu, choose edit HTML.





  • When you arrive at the Edit HTML page, it's a good idea to back up your existing template. Click the download full template link to do so.
  • Find the ZIP archive you downloaded from this website and unzip/unrar it.

  • In the folder contained in the archive, there are three files: license.txt, readme.txt and themename.xml .
  • Now you have 2 options.

    • Either open the .xml file in a plain text editor (like Notepad on Windows or bluefish on linux) and copy paste the contents to the edit template field.
    • Or, use the restore template function to upload your new template. This seems illogical, but it's the easiest way to add a new theme.

      Click the browse button and find the .xml file on your hard drive. Hit the upload button.

  • Don't forget to save your template.
read more...