unattend-upgrades is a debian package providing automatic security upgrades.
To use it, just install unattended-upgrades, modify /etc/apt/apt.conf.d/50unattended-upgrades to your needs like:
Unattended-Upgrade::Allowed-Origins { "Debian stable"; };To automatically and unattended install security updates you also have to set
APT::Periodic::Update-Package-Lists "1"; APT::Periodic::Unattended-Upgrade "1";in /etc/apt/apt.conf or in a file located in /etc/apt/apt.conf.d/ (I use /etc/apt/apt.conf.d/60security)
sqlline a java based console program allows you to connect to any database with existing jdbc drivers replacing the original programs like mysql, sqlplus or psql.
Example to connect to an oracle database with sqlline:
$ java -cp ~/path/classpath/classes12.jar:/usr/share/java/sqlline.jar sqlline.SqlLine sqlline version 1.0.2 by Marc Prud'hommeaux sqlline> !connect jdbc:oracle:thin:@hostname:1521:xe USER PASS Connecting to jdbc:oracle:thin:@hostname:1521:xe Connected to: Oracle (version Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production) 2: jdbc:oracle:thin:@hostname:1521:xe>