-
04.09.10 - Share files over a network with Linux and NFS
An easy way to share files trough a network between Linux machines is using the NFS (Network File System) protocol. You only need to know the IP address of the network computers and to install the NFS server/client into each computer. Like others server-client systems, one computer will be the [...]
-
04.06.10 - Install Java (Sun) in Ubuntu
In a new Ubuntu installation, the Java version may not be of Sun Microsystems (probably will be Openjdk). Sometimes, that non-official version, can't execute some applets or comes without a library or simply will not execute same as Sun version...To install and activate the Sun Microsystems [...]
-
24.05.10 - Integrate GeSHi with PHP applications
GeSHi (GEneric Syntax HIghlighter) is a popular PHP library for syntax highlighting for multiple programming/markup languages. There are multiple forms for integrate it with our PHP application, one of these is using regular expressions.Warning: GeSHi consumes high processing time, be careful. You [...]
-
24.05.10 - Connect to "eduroam" under Linux
eduroam (Education Roaming) is a secure international roaming service for users in Higher Education. The European eduroam confederation (a confederation of autonomous roaming services) is based on a set of defined organisational and technical requirements that each member of the confederation must [...]
-
06.05.10 - Send and Email with Symfony and Swift Mailer
Symfony 1.4 or 1.3 comes integrated with , we can send an email from every action with the next code:
-
04.05.10 - Find files in Linux
Find files in our Linux system can't be as easy as using the "find" command. Using it we can find any matching expression inserted in the command line. If we want to find a file named "FILE" in the current work directory, we can write the next statement: Also we can use glob type expressions [...]