OpenVPN issue
2010-06-26 by xpheasCODE-Code:
| 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
Restart Samba on Ubuntu 10.04 Lucid Lynx
2010-06-24 by xpheasBASH-Code:
| 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.
Change keymap under Ubuntu/Debian
2010-06-02 by xpheasBASH-Code:
| apt-get install console-data |
I changed the keymap to german:
BASH-Code:
| dpkg-reconfigure console-data |
> Select keymap from arch list
> qwertz
> German
> Standard
> latin1 - no dead keys
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:
| gconftool-2 --set /apps/nautilus/preferences/always_use_location_entry --type bool 1 |
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.
To increase the maximum number of connections per IP edit "/etc/courier/imapd-ssl" and increase the value for MAXPERIP.
BASH-Code:
| nano /etc/courier/imapd-ssl |
BASH-Code:
| ##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 |