Ubuntu/Linux 初学者,所以我想知道是否有任何方法可以强制 Ubuntu 在解析名称时更喜欢 IPv4 或 IPv6(例如:google.com 有 ipv4 和 ipv6 地址。是否有任何设置允许我说 IPv6当某些应用程序要求使用该名称时,应该优先于 IPv4?)
谢谢。
Ubuntu/Linux 初学者,所以我想知道是否有任何方法可以强制 Ubuntu 在解析名称时更喜欢 IPv4 或 IPv6(例如:google.com 有 ipv4 和 ipv6 地址。是否有任何设置允许我说 IPv6当某些应用程序要求使用该名称时,应该优先于 IPv4?)
谢谢。
在继续之前,这里是关于 remmina 的版本信息:
/snap/remmina/5073/usr/bin/remmina: /snap/remmina/5073/gnome-platform/usr/lib/x86_64-linux-gnu/libffi.so.7: no version information available (required by /snap/remmina/5073/usr/lib/x86_64-linux-gnu/libwayland-client.so.0)
Load modules from /snap/remmina/current/usr/lib/remmina/plugins
Remmina plugin glibsecret (type=Secret) has been registered, but is not yet initialized/activated. The initialization order is 2000.
The glibsecret secret plugin has been initialized and it will be your default secret plugin
org.remmina.Remmina - SNAP Build - 1.4.21 (git e73ddab1f)
NAME TYPE DESCRIPTION PLUGIN AND LIBRARY VERSION
EXEC Protocol Execute a command 1.0
GVNC Protocol Remmina VNC plugin for GNOME and KVM 0.1b
RDP Protocol RDP - Remote Desktop Protocol RDP plugin: 1.4.21 (Git e73ddab1f), Compiled with libfreerdp 2.4.1 (2.4.1), Running with libfreerdp 2.4.1 (rev 2.4.1), H.264 Yes
RDPF File RDP - RDP File Handler RDP plugin: 1.4.21 (Git e73ddab1f), Compiled with libfreerdp 2.4.1 (2.4.1), Running with libfreerdp 2.4.1 (rev 2.4.1), H.264 Yes
RDPS Preference RDP - Preferences RDP plugin: 1.4.21 (Git e73ddab1f), Compiled with libfreerdp 2.4.1 (2.4.1), Running with libfreerdp 2.4.1 (rev 2.4.1), H.264 Yes
SPICE Protocol SPICE - Simple Protocol for Independent Computing Environments 1.4.21
VNC Protocol Remmina VNC Plugin 1.4.21
VNCI Protocol Remmina VNC listener Plugin 1.4.21
WWW Protocol Remmina web-browser plugin 0.1.0
glibsecret Secret Secured password storage in the GNOME keyring 1.4.21
Build configuration: HAVE_ARPA_INET_H=1 HAVE_ERRNO_H=1 HAVE_FCNTL_H=1 HAVE_NETDB_H=1 HAVE_NETINET_IN_H=1 HAVE_NETINET_TCP_H=1 HAVE_SYS_SOCKET_H=1 HAVE_SYS_UN_H=1 HAVE_TERMIOS_H=1 HAVE_UNISTD_H=1 WITH_AVAHI=ON WITH_CLEANUP=OFF WITH_FREERDP3=OFF WITH_GCRYPT=ON WITH_GVNC=ON WITH_ICON_CACHE=ON WITH_IPP=OFF WITH_LIBRARY_VERSIONING=ON WITH_MANPAGES=ON WITH_NEWS=ON WITH_SSE2=ON WITH_TRANSLATIONS=ON WITH_UPDATE_DESKTOP_DB=ON
Build type: Release
CFLAGS: -isystem/builds/Remmina/Remmina/parts/remmina/install/usr/include -isystem/builds/Remmina/Remmina/stage/usr/include -fPIC -Wall -Wno-unused-result -Wno-unused-but-set-variable -Wno-deprecated-declarations -Wimplicit-function-declaration -Wredundant-decls
Compiler: GNU, 9.3.0
Target architecture: x64
升级到 Ubuntu 21.10 后,多显示器支持似乎不再正常工作。我可以看到这些选项并且它们已被激活,但 RDP 会话将仅使用其中一个监视器。
关于我可以做些什么来解决这个问题的任何线索?
谢谢。
我正在尝试创建一个复杂的命令(使用 shell 替换和算术表达式),我想知道是否有人可以帮助我理解wc
命令的输出。
例如,这里有几个例子:
[11:10:33] labreu:~ $ wc -l test.txt
5 test.txt
[11:10:40] labreu:~ $ cat test.txt| wc -l
5
为什么命令返回不同的值?我试过查看它的手册页,但没有任何关于它的内容......
顺便说一句,我只是在问这个问题,因为我试图使用以下命令跳过文件的 x 行:
[11:25:35] labreu:~ $ tail -n "+$(( $(wc -l test.txt)-2 ))" test.txt
zsh: bad math expression: operator expected at `test.txt-2...'
在注意到wc
返回number_of_lines filename
并且使用管道(或重定向会产生不同的结果)之后,我设法通过使用以下方法获得了我需要的东西:
tail -n "+$(( $(wc -l<test.txt )-2 ))" test.txt
tail -n "+$(( $(cat test.txt | wc -l )-2 ))" test.txt
无论如何,主要问题仍然存在:为什么该wc
命令在管道中使用(或输入重定向)时返回不同的输出?
谢谢