Author Archives: Ahmed Tawfik

Unknown's avatar

About Ahmed Tawfik

Cybersecurity Professional, Systems Engineer, OSS & Linux Geek

Easiest way to install programs in OpenSUSE

Go here : http://software.opensuse.org/searchin the search box write search key, and then on the list below, click “1-click install” button.

Tagged | Leave a comment

Add a job to crontab that runs every minute on AIX

crontab -e 0-59 * * * * hobba crontab -e: opens a text file (via vi) to add your job 0-59: is to run every minute hobba: is the command to run, it’s either a Unix command or a script

Tagged , | Leave a comment

crontab logs on AIX 5.3

/var/adm/cron/log

Tagged , , | Leave a comment

Setup Google Apps Custom Domain (e.g. @techienotes.info) on Empathy

Create a new Jabber account and enter the following details: account :  username@techienotes.infoencryption required TLS/ssl : (unmarked)ignore ssl certificate error : (unmarked)server : talk.google.comport : 5222 (default)use old ssl : (unmarked)Source

Posted in Jabber | Tagged , , | Leave a comment

Bash Script to run a sql file (Draft) – Part 1

#!/usr/bin/bash # This script calls the Ad_1.sql script and spools the output with date stamp to a log file# Update: You MUST add your environment variables one way or another, e.g. look below export ORACLE_BASE=/oracleexport ORACLE_HOME=/oracle/OraHome_1PATH=${PATH}:${ORACLE_HOME}/bin; export PATHexport LIBPATH=${LIBPATH}:${ORACLE_HOME}/lib32:${ORACLE_HOME}/lib if … Continue reading →

Tagged , | Leave a comment