Cправка — YouTube
Войти
Справка Google
- Справочный центр
- Устранение проблем
- Обучающие видео
- Как управлять настройками канала
- Режим родительского контроля на YouTube
- YouTube Premium
- Как начать вести свой канал
- Как зарабатывать с помощью Партнерской программы YouTube
- Правила, безопасность и авторское право
- Сообщество
- YouTube
- Политика конфиденциальности
- Условия использования YouTube
- Отправить отзыв
Тема отзыва
Информация в текущем разделе Справочного центра
Общие впечатления о Справочном центре Google
- Справочный центр
- Сообщество
- Советы авторам
YouTube
Сейчас к нам поступает очень много запросов. Возможно, вам придется ждать ответа дольше обычного.
Asked
10 years, 5 months ago
Viewed
1k times
- The Overflow Blog
- Featured on Meta
Linked
Hot Network Questions
-
Is it right to ask my advisor to let me prepare my defense talk alone?
-
bg command not sending process to background
-
Does anyone know what «wife on the crupper» means in Hunchback of Notre Dame Chapter 1?
-
Is there really a benefit to using modules in Factorio?
-
Poisson regression intercept downward bias when true intercepts are small
-
Did Frodo, Bilbo, Sam, and Gimli «wither and grow weary the sooner» in the Undying Lands?
-
What is the difference between a Bowden extruder and a direct drive extruder?
-
Comparing chest-mounting to handlebar-mounting a sports camera
-
Can the Sudden Charge and Shielded Stride feats be used together?
-
What happens if a law contains an error of fact?
-
Singularity & GATK 4.4.0.0. CreateSequenceDictionary
-
Is there a way to temporarily gain tool proficiencies?
-
Can I tell DeleteCases not to delete function arguments?
-
Does installing NTP mean I’m installing an NTP server?
-
ComplexContourPlot isn’t showing nothing except a blank pane
-
Single exercises to improve kicking and punching power
-
Approximation of Hölder continuous functions «from below»
-
Are times zones, (i.e. a geo-spatial frame of reference) considered in age based regulations?
-
What to do if a special case of a theorem is published
-
GPL-2 licensing and commercial software (what rights has the licensee)?
-
What is the name of this rhetorical device: Using the plural of a proper name (or even proper noun) to generalize?
-
Why are there such low rates of acceptance in AI/ML conferences?
-
Can «sitting down» be both an act and a state?
-
How to cut a curve
more hot questions
Question feed
Your privacy
By clicking “Accept all cookies”, you agree Stack Exchange can store cookies on your device and disclose information in accordance with our Cookie Policy.
Transfer.sh — это сервис, с помощью которого вы можете загружать файлы с помощью curl. Я получаю эту ошибку, когда пытаюсь загрузить какой-нибудь файл:
$ curl --upload-file file -s -w "n" https://transfer.sh/
Could not save metadata
2 ответа
Лучший ответ
Служба работает нестабильно.
Вы можете использовать https://file.io
$ curl -F "file=@file" -s -w "n" https://file.io {"success":true,"key":"Y7PDKv","link":"https://file.io/Y7PDKv","expiry":"14 days"}
7
Ramon Medeiros
15 Янв 2020 в 14:09
С помощью этой функции bash вы можете получить ссылку
snd() {
curl --progress-bar -F "file=@$1" -s -w "n" https://file.io | jq -r '.link'
}
alias snd=snd
Как использовать: snd filename.ext
Получите: https://file.io/0uw5yYbkguc4
Чтобы разобрать ответ на загрузку, json, необходимо установить «jq»
0
FErArg
19 Апр 2022 в 19:47
2
ответа
Решение
Служба работает нестабильно.
Вы можете использовать https://file.io/
$ curl -F "[email protected]" -s -w "n" https://file.io {"success":true,"key":"Y7PDKv","link":"https://file.io/Y7PDKv","expiry":"14 days"}
2020-01-15 12:14
С помощью этой функции bash вы можете получить ссылку
snd() {
curl --progress-bar -F "[email protected]$1" -s -w "n" https://file.io | jq -r '.link'
}
alias snd=snd
Как использовать:
snd filename.ext
Получать:
https://file.io/0uw5yYbkguc4
Чтобы разобрать ответ на загрузку, json, необходимо установить «jq»
2022-04-19 16:47
2
ответа
Решение
Служба работает нестабильно.
Вы можете использовать https://file.io/
$ curl -F "file=@file" -s -w "\n" https://file.io {"success":true,"key":"Y7PDKv","link":"https://file.io/Y7PDKv","expiry":"14 days"}
2020-01-15 12:14
С помощью этой функции bash вы можете получить ссылку
snd() {
curl --progress-bar -F "file=@$1" -s -w "\n" https://file.io | jq -r '.link'
}
alias snd=snd
Как использовать:
snd filename.ext
Получать:
https://file.io/0uw5yYbkguc4
Чтобы разобрать ответ на загрузку, json, необходимо установить «jq»
2022-04-19 16:47
Перейти к содержанию
На чтение 1 мин Просмотров 4.2к. Опубликовано Обновлено
При попытке стандартным методом обновить операционную систему Centos 8 получаем следующую фигню:
[root@mail ~]# yum update
CentOS Linux 8 - AppStream 116 B/s | 38 B 00:00
Ошибка: Не удалось загрузить метаданные для репозитория «appstream»: Cannot prep are internal mirrorlist: No URLs in mirrorlist
Ну что, поздравляю. Centos 8 официально умер 31.12.2021 года.
Чтоб решить проблему с скачиванием нужных пакетов из официальных репозиториев, нужно перенаправить свои репозитории /etc/yum.repos.d/ на http://vault.centos.org вместо http://mirror.centos.org. Делается это следующим образом:
sed -i 's/mirrorlist/#mirrorlist/g' /etc/yum.repos.d/CentOS-Linux-*
sed -i 's|#baseurl=http://mirror.centos.org|baseurl=http://vault.centos.org|g' /etc/yum.repos.d/CentOS-Linux-*
Проверяем:
yum update
Заработало.
Но!!! Обновление безопасности вы получать не будете. Но вы можете перейти на SentOS Stream, выполнив команды:
dnf --disablerepo '*' --enablerepo extras swap centos-linux-repos centos-stream-repos
dnf distro-sync
После чего выполните перезагрузку
( 8 оценок, среднее 4.5 из 5 )
Transfer.sh — это сервис, с помощью которого вы можете загружать файлы с помощью curl. Я получаю эту ошибку, когда пытаюсь загрузить какой-нибудь файл:
$ curl --upload-file file -s -w "\n" https://transfer.sh/
Could not save metadata
2 ответа
Лучший ответ
Служба работает нестабильно.
Вы можете использовать https://file.io
$ curl -F "file=@file" -s -w "\n" https://file.io {"success":true,"key":"Y7PDKv","link":"https://file.io/Y7PDKv","expiry":"14 days"}
7
Ramon Medeiros
15 Янв 2020 в 14:09
С помощью этой функции bash вы можете получить ссылку
snd() {
curl --progress-bar -F "file=@$1" -s -w "\n" https://file.io | jq -r '.link'
}
alias snd=snd
Как использовать: snd filename.ext
Получите: https://file.io/0uw5yYbkguc4
Чтобы разобрать ответ на загрузку, json, необходимо установить «jq»
0
FErArg
19 Апр 2022 в 19:47