b*****e 发帖数: 762 | 1 ubuntu下安装了openssh-server 就自动设置开机自动运行了。
fedeora装上了openssh-server为什么就不行呢? |
|
b*****e 发帖数: 762 | 2
我在fedeora下正常安装了。但是在ubuntu下就从也出问题 |
|
x**m 发帖数: 941 | 3 先看看有没有:
$ chkconfig --list |grep ssh |
|
b*****e 发帖数: 762 | 4
敲了这个命令什么反应也没有,仅仅告诉我chkconfig的用法。 |
|
b*****e 发帖数: 762 | 5
是不是我改etc/里面的什么 config文件 就可以了? |
|
s********e 发帖数: 4064 | 6 用root权限,
$nmap -sS 127.0.0.1
看看22号端口开了没有 |
|
S*A 发帖数: 7142 | 7 FT, you can use "netstat -a" to see port 22 is open or not. |
|
S*A 发帖数: 7142 | 8 That is wrong, here is what I get:
$ chkconfig --list | grep ssh
sshd 0:off 1:off 2:on 3:on 4:on 5:on 6:off
In any case. If you don't have ssh and want to enable that:
sudo yum install -y openssh-server
sudo chkconfig sshd on
sudo service sshd start
That should do it. |
|
|
f**y 发帖数: 138 | 10 use "netstat -tln" to check listening TCP ports. |
|
L*1 发帖数: 11537 | 11 刚装好Fedora 16,但没法boot到XP了。
grub2装在MBR,XP在/dev/sda1,用Hiren的CD还是可以boot到XP,但grub不行。以下是
grub.cfg里自动生成的XP entry:
### BEGIN /etc/grub.d/30_os-prober ###
menuentry "Microsoft Windows XP Professional (on /dev/sda1)" --class windows
--class os {
insmod part_msdos
insmod ntfs
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set=root CA4428034427F13D
drivemap -s (hd0) ${root}
chainloader +1
}
### END /etc/grub.d/30_os-prober ###
改为:
menuentry "Microsoft ... 阅读全帖 |
|
S*A 发帖数: 7142 | 12 如果不用 GPT & EFI 的话,我看不出来为什么要用 grub2.
如果用 EFI 的话,(Mac 必须用), 我的 Macbook 又不能在 grub2
上面安装。
我觉得 Grub2 对于 Grub 是个大倒退。系统超级复杂,把很简单的事情
复杂化。我在我的 Macbook 上面死活装不了 grub2,甚至 FC 16 直接
安装都不行,因为那个 GPT partition 和 Mac 原来那个有冲突。
重装了 n 次,最后装 FC15 再 yum dist upgrade 到 FC16。直接删掉
grub2 ( FC16 连装 grub1 都不允许)。
最后直接 extlinux 了事。还不太完美的是 installkernel script
不能正确 update extlinux.conf。重装 kernel 需要自己编辑 extlinux.conf。
我正在 hack new-kernel-package & grubby 来支持 extlinux。
BTW, grubby 更新 boot loader menu 的工具,是用 C 写的。
因为不同的 boot load... 阅读全帖 |
|
S*A 发帖数: 7142 | 13 好了,似乎我的 installkernel 对 extlinux 能支持了。 |
|
S*A 发帖数: 7142 | 14 yum {remove,install} kernel 最后测试我的改动可以正确
更新 extlinux 的菜单了。那个 grub2 可以彻底去死了。 |
|
L*1 发帖数: 11537 | 15 谢谢大家的答复。
N年前什么都自己configure,从3寸盘装Slackware开始,结果现在被Fedora 16搞死。
什么世道。
Gnome 3也是一个大倒退,简单的menu没有了,什么都要多一步。想把上面的横条移到
下面都不让。
打算试一下KDE。 |
|
S*A 发帖数: 7142 | 16 Fedora 一直都还是不错的。
反正这两个我都找到更好的解决办法了。
都比升级前要好,有些东西就是逼出来的。
Gnome3 => xmonad + gnome
grub2 => extlinux |
|
|
L*1 发帖数: 11537 | 18 Update:
Tried KDE under Fedora 16, does not like the xterm (I use it a lot), and do
not want to spend time to customize, so give up.
Now installed Fedora 14, basically main features I want work fine.
I don't know if it is the trend to eliminate menu and panels, but I rely on
these things to work efficiently. It is common to have 5 or more windows
open. When I need to copy between windows, it is very easy on GNOME 2 or XP/
Vista, but very difficult under GNOME 3 as it does not have icons for
wind... 阅读全帖 |
|
h**********c 发帖数: 4120 | 19 以下问题请教各位天才
大家写thesis一般用哪个latex?我用fedeora下命令行latex,和vista 下的
texniccenter
总有一些问题,试来试去没有理想的方案。
thesis 是以前同学的template,不能改了,
如果是应用软件的问题,能否推荐 一个好一点的package.
具体 的问题。
1. 在.tex 文件中 使用 \usepackage[dvipdfm,bookmarks]{hyperref}
在fedora 下 latex *.tex 生成的 dvi文件 pagesize 正确,图也正确,问题是因为有
.png文件, 不能生成.ps 文件, 不能 打印。
在kdvi, export as pdf文件, pagesize 不对, pagemargin 不是大了就是小了,
手动设置pagesize也没有用。
用texniccenter,.ps file里面的png 图片没有颜色。
我现在的办法之能是生成dvi文件然后到windows 下用yap 打印。如何能既包括
pngfigures,又可以自由地生成pdf 和ps 文件?
2. 在.tex 文件中 |
|