如何查看启动的服务 / 新手园地 / Arch Linux 中文论坛

如何查看启动的服务 / 新手园地 / Arch Linux 中文论坛
您尚未登录。
注册时间:
如何查看启动的服务
之前在vmware里安装arch但是不能连网。昨天重新安装不知道网络接口是什么,网上翻阅了很多资料,知道/sys/class/net下面能够看到网络接名称。。进入正题:由于之前一直使用的debian与树莓派的raspbian,所以对debian系的比较熟悉,现在换了arch发现使用命令有些不同。百度了很多资料,会发现都是2013年之前的文章,里面也没有更新,所以在论坛里发帖求助。1,如何启动服务。安装了openssh了,ssh连接不上,我不知道是否已经启用ssh,于是使用了&serveice ssh status&。结果显示command not found,然后想使用“/etc/rc.d/ssh status”,然后发现arch的/etc目录下是没有rc.d目录的。网上找到的也是这个。。请教arch下如何启动/查看/停止服务的。2,如何使用yaourt。看到wiki是在/etc/pacman.conf下加入源(有点疑惑,arch的源不是在/etc/pacman.d/mirrorlist的吗?后来把源加入这个文件里面),然后pacman -Syu yaourt 都不能安装yaourt。3,进入不了图形界面呀(玩archlinux真的是需要折腾精神)。已经pacman安装了xf86-video-vmware 的显示驱动(之前安装的xf86-video-vesa,使用startx显示的是xinit:unable to connect to X server :connection refused,所以就在继续百度,发现显示驱动不对,删除了xf86-video-vesa,安装xf86-video-vmware),现在仍然不能进入图形界面,一闪而过,仍然停留在命令行。(已经安装了pacman -S xorg-server xorg-server-utils xorg-utils xorg-xinit。同时安装了xfce4)。现在出错的提示是current version of pixman:0.32.6before reporting problems,check to make sure that you have the latest version.Markers:(--)probed,(**)from config file,(==)default setting,    (++)from command line,(!!)notice,(II)not implemented,(??)unknown.(==)Log file:&/var/log/Xorg.0.log&,Time:sun mar 1 16:01:36 2015 (==)Using system config directory &/usr/share/X11/xorg.conf.d&/etc/X11/xinit/xinitre:line 55:exec:xterm:not foundxinit:connection to X server lostwaiting for X server to shutdown (II)server terminated successfully(0).closing log file.要如何解决呢
注册时间:
帖子: 103
Re: 如何查看启动的服务
前两个问题分别看:1. 2.
wongsyrone
注册时间:
Re: 如何查看启动的服务
第三个问题参考:而且/etc/X11/xinit/xinitre:line 55:exec:xterm:not found貌似没找到 xterm
最近编辑记录 wongsyrone ( 20:04:21)
注册时间:
帖子: 122
Re: 如何查看启动的服务
1:服务管理是用systemctl,你可以找下man,WIKI上也有2:是在/etc/pacman.conf文件里添加源[archlinuxfr]Server = 为什么要把它放在pacman.conf里,这个我也不知道。应该是为了区别官方源和非官方源吧,方便管理,/etc/pacman.d/mirrorlist里都是官方的镜像
注册时间:
帖子: 389
Re: 如何查看启动的服务
1.Arch 使用的 init 软件是 systemd。systemd 用来管理服务的命令是 systemctl,启动/查看/停止服务分别用参数选项 start/status/stop。启动 ssh 服务可以# systemctl start sshd要让 ssh 服务自启动可以# systemctl enable sshd2.pacman.conf 有 include 支持包含其他文件的内容。在有多个 Server 的情况下,pacman 优先使用第一个。如果 LZ 并没有把新 Server 放在第一行,pacman  优先使用旧镜像,而旧镜像中并没有 yaourt 包,因此无法获取 pacman。3.请给出执行命令。line 55:exec:xterm:not found从这行的提示来看,LZ 应该是执行了 startx,但在执行前没有进行过配置,以启动 xfce,因此 startx 使用了预设配置,在这里 startx 尝试启动 xterm 但因为 LZ 并未安装过而失败。要配置 startx 启动 xfce,首先执行$ cp /etc/skel/.xinitrc ~/然后往 ~/.xinitrc 里添加 exec startxfce4,再 startx或直接执行$ xinit /usr/bin/startxfce4
最近编辑记录 nopriler ( 20:05:25)
a.k.a. 百合仙子
所在地: 一个等待妹纸出现的地方
注册时间:
帖子: 4,556
Re: 如何查看启动的服务
推荐使用 [archlinuxcn] 源来安装 yaourt。国内大学有镜像,速度快~
注册时间:
Re: 如何查看启动的服务
wych 说:前两个问题分别看:1. 2. 英文的wiki比较全面呀。看来只要仔细看都会有收获的,度娘不到自己想要的东西。但是中文的wiki不太全还是我没有找到页面。我要是有空就去帮着翻译wiki
注册时间:
Re: 如何查看启动的服务
luxni 说:1:服务管理是用systemctl,你可以找下man,WIKI上也有2:是在/etc/pacman.conf文件里添加源[archlinuxfr]Server = 为什么要把它放在pacman.conf里,这个我也不知道。应该是为了区别官方源和非官方源吧,方便管理,/etc/pacman.d/mirrorlist里都是官方的镜像谢谢。原来是使用不同的管理工具了,现在开始学习systemctl了
注册时间:
Re: 如何查看启动的服务
nopriler 说:1.Arch 使用的 init 软件是 systemd。systemd 用来管理服务的命令是 systemctl,启动/查看/停止服务分别用参数选项 start/status/stop。启动 ssh 服务可以# systemctl start sshd要让 ssh 服务自启动可以# systemctl enable sshd2.pacman.conf 有 include 支持包含其他文件的内容。在有多个 Server 的情况下,pacman 优先使用第一个。如果 LZ 并没有把新 Server 放在第一行,pacman  优先使用旧镜像,而旧镜像中并没有 yaourt 包,因此无法获取 pacman。3.请给出执行命令。line 55:exec:xterm:not found从这行的提示来看,LZ 应该是执行了 startx,但在执行前没有进行过配置,以启动 xfce,因此 startx 使用了预设配置,在这里 startx 尝试启动 xterm 但因为 LZ 并未安装过而失败。要配置 startx 启动 xfce,首先执行$ cp /etc/skel/.xinitrc ~/然后往 ~/.xinitrc 里添加 exec startxfce4,再 startx或直接执行$ xinit /usr/bin/startxfce4非常非常感谢您的回答,我的问题已经按照你的方法解决了。非常赞您回答问题的方式,很有针对性,而且也是我想要的。您是archlinux使用老手的吗
注册时间:
Re: 如何查看启动的服务
nopriler 说:1.3.请给出执行命令。line 55:exec:xterm:not found从这行的提示来看,LZ 应该是执行了 startx,但在执行前没有进行过配置,以启动 xfce,因此 startx 使用了预设配置,在这里 startx 尝试启动 xterm 但因为 LZ 并未安装过而失败。要配置 startx 启动 xfce,首先执行$ cp /etc/skel/.xinitrc ~/然后往 ~/.xinitrc 里添加 exec startxfce4,再 startx或直接执行$ xinit /usr/bin/startxfce4昨天按照此法root用户已经成功运行桌面环境。把今天安装了chromium浏览器,但是提示不能以root用户运行。然后就添加了一个普通用户# useradd -m -g users -s /bin/bash chrome#passwd chrome#su chrome$cd $cp /etc/skel/.xinitrc ~/$vi .xinitrc把exec startxfce4添加到文件末尾。$startx后的提示信息如下:/usr/lib/xorg-server/Xorg.wrap: Only console users are allowed to run the X server Only console users are allowed to run the X server^Cxinit: giving upxinit: unable to connect to X server: Connection refusedxinit: unexpected signal 2Couldn't get a file descriptor referring to the console疑惑:console users这个是控制台用户的意思吗?要怎么样才能把chrome加入到console users用户组
a.k.a. 百合仙子
所在地: 一个等待妹纸出现的地方
注册时间:
帖子: 4,556
Re: 如何查看启动的服务
意思是你需要在 tty 上执行 startx,就是字符界面上最初得到的那个终端。不能在 pty 上。常见的 pty 程序有:各种图形界面上的终端程序、tmux/screen、zhcon/fbterm 等。
Powered byarchlinux新手,不能启动X服务 / 新手园地 / Arch Linux 中文论坛
您尚未登录。
注册时间:
archlinux新手,不能启动X服务
按照教程,安装了基本系统已经Xorg 的一些服务后还是不能启动X服务,没管继续安装了xfce4然后直接startxfce4 可以进入图形界面。但是这时候直接startx还是不能启动 如图直接使用startkde启动则提示 求大神帮忙看看 那里错了 另外我使用的是VBOX虚拟机装的
注册时间:
帖子: 324
Re: archlinux新手,不能启动X服务
.xinitrc文件有么?
宗师梅川内酷
注册时间:
Re: archlinux新手,不能启动X服务
搬运一个arch吧里的解决方案:安装完毕之后发现不论是root还是普通用户,均无法启动x window。这是由于没有安装vbox的显示驱动程序,不过不要紧,我们依旧可以安装pacman -S virtualbox-guest-utils安装完毕之后手动载入vbox的模块modprobe -a vboxguest vboxsf vboxvideo
a.k.a. 百合仙子
所在地: 一个等待妹纸出现的地方
注册时间:
帖子: 4,556
Re: archlinux新手,不能启动X服务
startkde 需要在 X 里运行,所以你把它写到 ~/.xinitrc 里去吧:# 最后一行
exec startkde
注册时间:
Re: archlinux新手,不能启动X服务
百合仙子 说:startkde 需要在 X 里运行,所以你把它写到 ~/.xinitrc 里去吧:# 最后一行
exec startkde新年好,我现在的问题是普通用户无法登录kde,root可以登录kde,即使按你上面的方法修改了~/.xinitrc 。
a.k.a. 百合仙子
所在地: 一个等待妹纸出现的地方
注册时间:
帖子: 4,556
Re: archlinux新手,不能启动X服务
hrar 说:百合仙子 说:startkde 需要在 X 里运行,所以你把它写到 ~/.xinitrc 里去吧:# 最后一行
exec startkde新年好,我现在的问题是普通用户无法登录kde,root可以登录kde,即使按你上面的方法修改了~/.xinitrc 。报错信息呢?
注册时间:
Re: archlinux新手,不能启动X服务
请问是这个么#cat /var/log/Xorg.0.log ,剪切了后半部分。[
] (II) NVIDIA:
] (II) NVIDIA(0): ACPI: failed to connect to the ACPI the daemon
] (II) NVIDIA(0):
may not be running or the &AcpidSocketPath& X
] (II) NVIDIA(0):
configuration option may not be set correctly.
] (II) NVIDIA(0):
ACPI event daemon is available, the NVIDIA X driver will
] (II) NVIDIA(0):
try to use it to receive ACPI event notifications.
] (II) NVIDIA(0):
details, please see the &ConnectToAcpid& and
] (II) NVIDIA(0):
&AcpidSocketPath& X configuration options in Appendix B: X
] (II) NVIDIA(0):
Config Options in the README.
] (II) NVIDIA(0): Setting mode &DFP-0:nvidia-auto-select&
] (==) NVIDIA(0): Disabling shared memory pixmaps
] (==) NVIDIA(0): Backing store enabled
] (==) NVIDIA(0): Silken mouse enabled
] (==) NVIDIA(0): DPMS enabled
] (II) Loading sub module &dri2&
] (II) LoadModule: &dri2&
] (II) Module &dri2& already built-in
] (II) NVIDIA(0): [DRI2] Setup complete
] (II) NVIDIA(0): [DRI2]
VDPAU driver: nvidia
] (--) RandR disabled
] (II) Initializing extension GLX
] (II) Indirect GLX disabled.(II) config/udev: Adding input device Power Button (/dev/input/event2)
] (**) Power Button: Applying InputClass &evdev keyboard catchall&
] (**) Power Button: Applying InputClass &libinput keyboard catchall&
] (II) LoadModule: &libinput&
] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
] (II) Module libinput: vendor=&X.Org Foundation&
compiled for 1.17.1, module version = 0.6.0
Module class: X.Org XInput Driver
ABI class: X.Org XInput driver, version 21.0
] (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 28 paused 0
] (II) Using input driver 'libinput' for 'Power Button'
] (**) Power Button: always reports core events
] (**) Option &Device& &/dev/input/event2&
] (II) input device 'Power Button', /dev/input/event2 is a keyboard
] (**) Option &config_info& &udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input3/event2&
] (II) XINPUT: Adding extended input device &Power Button& (type: KEYBOARD, id 6)
] (II) input device 'Power Button', /dev/input/event2 is a keyboard
] (II) config/udev: Adding input device Power Button (/dev/input/event1)
] (**) Power Button: Applying InputClass &evdev keyboard catchall&
] (**) Power Button: Applying InputClass &libinput keyboard catchall&
] (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 31 paused 0
] (II) Using input driver 'libinput' for 'Power Button'
] (**) Power Button: always reports core events
] (**) Option &Device& &/dev/input/event1&
] (II) input device 'Power Button', /dev/input/event1 is a keyboard
] (**) Option &config_info& &udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input2/event1&
] (II) XINPUT: Adding extended input device &Power Button& (type: KEYBOARD, id 7)
] (II) input device 'Power Button', /dev/input/event1 is a keyboard
] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event12)
] (II) No input driver specified, ignoring this device.
] (II) This device may have been added with another device file.
] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event13)
] (II) No input driver specified, ignoring this device.
] (II) This device may have been added with another device file.
] (II) config/udev: Adding input device HDA Intel Line (/dev/input/event6)
] (II) No input driver specified, ignoring this device.
] (II) This device may have been added with another device file.
] (II) config/udev: Adding input device HDA Intel Line Out Front (/dev/input/event7)
] (II) No input driver specified, ignoring this device.
] (II) This device may have been added with another device file.
] (II) config/udev: Adding input device HDA Intel Line Out Surround (/dev/input/event8)
] (II) No input driver specified, ignoring this device.
] (II) This device may have been added with another device file.
] (II) config/udev: Adding input device HDA Intel Line Out CLFE (/dev/input/event9)
] (II) No input driver specified, ignoring this device.
] (II) This device may have been added with another device file.
] (II) config/udev: Adding input device HDA Intel Line Out Side (/dev/input/event10)
] (II) No input driver specified, ignoring this device.
] (II) This device may have been added with another device file.
] (II) config/udev: Adding input device HDA Intel Front Headphone (/dev/input/event11)
] (II) No input driver specified, ignoring this device.
] (II) This device may have been added with another device file.
] (II) config/udev: Adding input device HDA Intel Front Mic (/dev/input/event4)
] (II) No input driver specified, ignoring this device.
] (II) This device may have been added with another device file.
] (II) config/udev: Adding input device HDA Intel Rear Mic (/dev/input/event5)
] (II) No input driver specified, ignoring this device.
] (II) This device may have been added with another device file.
] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
] (**) AT Translated Set 2 keyboard: Applying InputClass &evdev keyboard catchall&
] (**) AT Translated Set 2 keyboard: Applying InputClass &libinput keyboard catchall&
] (II) systemd-logind: got fd for /dev/input/event0 13:64 fd 32 paused 0
] (II) Using input driver 'libinput' for 'AT Translated Set 2 keyboard'
] (**) AT Translated Set 2 keyboard: always reports core events
] (**) Option &Device& &/dev/input/event0&
] (II) input device 'AT Translated Set 2 keyboard', /dev/input/event0 is a keyboard
] (**) Option &config_info& &udev:/sys/devices/platform/i8042/serio0/input/input0/event0&
] (II) XINPUT: Adding extended input device &AT Translated Set 2 keyboard& (type: KEYBOARD, id 8)
] (II) input device 'AT Translated Set 2 keyboard', /dev/input/event0 is a keyboard
] (II) config/udev: Adding input device ImPS/2 Generic Wheel Mouse (/dev/input/event14)
] (**) ImPS/2 Generic Wheel Mouse: Applying InputClass &evdev pointer catchall&
] (**) ImPS/2 Generic Wheel Mouse: Applying InputClass &libinput pointer catchall&
] (II) systemd-logind: got fd for /dev/input/event14 13:78 fd 33 paused 0
] (II) Using input driver 'libinput' for 'ImPS/2 Generic Wheel Mouse'
] (**) ImPS/2 Generic Wheel Mouse: always reports core events
] (**) Option &Device& &/dev/input/event14&
] (II) input device 'ImPS/2 Generic Wheel Mouse', /dev/input/event14 is a pointer caps = relative-motion button
] (**) Option &config_info& &udev:/sys/devices/platform/i8042/serio1/input/input5/event14&
] (II) XINPUT: Adding extended input device &ImPS/2 Generic Wheel Mouse& (type: MOUSE, id 9)
] (**) Option &AccelerationScheme& &none&
] (**) ImPS/2 Generic Wheel Mouse: (accel) selected scheme none/0
] (**) ImPS/2 Generic Wheel Mouse: (accel) acceleration factor: 2.000
] (**) ImPS/2 Generic Wheel Mouse: (accel) acceleration threshold: 4
] (II) input device 'ImPS/2 Generic Wheel Mouse', /dev/input/event14 is a pointer caps = relative-motion button
] (II) config/udev: Adding input device ImPS/2 Generic Wheel Mouse (/dev/input/mouse0)
] (II) No input driver specified, ignoring this device.
] (II) This device may have been added with another device file.
] (II) config/udev: Adding input device PC Speaker (/dev/input/event3)
] (II) No input driver specified, ignoring this device.
] (II) This device may have been added with another device file.
] (II) NVIDIA(GPU-0): Display (Philips 190CW (DFP-0)) does not support NVIDIA 3D
] (II) NVIDIA(GPU-0):
Vision stereo.
] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
] (**) NVIDIA(0):
device Philips 190CW (DFP-0) (Using EDID frequencies has
] (**) NVIDIA(0):
been enabled on all display devices.)
] (II) NVIDIA(GPU-0): Display (Philips 190CW (DFP-0)) does not support NVIDIA 3D
] (II) NVIDIA(GPU-0):
Vision stereo.
] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
] (**) NVIDIA(0):
device Philips 190CW (DFP-0) (Using EDID frequencies has
] (**) NVIDIA(0):
been enabled on all display devices.)
] (II) NVIDIA(GPU-0): Display (Philips 190CW (DFP-0)) does not support NVIDIA 3D
] (II) NVIDIA(GPU-0):
Vision stereo.
] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
] (**) NVIDIA(0):
device Philips 190CW (DFP-0) (Using EDID frequencies has
] (**) NVIDIA(0):
been enabled on all display devices.)
] (II) NVIDIA(GPU-0): Display (Philips 190CW (DFP-0)) does not support NVIDIA 3D
] (II) NVIDIA(GPU-0):
Vision stereo.
] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
] (**) NVIDIA(0):
device Philips 190CW (DFP-0) (Using EDID frequencies has
] (**) NVIDIA(0):
been enabled on all display devices.)
] (II) NVIDIA(GPU-0): Display (Philips 190CW (DFP-0)) does not support NVIDIA 3D
] (II) NVIDIA(GPU-0):
Vision stereo.
] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
] (**) NVIDIA(0):
device Philips 190CW (DFP-0) (Using EDID frequencies has
] (**) NVIDIA(0):
been enabled on all display devices.)
] (II) NVIDIA(GPU-0): Display (Philips 190CW (DFP-0)) does not support NVIDIA 3D
] (II) NVIDIA(GPU-0):
Vision stereo.
] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
] (**) NVIDIA(0):
device Philips 190CW (DFP-0) (Using EDID frequencies has
] (**) NVIDIA(0):
been enabled on all display devices.)
] (II) NVIDIA(GPU-0): Display (Philips 190CW (DFP-0)) does not support NVIDIA 3D
] (II) NVIDIA(GPU-0):
Vision stereo.
] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
] (**) NVIDIA(0):
device Philips 190CW (DFP-0) (Using EDID frequencies has
] (**) NVIDIA(0):
been enabled on all display devices.)
] (II) NVIDIA(GPU-0): Display (Philips 190CW (DFP-0)) does not support NVIDIA 3D
] (II) NVIDIA(GPU-0):
Vision stereo.
] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
] (**) NVIDIA(0):
device Philips 190CW (DFP-0) (Using EDID frequencies has
] (**) NVIDIA(0):
been enabled on all display devices.)
] (II) NVIDIA(GPU-0): Display (Philips 190CW (DFP-0)) does not support NVIDIA 3D
] (II) NVIDIA(GPU-0):
Vision stereo.
] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
] (**) NVIDIA(0):
device Philips 190CW (DFP-0) (Using EDID frequencies has
] (**) NVIDIA(0):
been enabled on all display devices.)
最近编辑记录 hrar ( 11:20:56)
a.k.a. 百合仙子
所在地: 一个等待妹纸出现的地方
注册时间:
帖子: 4,556
Re: archlinux新手,不能启动X服务
没报错啊。
注册时间:
Re: archlinux新手,不能启动X服务
那可能是普通用户权限有哪项没设好,或者是kde哪些选项没设好,kde、xfce4两个桌面都是英文的,有些看不懂。如果确定是普通用户也能登录kde的话等哪天有空再重装,只装kde看看。
注册时间:
Re: archlinux新手,不能启动X服务
参照这上面的回复吧,就没问题
Powered by新手园地 / Arch Linux 中文论坛
您尚未登录。
by xw_y_am [
by ffwalle
by foxer0923
by ffwalle [
by Mesopotamian
by phoenixlzx [
by Mesopotamian
by Neo_Chen
by lujun9972
by Zangwill
by Zangwill
by xtricman
by xtricman
by Bluesands
by Bluesands
by woodenfish
by matrikslee
by phoenixlzx
by jredrtyjr
by chriswongxp
by chriswongxp
by jredrtyjr
by jredrtyjr
by matrikslee
by jredrtyjr
by jredrtyjr
by xanthuiop [
by jredrtyjr
by lujun9972
by lujun9972
by jredrtyjr
by zsrkmyn
by Arisaka
by Arisaka
by jredrtyjr
by 房东的猫
by 枫叶饭团
by 联邦星舰挑战号
by hopegha
by matrikslee
by jredrtyjr
by jredrtyjr
by jredrtyjr
by jredrtyjr
by jredrtyjr
by messyidea
by jouyouyun
by xtricman
by xanthuiop
by xanthuiop
by liukunda
Powered by新手园地& & & 硬件问题Linux系统管理Linux网络问题Linux环境编程Linux桌面系统国产LinuxBSD& & & BSD文档中心AIX& & & 新手入门& & & AIX文档中心& & & 资源下载& & & Power高级应用& & & IBM存储AS400Solaris& & & Solaris文档中心HP-UX& & & HP文档中心SCO UNIX& & & SCO文档中心互操作专区IRIXTru64 UNIXMac OS X门户网站运维集群和高可用服务器应用监控和防护虚拟化技术架构设计行业应用和管理服务器及硬件技术& & & 服务器资源下载云计算& & & 云计算文档中心& & & 云计算业界& & & 云计算资源下载存储备份& & & 存储文档中心& & & 存储业界& & & 存储资源下载& & & Symantec技术交流区安全技术网络技术& & & 网络技术文档中心C/C++& & & GUI编程& & & Functional编程内核源码& & & 内核问题移动开发& & & 移动开发技术资料ShellPerlJava& & & Java文档中心PHP& & & php文档中心Python& & & Python文档中心RubyCPU与编译器嵌入式开发驱动开发Web开发VoIP开发技术MySQL& & & MySQL文档中心SybaseOraclePostgreSQLDB2Informix数据仓库与数据挖掘NoSQL技术IT业界新闻与评论IT职业生涯& & & 猎头招聘IT图书与评论& & & CU技术图书大系& & & Linux书友会二手交易下载共享Linux文档专区IT培训与认证& & & 培训交流& & & 认证培训清茶斋投资理财运动地带快乐数码摄影& & & 摄影器材& & & 摄影比赛专区IT爱车族旅游天下站务交流版主会议室博客SNS站务交流区CU活动专区& & & Power活动专区& & & 拍卖交流区频道交流区
家境小康, 积分 1628, 距离下一级还需 372 积分
论坛徽章:0
本帖最后由 txgc_wm 于
14:44 编辑
& && &按照ArchLinux的安装方法,在我的Dell灵越4030笔记本电脑上(其它电脑上未尝试过)安装该系统。安装完了,可系统就是起不来,停留在下图的状态中就不动了。虚拟机里也尝试安装过,可是是同样的结果。
IMG_903.jpg (2.3 MB, 下载次数: 3)
21:33 上传
& &&&按照官方的安装步骤,在分区那块不是很明了(就是那两种模式),不知是否操作
那块有问题?以下语句中的第二点不是很明了。
Notes regarding GPT partitioning:
& & If you are not dual booting with Windows, then it is advisable to use GPT instead of MBR. Read GPT for a list of advantages.
& & If you have a BIOS motherboard (or plan on booting in BIOS compatibility mode) and you want to setup GRUB on a GPT-partitioned drive, you will need to create an extra BIOS Boot Partition. Syslinux doesn't need one.
使用过ArchLinux的朋友,请指点指点,说说可能出错的地方也可以。
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
& &&&至于如何解决,我自己也不知道。根据官方的安装步骤重新仔细安装了一遍,竟然安装成功了。网上也找到了一份很好的中文资料(感谢bstaint的辛勤劳动),同大家分享一下。该文档写的已经很详细,但还是遗漏了部分,部分不太明了的可以参考官方Wiki。
(2.43 MB, 下载次数: 211)
23:30 上传
点击文件名下载附件
也可以参考一篇博文:
白手起家, 积分 25, 距离下一级还需 175 积分
论坛徽章:0
我表示挂在X的安装上了。。。
白手起家, 积分 17, 距离下一级还需 183 积分
论坛徽章:0
本帖最后由 eduxr 于
16:40 编辑
要找我们的大师了
家境小康, 积分 1628, 距离下一级还需 372 积分
论坛徽章:0
没事,跟网友的交流是属于随性交流,因共同的技术而有话题。不能跟你比专业。
家境小康, 积分 1628, 距离下一级还需 372 积分
论坛徽章:0
挂在X的安装上
=》详细指的是什么?
论坛徽章:379
没用过你的那个系统.请详细说明下,你安装系统卡在什么地方了,有什么显示等等
你1楼那么凭空一说,很少有人能帮助到你
家境小康, 积分 1628, 距离下一级还需 372 积分
论坛徽章:0
谢谢提醒。
并没有卡在哪个步骤,安装时也没有出错信息,就是安装完毕之后启动不了。具体也不明了什么导致了该问题,信息只能提供那些,只能根据大家提的可能性去排错了。
Archlinux现在使用的朋友应该挺多的。
家境小康, 积分 1628, 距离下一级还需 372 积分
论坛徽章:0
大师出现,来说说一二,提醒提醒,当然是最好的!
论坛徽章:379
启动不起来也有很多种,比如黑屏,出现grub&,或者内核panic..
你要将信息提供的全面些.
北京盛拓优讯信息技术有限公司. 版权所有 京ICP备号 北京市公安局海淀分局网监中心备案编号:22
广播电视节目制作经营许可证(京) 字第1234号
中国互联网协会会员&&联系我们:
感谢所有关心和支持过ChinaUnix的朋友们
转载本站内容请注明原作者名及出处

我要回帖

 

随机推荐