Sabtu, 13 Agustus 2011
Selasa, 09 Agustus 2011
Kamis, 28 Juli 2011
Google Code Gains Native Git Support
Google has added native support for Git, the distributed revision control system developed by Linus Torvalds, to its Google Code project hosting site
Comments (0)
You must be logged in to post a comment. Please register if you do not have an account yet.

Zinio Adds Full Froyo and Gingerbread Support, Now Available for All Android Devices
Earlier this summer, Zinio released its reader app for a small handful of Android tablets, bringing more than 20,000 full-format magazine titles to the Motorola Xoom, Samsung Galaxy Tab 10.1, and a half dozen other slates. Now, the app is available for all current Android 2.2 Froyo and 2.3 Gingerbread devices, including tablets and smartphones. At launch, you'll have access to a dozen free current issues, including ESPN The Magazine, Maxim, and Robb Report.
Comments (0)
You must be logged in to post a comment. Please register if you do not have an account yet.

Selasa, 26 Juli 2011
VP8 Gallium3D Support In Mesa Is Being Worked On
Besides pipe-video landing in Mesa, there's some more good news to report when it comes to accelerated video playback over Mesa/Gallium3D. There's a VP8 state tracker for this Google format that's actively being developed...
Comments (0)
You must be logged in to post a comment. Please register if you do not have an account yet.

Minggu, 24 Juli 2011
Installing Lighttpd With PHP5 And MySQL Support On CentOS 5.6
Lighttpd is a secure, fast, standards-compliant web server designed for speed-critical environments. This tutorial shows how you can install Lighttpd on a CentOS 5.6 server with PHP5 support (through FastCGI) and MySQL support.
Comments (0)
You must be logged in to post a comment. Please register if you do not have an account yet.

Rabu, 06 Juli 2011
Installing Lighttpd With PHP5 And MySQL Support On Ubuntu 11.04
Lighttpd is a secure, fast, standards-compliant web server designed for speed-critical environments. This tutorial shows how you can install Lighttpd on an Ubuntu 11.04 server with PHP5 support (through FastCGI) and MySQL support.
Selasa, 05 Juli 2011
Installing Nginx With PHP5 (And PHP-FPM) And MySQL Support On Ubuntu 11.04
Nginx (pronounced "engine x") is a free, open-source, high-performance HTTP server. Nginx is known for its stability, rich feature set, simple configuration, and low resource consumption. This tutorial shows how you can install Nginx on an Ubuntu 11.04 server with PHP5 support (through PHP-FPM) and MySQL support.
Selasa, 28 Juni 2011
VIA OpenChrome KMS Support Is Nearly Done
James Simmons has written a status update to the OpenChrome development list concerning his ongoing work towards enabling kernel mode-setting (KMS) support for VIA hardware with this community-maintained VIA Linux project...
Senin, 30 Mei 2011
Linux Mainline Contains All the Xen Code Bits for Dom0 and DomU Support
After a relatively long road traveled with a few bumps along the way, as of yesterday, Linus's mainline tree (2.6.39+) contains literally every component needed for Linux to run both as a management domain kernel(Dom0) and a guest(DomU)...
More at Wim Coekaerts' Oracle blog

Jumat, 27 Mei 2011
OpenGL ES Support For QEMU Emulator
One of the items brought up this week at UDS Budapest was about providing OpenGL / OpenGL ES support for QEMU guests. The need for OpenGL ES 2.0 support in QEMU guests has come up since it's used in emulating Maemo / MeeGo for development environments. This would also make it possible to use Canonical's Unity desktop in a virtualized environment...
Senin, 23 Mei 2011
Installing Apache2 With PHP5 And MySQL Support On Ubuntu 11.04 (LAMP)
LAMP is short for Linux, Apache, MySQL, PHP. This tutorial shows how you can install an Apache2 webserver on an Ubuntu 11.04 server with PHP5 support (mod_php) and MySQL support.
Read more at HowtoForge
Selasa, 17 Mei 2011
Meshcentral.com - Added Android/x86 support
Meshcentral.com, our web based management site already supports a lot of different devices. Yesterday we added a new Android/x86 port of the mesh agent to the long list of supported devices. One of my friends at Intel was working on getting Android working on a standard Intel tablet and since that was working pretty well, I figured I would try my hand at downloading the Android kernel and perform a x86 compile of the mesh agent. I had compiled for Android/ARM in the past so the x86 port was very quick and works perfectly.
You can get the new port by going to the "account" tab and clicking the install button.
Comments (0)
You must be logged in to post a comment. Please register if you do not have an account yet.

