Skip to content

Instantly share code, notes, and snippets.

Install Citrix Receiver On Ubuntu

  1. Download debian installer from Citrix receiver download page.
  2. Copy Thawte Premium Server CA Root to ICA client installed cert folder.
  3. Login your appstogo page and you should be now able to launch your app.
$ sudo dpkg -i icaclientWeb_13.7.0.10276927_amd64.deb
$ sudo cp ~/Downloads/ThawtePremiumServerCA.pem /opt/Citrix/ICAClient/keystore/cacerts/ThawtePremiumServerCA.crt
@yancyn
yancyn / aws.md
Last active November 9, 2024 02:10
Monitor Memory Utilization on AWS EC2 Windows Instance

Monitor Memory Utilization on AWS EC2 Windows Instance

How to Enable Memory Monitor

  1. AWS Console > Intance > Action
  2. Attach IAM role to your instance.
  3. Attach policy > CloudWatchFullAccess + AmazonSSMFullAccess.
  4. Start Windows instance.
  5. Configure CloudWatch.json based on your requirement before Ec2Config service is started.
  • Configure your region i.e. if your instance at us-web-2b set to us-west-2.
  • Add your IAM access key and secret key under CloudWatch component.
@yancyn
yancyn / gmail.md
Created January 4, 2018 06:17
Forward Gmail to Multiple Email
@yancyn
yancyn / write.py
Last active November 13, 2018 03:25
Write Log File to Pi
import datetime
import threading
def refresh():
# refresh every 10 minutes
threading.Timer(600.0, refresh).start()
fs = open("active.log","a")
i=datetime.datetime.now()
print >>fs, i.isoformat()