Руководство предлагает делать резервное копирование в облако, для того что бы не покупать сервак для бэкапов.
The time and date fields are:
field allowed values
----- --------------
minute 0-59
hour 0-23
day of month 1-31
month 1-12 (or names, see below)
day of week 0-7 (0 or 7 is Sunday, or use names)
A field may contain an asterisk (*), which always stands for "first-last".
#min hour day mon dow command
0 18 * * 6 ghettoVCB.sh
Только не пишите что в гугле)
Что лучше в плане безопасности?
И какой дистрибутив брать?
И еще, можно ли ставить хом версии?
Они же вроде дорабатывали десятку и по идее она должны быть лучше.
zpool attach [-f] pool device new_device
Attaches new_device to an existing zpool device. The existing device
cannot be part of a raidz configuration. If device is not currently
part of a mirrored configuration, device automatically transforms
into a two-way mirror of device and new_device. If device is part of
a two-way mirror, attaching new_device creates a three-way mirror,
and so on. In either case, new_device begins to resilver immediately.
-f Forces use of new_device, even if its appears to be in use.
Not all devices can be overridden in this manner.
Есть ли утилита или онлайн сервис куда можно загрузить свой Блэклист по маскам и список IP и посмотреть каким правилом оно блокируется?
#!/usr/bin/perl
use 5.010;
use strict;
use warnings;
use NetAddr::IP;
my @list = ('144.76.0.0/16', '144.76.118.82', '144.76.119.28', '144.76.67.0/24', '144.75.0.41');
my @result;
foreach my $ip (@list) {
push(@result, NetAddr::IP->new($ip));
}
@result = NetAddr::IP::compact(@result);
foreach my $ip (@result) {
say $ip->cidr;
}
144.75.0.41/32
144.76.0.0/16
pref("general.config.obscure_value", 0);
pref('general.config.filename', 'firefox.cfg');
//put everything in a try/catch
try {
lockPref("browser.startup.homepage", "https://yandex.ru/");
} catch(e) {
displayError("lockedPref", e);
}
Адрес IPv4: 192.168.1.101
Маска подсети: 255.255.255.0
Шлюз по умолчанию: 192.168.1.1
DNS-сервер: 192.168.1.1
Адрес IPv4: 192.168.1.102
Маска подсети: 255.255.255.0
Шлюз по умолчанию: 192.168.1.1
DNS-сервер: 192.168.1.1
Адрес IPv4: 192.168.2.10
Маска подсети: 255.255.255.0
Адрес IPv4: 192.168.2.20
Маска подсети: 255.255.255.0
location
использует URI в нормализованном виде и без аргументов. С rewrite
аналогичная ситуация. Простой вариант решения проблемы:location /index.php {
if ($arg_path ~ "^[0-9]{2}_[0-9]{3}$") {
return 301 https://example.com/;
}
}