我的女朋友从我的 Xubuntu 12.10 上网本登录了她的 Skype 帐户,从那时起,每次启动时 Skype 都会自动启动。我如何防止这种情况发生?
我尝试过的事情:
apt-get remove skype --purge并希望它也删除所有设置 - 它没有。保存重新安装,我还能尝试什么?
在同一个笔记中 - Skype 如何在不通过正常的 Upstart 路线的情况下自动启动?
编辑:我尝试过的另外几件事:
.Skype我的主目录中的文件夹。我确实找到了一些看起来很有希望的文件(.Skype/shared.xml, .Skype/[my username]/config.xml, .Skype/[girlfriend's username]/config.xml),但是查看它们并没有产生任何结果。虽然有很多 SQLite 文件。难道这个设置在某个地方?当我今天启动我的机器时,我在我的系统日志中收到了一些非常奇怪的消息:
...
Aug 17 18:58:15 Floral-Towel systemd[1349]: Startup finished in 266ms.
Aug 17 18:58:15 Floral-Towel systemd[1349]: Starting Default.
Aug 17 18:58:15 Floral-Towel systemd[1]: Started User Manager for UID 121.
Aug 17 18:58:15 Floral-Towel freshclam[782]: Empty script safebrowsing-43732.cdiff, need to download entire database
Aug 17 18:58:17 Floral-Towel gnome-session[1355]: gnome-session[1355]: CRITICAL: We failed, but the fail whale is dead. Sorry....
Aug 17 18:58:17 Floral-Towel gnome-session[1355]: CRITICAL: We failed, but the fail whale is dead. Sorry....
Aug 17 18:58:17 Floral-Towel gdm[1232]: Child process …Run Code Online (Sandbox Code Playgroud) 我有一台 MacBook Pro,只在上面使用 Ubuntu。我刚刚从 18.04 升级到 20.04。
现在,当我启动计算机时,它说:
Failed to Set MokListRT: Invalid Parameter
Could not create mokListRT: Invalid Parameter
Importing MOK states has failed: import_mok_state() failed: Invalid Parameter
Continuing boot since secure mode is disabled.
Run Code Online (Sandbox Code Playgroud)
有谁知道我如何解决这个问题?一步一步的过程我不想把任何事情搞砸试图解决这个问题。
我知道两个 bash 登录脚本之间的区别:
.bashrc 仅由“非登录”shell 运行。
.bash_profile(or .bash_loginor .profile) 由“登录”shell 执行。
有没有人有一些很好的例子来说明哪些东西更适合仅登录执行,这样我只会将它们放入.bash_profile,但它们实际上没有意义.bashrc?
(我知道我们大多数源.bashrc出.bash_profile,所以似乎并没有在相反的问题多一点...)
有没有办法从启动中删除它?
我不需要它,我根本没有使用进化。
当您转到“启动应用程序”时,您会看到启动时执行的命令列表,您可以添加自己的命令。
我想知道这个列表存储在哪里。它在 gconf 的某个地方吗?
我想知道这个有两个原因:
如何延迟诸如 cairo-dock(无 openGL)或 Firefox 之类的程序?
有时程序在使用其他启动应用程序启动时会崩溃。我希望程序晚启动 10 秒以避免崩溃。
是否有“最佳实践”或标准可以使一些 iptables 规则永久化?我的意思是:在系统重新启动时自动应用?
我正在使用带有 Ubuntu Server 10.04 LTS (Lucid Lynx) 的 VPS。
谢谢你。
大编辑:我不希望保留任何规则(就像iptables-persistent包一样)。我只想重新加载我自己的特定设置...如果最终通过运行 iptables 添加了其他规则,则应丢弃这些规则...
我的/etc/rc.local脚本中有一个命令,它应该在启动期间启动Tiny Tiny RSS的更新守护程序,但在启动期间不执行该脚本。为什么?
整个 /etc/rc.local 文件:
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
/sbin/start-stop-daemon -b -c www-data:www-data -S -x /usr/bin/php /var/www/ttrss/update_daemon2.php -- -quiet …Run Code Online (Sandbox Code Playgroud) 我试图让 OpenVPN 在启动时自动启动。今天我必须手动输入
sudo openvpn --client --config $HOME/openvpn/anonine.ovpn --ca $HOME/openvpn/anonine.ca.crt
Run Code Online (Sandbox Code Playgroud)
其次是用户名和密码。有没有什么好方法可以在启动时自动执行此操作?