Chinaunix首页 | 论坛 | 博客
  • 博客访问: 177667
  • 博文数量: 42
  • 博客积分: 2185
  • 博客等级: 大尉
  • 技术积分: 455
  • 用 户 组: 普通用户
  • 注册时间: 2009-06-11 21:32
文章分类

全部博文(42)

文章存档

2012年(5)

2011年(13)

2010年(6)

2009年(18)

我的朋友

分类: LINUX

2011-07-05 23:09:45

install debian testing under gentoo

emerge -1av debootstrap
mkdir -p /exports/nfs/debian-testing && cd /exports/nfs/debian-testing
debootstrap testing .
mount -t proc none proc
mount -o bind /dev dev
mount -t sysfs none sys
mount -t devpts none dev/pts
chroot .
aptitude update
aptitude install build-essential openssh-server nfs-common
passwd # change password.
(edit /etc/inittab, add ttyS0, IE: s0:12345:respawn:/sbin/agetty 115200 ttyS0 vt102)
exit (exit chroot)
umount dev/pts dev sys proc

After the above steps, debian rootfs have been installed under /exports/nfs/debian-testing. We can add /exports/nfs/debian-testing to /etc/exports, so that we can run nfsroot later.

(in gentoo, or other host linux, host ip: 192.168.1.11)
echo '/exports/nfs/debian-testing  192.168.1.0/255.255.255.0(rw,no_root_squash,no_subtree_check)' >> /etc/exports

/etc/init.d/nfs restart

(on another console)
nc -l -p 5678   (need install netcat firstly)
(swith back console, pre-built kernel)
sudo qemu-system-x86_64 -enable-kvm -kernel arch/x86/boot/bzImage -append 'root=/dev/nfs rw nfsroot=192.168.1.11:/exports/nfs/debian-testing console=ttyS0 ip=on' -nographic -net tap,model=virtio -net tap,script=/etc/qemu/qemu-ifup -serial tcp:192.168.1.11:5678 -localtime

NOTE: kernel must have ROOTNFS support (see Documentation/filesystem/nfs/nfsroot.txt), also need NIC driver build in kernel (CONFIG_XXX=y, IE: CONFIG_VIRTIO_NET=y when use virtio net).


kernel log:

