XFCE is a lightweight Desktop Environment for Linux. XFCE + vnc allows you to set up a remote desktop on a VPS or dedicated server located in a remote data center or cloud. You can connect to remote desktop using a VNC client and work like it is a local computer, similar to Windows Remote Desktop (RDP).
maldet is malware scanner for linux. On a shared hosting server, maldet detected one cusomer files as malware, on checking i found it is false positive. It is just a log file written by the application. To avoid getting further email from this application, i added this folder to maldet ignore_paths.
To add a folder to ignore list, edit file
vi /usr/local/maldetect/ignore_paths
Add the folder you need to ignore to end of this file as a new line.
This will download and store all rpm files in /var/yum folder. –resolve will resolve dependency and download them. This will be helpful if you need to install a package on a system with no direct internet connection.
To reorder windows in tmux, you can use following command
CTRL + B + .
Press CTRL + B or whatever prefix you use, then press . (dot). This will ask you number/position where you need current window moved.
Another method is
CTRL + B + :
This will give you tmux command promt. Now enter
move-window -t 0
This will move current window to position 0. This only work if position 0 is empty. If another window already present in position 0, use swap-window command.
swap-window -t 0
This with swap current window with window in position 0.
Another useful command is
CTRL + B + ,
This will allow you to rename current tmux window.