Thursday, August 30, 2012

Oracle Error :: IMP-00041


Warning: object created with compilation warnings

Cause

The object in the SQL statement following this error was created with compilation errors. If this error occurred for a view, it is possible that the base table of the view was missing.

Action

This is a warning. The object may have to be recompiled before being used.

Monday, August 20, 2012

how to restore top panel ubuntu 10.10


To reset the gnome panel to defaults, type this in a terminal
Code:
 gconftool --recursive-unset /apps/panel && killall gnome-panel

Wednesday, August 8, 2012

Fix Shrew Soft VPN on Ubuntu 11.04

After upgrading my system to Ubuntu 11.04 I was no longer able to establish a VPN connection. Shrew Soft VPN would time out. It appears that the Reverse Path Filter was causing the issue.

Found the following solution:
Edit your network-security.conf to disable the Reverse Path Filter:
sudo vim /etc/sysctl.d/10-network-security.conf
Set the following items from 1 to 0:
net.ipv4.conf.default.rp_filter=0
net.ipv4.conf.all.rp_filter=0
Save and perform the following command.
sudo /sbin/sysctl -p