Today's Boomtime, the 28th day of Bureaucracy in the YOLD 3176.

OpenVPN issue

2010-06-26 by xpheas
CODE-Code:
1
ovpn-server[7890]: read UDPv4 [EMSGSIZE Path-MTU=1460]: Message too long (code=90)

I fixed the problem by adding the following line to /etc/openvpn/server.conf:

mssfix 1400

  » comments (0)

Restart Samba on Ubuntu 10.04 Lucid Lynx

2010-06-24 by xpheas
BASH-Code:
1
2
sudo initctl stop smbd 
sudo initctl start smbd

Since Lucid Samba is handled by Upstart, so the /etc/init.d/samba script has been removed.

  » comments (0)

Change keymap under Ubuntu/Debian

2010-06-02 by xpheas
BASH-Code:
1
apt-get install console-data

I changed the keymap to german:
BASH-Code:
1
dpkg-reconfigure console-data

> Select keymap from arch list
> qwertz
> German
> Standard
> latin1 - no dead keys

  » comments (1)

Nautilus location bar

2010-05-20 by xpheas
Since Ubuntu 10.04 there is no button anymore to activate the nautilus location bar. By pressing Ctrl+L the bar will appear. To activate the location bar permanently open a terminal an type:
BASH-Code:
1
gconftool-2 --set /apps/nautilus/preferences/always_use_location_entry --type bool 1

location bar

  » comments (0)

Raise Courier-IMAP Connections

2010-05-10 by xpheas
>>Maximum connection limit reached for xxx.xxx.xxx.xxx

To increase the maximum number of connections per IP edit "/etc/courier/imapd-ssl" and increase the value for MAXPERIP.
BASH-Code:
1
nano /etc/courier/imapd-ssl

BASH-Code:
1
2
3
4
5
6
7
8
9
10
11
12
##NAME: MAXDAEMONS:0
#
#  Maximum number of IMAP servers started
#
 
MAXDAEMONS=40
 
##NAME: MAXPERIP:0
#  
#  Maximum number of connections to accept from the same IP address
 
MAXPERIP=20

  » comments (0)

 « newer Posts  older Posts »