Linux Applications - yenbohuang/techNotes GitHub Wiki

Using Exchange by Thunderbird

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/.

GUI for scp

  • 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.

Active Directory/LDAP

  • 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.
#!/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"
⚠️ **GitHub.com Fallback** ⚠️