单声道安装后在哪里找到mono-service2?

时间:2017-07-03 09:32:15

标签: ubuntu mono

我在ubuntu 16.04上安装了mono作为doc:

http://www.mono-project.com/download/#download-lin-ubuntu

但我无法运行mono-service2

系统告诉我它无法找到

我跑

find / -name mono-service2

收到错误:发现:./ run / user / 1000 / gvfs:没有权限

所以如何使用mono-service2

1 个答案:

答案 0 :(得分:0)

您收到此错误,因为您没有使用sudo属性运行find命令

尝试这样只搜索可执行文件

class ListItemComponent extends React.Component {
    public render() {
        return (
            <li data-index={this.props.index}>Foo</li>
        )
    }
}

class ListComponent extends React.Component {
    private handleClick(event) {
        const activeIndex = event.target.getAttribute('data-index');
        this.setState({ activeIndex });
    }

    public render() {
        const active = this.state.activeIndex;
        const items = this.props.items.map((x, i) => {
            <ListItemComponent active={i === active} key={i} index={i} />    
        })
        return (
            <ul onClick={this.handleClick} />
                { items }
            </ul>
        )
    }   
}

否则,您也可以尝试使用

sudo find / -executable -name mono-service2

whereis mono-service2