Have they renamed ip_conntrack_ftp? Is it now nf_conntrack_ftp?
-
ip_conntrack_ftp renamed to nf_conntrack_ftp?
-
I am a RHCE!
Now I need to update my MCSE to MCITP
-
Create a blank floppy image in Mac OSX 10.6
- dd if=/dev/zero bs=1024 count=1440 > floppy.img
- Disk Utility -> File -> Open Disk Image -> floppy.img (you will get an error like no mountable filesystems)
- Select floppy.img in Disk Utility, and the erase tab
- Select MS-DOS FAT as the format.
- Eject floppy.img
-
Install Windows 7 RSAT Silently and Activate All Features
- wusa /quiet /norestart amd64fre_GRMRSATX_MSU.msu
- ocsetup RemoteServerAdministrationTools;RemoteServerAdministrationTools-ServerManager;RemoteServerAdministrationTools-Roles;RemoteServerAdministrationTools-Roles-CertificateServices;RemoteServerAdministrationTools-Roles-CertificateServices-CA;RemoteServerAdministrationTools-Roles-CertificateServices-OnlineResponder;RemoteServerAdministrationTools-Roles-AD;RemoteServerAdministrationTools-Roles-AD-DS;RemoteServerAdministrationTools-Roles-AD-DS-SnapIns;RemoteServerAdministrationTools-Roles-AD-DS-AdministrativeCenter;RemoteServerAdministrationTools-Roles-AD-DS-NIS;RemoteServerAdministrationTools-Roles-AD-LDS;RemoteServerAdministrationTools-Roles-AD-Powershell;RemoteServerAdministrationTools-Roles-DHCP;RemoteServerAdministrationTools-Roles-DNS;RemoteServerAdministrationTools-Roles-FileServices;RemoteServerAdministrationTools-Roles-FileServices-Dfs;RemoteServerAdministrationTools-Roles-FileServices-Fsrm;RemoteServerAdministrationTools-Roles-FileServices-StorageMgmt;RemoteServerAdministrationTools-Roles-HyperV;RemoteServerAdministrationTools-Roles-RDS;RemoteServerAdministrationTools-Features;RemoteServerAdministrationTools-Features-BitLocker;RemoteServerAdministrationTools-Features-Clustering;RemoteServerAdministrationTools-Features-GP;RemoteServerAdministrationTools-Features-LoadBalancing;RemoteServerAdministrationTools-Features-SmtpServer;RemoteServerAdministrationTools-Features-StorageExplorer;RemoteServerAdministrationTools-Features-StorageManager;RemoteServerAdministrationTools-Features-Wsrm
-
Install pptp-client on CentOS 5.4
rpm -Uvh http://pptpclient.sourceforge.net/yum/stable/rhel5/pptp-release-current.noarch.rpm yum --enablerepo=pptp-stable install pptpconfig
-
Installing Flash on CentOS 5.4 x64
Here is what I tried:
wget http://download.macromedia.com/pub/labs/flashplayer10/libflashplayer-10.0.32.18.linux-x86_64.so.tar.gz
tar -xzf libflashplayer-10.0.32.18.linux-x86_64.so.tar.gz
mv libflashplayer.so ~/.mozilla/plugins/
-
Visual Studio with VMware Fusion and SSH
I work on a Mac, but by day I am a windows guy. Even though I am not a developer, I often hack about using Visual Studio on the PC. Recently, have been working more and more with Linux, and I wanted to use Visual Studio on my Mac via VMware Fusion to edit some .css files on a linux slice that I have setup. I was looking for extension to Visual Studio to connect to a ssh/sftp site. Then it hit me (things would be a lot easier if I was smarter) – VMware Fusion installed the FUSE file system (optional) on my Mac. I can use the program MacFusion on my Mac to “mount” a ssh FUSE file system, and then add a VMware Fusion “Shared folder” to point to the mounted folder.
Now I can use Visual Studio to edit files on a Linux box!
-
Detach PSTs
We are looking to get rid of .pst files in our environment and we wanted to remove pst files from peoples machines. This link shows how to prevent adding new psts and how to turn off auto archiving via GPO, but what about existing .psts in peoples Outlook profiles?
I put together this vbscript:
Set objFSO = CreateObject( "Scripting.FileSystemObject" ) Set objOutlook = CreateObject( "Outlook.Application" ) Set objNamespace =objOutlook.GetNameSpace( "MAPI" ) For i = objOutlook.Session.Folders.Count To 1 Step -1 strName = objOutlook.Session.Folders.Item(i).Name if instr(strName,"Mailbox -") > 0 or strName = "Public Folders" or strName = "SharePoint Lists" or strName = "Microsoft Dynamics CRM" then 'wscript.echo "not removing:" & objOutlook.Session.Folders.Item(i).Name Else 'wscript.echo "removing:" & objOutlook.Session.Folders.Item(i).Name objOutlook.Session.RemoveStore(objOutlook.Session.Folders.Item(i)) End If next
