Linux Cluster Solutions

Solutions to Linux cluster construction and management such as unified account management, NFS home directory, network configurations are summarised in this post. The post is keeping updating while new solutions is added to this site.
===Account and storage management===
[[unified-linux-login-and-home-directory-using-openldap-and-nfsautomount|Unified Linux Login and Home Directory Using OpenLDAP and NFS/automount]]

[[backup-linux-home-directory-using-rsync|Backup Linux Home Directory Using rsync]]

[[setting-up-ecryptfs-in-linux|Setting Up eCryptFS in Linux]]
===Network related===
[[setting-up-gateway-using-iptables-and-route-on-linux|Setting Up Gateway Using iptables and route on Linux]]

[[flush-dns-cache-of-linux-and-windows-client|Flush DNS Cache of Linux and Windows Client]]

[[finding-out-linux-network-configuration-information|Finding out Linux Network Configuration Information]]

[[changing-mac-address-in-linux-aka-mac-spoofing|Changing MAC Address in Linux aka. MAC Spoofing]]

[[setting-up-vpn-like-network-between-several-clusters-using-iptables|Setting Up VPN-like Network Between Several Clusters Using iptables]]

===Port forwarding===
[[port-forwarding-using-iptables|Port Forwarding Using iptables]]

[[port-forwarding-using-ssh-tunnel|Port Forwarding Using SSH Tunnel]]

[[proxy-using-ssh-tunnel|Proxy Using ssh Tunnel]]
===NFS related===
[[fixing-ports-used-by-nfs-server|Fixing Ports Used by NFS Server]]

[[setting-up-a-nfs-server-on-top-of-tmpfs-devshm|Setting Up a NFS Server on Top of tmpfs /dev/shm]]
===Software management===
[[installing-specific-old-versions-of-packages-in-yum]]

[[making-yum-not-update-kernel|Making yum Not Update Kernel]]
===Scheduled task management===
[[how-to-run-a-cron-job-every-two-weeks-months-days|How to Run a cron Job Every Two Weeks / Months / Days]]

Similar Posts

  • |

    How to check whether a file of a given path is a block device in Python?

    How to check and test whether a file of a given path is a block device in Python? This can be Linux specific. You can use the os.stat() function to get the stat of the path. Then use the stat.S_ISBLK() function against the stat’s .st_mode to test whether it is a block device. An example:…

  • how to use pc internet of window8 on iphone 4s via usb

    how to use pc internet on iPhone 4s wia usb cable, pc is of window 8 and in network setting its not showing of connection of I phones network I ever wrote a tutorial at http://www.systutorials.com/136003/iphone-connecting-internet-using-windows-pc-network-through-usb-cable/ . But please be aware that it worked only on specific OS combinations. So, I am not sure whether…

  • MFC程序使用系统风格界面

    VC6默认编译出来的程序在XP下Luma风格下运行也是Windows的经典界面, 有损界面的美观与统一. VC2008默认设置下如果不是使用的unicode也是如此. 本文给出使VC6和VC2008可以编译出使用系统界面风格的解决方案. 1. 使VC6编译出使用系统风格的程序 步骤如下: 1) 创建一个.manifest文件的资源. 在res/文件夹下创建一个跟以程序名加.manifest的文件, 如果程序为test.exe, 则创建test.exe.manifest 文件可由此下载: https://www.systutorials.com/t/g/programming/resultcollector.manifest/ 注意要使用utf-8编码保存。 2) 将新定义的资源加入到.rc2文件中, 类型设为24. 打开res/文件夹下的.rc2文件, 在其中加入如下定义: 1 24 MOVEABLE PURE “res/test.exe.manifest” 其中的文件地址按1)步中修改的设置即可. 之后编译即可, 为了使程序界面可能充分利用系统的界面特性, 可以将界面字体设置为TrueType类型的, 利用Windows XP等系统的屏幕字体平滑特性. 2. 使VC2008编译出使用系统风格的程序 在VC2008下就比较简单了, 如果程序字符集使用unicode则默认就是使用系统界面风格的, 如果选择其它的类型, 则编辑下stdafx.h即可. 最后面部分找到这么一段: #ifdef _UNICODE #if defined _M_IX86 #pragma comment(linker,”/manifestdependency:”type=’win32′ name=’Microsoft.Windows.Common-Controls’ version=’6.0.0.0′ processorArchitecture=’x86′ publicKeyToken=’6595b64144ccf1df’ language=’*'””) #elif defined _M_IA64 #pragma comment(linker,”/manifestdependency:”type=’win32’…

Leave a Reply

Your email address will not be published. Required fields are marked *