I tried to get it done by following this tutorial( which works in my Ubuntu box

),
http://www.securitykiss.com/resource...conf_linux_nm/
So I followed
https://wiki.archlinux.org/index.php...anager#Openbox article and installed networkmanager, nm-applet and network-manager-openvpn etc packages. When I rebooted my system, nm-applet didn't show up in tint2 and I had to execute these commands,
Code:
sudo /etc/rc.d/dbus start
sudo /etc/rc.d/networkmanager restart
(btw there is an entry for "dbus-launch" in .xinitrc file and "networkmanager" in /etc/rc.conf(in daemons array))
When I executed sudo nm-applet it finally showed up with these messages
Code:
** Message: applet now removed from the notification area
** Message: applet now embedded in the notification area
** (nm-applet:3830): WARNING **: Failed to register as an agent: (32) Error statting file /var/run/ConsoleKit/database: No such file or directory
I configured openvpn connection and saved the settings but connection is not "clickable"(See the screenshot).

I tried to export the settings from network manager and tried to connect using this config file
Code:
client
remote 184.154.116.156 123
ca /"path"/ca.crt
cert /"path"/client.crt
key /"path"/client.key
comp-lzo yes
dev tun
proto udp
nobind
auth-nocache
script-security 2
persist-key
persist-tun
user openvpn
group openvpn
When I executed command sudo openvpn --config openvpn.conf, got the error
Code:
Mon Apr 23 20:13:06 2012 OpenVPN 2.2.2 x86_64-unknown-linux-gnu [SSL] [LZO2] [EPOLL] [eurephia] built on Jan 3 2012
Mon Apr 23 20:13:06 2012 WARNING: No server certificate verification method has been enabled. See http://openvpn.net/howto.html#mitm for more info.
Mon Apr 23 20:13:06 2012 NOTE: the current --script-security setting may allow this configuration to call user-defined scripts
Mon Apr 23 20:13:06 2012 LZO compression initialized
Mon Apr 23 20:13:06 2012 failed to find UID for user openvpn
Mon Apr 23 20:13:06 2012 Exiting
Then executed the command,
Code:
sudo /usr/sbin/groupadd openvpn
but still no luck

(got the same error)
Read similar thread and changed "openvpn" to "root" but it didn't work out too and gave similar error as in my post #1 (Unable to redirect default gateway blahblahblah)
Someone Please tell me what I'm doing really stupid here,
TIA!