Translate
Cisco Systems, which owns the WebEx Web conferencing service, announced Tuesday at the GSMA Mobile World Congress 2009 here that it is making a version of its WebEx client software available to several smartphones including Research In Motion's BlackBerry Bold, BlackBerry Curve 8900, and BlackBerry Storm.
It will also be available for the Nokia E71, Nokia E75, Nokia N97, and other Nokia E series and N series devices, as well as for the Samsung Blackjack II. The new functionality allows smartphone users to participate in Web and audio conference calls right from their mobile devices. The company already offers the capability on the Apple iPhone 3G.
And the application, which is free for all WebEx users, has been downloaded more than 50,000 times, making it one of Apple's top 10 business apps on its App Store. "Cell phone users will no longer be second class citizens," said Doug Dunnerline, senior vice president and general manager of Cisco's collaboration software group.
Read more...
a Favicon is a small graphic associated with a website. Most graphical browser will make use of it. The favicon of the website will appear beside the url and in a multitabbed browser, the favicon will appear beside each of the tab title.
By default, a blog in blogger have a favicon like this , but you can change this to any other image that you want. There are websites that offer you some ready to use ico files, iconj is one of them. You can either go the websites, and choose the one that they offer or create a new one by your own. if you choose to create a new one, you must create a new image file (it could be gif, png) of which size is 16x16 or 32x32 the larger the file, the longer it takes to load it. Then you need to find a place to host the image, so it could be accessed from the internet.
If you're done using whatever way (choosing an existing one or creating a new one) the next thing you need to do is to edit the template code of your blog.
First go to the Layout > Edit HTML. You need to add some code to the area between the but after the
<!-- custom favicon code -->
<link href="http://binusmaya.110mb.com/ns.PNG" rel="shortcut icon" type="image/x-icon">
<link href="http://binusmaya.110mb.com/ns.ico" rel="icon" type="image/gif">
<!-- end of custom favicon code -->
Remember to change the href='' part to the url of your ico file location.
Read more...
Shell redirection operators are used to direct a program's input and output. These operators can be used to feed a program input from another application, from the command line, or even from another file. Those operators are >, >>, and < (there's another redirection operator << which is known as here operator. use this to tell the shell when to stop reading input).
The > operator is known as standard output redirection operator. When used with a program that display output, the output can be redirected to somewhere else than the standard output. For example when used with the cat command (cat is short for concatenate, is used to print one or more files to your display), the cat command will copy a file by sending its output to another file
cat first.txt > second.txt
The output of the example above will be sent to the second.txt in the current directory.
The < (standard input) redirection operator feeds information to a program as follows
cat <>
In the example above, the cat command reads the contents of the file.txt and sends its content to the standart display.
The >> redirection operator is used to append the output of an executed command to a file. The example bellow will redirect the output to the file.txt. If the file.txt doesn't exist, it will be created. If it exists, the output will be appended to the end of the file.txt.
cat first.txt >> file.txt
The standard input and output have assigned file numbers in the shell. The standard input uses the number 0, the standar output uses the number 1 while another type of output is standard error uses the number 2. Most linux command report the error to the standard error output. You can redirect the error reports to a file by doing so:
cat first.txt >> file.txt 2 >> error.log
Read more...
To search for files or directories, specify a search path and search pattern on the command line. For example:
find /usr -name *emacs -xdev
The example above will search the /usr directory for the emacs editoer and other and other files locates th emacs program and its manual page, the -xdev option tell the command to search only your local machine (if there's any remotely mounted file system, it will be searched as well without the -xdev option and this will take a long tame).
another example would be finding files in /usr/bin directory which are accessed witihin the last 30 days. To do this, use the -atime option of the find command like so:
find /usr/bin -type f -atime +30 -print
the -type in the example above specifies that we want to find files (as opposed to a directory, symlink, device and so on).
You can also use the locate command to search for files and directories. For example, to look for any icons of the emacs text editor, use the locate command like this:
locate *icon*emacs*
The locate command searces a database called locatedb. This database is created with the updatedb command. System managers generally use the cron daemon and an updatedb crontab entry to keep the locate locatedb updated and accurate.
Read more...
There are two kinds of links in Linux, hard and soft links.
Soft Links
a soft link is a very small file that you create in a directory. When you execute a soft link file, it will behave as you were executing the original file. But, if you delete the original file the soft link file will be nothing and useless. Think of a soft link as a call forwarding to the original file. To create a soft link, use the ln -s command. The following example will create a softlink file to originalfile.
ln -s originalfile softlink
Soft links will work across networked file systems, mounted devices, other file systems and directories.
Hard Links
a hard link is different from a soft link in the way that if you delete the original file that a hard link is pointing to, the hard link file will remain usefull. Because when you create a hard link to a file, you are creating another directory listing to point to the same inode. The only way you can delete any file on the file system is by deleting all the hard links to that file. If you make changes to the original file, all the links will reflect that change (because they are all pointing to the same inode). Use the ln command to create a hard link (without the -s option)
ln orignalfile hardlink
hard links will only work to a file on the same disk and partition as the original.
Read more...
Man
man command is used to display the manual pages of a command, file or other Linux function (actually the manual pages are displayed using a program called less). To read a manual page of a program or command just pass the program name as the argument of the man command. The following example will show you the manual pages of the cat program
man cat
The Manual pages are located in the /usr/man directory
Whatis
Use the whatis command if you're unsure about what a program does. The whatis command will give you a short synopsis about the specified program. For example, if you issue the command whatis cal, it will return the following result
cal (1) - dispays a calendar and the date of easter
The synopsis is extracted from the command's manual page and is stored in a database called whatis. The database is located under the /usr/man directory and is built each day by a crontab script run each week by the makewhatis.cron script int /etc/cron.weekly directory (this script runs the makewhatis program that is found under /usr/sbin directory).
apropos
apropos command uses the whatis database to display all related mathes of the command's name. Use apropos to find related command or actions for programs installed on your system. For example, issuing the command apropos bell returns the following result (the output may be different from yours, it depends on the distribution you use)
beep, flash (3) - Curses bell and screen flash routines
bell (n) - Rings a display's bell
Read more...
shutdown -r now
You can change the now keyword to a number specifying the time in seconds when you want Linux to reboot. another options is the -h or halt to shutdown you system. as with the -r option, -h also followed by another option specifying the time when you want Linux to shut down.
shutdown -h now
You can also use the poweroff command to turn off your system immediately. You can execute poweroff without becoming the root.
Read more...
as you can accidentally delete system files or any other important files.
To create a user you need the root privilege (in some distributions you may need to prepend the sudo command everytime you want to execute a command that need root's privilege). if you're not root, you can become root with the su, you'll will be prompted to enter the root password.
if you're root. you can add a user with the command
useradd mike
that command will create a new user named mike, the useradd command will add a user entry in a file called passwd in the /etc directory.
mike:x:1003:1003::/home/mike:/bin/sh
Some versions of useradd aks you for details about hte user, such as the user's full name and password. if yours doesn't, you can change a user password by using the passwd command. Again, you need a root privilege, except you're changing your own password.
passwd amy
it will then propmts you for a new pasword, and then asks you to type it again to verify the change. if you've successfully change the user's password, it will be reflected in /etc/passwd entry as an encrypted string.
Read more...
Copyright © 2009 Network and Software
Design by Design Disease for Smashing Magazine | Blogger Templates by Blog and Web