XRDP in OpenSuse 11.0/11.2/11.3

This tutorial is for advanced users who prefer to skate all the detail that attaches to a "new user" Tutorial. The details (wherein lies the devil) are here: Windows Linux RDP Remote Desktop Connections using openSUSE as Client or Server (terminal server) FWIW there's also an 11.1 version there.

Tested in openSUSE 11.2 KDE & Gnome 32 & 64 bit. In 11.3 I tested KDE & Gnome 64 bit and KDE 32 bit.
There are 4 simple steps

Step 1: Download and install the software

This link contains the RPMs. They work for openSUSE 11.2 and 11.3. Drill down to either the 32 bit i586 RPMs or the 64 bit x86_64 RPMs and download one each of these RPMs: xorg-x11-server-dmx, xorg-x11-server-rdp and xrdp. There are dependency issues to cater for so put the three in a folder anywhere and add that folder as a "local directory" in Yast's –> Software –> Repositories module. Install all three. That's for the server. If you need the client, you also install the RPM for rdesktop from your standard media.

Step 2: Open the firewall

GoTo Yast's firewall module –> Allowed Services –> Select –> Remote Desktop Protocol –> Add.

Step 3: Start the service

If you want the service on permanently goto Yast –> System –> Services / Runlevels –> xrdp –> Enable
If you want the service occasionslly, enable it with "sudo /usr/sbin/rcxrdp start" and turn it off with "sudo /usr/sbin/rcxrdp stop".

Step 4: Port Forwarding

Go to your router by http:// and forward port TCP 3389 to the server IP address.
 

Share

Paparazzi pops Princess Kate’s puppies

Well, this news interests me for many reasons, and I think this really who they are!!!

While enjoying a romantic getaway in France with William, the future Queen of England Kate Middleton decided to get her knockers out, only to be snapped by the awaiting paparazzi.
 
The Duke and Duchess of Cambridge (Kate and William to you and me) are said to be “saddened” by claims that a French magazine is publishing topless photographs of Kate. Harry, on the other hand, is probably only too delighted – as are we.
 
Last night the French version of the magazine Closer published pixelated images of Kate on a mock cover, but we've done some digging around and found this:
 

Princess Kate Naked

Src: http://www.joe.ie/joe-life/women/royal-boobs-kate-middleton-topless-0028349-1

Share

Zimbra 8 Community edition on Scientific Linux 6 (64 Bit)

Install SL 6.3 (64 bit)

  • Installing SL6.3 (64bit)  with 'minimal' installation mode
  • Post installing, fix with the Static IP Address (Public IP and I assume the system is not behind firewall)
  • Double check with /etc/resolv.conf file parameters

Prerequisites for ZImbra installation

Let's firsy update-

yum update

Let's install some pckages as well

yum – y install sudo sysstat gmp libidn libstdc++ bind bind-chroot bind-libs bind-utils wget php perl nc sqlite

and few more packages-

yum install compat-libstdc++-33 sysstat

If anything missed out you'll know in the next steps, if anything left google it, chances are you'll be able to yum it :), however for this time being the environment is made. Now proceed to download Zimbra.

Make some backend job-

  • Make sure 'SELINUX' is disabled
  • The iptables service is stopped
  • 'postfix' service is stopped and disabled at runtime and on boot

Download ZImbra

My downloaded edition was-

http://files2.zimbra.com/downloads/8.0.0_GA/zcs-8.0.0_GA_5434.RHEL6_64.20120907144639.tgz

Once downloaded, get inside the extracted folder.

Read more

Share

Linux Operating System

I've decided that I'd go through a thorough and various linux flavor in some idle pass time (when???). Anyway before forgetting just putting the list in my blog post-

  • AlphaCore Linux
  • Amazon Linux
  • APLINUX
  • Asianux
  • Asianux Server
  • BigBlock
  • BSDI
  • Caixa Magica
  • Caldera OpenLinux
  • Caldera OpenLinux eServer
  • cAos Linux
  • Cendio LBS Linux
  • CentOS Linux
  • Cobalt Linux
  • Coherent Technology Linux

    Read more

Share

Install nginx on virtualmin (GPL) server

Installing Nginx Support

