Flash Game

Thursday, October 27

Synfig

Synfig Studio is a 2D animation software which is designed as powerful industrial-strength solution for creating film-quality animation using a vector and bitmap artwork. It is free and open-source software under the terms of GNU General Public License (GPL).

Synfig Studio eliminates the need to create animation frame-by frame, allowing you to produce 2D animation of a higher quality with fewer people and resources.









More information please visit official website and get download:
click on me

gedit

gedit is a text editor which supports most standard editor features, extending this basic functionality with other features not usually found in simple text editors. gedit is a graphical application which supports editing multiple text files in one window (known sometimes as tabs or MDI).

gedit fully supports international text through its use of the Unicode UTF-8 encoding in edited files. Its core feature set includes syntax highlighting of source code, auto indentation and printing and print preview support.



More information please visit official website and get download:
click on me

simple learn how to create a partition after install new hdd in linux

step1: Create the Partition
The first command we want to run is fdisk /dev/sdb.
To create a new partition enter the command n to create a new partition. This is going to be a primary partition p, and the first partition number 1.
Then want to write the partition table with the new partition just created so enter the command w which writes the new table and exits fdisk.




step 2: Format the partition and create file on new disk
To format the new partition enter the command mkfs -t ext3 /dev/sdb1. This command makes a new files system with the type t ext3 on the /dev/sdb1 partition, this is the first partition on the sdb disk.
That command will make the file system on the sdb drive with extend 3 as the file system type.



step 3: Create the mount point
Run mount -t ext3 /dev/sdb1 /software. To break down this command we run mount with the ext3 filesystem type, the partition /dev/sdb1 to the directory /software.
To check that the partition is properly mounted run df -k which shows us the mounted partitions and the amount of available space.

get started for ubuntu

1.    What is the function the terminal consule in linux
GNOME terminal is a terminal emulation application that you can use to perform the following tasks:
Access unix shell in the GNOME environment. A shell is a program that interprets and executes the commands that you type at a command line prompt. When you start GNOME terminal, the application start the default shell that is specifide in your system account. You can switch to a different shell at many time.

2.    Give a suittable command for every tasks perfomed below :
a)    Find out who is on your host computer : who
b)    Change to your home directory : cd~
c)    See what files are in the current directory : ls
d)     Determine the current directory : pwd
e)    Get more information on a command : info

3.    What is different between
a)    Ls –a
b)    Ls-l
c)    Ls-d
d)    Ls-t



4.    Use man command to explore other linux commands listed in activity 5b.Show the output for  each of the commands in your reports.
Man cp

Man mv

Man rmdir

Whoami
Whereis

Which

Locate

Find
Grep

Mkdir
Ls
Cat
Df
Du
Echo

5.    To explore Linux, type one by one all the commands below In your terminal
a.Who

b. Id

c. Usermod

d. pwd
e. ps

f. cd examples
g. ls

6.    Differentiate the differences between the usage of cd command below.




Sunday, October 23

OpenELEC 1.0 Released

OpenELEC is an embedded Linux distribution that aims to allow people to use their Home Theatre PC (HTPC) in the same manner as any other device attached to your TV - like a DVD player or Sky box. Turn on your box, and OpenELEC is ready and waiting in less than 10 seconds - as fast as some DVD players. A simple remote control is all you will need. On top of that, one need not worry about updating OpenELEC, as the software will self-update automatically when connected to the Internet and an update is available. Installing OpenELEC takes less than 5 minutes and requires zero Linux experience. After that, one need merely add one’s media files and preferred addons, and OpenELEC will “just work.”

OpenELEC is designed specifically to run XBMC - an award-winning multimedia hub platform designed to give you the best access to your media possible. Its add-on architecture allows the user to customize XBMC to his or her preferred look-and-feel in mere seconds and add functionality as required. Once installed, OpenELEC requires less than 130MB of space, but supports a diverse array of hardware platforms including low-power NetTops - an ideal partner given the small size and power requirements of current generation NetTops. “There is no easier way to get a more ‘appliance-like’ feel to XBMC than to use OpenELEC,” said Nathan Betzen, Community/Project Manager for Team XBMC.





Furthermore,you can visit the official website:
click on me


For download:
click on me

Monday, October 10

vi text editor testing



a.     Create a new text file using vi command
Ø  Figure below shown the vi text editor interface(press <i> key to get insert mode)


b.    Type something
Ø  Following the step to insert the content, to check the number of line, press <esc> key get command mode and enter <:number> to achieve show the number line in text file.


   
Ø  As we enter <:number>, it will display the total line that exist in the text.


c.     Save file in user /hone directory
Ø  Get the command mode and enter <:w filename.txt> to save the text file.


Ø  To get comformation, we open the home directory and check it.


d.    Create the second text file and type something
Ø  Following the step to insert the content, to check the number of line, press <esc> key get command mode and enter <:number> to achieve show the number line in text file.



Ø  The total line will be display as figure below shown.


Ø  Make sure the sentence is exist at line 50.


e.     Save file in user /home directory
Ø  Get the command mode and enter <:w filename.txt> to save it.


Ø  To get comformation, we open the home directory and check it.


f.     Make sure that you are in /home directory
Ø  Exit vi test editor back to terminal and enter <pwd> to check current directory.


g.    View the content of user /home directory
Ø  Enter <ls> to view the content that exist in home directory.


h.     Preview 50 lines of output for the first part of the text file
Ø  Get the command mode and enter <:set number> to previes lines in text file.


i.      Discuss the result
Ø  Figure below shown the 50 lines that exist in the text file.


j.      Concatenate both of files to a new file named Combine.txt (example) and display the output
k.     View the content of /home directory
Ø  First exit the vi text editor, then enter <cat file1.txt file2.txt > newfile.txt> to combine both content of the two text file and create a new text file. To make sure the new text file has been created, enter <ls> to view it.


l.      Preview standard output for Combine.txt file
Ø  We had used <more> to view the text file content.



m.   Reverse the data of the file and display the result in Biodata.txt (example)
n.     View the content of /home directory
Ø  Use <tac> to get reverse data from the text file with create a new one text file, and then enter <ls> to see the new text file.


o.    Preview standard output for Biodata.txt file
Ø  We had used <more> to view the text file content.



so, after experiencing the vi text editor, you could found that actually it's easily to use but you must learn the vi coding first before begin  =}