admin

admin

This user hasn't shared any profile information

Posts by admin

Fix for Munin MySQL Monitoring Plugin Graph Not Showing or Blank

0

munin 300x78 Fix for Munin MySQL Monitoring Plugin Graph Not Showing or Blank

Munin is a monitoring tool used to survey and monitor the performance of computers, networks, SANs, applications, databases, weather measurements and other parameters. Munin remembers and records information it captured and presents them in graphs through a web interface. cPanel, through WebHost Manager (WHM) has added the Munin Service Monitor as easily installed plugin to monitor the web host and check the capacity of resources available. (more…)

How to Change the Shared IP of a cPanel Server

0

cpanel vps optimized2 300x136 How to Change the Shared IP of a cPanel ServerAs a good administrator, when you change the shared IP of your cPanel server, you must ensure that there minimal interruption of service.

(more…)

Simple arhive extracting alias in linux

0

Add this to your ~/.bashrc

extract () {
if [ -f $1 ] ; then
case $1 in
*.tar.bz2) tar xvjf $1 && cd $(basename "$1" .tar.bz2) ;;
*.tar.gz) tar xvzf $1 && cd $(basename "$1" .tar.gz) ;;
*.tar.xz) tar Jxvf $1 && cd $(basename "$1" .tar.xz) ;;
*.bz2) bunzip2 $1 && cd $(basename "$1" /bz2) ;;
*.rar) unrar x $1 && cd $(basename "$1" .rar) ;;
*.gz) gunzip $1 && cd $(basename "$1" .gz) ;;
*.tar) tar xvf $1 && cd $(basename "$1" .tar) ;;
*.tbz2) tar xvjf $1 && cd $(basename "$1" .tbz2) ;;
*.tgz) tar xvzf $1 && cd $(basename "$1" .tgz) ;;
*.zip) unzip $1 && cd $(basename "$1" .zip) ;;
*.Z) uncompress $1 && cd $(basename "$1" .Z) ;;
*.7z) 7z x $1 && cd $(basename "$1" .7z) ;;
*) echo "don't know how to extract '$1'..." ;;
esac
else
echo "'$1' is not a valid file!"
fi
}

Now just type “extract filename” and you’re golden.

Show hidden files on Mac OS X Lion

0
ninja finder 300x284 Show hidden files on Mac OS X Lion
The easiest way how to show hidden files in finder is to run a command in terminal: 
  • Open the Terminal application (Applications > Utilities > Terminal.app)
  • Type in the following without the quotes “defaults write com.apple.Finder AppleShowAllFiles TRUE”
  • Hit the ‘Enter’ key
  • Restart the Finder by holding ‘Option’, click and hold on the icon. Click ‘Relaunch’
To hide them again use this command:
  • To re-hide the files type “defaults write com.apple.Finder AppleShowAllFiles FALSE”
  • Then restart the Finder again.

Simple way to install Midnight Commander in Mac OS Lion

3

The simplest way I’ve found to install Midnight Commander in Mac OS Lion is to use rudix package.
Rudix is a collection of Unix software packages for OS X Lion (plus Snow Leopard).

Mc screenshot 300x166 Simple way to install Midnight Commander in Mac OS Lion

http://code.google.com/p/rudix/

If you need step by step instruction go inside

(more…)

0Day Vulnerability in WordPress themes

0

wphack 0Day Vulnerability in WordPress themes

Included in many wordpress themes utility for image resizing timthumb.php, is vulnerable to arbitrary loading PHP-code.

(more…)

New smiles in Skype 5.5

0

skype logo New smiles in Skype 5.5

Hehey, now we got new smiles in Skype 5.5 and above )

(more…)

Финальный релиз Google Chrome 12

0

google chrome 12 300x300 Финальный релиз Google Chrome 12

Вчера компания Google объявила о выпуске очередной стабильной версии своего веб-браузера Chrome — 12.

Никаких революционных новшеств в релизе Google Chrome 12 нет, а главными изменениями стали поддержка аппаратного ускорения для трехмерных преобразований в каскадных таблицах стилей (3D CSS) — сама технология была представлена в WebKit летом 2009 года, а также возможность удаления Flash cookies (Local Shared Objects, LSO) прямо из браузера (раньше это можно было делать только с сайта Adobe).

Среди прочих изменений можно выделить улучшения в Safe Browsing (теперь пользователей предупреждают о скачивании потенциально подозрительных файлов) и запуск приложений по их названию из Omnibox, а также удаление Google Gears. Это все конечно обезапасит вас, но отчасти замедлит работу в Сети и вне ее.

(more…)

iTerm2-128

iTerm2 для Mac

0

logo iTerm2 для MacВкратце, iTerm2 является наследником iTerm, который, по-видимому, перестал бурно развиваться. В общем, iTerm2 подхватил выпавшее из рук iTerm знамя лучшего софта для доступа к терминалам.

(more…)

skype

Делаем Skype 5 для mac еще лучше

0

Пользователи маков давно ждали новой версии Skype, в то время как пользователи Windows получали апдейт за апдейтом. Казалось что разработчики совсем забыли о нас, однако недавно вышла новая beta-версия этого замечательного клиента.

skype Делаем Skype 5 для mac еще лучше

Самое первое что замечает пользователь во всех этих изменениях — обновленный интерфейс. Тут нужно отдать должное компании, потому что на этот раз разработчики решили не идти по пути развития Windows-версии, а создали совершенно новый интерфейс для маков. Тем не менее, есть и минусы, главным из которых является большие пробелы между сообщениями в чате.

(more…)

admin's RSS Feed
Go to Top