В 2011 году Амазонку признали одним из семи природных чудес мира. Она имеет крупнейший в мире бассейн площадью 7180 тысяч кв. км, и на этом огромном пространстве обитает более миллиона самых разных видов растений и животных.
Познакомьтесь с ними поближе – смотрите полный выпуск программы «Неизведанные острова. Амазонка: плавающий лес».
Этот выпуск из страны, при въезде в которую нужно отдирать этикетки с бутылок Кока Колы, в этой стране каждый компьютер нужно регистрировать в полиции — правоохранители раз в 2 месяца приходят и отсматривают историю операций, в деревнях до сих пор ездят машины на дровах, местные жители на полном серьезе мечтают побывать в ГДР и Чехословакии — странах, которых нет уже почти 30 лет, про президента в государственных газетах пишут, что он предсказывает погоду, а если вы снимите со стены табличку с государственным лозунгом, вас могут не просто наказать, а реально посадить в тюрьму.
In this tutorial i cover how to schedule task using the vixie cron implementation of cron and some common pitfalls. Vixie cron is probably one of the most popular cron implementations out there.
As this is a long tutorial i have added these bookmarks so you can skip ahead to each section. Although i do recommend that you watch the entire video as each section follows on from the previous section.
BOOKMARKS
00:11 Intro
00:38 crontab
03:26 Anatomy of a cronjob
11:10 90 minute interval cronjob
12:53 Last day of the month cronjob
18:30 crontab variables
23:38 cron environment variables run GUI applications
26:11 Where is my crontab file
27:10 Where are the cron logs
28:00 The system crontab
31:35 /etc/cron. directories
32:38 cron.d
33:52 cron.allow cron.deny crontab access control
36:20 A bit about runparts
37:09 Running cronjob as root
We start this tutorial with an introduction to crontab and how to use it. There is a short presentation covering how to create your own cronjobs and what is classified as a valid schedule.
Following this is some examples of how to create more complex cron shedules with the assistance of a little shell scripting.
The next sections cover crontab variables and environment variables.
The last section cover the cron directory structure and special files that cron uses along with some advice on where to put your crontabs if you require root privileges with some explanation and justifications.
If you read this far into the description you are one of a small elite group that dare to delve below the fold drop a comment on this video and end your comment with "#! linuxleech" It would be interesting to see how many people do this and also know why they are doing this i.e they went below the fold and read this. :)
Установка VirtualBox на Windows 8.1:
1. Плюсы и минусы установки второй ОС (операционной системы) на VirtualBox 0:00
2. Находим и скачиваем дистрибутив 1:50
3. Установка программы 2:12
Что такое процесс и как он связан с программами и библиотеками
* сегменты процесса: text, data, stack, heap
* загрузка программ и библиотек в виртуальную память процесса
* ELF секции и права доступа сегментов памяти
* динамическая и статическая линковка
* виртуальная, резидентная и разделяемая память процесса
Атрибуты процесса
* wd, umask, environment
* pid, ppid, tty, sid, pgid, tpgid
* nice, pri
* ruid, euid, rgid, egid и их связь с SUID и SGID
Порождение процессов и запуск программ
* системные вызовы fork() и exec()
* системные вызовы wait() и exit()
* процессы-зомби и прародитель процессов
* параллельные программы