Linux Applications - yenbohuang/techNotes GitHub Wiki
Install Thunderbird and install ExQuilla addon.
See details on http://www.techrepublic.com/blog/smb-technologist/connect-the-thunderbird-email-client-to-your-exchange-server/.
- Go to
Places -> Connect to Server
in OS menu bar. - Type
sftp://account@ip
in server address and connect.
See details on http://stackoverflow.com/questions/299412/is-there-any-winscp-equivalent-for-linux.
- Install
ldapsearch
# for CentOS
sudo yum install openldap*
# for Ubuntu
sudo apt-get install ldap-utils
- Copy the following commands into
debug-ldap.sh
.- Enclose parameters with single quotes (
'
) and avoid character escaping.
- Enclose parameters with single quotes (
#!/bin/sh
TSSTART=`date`
ldapsearch -x -h <IP address> -D <username> -w <password> -b <base dn for search>
TSEND=`date`
echo "Start=$TSSTART, End=$TSEND"