r*g 发帖数: 186 | |
r*g 发帖数: 186 | 2 已发布
【在 r*g 的大作中提到】 : 怎么还没放出来
|
a**********s 发帖数: 1075 | 3 本来想更新到8的,现在看来systemd很有争议,看了这片文章后就决定不更新了
http://www.zdnet.com/article/linus-torvalds-and-others-on-linux
昨晚把本来准备更新的debian testing机子装了freeBSD,很不错,好像又回到大学机房
里用solaris SysV的感觉 |
a9 发帖数: 21638 | 4 用systemd是趋势,虽然是个2B
【在 a**********s 的大作中提到】 : 本来想更新到8的,现在看来systemd很有争议,看了这片文章后就决定不更新了 : http://www.zdnet.com/article/linus-torvalds-and-others-on-linux : 昨晚把本来准备更新的debian testing机子装了freeBSD,很不错,好像又回到大学机房 : 里用solaris SysV的感觉
|
d********g 发帖数: 10550 | 5 systemd还行吧。用Arch的早几年就习惯了
【在 a**********s 的大作中提到】 : 本来想更新到8的,现在看来systemd很有争议,看了这片文章后就决定不更新了 : http://www.zdnet.com/article/linus-torvalds-and-others-on-linux : 昨晚把本来准备更新的debian testing机子装了freeBSD,很不错,好像又回到大学机房 : 里用solaris SysV的感觉
|
r*g 发帖数: 186 | 6 他们好像fork了一个不用systemd的
吵啊吵啊我无所谓
因为我是普通用户这个对我影响不大
【在 a**********s 的大作中提到】 : 本来想更新到8的,现在看来systemd很有争议,看了这片文章后就决定不更新了 : http://www.zdnet.com/article/linus-torvalds-and-others-on-linux : 昨晚把本来准备更新的debian testing机子装了freeBSD,很不错,好像又回到大学机房 : 里用solaris SysV的感觉
|
s*****l 发帖数: 2041 | 7 其实普通用户根本不需要那么多fancy的功能
不就上网、paperwork、看电影
【在 r*g 的大作中提到】 : 他们好像fork了一个不用systemd的 : 吵啊吵啊我无所谓 : 因为我是普通用户这个对我影响不大
|
a9 发帖数: 21638 | 8 linux咋看都不像给普通用户用的操作系统。
【在 s*****l 的大作中提到】 : 其实普通用户根本不需要那么多fancy的功能 : 不就上网、paperwork、看电影
|
r*g 发帖数: 186 | 9
我不太用linux上网看电影啥的
也就是写写代码上上服务器
但根本不需要接触如此底层的东西
【在 s*****l 的大作中提到】 : 其实普通用户根本不需要那么多fancy的功能 : 不就上网、paperwork、看电影
|
a9 发帖数: 21638 | 10 systemd根本不算底层的东西,你要控制一个服务是不是自启动,就需要systemd
【在 r*g 的大作中提到】 : : 我不太用linux上网看电影啥的 : 也就是写写代码上上服务器 : 但根本不需要接触如此底层的东西
|
r******i 发帖数: 610 | 11
可以保留SysV。
【在 r*g 的大作中提到】 : 他们好像fork了一个不用systemd的 : 吵啊吵啊我无所谓 : 因为我是普通用户这个对我影响不大
|
r*g 发帖数: 186 | 12 额昨天还说systemd永远我接触不到
今天貌似就被打脸了
现在我在host上装了一个virtualbox
virtualbox里面装了个deb8
我每次都是把host的c盘弄成virtualbox的share folder
然后挂在在/host目录
然后从/host做一个link到/home/我/Dropbox
然后ln -s /home/我/Dropbox/configure/.vimrc .
这样我每次就能把配置文件放在Dropbox里面
新装系统后做一些文件链接就能马上使用
我在/etc/rc.local下面写了一句
mount -t vboxsf -o rw,uid=1000,gid=1000 C_DRIVE /host
以前没问题 但现在每次都会给我报错
[Fail] Fail to start /etc/rc.local Compatibility
这个东西是不是systemd弄得?
【在 a9 的大作中提到】 : systemd根本不算底层的东西,你要控制一个服务是不是自启动,就需要systemd
|
r*g 发帖数: 186 | 13 solved, 记上过程如下
1. 编辑/etc/rc.local, 加入mount语句
mount -t vboxsf -o rw,uid=1000,gid=1000 C_DRIVE /host
修改为自己的share folder的名字和mount point
2. 编辑/etc/systemd/system/rc-local.service如下:
# This file is part of systemd.
#
# systemd is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
[Unit]
Description=/etc/rc.local Compatibility
ConditionPathExists=/etc/rc.local
[Service]
Type=forking
ExecStart=/etc/rc.local start
TimeoutSec=0
StandardOutput=tty
RemainAfterExit=yes
SysVStartPriority=99
[Install]
WantedBy=multi-user.target
保存退出, 记住一定要加[Install]这个section不然第三步无法enable
3.运行systemctl enable rc-loca.service
4.编辑/etc/modules加入一行vboxsf, 使得提前加载这个模块
不然报错/sbin/mount.vboxsf: mounting failed ....: No such device
结束
感觉systemd很不友好
我所有配置文件从/host做的link
所以必须要先mount了/host后才能启动x啥的
以前rc.local就一句话现在费这么多事
【在 r*g 的大作中提到】 : 额昨天还说systemd永远我接触不到 : 今天貌似就被打脸了 : 现在我在host上装了一个virtualbox : virtualbox里面装了个deb8 : 我每次都是把host的c盘弄成virtualbox的share folder : 然后挂在在/host目录 : 然后从/host做一个link到/home/我/Dropbox : 然后ln -s /home/我/Dropbox/configure/.vimrc . : 这样我每次就能把配置文件放在Dropbox里面 : 新装系统后做一些文件链接就能马上使用
|
a9 发帖数: 21638 | 14 谢谢。
这也是我不喜欢systemd的原因。
【在 r*g 的大作中提到】 : solved, 记上过程如下 : 1. 编辑/etc/rc.local, 加入mount语句 : mount -t vboxsf -o rw,uid=1000,gid=1000 C_DRIVE /host : 修改为自己的share folder的名字和mount point : 2. 编辑/etc/systemd/system/rc-local.service如下: : # This file is part of systemd. : # : # systemd is free software; you can redistribute it and/or modify it : # under the terms of the GNU General Public License as published by : # the Free Software Foundation; either version 2 of the License, or
|