问题标签 [ubuntu-13.10]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
mule-studio - 无法在 Ubuntu13.10 上使用 Mulestudio 的下拉菜单
我刚刚将我的升级ubuntu
到 13.10,我发现Mule Studio
统一栏上的(64 位 linux)菜单冻结,即无法从那里打开任何菜单。
有没有其他人遇到过同样的问题?有没有可能的解决方案?
apache2 - 解决更新到 Ubuntu 13.10 和 apache 2.4 后默认站点不存在的错误
我最近更新了我的 ubuntu,我想在我的 Ubuntu 13.10 中编程,并且正在设置 apache2,每次我运行命令时:
我收到以下错误:
错误默认站点不存在
我该如何解决这个问题?
ubuntu - 如何在 Ubuntu 13.10 上安装 k9copy
我查看了所有文档,发现我需要启用多重源,我已经完成了 - 我已经重新加载(sudo apt-get update),但“sudo apt-get install k9copy”仍然给出:E:无法定位包 k9copy
有任何想法吗?这可能是因为我使用的是 Ubuntu,而不是 KUbuntu?
permissions - Permissions issue with NFS mounted share
I have mounted an NFS network share successfully using Webmin. The share seems to be mounted correctly and working correctly. If I login as root I can browse the share just fine.
However, I cannot seem to give another user access to read/write to this network share. When I look at the permissions I can see that it is owned by root and the group crontab can use the share.
I tried giving a user access by adding them to the crontab group. However the user could not access the share.
So just to see whats going on I changed the user to the owner. The user could then access the share. Cool, but why didn't the group permissions work?
How do I get the NFS mounted share to be accessible by any user in the group crontab?
Note: I originally posted this question on ubuntu's stack but I'm not getting any responses.
icons - Ubuntu 13.10 中的 Stata 菜单和图标错误
我最近为我的 Ubuntu 13.10 购买了 Stata 13.1。我注意到其中的一些问题:
1)如果我以非root或非超级用户的身份使用Stata,那么Stata的菜单栏将在Ubuntu桌面的顶部栏,如果你从菜单栏打开一个窗口,整个Stata将冻结,我不得不强行退出。但是,如果我以 root 或超级用户身份执行 Stata,这个问题就会消失。
2) 和以前一样,Stata 安装时没有图标。似乎它的默认设置是以 root/超级用户身份从终端启动 Stata,这并不太方便,但有点不舒服。
我在网上查了一下,有一个博客谈论如何使用某种 bash 脚本为它创建一个图标,它工作正常,但仍然无法解决第一个问题。
我猜这是因为 Unity 与旧的 x-window 库不兼容并导致第一个问题。请问切换到 GNOME 或 KDE 桌面有帮助吗?
linux - 输入密码后Ubuntu无法启动
我在笔记本电脑(戴尔 N5110)上安装了新的 ubuntu 13。之后,我使用 sudo 命令对其进行更新和升级。系统提示我重新启动计算机。但在重新启动之前,我通过 github 安装了以下教程中的 simplecv。
当我重新启动计算机时,输入密码后出现空白屏幕。我搜索了网络,但我找不到相关的答案。请帮我解决这个问题。
compiler-construction - ubuntu系统中的“ftn”命令
我正在尝试运行一些基准测试,其中大多数使用带有“ftn”命令的 fortran 编译器。但是来自 gfortran 的 fortran77 或 fortran95 包都没有提供“ftn”。
谁能告诉我是否有任何可用于 ubuntu 13.10 的软件包来获取 ftn。还是仅适用于 cray linux 环境?
apache - 哪里去了指令进入 Ubuntu 13.10 / Apache 2.4?
部分旧的 vhost 文件如下所示:
升级到 Ubuntu 13.10 / Apache 2.4 后,vhost 将被忽略,直到您删除所有<Directory>
配置。这是哪里去了?
mysql - HAVING MIN() 组合返回与 HAVING MAX() 相同
我已经搜索过这个,但找不到关于这个特定问题的任何答案。对于我的数据库类,我们必须演示在我们创建的数据库上使用一些 SQL 函数。其中一个函数是 MIN(),而另一个是 MAX() 等等。
发生在我身上的是,运行命令时SELECT nome AS mais_barato FROM equipamento HAVING MIN(preço);
(名称为葡萄牙语:nome=name,mais_barato=cheaper,equipamento=equipment,preço=price)输出如下:
人们期望的地方(原始表格在下面进一步,供您自己查看预期的结果):
声明中有什么问题?运行SELECT nome AS mais_caro FROM equipamento HAVING MAX(preço);
(mais_caro=more_expensive) 时,输出与使用MIN(preço)
.
原始表equipamento
为(cod 为与设备关联的唯一代码):
我mysql Ver 14.14 Distrib 5.5.34, for debian-linux-gnu (i686) using readline 6.2
在 Ubuntu 13.10 上使用
非常感谢
linux - 创建一个文本文件来保存 etc/init.d 的多个服务
在我的应用程序运行之前,我需要启动 3 个服务(postgresql、redis、elasticsearch)。我的问题是,我可以将 3 合并到一个文件/脚本中,所以每次我想运行这些服务时,我都会点击/etc/init.d/services start
,如果我完成了,我只会做一个/etc/init.d/services stop
而不是手动停止其中 3 个?