Archive for October, 2007

Linux Howto: Find the most recently changed files (recursively)

Comments (2)

Giant Firewall Runs Linux

“Crossbeam Systems has started shipping a massive chassis-style, “unified threat management” (UTM) system based on an open Linux OS.”

read more | digg story

Related posts:

  1. Windows Developers Begin Slow Defection to Linux
  2. /dev/hello_world: A Simple Introduction to Device Drivers under Linux
  3. Linux developers considering move to Eclipse
  4. Linux Foundation Podcast with Linus Torvalds
  5. Dell: Linux Rolls On
  6. Flipping the Linux switch: Package management 101
  7. Linux Kernel 2.6.22 Released [final]
  8. Linux: Reducing Power Consumption
  9. A Better ‘Digg This’ Button
  10. GMAIL from Linux CLI interface

Comments

Fedora 8 Werewolf (Screenshots)

The release of Fedora 8 (codenamed Werewolf) is due out for release in less than two weeks and comes with a host of new features. Fedora 8 will offer a Codec Buddy for installing audio/video codecs, an open-source Java stack now based upon IcedTea, improved laptop support, the Pulse Audio sound server, remote virtualization support, and much more.

read more | digg story

Related posts:

  1. VMware Killer: Xen With Graphical User Interface On A Fedora 7 Desktop
  2. NVIDIA graphics driver 100.14.19 released
  3. Remote Control Your Computer with Your iPhone
  4. Howto Install Fedora From a USB Flash Key Drive
  5. Fedora Howto: Install From Memory-stick
  6. Xorg 7.3 and 3D Acceleration with Nvidia Cards
  7. Giant Firewall Runs Linux
  8. Fedora Core 6 (codename Zod) released
  9. How to Mount a Remote Filesystem Using SSH and sshfs
  10. Howto install Fedora Core 5 (FC5) from a USB-stick

Comments

Seamless Windows Applications on Ubuntu Linux Using VirtualBox

Innotek Virtual Machine VirtualBox - LinuxInnotek has released the new version 1.5 of their virtual machine software VirtualBox. This release features among other things seamless integration of Windows-based applications in Linux. This means the ability to run windows-only programs and application like Microsoft Office, Adobe Photoshop, Adobe Acrobat, Microsoft Project, Microsoft Dynamics etc. on Linux (Ubuntu, Debian, Fedora, Red hat, Mandriva , openSUSE, etc.) without any complicated and complex setups.

The VirtualBox virtual machine stands out among the current virtual machine software available because most of its parts has been released under GPL. Moreover the project seems very active and the project team produces frequent releases.

Download the new VirtualBox 1.5.2 release here

Related posts:

  1. Top 10 Free Windows 7 Applications
  2. Howto Access via ssh a Virtualbox Guest machine
  3. Xen Howto: Install Windows
  4. Tomcat Performance: Linux faster than Windows
  5. Windows Developers Begin Slow Defection to Linux
  6. X11 for Windows XP and Vista
  7. Howto Install Windows XP / Vista on Xen
  8. Ubuntu Howto: Install Xen
  9. Safari on Linux
  10. Two major Linux distributions released today

Comments (1)

Sony PS3 Cluster (IBM Cell BE)

Dr. Frank Mueller, professor at North Carolina State University, has put together 8 Playstation 3’s into an awesome super computer cluster. The PS3 cluster has incredible processing capabilities and performance wise the PS3 cluster could be compared to low end super computer clusters – and this is for about only 5.000 US $.

Dr. Frank Mueller PS3 cluster website

Related posts:

  1. Browse Faster Using a Local DNS Cache
  2. MySQL Optimization and Performance Tips
  3. Intel Entry Server Board S3000AH: Linux and lm-sensors
  4. Top 10 Free Windows 7 Applications
  5. How package management changed everything
  6. Tomcat Performance: Linux faster than Windows
  7. Crack zip password with fcrackzip
  8. HackerGuide: Crack Password Encrypted Zip-files
  9. Linux Terminal Speed Performance Comparison
  10. What is the coolest thing you can do using Linux that you can’t do with Windows or on a Mac?

Comments

Java and C# Client Server Socket Programming


C# client namespaces
----------------
1.System
2.System.Net.Sockets
3.System.IO;

java packages
--------------
1.java.net
2.java.io

Java server Application

import java.net.*;
import java.io.*;
public class java_server
{
public static void main(String h[])
{
try
{
ServerSocket ss=new ServerSocket(1800);
Socket s=ss.accept();
System.out.println("Client Accepted");
BufferedReader br=new BufferedReader(new
InputStreamReader(s.getInputStream()));
System.out.println(br.readLine());
PrintWriter wr=new PrintWriter(new
OutputStreamWriter(s.getOutputStream()),true);
wr.println("Welcome to Socket Programming");
}catch(Exception e){System.out.println(e);}
}
}

Compile using
javac java_server.java

C# client Application


using System;
using System.Net.Sockets;
using System.IO;
class csharp_client
{
public static void Main(string[] args)
{
try{
TcpClient tc=new TcpClient("server",1800);// in the place of server, enter
your java server's hostname or Ip
Console.WriteLine("Server invoked");
NetworkStream ns=tc.GetStream();
StreamWriter sw=new StreamWriter(ns);
sw.WriteLine("My name is Pramod.A");
sw.Flush();
StreamReader sr=new StreamReader(ns);
Console.WriteLine(sr.ReadLine());
}catch(Exception e){Console.WriteLine(e);}
}

}

Compile using the command
csc /r:System.dll csharp_client.cs

After compilation, run the java server first
java java_server

Then run the c# client application
csharp_client

Related posts:

  1. Sockets Programming in Java
  2. Howto PHP / Java bridge on Debian
  3. Ubuntu Howto: Install Sun Java
  4. Dalvik: How Google routed around Sun’s IP-based licensing restrictions on Java ME
  5. Java default keystore password – cacerts
  6. Debugging Server-side Code through IntelliJ IDEA or Eclipse with BEA Weblogic 8.1
  7. Generic SOAP/WSDL Client
  8. Howto install Sun Java on Debian Sarge
  9. Howto Install Sun Java on Debian Etch
  10. Java and C benchmark

Comments (3)