Chrome 95 на CentOS 7.9

Я использую эти псевдонимы для часто используемых findкоманд, особенно при очистке дискового пространства с помощью dupeguru , когда удаление дубликатов может привести к большому количеству пустых каталогов.

Комментарии внутри .bashrc, чтобы я не забыл их позже, когда мне нужно будет это настроить.

# find empty directories
alias find-empty='find. -type d -empty'

# fine empty/zero sized files
alias find-zero='find. -type f -empty'

# delete all empty directories!
alias find-empty-delete='find-empty -delete'

# delete empty directories when `-delete` option is not available.
# output null character (instead of newline) as separator. used together
# with `xargs -0`, will handle filenames with spaces and special chars.
alias find-empty-delete2='find-empty -print0 | xargs -0 rmdir -p'

# alternative version using `-exec` with `+`, similar to xargs.
# {}: path of current file
# +: {} is replaced with as many pathnames as possible for each invocation.
alias find-empty-delete3='find-empty -exec rmdir -p {} +'

# for removing zero sized files, we can't de-dupe them automatically
# since they are technically all the same, so they are typically left
# beind. this removes them if needed.
alias  find-zero-delete='find-zero -delete'
alias find-zero-delete2='find-zero -print0 | xargs -0 rm'
alias find-zero-delete3='find-zero -exec rm {} +'
3
20.10.2021, 08:08
2 ответа

Официальный снимок для Chromium доступен здесь:https://snapcraft.io/chromium

Текущая версия канала latest/stable— 94.0.4606.81, но вы можете выбрать другой канал и получить более новые версии. Я только что попробовал канал latest/edgeна компьютере с CentOS 7, и он установил 96.0.4664.9, который работает нормально и, предположительно, будет иметь все исправления для 95.x.

Надеюсь, 95 скоро станет стабильной версией.

0
20.10.2021, 12:13

Похоже, что официальный выпуск 95.0.4638.69 -1 теперь совместим с CentOS 7. У меня была та же проблема, что и в OP в первом выпуске Chrome 95, но 95.0.4638.69 -1 теперь нормально устанавливается с ням.

0
07.11.2021, 18:39

Теги

Похожие вопросы