致命错误:侦听错误:无法监视目录的更改

Shi*_*jin 1 css sass compass

我正在尝试查看sass目录.我在我的ubuntu 16.4系统上使用以下命令创建了sass项目

 compass create sass
Run Code Online (Sandbox Code Playgroud)

得到了结果

directory sass/  directory sass/sass/  directory sass/stylesheets/     create sass/config.rb     create sass/sass/screen.scss     create sass/sass/print.scss     create sass/sass/ie.scss 
        write sass/stylesheets/ie.css
        write sass/stylesheets/print.css
        write sass/stylesheets/screen.css

    ********************************************************************* Congratulations! Your compass project has been created.

    You may now add and edit sass stylesheets in the sass subdirectory of your project.

    Sass files beginning with an underscore are called partials and won't be compiled to CSS, but they can be imported into other sass stylesheets.

    You can configure your project by editing the config.rb configuration file.

    You must compile your sass stylesheets into CSS when they change. This can be done in one of the following ways:
      1. To compile on demand:
         compass compile [path/to/project]
      2. To monitor your project for changes and automatically recompile:
         compass watch [path/to/project]

    More Resources:   * Website: http://compass-style.org/   * Sass: http://sass-lang.com   * Community: http://groups.google.com/group/compass-users/


    To import your new stylesheets add the following lines of HTML (or equivalent) to your webpage: <head>   <link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css" />   <link href="/stylesheets/print.css" media="print" rel="stylesheet" type="text/css" />   <!--[if IE]>
          <link href="/stylesheets/ie.css" media="screen, projection" rel="stylesheet" type="text/css" />   <![endif]--> </head>
Run Code Online (Sandbox Code Playgroud)

我尝试使用compass watch结果观察这个错误,如下所示

指南针正在关注变化.按Ctrl-C停止.致命错误:侦听错误:无法监视目录的更改. 有关如何解决此问题的信息,请访问 https://github.com/guard/listen/wiki/Increasing-the-amount-of-inotify-watchers.bharathi @ bharathi-H81M-S:〜/ share/springwisev2/wp-content/themes/Springwise 2016/library/sass $ compass watch

在此输入图像描述

Jai*_*put 13

只是尝试从您的控制台执行此操作:

echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
Run Code Online (Sandbox Code Playgroud)

希望这对你有用.

参考文献:click_here