Get those codecs to play all media formats and dvds:
http://www.ubuntugeek.com/install-mplayer-and-multimedia-codecs-libdvdcss2w32codecsw64codecs-in-ubuntu-9-10-karmic.html
Get cntlm to get through those M$ ISA proxies:
sudo apt-get install cntlm
Then just edit the
/etc/cntlm.conf
and fill in the proxy details then restart it with
/etc/init.d/cntlm restart
Then export your proxy and your in business :-)
export http://localhost:3128/
Friday, December 11, 2009
How to Listen to Streaming Radio on Ubuntu
Ok so I wanted to listen to Highveld radio on Ubuntu. Only problem was their website only seemed to catered for Windows. So after some digging I found the mms stream URL and gave it a try with:
mplayer mms://196.35.64.36/highveld_22
but got this:
connect error: Connection refused
No stream found to handle url mms://196.35.64.36/highveld_22
So I just changed it to:
mplayer http://196.35.64.36/highveld_22
and we're in business :-)
mplayer mms://196.35.64.36/highveld_22
but got this:
connect error: Connection refused
No stream found to handle url mms://196.35.64.36/highveld_22
So I just changed it to:
mplayer http://196.35.64.36/highveld_22
and we're in business :-)
Monday, November 30, 2009
VPN Issues on Ubuntu
Well this one has been causing me to pull my hair out for a couple of weeks. I was using the Cisco VPN client for Linux put got really tried of having to recompile it every time I did a Kernel update. So I switched over to vpnc the VPN stuff which works under network manager in Ubuntu. At first it seemed to work nice, but I found the connection was 'freezing' after I sshed into a server over the VPN. An example of this would be ssh to server, then run ls which works fine, then run ls -l and the connection 'freezes'. If I open another terminal sesssion to the server it would open fine, but ls and then ls -l would 'freeze' the connection. So after some digging our found out it had have something to do with my MTU setting. I still have a Windows VM and tested out the VPN their and used putty to ssh to the server and had no issues. I tried setting the MTU on my eth0 or wlan0 but no joy. Finally I found I needed to set the MTU on the tun0 connection like this to get it to work:
sudo ifconfig tun0 mtu 576
This mtu is very small, but I think its a setting on their side that maybe someones forgot to update since the days of dail-up connections. I am also glad to report the VPN connection is now working 'sharp-sharp'. :-)
sudo ifconfig tun0 mtu 576
This mtu is very small, but I think its a setting on their side that maybe someones forgot to update since the days of dail-up connections. I am also glad to report the VPN connection is now working 'sharp-sharp'. :-)
Thursday, November 26, 2009
How to rename file extentions in Linux
This is a nice command to basically rename all .csv files in a directory to .bak
for x in *.csv; do mv "$x" "${x%.dot}.bak"; done
for x in *.csv; do mv "$x" "${x%.dot}.bak"; done
Wednesday, November 11, 2009
Axis 2 get client's IP address
This seems to be the easiest way to do it:
MessageContext msgContext = MessageContext.getCurrentMessageContext();
String ip = (String) msgContext.getProperty(MessageContext.REMOTE_ADDR);
Also required:
import org.apache.axis2.context.MessageContext;
MessageContext msgContext = MessageContext.getCurrentMessageContext();
String ip = (String) msgContext.getProperty(MessageContext.REMOTE_ADDR);
Also required:
import org.apache.axis2.context.MessageContext;
Eclispe Button Problem on Ubuntu 9.10
Had a problem with Eclipse where I could not click on the buttons after upgrading to 9.10
This fixed it:
Source: http://www.norio.be/blog/2009/10/problems-eclipse-buttons-ubuntu-910
This fixed it:
#!/bin/bash
export GDK_NATIVE_WINDOWS=1
/opt/eclipse-3.5/eclipse
Source: http://www.norio.be/blog/2009/10/problems-eclipse-buttons-ubuntu-910
Tuesday, October 6, 2009
Thursday, August 13, 2009
Netgear Router DGN 2000 piece of CRAP
Just a word of warning don't touch this piece of hardware, all I can say is it is guaranteed to give you a head ache and it uses this crapy url to setup itself
www.routerlogin.com/start.htm
PS Good luck with all the DNS issues you'll have too, and no wait there's no firmware update to fix any of there issues, just work arounds :-o
www.routerlogin.com/start.htm
PS Good luck with all the DNS issues you'll have too, and no wait there's no firmware update to fix any of there issues, just work arounds :-o
Ubuntu Cisco VPN
It works nice:
Here's my post on the keyring issue "Invalid VPN Secrets "
http://ubuntuforums.org/showthread.php?t=1193786&page=2
Here's my post on the keyring issue "Invalid VPN Secrets "
http://ubuntuforums.org/showthread.php?t=1193786&page=2
New version of GFS on the way?
Nice:
http://queue.acm.org/detail.cfm?id=1594206
http://doc.cat-v.org/plan_9/4th_edition/papers/venti/
http://queue.acm.org/detail.cfm?id=1594206
http://doc.cat-v.org/plan_9/4th_edition/papers/venti/
Saturday, August 8, 2009
Disable PC Speaker on Ubuntu
The pc speaker can be a pain, here's what to do to disable it:
sudo modprobe -r pcspkr
sudo vi /etc/modprobe.d/blacklist
and at the line:
blacklist pcspkr
sudo modprobe -r pcspkr
sudo vi /etc/modprobe.d/blacklist
and at the line:
blacklist pcspkr
Wednesday, August 5, 2009
Eclipse and Axis 2
This sorted my problem:
http://osdir.com/ml/axis-dev-ws.apache.org/2009-06/msg00169.html
in fact i saw after than in web.xml that the class AxisAdminServlet class has
change of package
org.apache.axis2.webapp.AxisAdminServlet
but after I've got a new error :
http://osdir.com/ml/axis-dev-ws.apache.org/2009-06/msg00169.html
in fact i saw after than in web.xml that the class AxisAdminServlet class has
change of package
but after I've got a new error :
Thursday, July 30, 2009
VMware Server 1.0.x on SLES 11
vmware config does not run
you need to do get patch from here ->
wget -c http://www.insecure.ws/warehouse/vmware-update-2.6.27-5.5.7-2.tar.gz
install the rpm
and then run runme.pl from the downloaded file
also make sure you have
gcc
gcc c++
and kernerl-source installed
still having major issues with VMware Server 2 aaarrrgg
you need to do get patch from here ->
wget -c http://www.insecure.ws/warehouse/vmware-update-2.6.27-5.5.7-2.tar.gz
install the rpm
and then run runme.pl from the downloaded file
also make sure you have
gcc
gcc c++
and kernerl-source installed
still having major issues with VMware Server 2 aaarrrgg
Sunday, June 28, 2009
Convert FLV 2 DVD
Some really cool software, to convert FLV to DVD -> DeVeDe
http://www.rastersoft.com/programas/devede.html
http://www.rastersoft.com/programas/devede.html
Thursday, June 25, 2009
Some Cool XPATH Examples
I will add as I find more, but this is a start:
http://wiki.novell.com/index.php/XPATH_Examples
http://wiki.novell.com/index.php/XPATH_Examples
Novell UserApp Remove JMX Console
Love this one, with a default UA install you can shutdown the UA from the JMX console, nice :-)
Do this to remove/secure the console:
http://www.novell.com/support/viewContent.do?externalId=3024921&sliceId=1
Do this to remove/secure the console:
http://www.novell.com/support/viewContent.do?externalId=3024921&sliceId=1
Thursday, June 18, 2009
Problem running DSBK
We had this problem:
Unable to load backupcr module!
DSBK error! 1
Solution can be found here
From TID 3950804
Basically do this:
ln -s /etc/opt/novell/nici.cfg /etc/nici.cfg
Unable to load backupcr module!
DSBK error! 1
Solution can be found here
From TID 3950804
Basically do this:
ln -s /etc/opt/novell/nici.cfg /etc/nici.cfg
Wednesday, June 17, 2009
Cisco VPN client for Ubuntu
Download from here: http://tuxx-home.at/vpn/Linux/vpnclient-linux-x86_64-4.8.01.0640-k9.tar.gz
Extract: tar xvzf
Patch from here: http://projects.tuxx-home.at/ciscovpn/patches/vpnclient-linux-2.6.24-final.diff
Patch: patch < ../vpnclient-linux-2.6.24-final.diff
Copy pcf file to here: /etc/opt/cisco-vpnclient/Profiles/
Run like this: vpnclient connect ProfileName user soan pwd $ecure
Extract: tar xvzf
Patch from here: http://projects.tuxx-home.at/ciscovpn/patches/vpnclient-linux-2.6.24-final.diff
Patch: patch < ../vpnclient-linux-2.6.24-final.diff
Copy pcf file to here: /etc/opt/cisco-vpnclient/Profiles/
Run like this: vpnclient connect ProfileName user soan pwd $ecure
How to install Novell Designer on Ubuntu
We had a problem on Ubuntu 64bit where the rpm install would not work, fixed by adding a --force like this:
rpm -ivh --nodeps --force nici****.rpm
Looks like Novell removed the site:
http://www.novell.com/coolsolutions/dirxml/designer/ubuntuinstall_instructions.html
And put it in the readme:
http://www.novell.com/documentation/designer30/readme/readme_30.html#debian
Installing Designer on Debian-Based Linux Distributions
Although we cannot officially support all Linux distributions, many customers have reported success running Designer on Debian-based distributions, such as Ubuntu. To do this, perform the following steps:
1) Download and extract (to a folder of your choice) Designer from the coolsolutions web site.
2) Use Ubuntu's synaptic package manager to install the alien, rpm, and gettext packages (or from the command line, type sudo apt-get -f install alien rpm gettext).
3) Change directories to the designerInstallDir directory.
4) Use rpm to install the nici rpm (from the command line, type sudo rpm -ivh --nodeps components/nici/nici.i386.rpm) *this adds an entry to the rpm database that the installer checks for when you type rpm -qa at the command line.
5) The gettext rpm is also required for the standard Designer installer. Download any installable gettext.rpm version and install it, such as rpm -ivh --nodeps gettext[version].rpm. This adds the gettext entry to the rpm database.
6) Run the standard Designer ./install script as a normal desktop user.
rpm -ivh --nodeps --force nici****.rpm
Looks like Novell removed the site:
http://www.novell.com/coolsolutions/dirxml/designer/ubuntuinstall_instructions.html
And put it in the readme:
http://www.novell.com/documentation/designer30/readme/readme_30.html#debian
Installing Designer on Debian-Based Linux Distributions
Although we cannot officially support all Linux distributions, many customers have reported success running Designer on Debian-based distributions, such as Ubuntu. To do this, perform the following steps:
1) Download and extract (to a folder of your choice) Designer from the coolsolutions web site.
2) Use Ubuntu's synaptic package manager to install the alien, rpm, and gettext packages (or from the command line, type sudo apt-get -f install alien rpm gettext).
3) Change directories to the designerInstallDir directory.
4) Use rpm to install the nici rpm (from the command line, type sudo rpm -ivh --nodeps components/nici/nici.i386.rpm) *this adds an entry to the rpm database that the installer checks for when you type rpm -qa at the command line.
5) The gettext rpm is also required for the standard Designer installer. Download any installable gettext.rpm version and install it, such as rpm -ivh --nodeps gettext[version].rpm. This adds the gettext entry to the rpm database.
6) Run the standard Designer ./install script as a normal desktop user.
Wednesday, June 10, 2009
Problem Starting IDM
We had the following problem:
"VR Driver Interface Module not loaded"
This was seen in the ndstrace.
We re-installed IDM and restarted the server and this resolved the problem.
The following TIDs did not work:
http://www.novell.com/support/viewContent.do?externalId=7002609&sliceId=1
http://www.novell.com/support/viewContent.do?externalId=7003360&sliceId=1
Versions of Software:
IDM 3.5
eDirectory 8.8.1
SecurityServices 2.0.4
"VR Driver Interface Module not loaded"
This was seen in the ndstrace.
We re-installed IDM and restarted the server and this resolved the problem.
The following TIDs did not work:
http://www.novell.com/support/viewContent.do?externalId=7002609&sliceId=1
http://www.novell.com/support/viewContent.do?externalId=7003360&sliceId=1
Versions of Software:
IDM 3.5
eDirectory 8.8.1
SecurityServices 2.0.4
Monday, June 8, 2009
Problem Starting Yast o SLES
We managed to resolve the problem we had starting Yast on SLES 10 with this:
http://en.opensuse.org/SDB:YaST_No_Longer_Works_in_SUSE_LINUX_9.1_After_an_Online_Update
http://en.opensuse.org/SDB:YaST_No_Longer_Works_in_SUSE_LINUX_9.1_After_an_Online_Update
Friday, June 5, 2009
Problem Starting eDirectory
Problem: Inconsistency detected by ld.so
Extract from /var/opt/novell/eDirectory/log/ndsd.log
Jun 05 10:53:17 NMAS Server Version:3.1.3.0 Build:20070219 started
Jun 05 10:53:17 SPM DClient Version:3.1.3.0 Build:20070219 started
Inconsistency detected by ld.so: dl-open.c: 610: _dl_open: Assertion `_dl_debug_
initialize (0, args.nsid)->r_state == RT_CONSISTENT' failed!
Environment -> SLES 10, eDirectory 8.8.1
Solution: Remove all lck files from DIB directory
cd /var/opt/novell/eDirectory/data/dib/
rm *.lck
Problem can also be resolved by upgrade to SLES 10 SP1 or 2
Reference: http://www.novell.com/support/viewContent.do?externalId=3517288&sliceId=1
Extract from /var/opt/novell/eDirectory/log/ndsd.log
Jun 05 10:53:17 NMAS Server Version:3.1.3.0 Build:20070219 started
Jun 05 10:53:17 SPM DClient Version:3.1.3.0 Build:20070219 started
Inconsistency detected by ld.so: dl-open.c: 610: _dl_open: Assertion `_dl_debug_
initialize (0, args.nsid)->r_state == RT_CONSISTENT' failed!
Environment -> SLES 10, eDirectory 8.8.1
Solution: Remove all lck files from DIB directory
cd /var/opt/novell/eDirectory/data/dib/
rm *.lck
Problem can also be resolved by upgrade to SLES 10 SP1 or 2
Reference: http://www.novell.com/support/viewContent.do?externalId=3517288&sliceId=1
Wednesday, April 8, 2009
How to fix things when Google does not know.
Well this one was a real pain, but gladly I got it sorted. Google seems to not have many answers on this one.
We where having a problem with the Roles driver in Novell IDM. It was giving the error:
-628 ERR_OBJECT_CLASS_VIOLATION
I did a schema compare with another eDirectory Tree and found a problem with nrfIdentity class, it was neither an effective class nor an aux class.
I deleted the class and re-imported the schema with the command:
ndssch admin.iam nrf-extensions.sch
and this seemed to fix the problem.
Not often you see schema problems in eDirectory but this was nasty. When doing a schema update during the install it just kept saying the schema was 100%.
Hope this proves helpfully, sadly Google will have to try better next time.
We where having a problem with the Roles driver in Novell IDM. It was giving the error:
-628 ERR_OBJECT_CLASS_VIOLATION
I did a schema compare with another eDirectory Tree and found a problem with nrfIdentity class, it was neither an effective class nor an aux class.
I deleted the class and re-imported the schema with the command:
ndssch admin.iam nrf-extensions.sch
and this seemed to fix the problem.
Not often you see schema problems in eDirectory but this was nasty. When doing a schema update during the install it just kept saying the schema was 100%.
Hope this proves helpfully, sadly Google will have to try better next time.
Monday, January 12, 2009
This is why I run Ubuntu
Cause they are willing to take M$ head on and not like some other companies we know....
http://www.nytimes.com/2009/01/11/business/11ubuntu.html?pagewanted=1&_r=3
http://www.nytimes.com/2009/01/11/business/11ubuntu.html?pagewanted=1&_r=3
Subscribe to:
Posts (Atom)