Questions tagged «ubuntu-11.04»

19
Python语言环境错误:不支持的语言环境设置
在python中执行此操作时为什么会出现以下错误: >>> import locale >>> print str( locale.getlocale() ) (None, None) >>> locale.setlocale(locale.LC_ALL, 'de_DE') Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/usr/lib/python2.7/locale.py", line 531, in setlocale return _setlocale(category, locale) locale.Error: unsupported locale setting 这也适用于其他语言环境,例如fr或nl。我正在使用Ubuntu 11.04。 更新:执行以下操作不会产生任何结果: dpkg-reconfigure locales perl: warning: Setting locale failed. perl: warning: …


6
bash中的字符串比较。[[: 未找到
我正在尝试比较bash中的字符串。我已经找到了关于如何在stackoverflow上执行此操作的答案。在我正在尝试的脚本中,我正在使用亚当在提到的问题中提交的代码: #!/bin/bash string='My string'; if [[ "$string" == *My* ]] then echo "It's there!"; fi needle='y s' if [[ "$string" == *"$needle"* ]]; then echo "haystack '$string' contains needle '$needle'" fi 我还尝试了在第二篇文章中找到的ubuntuforums方法 if [[ $var =~ regexp ]]; then #do something fi 在两种情况下,我都会收到错误消息: [[: not found 我究竟做错了什么?


1
如何在Ubuntu启动时运行脚本?[关闭]
关闭。这个问题是题外话。它当前不接受答案。 想改善这个问题吗? 更新问题,使其成为Stack Overflow的主题。 8年前关闭。 改善这个问题 当系统在Ubuntu中启动时,我想在后台运行一些Java程序。我试图在/etc/init.d目录中添加脚本,但是无法启动程序。即程序未启动。我该怎么办?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.