Sabtu, 30 April 2011
Installing Lighttpd With PHP5 And MySQL Support On OpenSUSE 11.4
Lighttpd is a secure, fast, standards-compliant web server designed for speed-critical environments. This tutorial shows how you can install Lighttpd on an OpenSUSE 11.4 server with PHP5 support (through FastCGI) and MySQL support.
I do not issue any guarantee that this will work for you!
In this tutorial I use the hostname server1.example.com with the IP address 192.168.0.100. These settings might differ for you, so you have to replace them where appropriate.
First we install MySQL 5 like this:
yast2 -i mysql mysql-client mysql-community-serverThen we create the system startup links for MySQL (so that MySQL starts automatically whenever the system boots) and start the MySQL server:
chkconfig -f --add mysql/etc/init.d/mysql start
To secure the MySQL installation, run:
mysql_secure_installationNow you will be asked several questions:
server1:~ # mysql_secure_installation
NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MySQL
SERVERS IN PRODUCTION USE! PLEASE READ EACH STEP CAREFULLY!
In order to log into MySQL to secure it, we'll need the current
password for the root user. If you've just installed MySQL, and
you haven't set the root password yet, the password will be blank,
so you should just press enter here.
Enter current password for root (enter for none): <-- ENTER
OK, successfully used password, moving on...
Setting the root password ensures that nobody can log into the MySQL
root user without the proper authorisation.
Set root password? [Y/n] <-- Y
New password: <-- fill in your desired MySQL root password
Re-enter new password: <-- confirm that password
Password updated successfully!
Reloading privilege tables..
... Success!
By default, a MySQL installation has an anonymous user, allowing anyone
to log into MySQL without having to have a user account created for
them. This is intended only for testing, and to make the installation
go a bit smoother. You should remove them before moving into a
production environment.
Remove anonymous users? [Y/n] <-- Y
... Success!
Normally, root should only be allowed to connect from 'localhost'. This
ensures that someone cannot guess at the root password from the network.
Disallow root login remotely? [Y/n] <-- Y
... Success!
By default, MySQL comes with a database named 'test' that anyone can
access. This is also intended only for testing, and should be removed
before moving into a production environment.
Remove test database and access to it? [Y/n] <-- Y
- Dropping test database...
... Success!
- Removing privileges on test database...
... Success!
Reloading the privilege tables will ensure that all changes made so far
will take effect immediately.
Reload privilege tables now? [Y/n] <-- Y
... Success!
Cleaning up...
All done! If you've completed all of the above steps, your MySQL
installation should now be secure.
Thanks for using MySQL!
server1:~ #
Now your MySQL setup should be secured.
Lighttpd is available as an OpenSUSE package, therefore we can install it like this:
yast2 -i lighttpdThen we create the system startup links for Lighttpd (so that Lighttpd starts automatically whenever the system boots) and start it:
chkconfig -f --add lighttpd/etc/init.d/lighttpd start
Now direct your browser to http://192.168.0.100, and you should see that Lighttpd delivers a page (well, it's a 404 page because there's no index file in Lighttpd's document root, but at least this means that Lighttpd is working ok):
Lighttpd's default document root is /srv/www/htdocs on OpenSUSE, and the configuration file is /etc/lighttpd/lighttpd.conf.
We can make PHP5 work in Lighttpd through FastCGI. There's a FastCGI package for PHP5 available on OpenSUSE, php5-fastcgi, which we install like this:
yast2 -i php5-fastcgiInstalling Lighttpd With PHP5 And MySQL Support On OpenSUSE 11.4 - Page 2
Jumat, 29 April 2011
Installing Cherokee With PHP5 And MySQL Support On Debian Squeeze
Cherokee is a very fast, flexible and easy to configure Web Server. It supports the widespread technologies nowadays: FastCGI, SCGI, PHP, CGI, TLS and SSL encrypted connections, virtual hosts, authentication, on the fly encoding, load balancing, Apache compatible log files, and much more. This tutorial shows how you can install Cherokee on a Debian Squeeze server with PHP5 support (through FastCGI) and MySQL support.
I do not issue any guarantee that this will work for you!
In this tutorial I use the hostname server1.example.com with the IP address 192.168.0.100. These settings might differ for you, so you have to replace them where appropriate.
First we install MySQL 5 like this:
apt-get install mysql-server mysql-clientYou will be asked to provide a password for the MySQL root user - this password is valid for the user root@localhost as well as root@server1.example.com, so we don't have to specify a MySQL root password manually later on:
New password for the MySQL "root" user: <-- yourrootsqlpassword
Repeat password for the MySQL "root" user: <-- yourrootsqlpassword
Cherokee is available as a Debian package, therefore we can install it like this:
apt-get install cherokeeNow direct your browser to http://192.168.0.100, and you should see the Cherokee placeholder page:
Cherokee can be configured through a web-based control panel which we can start as follows:
cherokee-admin -b(By default cherokee-admin binds only to 127.0.0.1 (localhost), which means you can only connect to it from the same system. With the -b parameter you can specify the network address to listen to. If no IP is provided, it will bind to all interfaces.)
Output should be similar to this one:
root@server1:~# cherokee-admin -bLogin:
User: admin
One-time Password: 1Kkcc58atG8DNIM7
Web Interface:
URL: http://localhost:9090/
[11/04/2011 12:14:18.622] (error) rrd_tools.c:120 - Could not find the rrdtool binary.
Cherokee Web Server 1.0.8 (Jan 11 2011): Listening on port ALL:9090, TLS
disabled, IPv6 enabled, using epoll, 4096 fds system limit, max. 2041
connections, caching I/O, single thread
You need the username and password to log into the web interface which can be found on http://192.168.0.100:9090/:
This is how the web interface looks:
To stop cherokee-admin, type CTRL+C on the shell.
We can make PHP5 work in Cherokee through FastCGI. Fortunately, Debian provides a FastCGI-enabled PHP5 package which we install like this:
apt-get install php5-cgiWe must modify /etc/php5/cgi/php.ini and uncomment the line cgi.fix_pathinfo=1:
vi /etc/php5/cgi/php.ini[...]; cgi.fix_pathinfo provides *real* PATH_INFO/PATH_TRANSLATED support for CGI. PHP's; previous behaviour was to set PATH_TRANSLATED to SCRIPT_FILENAME, and to not grok; what PATH_INFO is. For more information on PATH_INFO, see the cgi specs. Setting; this to 1 will cause PHP CGI to fix its paths to conform to the spec. A setting; of zero causes PHP to behave as before. Default is 1. You should fix your scripts; to use SCRIPT_FILENAME rather than PATH_TRANSLATED.; http://php.net/cgi.fix-pathinfocgi.fix_pathinfo=1[...]
Then we restart Cherokee:
/etc/init.d/cherokee restartInstalling Cherokee With PHP5 And MySQL Support On Debian Squeeze - Page 2
Rabu, 27 April 2011
KDE Version 4.6.0 Released - Integrates Support For Mobile Devices
The notable enhancements you will find in KDE 4.6.0 are as follows -
A new Activities system has been introduced in the KDE Plasma Workspaces. This helps you to demarcate your activities on computer into different categories like Work, Home, Recreation, Web browsing, etc.Dolphin file manager gets Faceted Browsing - This allows Dolphin to give you better search results by reading the meta data of files.KDE games have been spruced up. Gwenview (The image viewer) and KSnapshot (The screen capture tool) have received Social Networking capabilities. This means you will be able to share your snapshots and pictures to Flickr, Twitter, Facebook etc from within these tools.KDE in 4.6.0 gains "Mobile build target" which allows for easier deployment of applications on mobile platforms.
As of now experimental builds of KDE applications for various mobile platforms like MeeGo, MS Windows Mobile and Symbian can be found on the web but are currently unsupported.
With the mobile build target capabilities gained by KDE applications, this is bound to change for the better.
You can read the official announcement from KDE for the full details.
And if you are itching to try out KDE 4.6.0, I would strongly recommend a Linux distribution which has a rolling release because these Linux distributions bring changes far more quicker than traditional Linux distributions which follow a 6 month release schedule.Arch Linux, and PCLinuxOS support a rolling release.