Показаны сообщения с ярлыком SSH. Показать все сообщения
Показаны сообщения с ярлыком SSH. Показать все сообщения

четверг, 28 августа 2014 г.

linux: check disk space

Размер, а так же свободное и занятое место на всех смонтированных файловых системах:
$ df -h
Размер файлов и права в текущей директории:
$ ls -lh
Размер отдельных файлов или каталогов в указанной директории:
$ du -h DirName/
Cуммировать размер всего каталога с вложенными файлами и подкаталогами:
$ du -sh DirName/

ssh copy to remote server (ssh scp copy to remote machine)

Copy the file "myfile.txt" from the local host to a remote host
$ scp myfile.txt username@remoteserver.com:/remote/dir

среда, 21 мая 2014 г.

Magento SSH: How to disable Compiler

Disabling Magento compiler when Magento Admin Backend is inaccessible / down
Check current compilation status
$ php -f shell/compiler.php -- state
Compiler Status: Enabled
Compilation State: Compiled
Collected Files Count: 6042
Compiled Scopes Count: 4

пятница, 17 января 2014 г.

Linux - Use "screen" for ssh if session terminates

Screen is often used when a network connection to the terminal is unreliable, as a dropped network connection typically terminates all programs the user was running. Running the applications under screen means that the applications don't even know the terminal has detached, and allows the user to reattach the session later and continue working from where they left off. http://en.wikipedia.org/wiki/GNU_Screen

"Screen – это полноэкранный оконный менеджер, который позволяет разделить физический терминал между несколькими независимыми процессами (обычно интерактивными облочками)"