我想让我的笔记本电脑成为 Wi-Fi 热点。为此,我按下按钮 Settings->Network->Wireless->Use as Hotspot..
然后它创建一个无线网络连接“Hostspot”并连接。但是在建立连接后它就会断开连接。
这是我的网络硬件信息:
sudo lshw -C network
*-network
description: Wireless interface
product: WiFi Link 5100
vendor: Intel Corporation
physical id: 0
bus info: pci@0000:04:00.0
logical name: wlan0
version: 00
serial:
width: 64 bits
clock: 33MHz
capabilities: pm msi pciexpress bus_master cap_list ethernet physical wireless
configuration: broadcast=yes driver=iwlagn driverversion=3.0.0-12-generic firmware=8.83.5.1 build 33692 latency=0 link=no multicast=yes wireless=IEEE 802.11abgn
resources: irq:47 memory:d9200000-d9201fff
*-network
description: Ethernet interface
product: RTL8111/8168B PCI Express Gigabit Ethernet controller
vendor: Realtek Semiconductor Co., Ltd. …Run Code Online (Sandbox Code Playgroud) 我无法在 Ubuntu 14.04 的视频 CD 中从“mpegav”复制文件。现在经过扩展搜索后,我明白我需要使用“cdfs”挂载 cd:
sudo mount -t cdfs -o ro /dev/sr0 /media/data/cd
Run Code Online (Sandbox Code Playgroud)
但我收到错误:
mount: unknown filesystem type 'cdfs'
Run Code Online (Sandbox Code Playgroud)
所以决定安装 cdfs 模块:
sudo module-assistant get cdfs
Run Code Online (Sandbox Code Playgroud)
它显示此消息:

我将从哪里获得 cdfs 源?
嗨,我正在尝试使用 h264 基线配置文件将 wmv 视频转换为 mp4。
avconv -i 'Video2.WMV' \
-vcodec libx264 -preset ultrafast -profile baseline \
-acodec aac -strict experimental \
-r 24 -b 255k -ar 44100 -ab 59k 'Video2.mp4'
Run Code Online (Sandbox Code Playgroud)
但它显示以下错误:
[aac @ 0x707e40] [Eval @ 0x7fff0c8db800] Undefined constant or missing '(' in 'baseline'
[aac @ 0x707e40] Unable to parse option value "baseline"
[aac @ 0x707e40] Error setting option profile to value baseline.
Run Code Online (Sandbox Code Playgroud)
配置文件设置导致错误。如果我运行命令:
avconv -i 'Video2.WMV' \
-vcodec libx264 -preset ultrafast \
-acodec aac -strict experimental \
-r …Run Code Online (Sandbox Code Playgroud) 我在 Ubuntu 16.04 上使用 GnuCash 没有问题。现在切换到 18.04 后我无法打开 GnuCash 文件。它给出了这样的消息:
没有找到合适的后端...
如果我没记错的话,我使用的是 SQLite 后端。然而现在我找不到为 GnuCash 安装 SQLite 后端的方法,尽管我已经安装了 sqlite3 包。
是否可以在默认 Ubuntu 存储库中为 GnuCash 安装 SQLite 后端?
提前致谢。