И не будет проблем с большим количеством пользователей (тысячи, а то и миллионы)?
> yum repolist
Loaded plugins: fastestmirror, security, verify
Loading mirror speeds from cached hostfile
* base: mirror.docker.ru
* centosplus: mirror.docker.ru
* contrib: mirror.docker.ru
* epel: mirror.linux-ia64.org
* epel-source: mirrors.powernet.com.ru
* extras: mirror.docker.ru
* rpmforge: mirror.awanti.com
* rpmfusion-free-updates: ftp.nluug.nl
* rpmfusion-nonfree-updates: ftp.nluug.nl
* updates: mirror.truenetwork.ru
* webtatic: uk.repo.webtatic.com
repo id repo name status
CentALT CentALT Packages for Enterprise Linux 6 - x86_64 319
WANdisco-git WANdisco Git Repo 417
WANdisco-svn WANdisco SVN Repo 349
base CentOS-6 - Base 6,713
centosplus CentOS-6 - Plus 138
contrib CentOS-6 - Contrib 0
elgis EL GIS 6 - x86_64 198
elgis-plus EL GIS 6 Plus - x86_64 0
epel Extra Packages for Enterprise Linux 6 - x86_64 12,584
epel-source Extra Packages for Enterprise Linux 6 - x86_64 - Source 0
extras CentOS-6 - Extras 47
lux CentOS 6 - x86_64 - Lux 400
nginx nginx repo 644
rpmforge RHEL 6 - RPMforge.net - dag 4,718
rpmfusion-free-updates RPM Fusion for EL 6 - Free - Updates 221
rpmfusion-nonfree-updates RPM Fusion for EL 6 - Nonfree - Updates 60
squid Squid repo for CentOS Linux - x86_64 127
updates CentOS-6 - Updates 889
webtatic Webtatic Repository EL6 - x86_64 418
repolist: 28,242
предлагает мне подписку
Допустим Atom имеет версию 1.26, а хочу 1.41.0-dev. Есть ли в терминале линукс убунту такая команда?
configure
make
make install
AllowUsers rmbackup testonlytt
зачем и почему это делают?
#!/usr/bin/gawk -f
BEGIN {
format="%a %b %d %H:%M:%S %Z %Y"
}
{
print strftime(format,$1),$2,$3,$4,$5,$6,$7,$8,$9,$10
}
#!/usr/bin/perl
if ($ARGV[0] eq '')
{
printf STDERR "Input file missing. Run: newlog <in.file> <out.file>\n";
exit;
}
open(INLOG,$ARGV[0]);
while ($name = <INLOG>)
{
chop $name;
@line = split(/\s+/,$name);
$string = localtime(@line[0]);
printf "%s %25s %10s %s %s %s %s %s %s %s\n",$string,@line[2],@line[4],@line[5],@line[6],@line[1],@line[3],@line[7],@line[8],@line[9];
}
close(INLOG);
Как избежать ситуации, когда файлы бэкапов на сервере окажутся зашифрованы, и на NASе, соответственно, тоже?