$ nc -l -p 5678
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 2.6.39.2 (wangbj@shuttle) (gcc version 4.5.2 (Gentoo 4.5.2 p1.1, pie-0.4.5) ) #1 SMP Tue Jul 5 22:11:23 CST 2011
[    0.000000] Command line: root=/dev/nfs rw nfsroot=192.168.1.11:/home/nfs/debian-testing ip=on console=ttyS0
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  BIOS-e820: 0000000000000000 - 000000000009f400 (usable)
[    0.000000]  BIOS-e820: 000000000009f400 - 00000000000a0000 (reserved)
[    0.000000]  BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
[    0.000000]  BIOS-e820: 0000000000100000 - 0000000007ffd000 (usable)
[    0.000000]  BIOS-e820: 0000000007ffd000 - 0000000008000000 (reserved)
[    0.000000]  BIOS-e820: 00000000feffc000 - 00000000ff000000 (reserved)
[    0.000000]  BIOS-e820: 00000000fffc0000 - 0000000100000000 (reserved)
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] DMI 2.4 present.
[    0.000000] No AGP bridge found
[    0.000000] last_pfn = 0x7ffd max_arch_pfn = 0x400000000
[    0.000000] PAT not supported by CPU.
[    0.000000] found SMP MP-table at [ffff8800000fdc00] fdc00
[    0.000000] init_memory_mapping: 0000000000000000-0000000007ffd000
[    0.000000] ACPI: RSDP 00000000000fdbb0 00014 (v00 BOCHS )
[    0.000000] ACPI: RSDT 0000000007ffdc40 00034 (v01 BOCHS  BXPCRSDT 00000001 BXPC 00000001)
[    0.000000] ACPI: FACP 0000000007fffe70 00074 (v01 BOCHS  BXPCFACP 00000001 BXPC 00000001)
[    0.000000] ACPI: DSDT 0000000007ffde40 01FB7 (v01   BXPC   BXDSDT 00000001 INTL 20090123)
[    0.000000] ACPI: FACS 0000000007fffe00 00040
[    0.000000] ACPI: SSDT 0000000007ffdda0 0009E (v01 BOCHS  BXPCSSDT 00000001 BXPC 00000001)
[    0.000000] ACPI: APIC 0000000007ffdcc0 00072 (v01 BOCHS  BXPCAPIC 00000001 BXPC 00000001)
[    0.000000] ACPI: HPET 0000000007ffdc80 00038 (v01 BOCHS  BXPCHPET 00000001 BXPC 00000001)
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at 0000000000000000-0000000007ffd000
[    0.000000] Initmem setup node 0 0000000000000000-0000000007ffd000
[    0.000000]   NODE_DATA [0000000007ff5000 - 0000000007ff9fff]
[    0.000000] kvm-clock: Using msrs 12 and 11
[    0.000000] kvm-clock: cpu 0, msr 0:1b03941, boot clock
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000010 -> 0x00001000
[    0.000000]   DMA32    0x00001000 -> 0x00100000
[    0.000000]   Normal   empty
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[2] active PFN ranges
[    0.000000]     0: 0x00000010 -> 0x0000009f
[    0.000000]     0: 0x00000100 -> 0x00007ffd
[    0.000000] ACPI: PM-Timer IO Port: 0xb008
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[    0.000000] ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 1, version 17, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.000000] SMP: Allowing 1 CPUs, 0 hotplug CPUs
[    0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
[    0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000
[    0.000000] PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
[    0.000000] Allocating PCI resources starting at 8000000 (gap: 8000000:f6ffc000)
[    0.000000] Booting paravirtualized kernel on KVM
[    0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:1 nr_node_ids:1
[    0.000000] PERCPU: Embedded 28 pages/cpu @ffff880007c00000 s83456 r8192 d23040 u2097152
[    0.000000] kvm-clock: cpu 0, msr 0:7c13941, primary cpu clock
[    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 32199
[    0.000000] Policy zone: DMA32
[    0.000000] Kernel command line: root=/dev/nfs rw nfsroot=192.168.1.11:/home/nfs/debian-testing ip=on console=ttyS0
[    0.000000] PID hash table entries: 512 (order: 0, 4096 bytes)
[    0.000000] Checking aperture...
[    0.000000] No AGP bridge found
[    0.000000] Memory: 115384k/131060k available (5606k kernel code, 452k absent, 15224k reserved, 5586k data, 596k init)
[    0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000]  RCU-based detection of stalled CPUs is disabled.
[    0.000000] NR_IRQS:4352 nr_irqs:256 16
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [ttyS0] enabled
[    0.000000] Detected 3392.292 MHz processor.
[    0.001999] Calibrating delay loop (skipped) preset value.. 6784.58 BogoMIPS (lpj=3392292)
[    0.002610] pid_max: default: 32768 minimum: 301
[    0.003037] Dentry cache hash table entries: 16384 (order: 5, 131072 bytes)
[    0.004039] Inode-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.005015] Mount-cache hash table entries: 256
[    0.006126] Initializing cgroup subsys ns
[    0.007004] ns_cgroup deprecated: consider using the 'clone_children' flag without the ns_cgroup.
[    0.008007] Initializing cgroup subsys cpuacct
[    0.009006] Initializing cgroup subsys freezer
[    0.010093] mce: CPU supports 10 MCE banks
[    0.011239] SMP alternatives: switching to UP code
[    0.020562] Freeing SMP alternatives: 12k freed
[    0.021021] ACPI: Core revision 20110316
[    0.022636] Setting APIC routing to flat
[    0.024811] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.025001] CPU0: Intel QEMU Virtual CPU version 0.14.1 stepping 03
[    0.027998] Performance Events: unsupported p6 CPU model 2 no PMU driver, software events only.
[    0.028061] Brought up 1 CPUs
[    0.029000] Total of 1 processors activated (6784.58 BogoMIPS).
[    0.030314] devtmpfs: initialized
[    0.030923] kworker/u:0 used greatest stack depth: 6568 bytes left
[    0.034113] kworker/u:0 used greatest stack depth: 6512 bytes left
[    0.035084] Time: 15:05:16  Date: 07/05/11
[    0.036038] NET: Registered protocol family 16
[    0.037210] kworker/u:0 used greatest stack depth: 6448 bytes left
[    0.038104] ACPI: bus type pci registered
[    0.039107] dca service started, version 1.12.1
[    0.040104] PCI: Using configuration type 1 for base access
[    0.041259] kworker/u:0 used greatest stack depth: 6064 bytes left
[    0.043359] kworker/u:0 used greatest stack depth: 5696 bytes left
[    0.048702] bio: create slab at 0
[    0.051143] ACPI: Interpreter enabled
[    0.051826] ACPI: (supports S0 S3 S4 S5)
[    0.052294] ACPI: Using IOAPIC for interrupt routing
[    0.056688] ACPI: No dock devices found.
[    0.057002] PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug
[    0.059021] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.061811] pci 0000:00:01.3: quirk: [io  0xb000-0xb03f] claimed by PIIX4 ACPI
[    0.063006] pci 0000:00:01.3: quirk: [io  0xb100-0xb10f] claimed by PIIX4 SMB
[    0.078224] ACPI: PCI Interrupt Link [LNKA] (IRQs 5 *10 11)
[    0.079378] ACPI: PCI Interrupt Link [LNKB] (IRQs 5 *10 11)
[    0.080359] ACPI: PCI Interrupt Link [LNKC] (IRQs 5 10 *11)
[    0.081356] ACPI: PCI Interrupt Link [LNKD] (IRQs 5 10 *11)
[    0.083142] ACPI: PCI Interrupt Link [LNKS] (IRQs 9) *0
[    0.084526] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[    0.086018] vgaarb: loaded
[    0.086759] SCSI subsystem initialized
[    0.087353] usbcore: registered new interface driver usbfs
[    0.088034] usbcore: registered new interface driver hub
[    0.089070] usbcore: registered new device driver usb
[    0.091168] Advanced Linux Sound Architecture Driver Version 1.0.24.
[    0.092002] PCI: Using ACPI for IRQ routing
[    0.093405] HPET: 3 timers in total, 0 timers will be used for per-cpu timer
[    0.095034] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    0.096109] hpet0: 3 comparators, 64-bit 100.000000 MHz counter
[    0.105074] Switching to clocksource kvm-clock
[    0.105889] Switched to NOHz mode on CPU #0
[    0.107921] FS-Cache: Loaded
[    0.108518] CacheFiles: Loaded
[    0.109154] pnp: PnP ACPI init
[    0.109745] ACPI: bus type pnp registered
[    0.111368] pnp: PnP ACPI: found 8 devices
[    0.112122] ACPI: ACPI bus type pnp unregistered
[    0.120546] NET: Registered protocol family 2
[    0.121459] IP route cache hash table entries: 1024 (order: 1, 8192 bytes)
[    0.122754] TCP established hash table entries: 4096 (order: 4, 65536 bytes)
[    0.123939] TCP bind hash table entries: 4096 (order: 4, 65536 bytes)
[    0.125016] TCP: Hash tables configured (established 4096 bind 4096)
[    0.126077] TCP reno registered
[    0.126608] UDP hash table entries: 128 (order: 0, 4096 bytes)
[    0.127580] UDP-Lite hash table entries: 128 (order: 0, 4096 bytes)
[    0.128667] NET: Registered protocol family 1
[    0.129477] RPC: Registered udp transport module.
[    0.130367] RPC: Registered tcp transport module.
[    0.131320] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    0.132618] pci 0000:00:00.0: Limiting direct PCI/PCI transfers
[    0.133823] pci 0000:00:01.0: PIIX3: Enabling Passive Release
[    0.135033] pci 0000:00:01.0: Activating ISA DMA hang workarounds
[    0.136734] microcode: CPU0 sig=0x623, pf=0x0, revision=0x0
[    0.137849] microcode: Microcode Update Driver: v2.00 , Peter Oruba
[    0.139701] audit: initializing netlink socket (disabled)
[    0.140746] type=2000 audit(1309878317.139:1): initialized
[    0.154934] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.158985] VFS: Disk quotas dquot_6.5.2
[    0.159721] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.161514] Registering the id_resolver key type
[    0.162445] FS-Cache: Netfs 'nfs' registered for caching
[    0.163667] fuse init (API version 7.16)
[    0.164625] Installing v9fs 9p2000 file system support
[    0.165664] FS-Cache: Netfs '9p' registered for caching
[    0.166688] msgmni has been set to 225
[    0.167669] alg: No test for stdrng (krng)
[    0.168570] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[    0.169947] io scheduler noop registered
[    0.170710] io scheduler deadline registered
[    0.171592] io scheduler cfq registered (default)
[    0.172661] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    0.173849] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    0.175208] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    0.176471] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.177794] acpiphp: Slot [1] registered
[    0.178641] acpiphp: Slot [2] registered
[    0.179446] acpiphp: Slot [3] registered
[    0.180241] acpiphp: Slot [4] registered
[    0.181089] acpiphp: Slot [5] registered
[    0.181894] acpiphp: Slot [6] registered
[    0.182725] acpiphp: Slot [7] registered
[    0.183511] acpiphp: Slot [8] registered
[    0.184345] acpiphp: Slot [9] registered
[    0.185194] acpiphp: Slot [10] registered
[    0.186079] acpiphp: Slot [11] registered
[    0.186851] acpiphp: Slot [12] registered
[    0.187742] acpiphp: Slot [13] registered
[    0.188564] acpiphp: Slot [14] registered
[    0.189349] acpiphp: Slot [15] registered
[    0.190136] acpiphp: Slot [16] registered
[    0.190979] acpiphp: Slot [17] registered
[    0.191838] acpiphp: Slot [18] registered
[    0.192654] acpiphp: Slot [19] registered
[    0.193474] acpiphp: Slot [20] registered
[    0.194346] acpiphp: Slot [21] registered
[    0.195221] acpiphp: Slot [22] registered
[    0.195998] acpiphp: Slot [23] registered
[    0.196845] acpiphp: Slot [24] registered
[    0.197648] acpiphp: Slot [25] registered
[    0.198449] acpiphp: Slot [26] registered
[    0.199266] acpiphp: Slot [27] registered
[    0.200142] acpiphp: Slot [28] registered
[    0.200918] acpiphp: Slot [29] registered
[    0.201790] acpiphp: Slot [30] registered
[    0.202651] acpiphp: Slot [31] registered
[    0.203671] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    0.205044] ACPI: Power Button [PWRF]
[    0.207166] ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 11
[    0.208161] virtio-pci 0000:00:03.0: PCI INT A -> Link[LNKC] -> GSI 11 (level, high) -> IRQ 11
[    0.209707] XENFS: not registering filesystem on non-xen platform
[    0.210813] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[    0.233500] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[    0.256437] 00:06: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[    0.257716] Non-volatile memory driver v1.3
[    0.258451] Linux agpgart interface v0.103
[    0.259233] [drm] Initialized drm 1.1.0 20060810
[    0.260046] [drm:i915_init] *ERROR* drm/i915 can't work without intel_agp module!
[    0.262752] brd: module loaded
[    0.264075] loop: module loaded
[    0.264701] Loading iSCSI transport class v2.0-870.
[    0.266327] scsi0 : ata_piix
[    0.266947] scsi1 : ata_piix
[    0.267514] ata1: PATA max MWDMA2 cmd 0x1f0 ctl 0x3f6 bmdma 0xc000 irq 14
[    0.268678] ata2: PATA max MWDMA2 cmd 0x170 ctl 0x376 bmdma 0xc008 irq 15
[    0.270243] e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI
[    0.271436] e1000: Copyright (c) 1999-2006 Intel Corporation.
[    0.272496] console [netcon0] enabled
[    0.273156] netconsole: network logging started
[    0.315278] Generic UIO driver for PCI 2.3 devices version: 0.01.0
[    0.317528] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.319767] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    0.321636] uhci_hcd: USB Universal Host Controller Interface driver
[    0.323496] usbcore: registered new interface driver uas
[    0.325021] Initializing USB Mass Storage driver...
[    0.326437] usbcore: registered new interface driver usb-storage
[    0.328157] USB Mass Storage support registered.
[    0.329603] usbcore: registered new interface driver libusual
[    0.331319] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
[    0.334256] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.335670] serio: i8042 AUX port at 0x60,0x64 irq 12
[    0.337277] mousedev: PS/2 mouse device common for all mice
[    0.339444] rtc_cmos 00:01: rtc core: registered rtc_cmos as rtc0
[    0.341308] rtc0: alarms up to one day, 114 bytes nvram, hpet irqs
[    0.343124] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1
[    0.345611] i2c /dev entries driver
[    0.346921] coretemp: CPU (model=0x2) has no thermal sensor
[    0.348673] device-mapper: uevent: version 1.0.3
[    0.350122] device-mapper: ioctl: 4.20.0-ioctl (2011-02-02) initialised: dm-devel@redhat.com
[    0.352580] EDAC MC: Ver: 2.1.0 Jul  5 2011
[    0.353979] cpuidle: using governor ladder
[    0.355162] cpuidle: using governor menu
[    0.356288] ioatdma: Intel(R) QuickData Technology Driver 4.00
[    0.358103] EFI Variables Facility v0.08 2004-May-17
[    0.360045] usbcore: registered new interface driver usbhid
[    0.361658] usbhid: USB HID core driver
[    0.363114] ALSA device list:
[    0.363949]   No soundcards found.
[    0.365085] TCP cubic registered
[    0.365989] Initializing XFRM netlink socket
[    0.367431] NET: Registered protocol family 10
[    0.369126] IPv6 over IPv4 tunneling driver
[    0.370622] NET: Registered protocol family 17
[    0.371934] Installing 9P2000 support
[    0.373046] Registering the dns_resolver key type
[    0.374563] registered taskstats version 1
[    0.375881]   Magic number: 3:484:82
[    0.421777] ata2.00: ATAPI: QEMU DVD-ROM, 0.14.1, max UDMA/100
[    0.423877] ata2.00: configured for MWDMA2
[    0.425510] scsi 1:0:0:0: CD-ROM            QEMU     QEMU DVD-ROM     0.14 PQ: 0 ANSI: 5
[    0.428483] sr0: scsi3-mmc drive: 4x/4x xa/form2 tray
[    0.429921] cdrom: Uniform CD-ROM driver Revision: 3.20
[    0.431859] sr 1:0:0:0: Attached scsi generic sg0 type 5
[    1.125490] eth0: IPv6 duplicate address fe80::5054:ff:fe12:3456 detected!
[    1.138106] Refined TSC clocksource calibration: 3392.296 MHz.
[    1.878121] Sending DHCP and RARP requests ., OK
[    1.884338] IP-Config: Got DHCP answer from 192.168.1.1, my address is 192.168.1.146
[    1.889221] IP-Config: Complete:
[    1.891187]      device=eth0, addr=192.168.1.146, mask=255.255.255.0, gw=192.168.1.1,
[    1.895889]      host=192.168.1.146, domain=, nis-domain=(none),
[    1.898067]      bootserver=192.168.1.1, rootserver=192.168.1.11, rootpath=
[    1.903779] VFS: Mounted root (nfs filesystem) on device 0:14.
[    1.905538] devtmpfs: mounted
[    1.907350] Freeing unused kernel memory: 596k freed
[    1.908430] Write protecting the kernel read-only data: 10240k
[    1.910871] Freeing unused kernel memory: 516k freed
[    1.916736] Freeing unused kernel memory: 1868k freed
modprobe: FATAL: Could not load /lib/modules/2.6.39.2/modules.dep: No such file or directory

