Questions tagged «macos»

macOS(以前称为OS X或Mac OS X)是Apple的台式机操作系统,可在Macintosh计算机上找到。仅当您的问题与使用macOS API或特定于macOS的行为有关时才使用此标签,而不是因为您碰巧在macOS上运行代码。与使用macOS或对MacOS进行故障排除有关的问题不在主题范围内,属于Ask Different社区。



30
MySQL数据库无法在XAMPP Manager-osx中启动
我大约一个月前下载了XAMPP,它工作正常。今天,我安装了语音识别软件,然后重新启动了计算机。从那时起,MySQL就不会在我的manager-osx应用程序中启动。它不会在应用程序日志中抛出“我”。它是这样说的: Stopping all servers... Stopping Apache Web Server... /Applications/XAMPP/xamppfiles/apache2/scripts/ctl.sh : httpd stopped Stopping ProFTPD... Checking syntax of configuration file /Applications/XAMPP/xamppfiles/proftpd/scripts/ctl.sh : proftpd stopped Restarting all servers... Starting MySQL Database... Starting Apache Web Server... /Applications/XAMPP/xamppfiles/apache2/scripts/ctl.sh : httpd started Starting ProFTPD... Checking syntax of configuration file /Applications/XAMPP/xamppfiles/proftpd/scripts/ctl.sh : proftpd started 我的ProFTPD和Apache Web服务器都在运行。MySQL不是。当我转到phpmyadmin时,它向我抛出此错误消息。 …
92 php  mysql  macos  xampp 

1
列出自制程序包中的所有文件
如何获得homebrew列出为软件包安装的所有文件?例如,当我运行brew listexim程序包时,将获得以下文件: $ brew list exim /usr/local/Cellar/exim/4.80.1/bin/exiwhat /usr/local/Cellar/exim/4.80.1/bin/exiqsumm /usr/local/Cellar/exim/4.80.1/bin/exiqgrep /usr/local/Cellar/exim/4.80.1/bin/exipick /usr/local/Cellar/exim/4.80.1/bin/exinext /usr/local/Cellar/exim/4.80.1/bin/eximstats /usr/local/Cellar/exim/4.80.1/bin/exim_tidydb /usr/local/Cellar/exim/4.80.1/bin/exim_lock /usr/local/Cellar/exim/4.80.1/bin/exim_fixdb /usr/local/Cellar/exim/4.80.1/bin/exim_dumpdb /usr/local/Cellar/exim/4.80.1/bin/exim_dbmbuild /usr/local/Cellar/exim/4.80.1/bin/exim_ctl /usr/local/Cellar/exim/4.80.1/bin/exim_checkaccess /usr/local/Cellar/exim/4.80.1/bin/exim-4.80.1-3 /usr/local/Cellar/exim/4.80.1/bin/exim /usr/local/Cellar/exim/4.80.1/bin/exigrep /usr/local/Cellar/exim/4.80.1/bin/exicyclog /usr/local/Cellar/exim/4.80.1/share/man/man8/exim.8 但是有一些文件添加到系统中,但不在上面的列表中。例如: $ ls -ld /usr/local/etc/exim.conf -rw-r--r-- 1 hanxue admin 35904 Sep 25 21:11 /usr/local/etc/exim.conf

1
我想在终端机中禁用蜂鸣声-Mac OSX [关闭]
关闭。此问题不符合堆栈溢出准则。它当前不接受答案。 想改善这个问题吗?更新问题,使其成为Stack Overflow的主题。 7年前关闭。 改善这个问题 我想在终端中禁用蜂鸣声。我无法在首选项中找到禁用哔声的选项。你能帮我吗? -樱桃高科技
92 macos  terminal 

7
删除所有已安装的宝石并重新开始
我最近开始学习Ruby和Ruby on Rails,并观看了许多入门材料。我最近发现,在无法安装gem或将其安装但由于某种原因而无法使用的地方时,我不断收到错误消息,因此我决定只安装Ruby,然后再次删除所有内容并从安装开始。一部培训视频让我用RVM安装了我的大部分宝石,所以我不知道这是否会改变任何东西。 简而言之,我的问题是“如何摆脱RVM,Rubygems和所有已安装的Gems,以便仅使用Ruby可以重新开始?” 编辑:我在Mac OS 10.6上



12
如何从OSX中的命令行启动GUI Emacs?
如何在OSX中从命令行启动GUI Emacs? 我已经从http://emacsformacosx.com/下载并安装了Emacs 。 我将接受一个满足以下所有条件的答案: emacs窗口在我的终端窗口前面打开。 键入“ emacs”将启动GUI Emacs窗口。在该窗口中查找文件将默认为在我启动Emacs的目录中查找。 当foo.txt存在时,键入“ emacs foo.txt”会启动GUI Emacs窗口,其中会加载foo.txt。 如果不存在foo.txt,则键入“ emacs foo.txt” 将启动GUI Emacs窗口,其中包含一个名为“ foo.txt”的空文本缓冲区。在该缓冲区中执行^ X ^ S会将foo.txt保存在我启动Emacs的目录中。

13
无法连接到mongodb errno:61连接被拒绝
我最近在Homebrew上安装了mongodb-2.6.0 。成功安装后,我尝试使用mongo命令进行连接。我收到以下不允许我连接的错误: Failed to connect to 127.0.0.1:27017, reason: errno:61 Connection refused Error: couldn't connect to server 127.0.0.1:27017 (127.0.0.1), connection attempt failed at src/mongo/shell/mongo.js:146 exception: connect failed

9
OSX -bash:composer:找不到命令
如果我键入“ composer”,则会收到上述错误消息。 我在Macbook上做过: curl -sS https://getcomposer.org/installer | php sudo mv composer.phar /usr/local/bin/composer 全局安装Composer。 我不得不手动创建/ local / bin / composer目录,也许这引起了错误? php composer.phar 如果我在我的.phar文件所在的代码目录中,则可以工作。 我该如何解决问题并在全球范围内运行作曲家? 我的〜/ .profile export PS1="\W: " export CLICOLOR=1 export LSCOLORS=gxBxhxDxfxhxhxhxhxcxcx 〜:回声$ PATH /usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/local/git/bin:/usr/local/bin ~:

4
通过brew在MacOS X上安装Wireshark
我使用以下命令在Mac上安装了Wireshark brew install wireshark 但是之后,有一条消息告诉我,我必须卷曲并安装ChmodBPF,所以我也这样做了。 但是终端上没有名为Wireshark的命令。怎么了


8
Postgres用户不存在?
我刚刚安装了Postgres,并且一直在1-2小时内修改它和各种配置。 我坚持无法更改为postgres用户 $ su - postgres 产生以下错误: su: unknown login: postgres $ sudo -u postgres psql 产生以下错误: sudo: unknown user: postgres 这些尝试是作为普通用户进行的。以root身份尝试具有完全相同的结果。我已经在OS X上通过Homebrew安装了postgres,并且已经阅读了多次说明。
91 macos  postgresql 

2
我应该使用libc ++还是libstdc ++?[关闭]
已关闭。这个问题是基于观点的。它当前不接受答案。 想改善这个问题吗?更新问题,以便通过编辑此帖子以事实和引用的形式回答。 4年前关闭。 改善这个问题 我正在使用c / c ++为osx和linux开发命令行界面可执行文件。该项目将链接到opencv。我应该使用libc ++还是libstdc ++?

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.