ECS
查看硬盘使用情况
bash
$ df -h
df 是 disk free 的缩写。
-h
代表 human-readable 表示人类可读的格式。
服务器位置设置错误
报错信息
bash
can't set the locale; make sure $LC_* and $LANG are correct
解决方案:
bash
sudo locale-gen "en_US.UTF-8"
sudo dpkg-reconfigure locales //如果跳转到设置页面,可以选择默认的即可。
sudo vi /etc/default/locale 改为如下
LANG=en_US.UTF-8
LC_ALL=en_US.UTF-8
参考资料:
OSS 存储 PDF 但点击下载而非预览
设置文件的 Response Header。
增加 Content-Disposition
, 值为 attachment;
。
若要自定义文件名,可以在 Content-Disposition
中添加 filename="filename.ext"
。