[    1.956278] modprobe used greatest stack depth: 3856 bytes left
INIT: version 2.88 booting
Using makefile-style concurrent boot in runlevel S.
Starting the hotplug events dispatcher: udevd[    2.273172] udevd[917]: starting version 171
.
Synthesizing the initial hotplug events...done.
Waiting for /dev to be fully populated...[    2.388884] modprobe used greatest stack depth: 3832 bytes left
udevd[969]: error changing net interface name eth0 to eth1: Device or resource busy

done.
Setting the system clock.
Activating swap...done.
Setting the system clock.
Cleaning up ifupdown....
Setting up networking....
Loading kernel modules...done.
Activating lvm and md swap...done.
Checking file systems...fsck from util-linux-ng 2.17.2
done.
Mounting local filesystems...done.
Activating swapfile swap...done.
Cleaning up temporary files....
Configuring network interfaces...done.
Setting kernel variables ...done.
Starting rpcbind daemon...rpcbind: Cannot open '/var/run/rpcbind/rpcbind.xdr' file for reading, errno 2 (No such file or directory)
rpcbind: Cannot open '/var/run/rpcbind/portmap.xdr' file for reading, errno 2 (No such file or directory)
.
Starting NFS common utilities: statd.
Cleaning up temporary files....
INIT: Entering runlevel: 2
Using makefile-style concurrent boot in runlevel 2.
Starting rpcbind daemon...Already running..
Starting NFS common utilities: statd.
Starting enhanced syslogd: rsyslogd.
Starting periodic command scheduler: cron.
[    8.650232] sshd (1453): /proc/1453/oom_adj is deprecated, please use /proc/1453/oom_score_adj instead.
Starting OpenBSD Secure Shell server: sshd.

Debian GNU/Linux wheezy/sid 192.168.1.146 ttyS0

192.168.1.146 login:




阅读(3929) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~