I developed the Ubuntu version Citrix thin client. To follow the same naming convention as TC-Citrix, I name it UT-Citrix. Here are the key scripts: checkip #!/bin/bash #wait for the DHCP ready while ! ifconfig eth0 | grep 'inet addr' >/dev/null 2>&1 do echo sleep 2 done sysprep #!/bin/bash #rename the computer echo HOSTNAME=UT-`ifconfig | … Continue reading Bash: UT-Citrix
Author: Jackie Chen
How Ubuntu Read DHCP Options
In a small project, I need to make Ubuntu get the ‘FTP Root’ option’s value from the Windows 2003 DHCP server. For some reasons that I don’t know, Ubuntu does not include ‘FTP Root’ (code 162) in the standard dhcp-option. So I have to modify the ‘/etc/dhcp/dhclient.conf ’ to make it happen. Add the following … Continue reading How Ubuntu Read DHCP Options
AWstats Configuration Example
AWstats is an open source log analyzer. I built up one on a Windows 2003 server to analyze the intranet (IIS server) usage. Here is my step by step how to: The software version I use in my example: 1) Install Apache, this is where I want to publish my log analysis. You also can … Continue reading AWstats Configuration Example
SharePoint 2010 Training Day 5 Notes
Module 13: Implementing Business Continuity Recycle bin: 2 stages Import/ Export contents Disaster recovery: RPO & RTO Backup/restore: Farm, Wep app, Service app, content, configure settings… Restore farm permission: farm admin + sharepoint shell admin + wss_admin_wpg local group HA & NLB Module 14: Monitoring and Optimizing SharePoint Performance Configure diagnostic log consideration:•Change the location … Continue reading SharePoint 2010 Training Day 5 Notes
SharePoint 2010 Training Day 4 Notes
Module 10: Administering and Configuring SharePoint Search Search server 2010 express (standalone server)/ SharePoint 2010 search (farm)/ FAST search server (standalone product) Crawl/ Query Crawl: content sources/ crawl rules/ crawl logs/ IFilter and protocol handler Query: authoritative pages/ federated search/ metadata property/ search scope Refine search: relevance/ refinement panel/ key words and best bets/ noise … Continue reading SharePoint 2010 Training Day 4 Notes