Switching a system from the Apache webserver (installed by default by Virtualmin to Nginx should only be done if no virtual servers with websites have been created yet. Ideally the change should be done on a freshly installed system, running RHEL 6.0, CentOS 6.0 or Debian 6.0 or later. Virtualmin version 3.89 or above is also required.

The steps to remove Apache and install Nginx are :

  1. Shut down Apache with the command /etc/init.d/httpd stop ; service httpd off (on RHEL or CentOS), or /etc/init.d/apache2 stop ; update-rc.d apache2 remove (on Debian).
  2. Install Nginx with the command yum install nginx (on RHEL or CentOS) or apt-get install nginx (on Debian).
  3. Start the Nginx webserver with the command /etc/init.d/nginx start
  4. Install Virtualmin's Nginx plugin with the command yum install wbm-virtualmin-nginx wbm-virtualmin-nginx-ssl (on RHEL or CentOS) or apt-get install webmin-virtualmin-nginx webmin-virtualmin-nginx-ssl (on Debian).

    Read more

Share

Redhat/CentOS install PHP on NginX server as fastcgi

tep # 1: Enable EPEL repo

ngnix is not included in the base system. Turn on EPEL repo to install nginx stable release:
# rpm -Uvh http://download.fedora.redhat.com/pub/epel/5/$(uname -m)/epel-release-5-3.noarch.rpm

Step # 2: Install ngnix

Type the following command at a shell prompt:
# yum install nginx
Sample output:

Loaded plugins: downloadonly, fastestmirror, priorities, protectbase
Loading mirror speeds from cached hostfile
 * epel: archive.linux.duke.edu
 * base: ftp.linux.ncsu.edu
 * updates: centos.mirror.nac.net
 * addons: mirror.cs.vt.edu
 * extras: centos.mirror.nac.net
0 packages excluded due to repository protections
Setting up Install Process
Parsing package install arguments
Resolving Dependencies
--> Running transaction check
---> Package nginx.x86_64 0:0.6.34-1.el5 set to be updated
--> Finished Dependency Resolution
Dependencies Resolved
==============================================================================================================================================================
 Package                             Arch                                 Version                                    Repository                          Size
==============================================================================================================================================================
Installing:
 nginx                               x86_64                               0.6.34-1.el5                               epel                               319 k
Transaction Summary
==============================================================================================================================================================
Install      1 Package(s)
Update       0 Package(s)
Remove       0 Package(s)
Total size: 319 k
Is this ok [y/N]: y
Downloading Packages:
Running rpm_check_debug
Running Transaction Test
Finished Transaction Test
Transaction Test Succeeded
Running Transaction
  Installing     : nginx                                             [1/1]
Installed: nginx.x86_64 0:0.6.34-1.el5
Complete!

Read more

Share

Using an Aladdin eToken with firefox

A very easy method for importing (or removing) keys in your eToken is to add the eToken as a Security Device in Firefox. The procedure for Thunderbird and Mozilla/Seamonkey is nearly identical. To add your eToken as a security device , follow these steps

  • Start Firefox
  • (Linux) Go to Edit->Preferences->Advanced->Tab "Encryption"
  • (Windows) Go to Tools->Options->Advanced->Tab "Encryption"
  • Click on 'Security Devices'

You should see a screen similar to

this.

  • Click on 'Load'
  • In the next screen, enter a (possibly useful) name for this module and Click on 'Browse' to select the appropriate PKCS11 module

    Read more

Share

Network Configuration on Debian or Ubuntu

 

Setting up an Ethernet Interface

The majority of network setup can be done via the interfaces configuration file at /etc/network/interfaces. Here, you can give your network card an IP address (or use dhcp), set up routing information, configure IP masquerading, set default routes and much more.

Remember to add interfaces that you want brought up at boot time to the 'auto' line.

See man interfaces for more options.

 

Using DHCP to automatically configure the interface

If you're just using DHCP then all you need is something like:

 

    auto eth0
    allow-hotplug eth0
    iface eth0 inet dhcp

Read more

Share

Install Zimbra on Centos 5 Step by step

Zimbra is a suite of tools for Unix/Linux/MacOS systems, which includes a secure mail server, web mail, anti-spam/anti-virus controls, a Web management interface, integrated calendaring, mobile device sync, and more. In many ways, Zimbra is the Unix equivalent to Microsoft Exchange.
 
In this post, I will be installing Zimbra onto a CentOS virtual machine. The machine will need at least 1024mb of memory to run the default Zimbra services. I was unable to make it run without errors with any less memory.

Things to do after a clean installation of Centos 5.5:

  • Disable SELinux and
  • Disable Linux Firewall

The last step is to shutoff some services that will interfere with ZCS.

chkconfig sendmail off
chkconfig ip6tables off
chkconfig iptables off

We need one package before we can continue:

yum install libtool-ltdl

This completes the base installation of CentOS. On the next page we will setup Split DNS which is essential for ZCS. Go ahead and reboot, and fill up that coffee cup.

Read more

Share

Eid Greetings (2012)

On the holy occasion of EID.Here is wishing that,may the blessing of Allah light up your way and lead you to eternal happiness,success and peace.

Eid Mubarak to all Muslims around the world, may the blessings of Allah be with you today, tomorrow, and always. 

With all the roses perfume and with all the lights in the world,and with all the children smiles,I wish you a very happy Eid.

Wishing you happy Eid,soft as silk,white as milk,sweet as honey,full of money and bubbly as you.

As Allah waters his creation, may he also sprinkle his wondrous blessings over you and your beloved ones.

The best of all gifts around any eid is the presence of a happy family all wrapped up in Each Other.

Wishing you all a very happy Eid, And hoping that all the things you wish For will be yours throughout the year.

A cloud of Eid wishes draws around you softening a sound. Sleepy time and I lie, with my love by my side.

Many are the wishes that are being sent your way,but the is a special one for a very happy Eid Day.

Share