前几天我在我们的服务器上运行了一项占用 70% 内存的工作。当我一天后登录查看时,该作业已被终止(在终端中显示为“已终止”)。
我的问题是,我能查出发生了什么吗?
有没有办法查明到底发生了什么?
我的 Lenovo T440s 以最大亮度启动。在此线程之后,我尝试更改rc.local
,但这不起作用。
当我执行命令时,cat /sys/class/backlight/acpi_video0/brightness
我得到了输出851
。然后我通过热键手动降低亮度并再次执行命令 - 它仍然显示851
.
这让我相信我无法通过简单地向rc.local
.
还有什么我可以尝试的吗?
这是grub内容
# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.
# For full documentation of the options in this file, see:
# info -f grub -n 'Simple configuration'
GRUB_DEFAULT="0"
GRUB_HIDDEN_TIMEOUT="0"
GRUB_HIDDEN_TIMEOUT_QUIET="true"
GRUB_TIMEOUT="2"
GRUB_DISTRIBUTOR="`lsb_release -i -s 2> /dev/null || echo Debian`"
#GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_backlight=vendor"
GRUB_CMDLINE_LINUX=""
# Uncomment to enable …
Run Code Online (Sandbox Code Playgroud) 我正在尝试按照本指南在我的 Ubuntu 14.04 LTS 上安装 OpenMPI
当我运行命令时,sudo apt-get install -y autotools-dev g++ build-essential openmpi1.5-bin openmpi1.5-doc libopenmpi1.5-dev
我收到错误消息
E: Unable to locate package openmpi1.5-doc
E: Couldn't find any package by regex 'openmpi1.5-doc'
E: Unable to locate package libopenmpi1.5-dev~
E: Couldn't find any package by regex 'libopenmpi1.5-dev~'
Run Code Online (Sandbox Code Playgroud)
这是为什么?我在 Ubuntu 12.04 上试过,它运行良好。