Initscripts default rc.conf DAEMONS line and HAL

Hello,
Some application error messages recently caused me to realize that after setting up a new machine I was not starting the HAL daemon.
Shouldn't this daemon be in the default DAEMONS=() line of rc.conf, as installed by the initscripts package?
I started to flag the package "out of date" but I wasn't sure if this was the appropriate action for this issue/question.
android

I was refering to flaging the initscripts package, not the hal package.
It's my impression that udev hot plugging as well as kde and gnome infrastructure (therefore all of the applications, not just if that's your desktop) all rely on hal at runtime.
I still haven't quite run it to ground, but I also believe that the arch boot proccess uses hal as part of hardware discovery.
So I think quite a bit of stuff depends on it and that it's a default in arch installations.
Given this, it seemed it would be reasonable if it were included in the DAEMONS line by default, or at least if configuration dependent on it is selected at system installation time.
In short, it seems like initscripts is "out of date" by not supporting hal out of the box.
This issue is related to knowing which of the, ever growing list of, groups to which a user should be added in order to have access to the systems hardware. But that's another post.
This is just my impression as a user. I'm eager to learn more, especially about the arch setup and boot process.
Thanks for your reply...
johnea

Similar Messages

  • Default rc.conf daemons

    Just curious what network netfs and crond do ? They are loaded at startup in the daemons array of the default rc.conf and i am trying to reduce my startup processes and trying to determine if i need them.
    Thanks

    carick wrote:Just curious what network netfs and crond do ? They are loaded at startup in the daemons array of the default rc.conf and i am trying to reduce my startup processes and trying to determine if i need them.
    Thanks
    if you're trying to cut down on boot up time, putting '@' in front of each daemon will load them in the background. when i did that, it took about 10 seconds off my boot up time.

  • No color stuck default in CS5 for Line and Pencil?

    Sorry - I am a new user to CS5- How do I get the no color off of the fill and stroke and pencil tools on the tools menu?

    I figured it out.  Lines and the pencil have only a stroke and no fill.

  • My mac wifi connection to DSL line was down when I tried to upgrade Ipad to IOS6, and it defaulted to Ipad data line and consumed my monthly allotment of data -- How can that happen as a technical matter?

    Maps did not work for me for the first week after upgrading to IOS6 on my New Ipad -- I have since learned that I exceeded my 2 gig monthly data plan and therefore I had no 4G access on my ipad, which meant Maps couldn't work while traveling.  Since I never download videos, I knew I had not knowingly downloaded that much data.  When I called AT&T, they told me that when I upgraded to IOS6 I consumed over 1 gig of data.  
    I did the upgrade while connected to my iMac, which in turn has a wireless connection to router connected to my home DSL line.   My wifi service has been spotty lately, possibly because router is defective.  So let's assume that when I tried to download IOS6 that my iMac did not have a good wifi connection.  Is the AT&T person correct that the download defaults to the Ipad's 4G cellular network, even though the iPad is connected to the iMac by USB cable?  I didn't think that was possible as a technical matter -- i.e., that the iMac gets automatic access to the iPad's connection to the cellular network.  (I'm sure I'm not explaining this right, I'm obviously not technical.)   
    Also, do you get any obvious warning or indicator on the device that you have exceeded your data limit for the month?  I sure didn't see any warning, (although I now know that I can go to Settings, then Cellular Data, then View Account and find the status of my data line account).  
    Thanks for any help on this. 

    Strange. It works fine with my setup which is no different from yours. Problem with the cable or LAN port(s)?

  • I created a word document with hyperlinks. When my default browser is Chrome the hyper links work. When the default browser is Safari, the hyperlinks bring to pages that just lines and lines of symbols. I need these links to work in both browsers.

    I created a word document with hyperlinks. When my default browser is Chrome the hyper links work. When the default browser is Safari, the hyperlinks bring to pages that just lines and lines of symbols. I need these links to work in both browsers. Any ideas?

    version 10.6.8

  • How do I set default colors for XY chart series (lines and legend)

    I am implementing a line chart and need to override the default (caspian style) colors for the line colors and the legend symbols. I'm not displaying the chart symbols themselves as that would make the chart look bad. I've been able to successfully set the default colors for the lines via the CSS below, but cannot find a way to do the same for the series symbols that appear in the chart legend. How do I do this? Thanks.
    .default-color0.chart-series-line {
      -fx-stroke: rgb(0, 102, 255);
    .default-color1.chart-series-line {
      -fx-stroke: rgb(0, 255, 102);
    ...Update:
    Figured it out. Need to do the following:
    .default-color0.chart-line-symbol {
      -fx-background-color: rgb(R, G, B);
    }Edited by: 998038 on May 16, 2013 4:09 PM

    Here is some css to customize the line and legend colors in a line chart.
    /** file: chart.css
        place in same directory as LineChartWithCustomColors.java */
    .default-color0.chart-series-line {
      -fx-stroke: rgb(0, 102, 255);
    .default-color1.chart-series-line {
      -fx-stroke: rgb(0, 255, 102);
    .default-color0.chart-line-symbol {
      -fx-background-color: rgb(0, 102, 255), white;
    .default-color1.chart-line-symbol {
      -fx-background-color: rgb(0, 255, 102), white;
    }And a test harness to try it:
    import javafx.application.Application;
    import javafx.event.*;
    import javafx.scene.Scene;
    import javafx.scene.chart.*;
    import javafx.scene.control.*;
    import javafx.scene.input.*;
    import javafx.stage.Stage;
    public class LineChartWithCustomColors extends Application {
        @Override public void start(final Stage stage) {
            stage.setTitle("Line Chart Sample");
            //defining the axes
            final NumberAxis xAxis = new NumberAxis();
            xAxis.setLabel("Number of Month");
            final NumberAxis yAxis = new NumberAxis();
            //creating the chart
            final LineChart<Number,Number> lineChart =
                    new LineChart<>(xAxis,yAxis);
            lineChart.setTitle("Stock Monitoring, 2010");
            lineChart.setCreateSymbols(false);
            //defining a series
            XYChart.Series series = new XYChart.Series();
            series.setName("My portfolio");
            //populating the series with data
            series.getData().setAll(
              new XYChart.Data(1, 23),
              new XYChart.Data(2, 14),
              new XYChart.Data(3, 15),
              new XYChart.Data(4, 24),
              new XYChart.Data(5, 34),
              new XYChart.Data(6, 36),
              new XYChart.Data(7, 22),
              new XYChart.Data(8, 45),
              new XYChart.Data(9, 43),
              new XYChart.Data(10, 17),
              new XYChart.Data(11, 29),
              new XYChart.Data(12, 25)
            lineChart.getData().add(series);
            //adding a context menu item to the chart
            final MenuItem resizeItem = new MenuItem("Resize");
            resizeItem.setOnAction(new EventHandler<ActionEvent>() {
              @Override public void handle(ActionEvent event) {
                System.out.println("Resize requested");
            final ContextMenu menu = new ContextMenu(
              resizeItem
            lineChart.setOnMouseClicked(new EventHandler<MouseEvent>() {
              @Override public void handle(MouseEvent event) {
                if (MouseButton.SECONDARY.equals(event.getButton())) {
                  menu.show(stage, event.getScreenX(), event.getScreenY());
            Scene scene =
              new Scene(
                lineChart,800,600
            stage.setScene(
              scene
            stage.show();
            scene.getStylesheets().add(
              getClass().getResource("chart.css").toExternalForm()
        public static void main(String[] args) {
            launch(args);
    }

  • Xorg.conf , nvidia 96xx and dual head failure

    i cant get Xorg to work with nvidia driver at all.
    here is where i am.
    setup aurch linux [X]
    setup xserver with NV driver 1 head[X]
    setup dual head[]
    ok so i cant even get nvidia drivers to work or dual head on the NV driver.
    i dont have an xorg.conf setup but i have tried the xorg.conf from my fedora setup but it just black screened.
    here is my error log.
    X.Org X Server 1.6.2
    Release Date: 2009-7-7
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 2.6.30-ARCH x86_64
    Current Operating System: Linux mypc 2.6.30-ARCH #1 SMP PREEMPT Mon Jul 20 07:46:03 CEST 2009 x86_64
    Build Date: 18 July 2009 03:49:37PM
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Fri Jul 24 03:43:51 2009
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) No Layout section. Using the first Screen section.
    (==) No screen section available. Using defaults.
    (**) |-->Screen "Default Screen Section" (0)
    (**) | |-->Monitor "<default monitor>"
    (==) No device specified for screen "Default Screen Section".
    Using the first device section listed.
    (**) | |-->Device "Device0"
    (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    (==) Automatically adding devices
    (==) Automatically enabling devices
    (WW) The directory "/usr/share/fonts/TTF" does not exist.
    Entry deleted from font path.
    (WW) The directory "/usr/share/fonts/Type1" does not exist.
    Entry deleted from font path.
    (==) FontPath set to:
    /usr/share/fonts/misc,
    /usr/share/fonts/100dpi:unscaled,
    /usr/share/fonts/75dpi:unscaled,
    built-ins
    (==) ModulePath set to "/usr/lib/xorg/modules"
    (II) Cannot locate a core pointer device.
    (II) Cannot locate a core keyboard device.
    (II) The server relies on HAL to provide the list of input devices.
    If no devices become available, reconfigure HAL or disable AllowEmptyInput.
    (II) Loader magic: 0xb40
    (II) Module ABI versions:
    X.Org ANSI C Emulation: 0.4
    X.Org Video Driver: 5.0
    X.Org XInput driver : 4.0
    X.Org Server Extension : 2.0
    (II) Loader running on linux
    (++) using VT number 7
    (--) PCI:*(0:1:0:0) 10de:0622:1462:1270 nVidia Corporation G94 [GeForce 9600 GT] rev 161, Mem @ 0xfd000000/16777216, 0xd0000000/268435456, 0xfa000000/33554432, I/O @ 0x0000d800/128, BIOS @ 0x????????/524288
    (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    (II) No APM support in BIOS or kernel
    (II) System resource ranges:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [5] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [6] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [7] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [8] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [9] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [10] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [11] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [12] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [13] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [14] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [15] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [16] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [17] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [18] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [19] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [20] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [21] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [22] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [23] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [24] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [25] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [26] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [27] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [28] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [29] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [30] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [31] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [32] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [33] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [34] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [35] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    (II) LoadModule: "extmod"
    (II) Loading /usr/lib/xorg/modules/extensions//libextmod.so
    (II) Module extmod: vendor="X.Org Foundation"
    compiled for 1.6.2, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension MIT-SCREEN-SAVER
    (II) Loading extension XFree86-VidModeExtension
    (II) Loading extension XFree86-DGA
    (II) Loading extension DPMS
    (II) Loading extension XVideo
    (II) Loading extension XVideo-MotionCompensation
    (II) Loading extension X-Resource
    (II) LoadModule: "dbe"
    (II) Loading /usr/lib/xorg/modules/extensions//libdbe.so
    (II) Module dbe: vendor="X.Org Foundation"
    compiled for 1.6.2, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DOUBLE-BUFFER
    (II) LoadModule: "glx"
    (II) Loading /usr/lib/xorg/modules/extensions//libglx.so
    (II) Module glx: vendor="NVIDIA Corporation"
    compiled for 4.0.2, module version = 1.0.0
    Module class: X.Org Server Extension
    (II) NVIDIA GLX Module 96.43.11 Mon Feb 23 16:13:29 PST 2009
    (II) Loading extension GLX
    (II) LoadModule: "record"
    (II) Loading /usr/lib/xorg/modules/extensions//librecord.so
    (II) Module record: vendor="X.Org Foundation"
    compiled for 1.6.2, module version = 1.13.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension RECORD
    (II) LoadModule: "dri"
    (II) Loading /usr/lib/xorg/modules/extensions//libdri.so
    (II) Module dri: vendor="X.Org Foundation"
    compiled for 1.6.2, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension XFree86-DRI
    (II) LoadModule: "dri2"
    (II) Loading /usr/lib/xorg/modules/extensions//libdri2.so
    (II) Module dri2: vendor="X.Org Foundation"
    compiled for 1.6.2, module version = 1.1.0
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DRI2
    (II) LoadModule: "nvidia"
    (II) Loading /usr/lib/xorg/modules/drivers//nvidia_drv.so
    (II) Module nvidia: vendor="NVIDIA Corporation"
    compiled for 4.0.2, module version = 1.0.0
    Module class: X.Org Video Driver
    (II) NVIDIA dlloader X Driver 96.43.11 Mon Feb 23 15:54:58 PST 2009
    (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    (II) Primary Device is: PCI 01@00:00:0
    (II) Loading sub module "fb"
    (II) LoadModule: "fb"
    (II) Loading /usr/lib/xorg/modules//libfb.so
    (II) Module fb: vendor="X.Org Foundation"
    compiled for 1.6.2, module version = 1.0.0
    ABI class: X.Org ANSI C Emulation, version 0.4
    (II) Loading sub module "ramdac"
    (II) LoadModule: "ramdac"
    (II) Module "ramdac" already built-in
    (II) resource ranges after probing:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [5] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [6] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [7] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [8] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [9] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [10] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [11] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [12] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [13] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [14] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [15] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [16] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [17] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [18] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [19] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [20] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [21] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [22] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [23] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [24] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [25] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [26] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [27] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [28] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [29] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [30] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [31] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [32] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [33] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [34] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [35] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    (II) NVIDIA(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    (==) NVIDIA(0): Depth 24, (==) framebuffer bpp 32
    (==) NVIDIA(0): RGB weight 888
    (==) NVIDIA(0): Default visual is TrueColor
    (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
    (**) NVIDIA(0): Enabling RENDER acceleration
    (II) NVIDIA(0): Support for GLX with the Damage and Composite X extensions is
    (II) NVIDIA(0): enabled.
    (EE) NVIDIA(0): Failed to initialize the NVIDIA graphics device PCI:1:0:0.
    (EE) NVIDIA(0): Please see the COMMON PROBLEMS section in the README for
    (EE) NVIDIA(0): additional information.
    (EE) NVIDIA(0): Failed to initialize the NVIDIA graphics device!
    (EE) NVIDIA(0): *** Aborting ***
    (II) UnloadModule: "nvidia"
    (II) UnloadModule: "fb"
    (EE) Screen(s) found, but none have a usable configuration.
    Fatal server error:
    no screens found
    Please consult the The X.Org Foundation support
    at http://wiki.x.org
    for help.
    Please also check the log file at "/var/log/Xorg.0.log" for additional information.
    Ive tried everything i could think of or what arch wiki could. I came to aurch linux to learn more about linux (fedora holds your hand to much.) but i dont think i can figure this one out on my own.

    serverman,
    let me see if I understand your situation.
    You are using the nvidia drivers and want to setup a dual screen with independent screens (?).
    Without a xorg.conf one screen should work out of the box with one screen.
    For the proprietary drivers you will need a minimal xorg.conf:
    Section "Device"
    Identifier "Configured Video Device"
    Driver "nvidia"
    EndSection
    Section "Screen"
    Identifier "Default Screen"
    Device "Configured Video Device"
    DefaultDepth 24
    EndSection
    This still has only one screen, but can you try it and tell what happens ?
    Mektub

  • Rc.conf DAEMONS '@' question

    In rc.conf it says to put a @ infront of a daemon to load it in the background.
    What exactly does this mean and which daemons should I consider loading up in the background?
    Cheers.

    It means the next daemon listed will start without waiting for the prefixed daemon to finish.. uh,  e.g my daemons line:
    DAEMONS=(syslog-ng network dbus hal portmap @fam @shorewall @samba @netfs @crond @alsa @mpd)
    Basically, shorewall will start before fam has finished loading, and so on.  You have to use a little common sense to figure out what needs to be running before other things can - like portmap must be running before fam I believe.  I'm not sure my setup is optimal, I could perhaps background one or two more, but i'm not all that concerned right now.
    Anyway it's worth playing with and this setup saves me maybe 10-20 secs in boot time at a guess.

  • Pimp my rc.conf daemons

    From what I understand, selective editing of the DAEMONS line of rc.conf, including prefixing certain daemons with @, can significantly reduce boot time. I read a couple posts, as well as the wiki, searching for a solid answer, but the best I found was "which services to start background depends on your needs" which is a bit obvious. In any case, here's my current line:
    DAEMONS=(syslog-ng !network netfs crond hal alsa hplip cups dhcdbd networkmanager laptop-mode gdm)
    I'm sure it's a mess, as I've just slapped daemons on to fix problems, enable wireless, etc. so far.
    If it's at all useful, this is a laptop that I commonly use as a workstation and with wireless.
    Last edited by ArchPad (2007-06-13 14:34:41)

    toofishes wrote:
    ArchPad wrote:
    From what I understand, selective editing of the DAEMONS line of rc.conf, including prefixing certain daemons with @, can significantly reduce boot time. I read a couple posts, as well as the wiki, searching for a solid answer, but the best I found was "which services to start background depends on your needs" which is a bit obvious. In any case, here's my current line:
    DAEMONS=(syslog-ng !network netfs crond hal alsa hplip cups dhcdbd networkmanager laptop-mode gdm)
    I'm sure it's a mess, as I've just slapped daemons on to fix problems, enable wireless, etc. so far.
    If it's at all useful, this is a laptop that I commonly use as a workstation and with wireless.
    Certain daemons likely depend on other things already having started before they initiate their startup, so you want to leave some alone. Here is my array, and although different than yours, notice how I leave quite a few things un-backgrounded due to dependencies and lump all the backgrounded ones at the end:
    DAEMONS=(syslog-ng network iptables portmap @fcron @hal @sensors @knockd @netfs @sshd @ntpd @alsa @cups)
    This would lead me to believe something like this would work for you (and WHY do you have network disabled?):
    DAEMONS=(syslog-ng network hplip @crond @hal @netfs @alsa @cups @dhcdbd @networkmanager @laptop-mode @gdm)
    I have syslog-ng and network backgrounded too and that works perfect.

  • Daemons line

    Here's my daemons line in the rc.conf:
    DAEMONS=(syslog-ng net-profiles network firestarter netfs portmap fam dbus hal crond alsa sensors mysqld)
    Are there any I can make start in the background or that are unnecessary?  Also, what are netfs and crond?
    Last edited by Gauvenator (2008-05-03 23:42:08)

    venox wrote:
    dolby wrote:hal starts dbus if its not started and i dont think theres a problem with backgrounding all the daemons
    I'm not sure about this. But I think it's not a good thing to background daemons of which other daemons depend. Like backgrounding network, while others need it to start correctly. You can't just assume that the backgrounded daemon will be up and running until the other daemon starts.
    But again, I'm not sure about this.
    Anyway, what's the difference of having a system that boots in 30 or 20 seconds when you're going to use it for hours?
    Yes that's what I was thinking too.  A daemon could depend on another being running.
    Well I'm happy atm, but just for the hell of it I'm going to see how quick it is without net-profiles

  • Feature request: extra Include directive in default pacman.conf

    Since arch's move to systemd, cluster administration requires less and less use of sed.  In particular, systemctl, timedatectl, /etc/sysctl.d, /etc/modules-load.d, /etc/hostname, /etc/vconsole.conf, etc. make scripting configuration changes both simpler more robust than the old approach of editing multi-purpose files such as /etc/rc.conf.
    An exception to this trend is pacman.conf, which has non-trivial default contents that almost certainly needs to be customized (e.g., to enable multilib and local repositories).  These changes would be much simpler if the default pacman.conf included a line such as:
    Include = /etc/pacman.d/conf/*.conf
    Currently my scripts use sed to insert this line at the end of the [options] section.  (Unfortunately "Include = /etc/pacman.d/*.conf" doesn't work because there's sometimes a gpg.conf file in /etc/pacman.d, but maybe that could be fixed.)
    I don't know if the forum is the right place for feature requests, but I wanted to get people's reactions.  If people think it's a good idea I can add it as a feature request to the bug tracker.
    There are several other pieces of low-hanging fruit where I'd like to see arch decrease the complexity scripting configuration (e.g., an unattended pacman-key --populate and easier customization of mkinitcpio.conf), but I figured I'd start with the simplest and gauge people's reactions.

    aweb wrote:I don't know if the forum is the right place for feature requests, but I wanted to get people's reactions.  If people think it's a good idea I can add it as a feature request to the bug tracker.
    It isn't... best to place the feedback in flyspray so it will be sure to get to the peeps that need to see it.  Welcome to Arch.

  • Configuring httpd-ssl.conf on Leopard and Apache 2.2.6

    Hi everybody,
    I recently migrated to Leopard from Tiger 10.4.10. On my Tiger client I had installed my own web server using mod_ssl with Apache 1.3 server. On Leopard, apache 2.2.6 and OpenSSL 0.9.7 are now installed and configurations files have changed.
    Since two weeks, I'm trying to install mod_ssl without success on my machine. Thereafter, I will show only what's relevant from two configuration files :
    First -> Httpd.conf (which is in /etc/apache2/)
    #My port 80 is blocked by my isp
    Listen 8080
    <IfDefine SSL>
    LoadModule ssl_module libexec/apache2/mod_ssl.so
    </IfDefine SSL>
    LoadModule php5_module /usr/local/php5/libphp5.so
    User www
    Group www
    </IfModule>
    <IfModule mod_ssl.c>
    Listen 8080
    Listen 8083
    </IfModule>
    DocumentRoot "/Library/WebServer/Documents"
    <IfModule dir_module>
    DirectoryIndex index.htm lndex.php index.htm default.html
    </IfModule>
    ErrorLog /private/var/log/apache2/error_log
    # Virtual hosts
    #Include /private/etc/apache2/extra/httpd-vhosts.conf
    # Local access to the Apache HTTP Server Manual
    Include /private/etc/apache2/extra/httpd-manual.conf
    # Distributed authoring and versioning (WebDAV)
    #Include /private/etc/apache2/extra/httpd-dav.conf
    # Various default settings
    #Include /private/etc/apache2/extra/httpd-default.conf
    # Secure (SSL/TLS) connections
    #Include /private/etc/apache2/extra/httpd-ssl.conf
    <IfModule ssl_module>
    SSLRandomSeed startup builtin
    SSLRandomSeed connect builtin
    </IfModule>
    AddType application/x-httpd-php .php
    AddType application/x-httpd-php-source .phps
    DirectoryIndex index.html index.php
    </IfModule>
    #Include /private/etc/apache2/other/*.conf
    # end of httpd.conf
    Second ->httpd-ssl.conf (which is in /etc/apache2/extra/)( I elided personnal information)
    <IfModule mod_ssl.c>
    listen 8080
    listen 8083
    </IfModule>
    AddType application/x-x509-ca-cert .crt
    AddType application/x-pkcs7-crl .crl
    SSLPassPhraseDialog builtin
    #SSLSessionCache "dbm:/private/var/run/ssl_scache"
    SSLSessionCache "shmcb:/private/var/run/ssl_scache(512000)"
    SSLSessionCacheTimeout 300
    SSLMutex "file:/private/var/run/ssl_mutex"
    <VirtualHost default:8080>
    #Just to keep things sane...
    DocumentRoot "/Library/WebServer/Documents"
    ServerName myadress.com
    ServerAdmin [email protected]
    SSLEngine off
    </VirtualHost>
    <VirtualHost default:8083>
    # General setup for the virtual host
    DocumentRoot "/Library/WebServer/Documents"
    ServerName myadress.com
    ServerAdmin [email protected]
    ErrorLog "/private/var/log/apache2/error_log"
    TransferLog "/private/var/log/apache2/access_log"
    # SSL Engine Switch:
    # Enable/Disable SSL for this virtual host.
    SSLEngine on
    # SSL Cipher Suite:
    SSLCipherSuite ALL:!ADH:!EXPORT56:RC4RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:eNULL
    # Server Certificate:
    SSLCertificateFile "/private/etc/apache2/ssl.key/server.crt"
    #SSLCertificateFile "/private/etc/apache2/server-dsa.crt"
    # Server Private Key:
    SSLCertificateFile "/private/etc/apache2/ssl.key/server.key"
    #SSLCertificateKeyFile "/private/etc/apache2/server-dsa.key"
    # Server Certificate Chain:
    #SSLCertificateChainFile "/private/etc/apache2/server-ca.crt"
    # Certificate Authority (CA):
    #SSLCACertificatePath "/private/etc/apache2/ssl.crt"
    SSLCACertificatePath "/private/etc/apache2/ssl.key/"
    #SSLCACertificateFile "/private/etc/apache2/ssl.crt/ca-bundle.crt"
    # Certificate Revocation Lists (CRL):
    #SSLCARevocationPath "/private/etc/apache2/ssl.crl"
    #SSLCARevocationFile "/private/etc/apache2/ssl.crl/ca-bundle.crl"
    # Client Authentication (Type):
    #SSLVerifyClient require
    #SSLVerifyDepth 10
    # Access Control:
    #<Location />
    #SSLRequire ( %{SSL_CIPHER} !~ m/^(EXP|NULL)/ \
    # and %{SSLCLIENT_S_DNO} eq "Snake Oil, Ltd." \
    # and %{SSLCLIENT_S_DNOU} in {"Staff", "CA", "Dev"} \
    # and %{TIME_WDAY} >= 1 and %{TIME_WDAY} <= 5 \
    # and %{TIME_HOUR} >= 8 and %{TIME_HOUR} <= 20 ) \
    # or %{REMOTE_ADDR} =~ m/^192\.76\.162\.[0-9]+$/
    #</Location>
    # SSL Engine Options:
    #SSLOptions +FakeBasicAuth +ExportCertData +StrictRequire
    <FilesMatch "\.(cgi|shtml|phtml|php)$">
    SSLOptions +StdEnvVars
    </FilesMatch>
    <Directory "/Library/WebServer/CGI-Executables">
    SSLOptions +StdEnvVars
    </Directory>
    # SSL Protocol Adjustments:
    BrowserMatch ".MSIE." \
    nokeepalive ssl-unclean-shutdown \
    downgrade-1.0 force-response-1.0
    # Per-Server Logging:
    CustomLog "/private/var/log/apache2/sslrequestlog" \
    "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"
    </VirtualHost>
    ### end of httpd-ssl.conf
    When I uncomment this line in httpd.conf :
    LoadModule ssl_module libexec/apache2/mod_ssl.so
    and try to send the 'apachectl start' command in terminal nothing happens. Apache seems to hang and
    no "Apache/2.2.6 (Unix) DAV/2 PHP/5.2.5 configured -- resuming normal operations" in my console log. Of course, nothing in my error_log.
    I've read somewhere else that there would be a bug in 9.7 version of modssl and that we should install 9.8 version. Could anybody confirm this ?
    Is there somebody here who succeeded installing ssl on apache 2.2.6 and Leopard 10.5.1 ?
    Thanks for helping me
    Regards

    You need the latest plugin.
    Get it from at least 6.1 SP4.
    Eric
    "Michael Congdon" <[email protected]> wrote in message
    news:[email protected]..
    >
    I am having the exact same problem with Apache 2.0.40 on Solaris 2.7 andWebLogic
    6.1 SP 1.
    Please let me know if you get any help. I don't know of anyone who hassuccessfully
    used Apache 2.0 w/WebLogic.
    "Yanjing Liu" <[email protected]> wrote:
    I tried to use apache plug-in to forward request to a wls6.1sp1 on
    Win2000.
    >>
    So I installed Apache 2.0.40 running on Solaris 8 and simply copymod_wl.so
    from
    WL_HOME\lib\Solaris to APATHE_HOME/libexec. A few lines has been added
    to my httpd.conf,
    which are:
    LoadModule weblogic_module libexec/mod_wl.so
    <IfModule mod_weblogic.c>
    WebLogicHost myweblogicserver.com WebLogicPort 7001
    </IfModule>
    <Location /weblogic>
    SetHandler weblogic-handler
    </Location>
    When I verify the syntax of the httpd.conf file with the followingcommand:
    >>
    /export/home/apache2/bin/apachectl configtest
    Here are the errors I got:
    Cannot load /export/home/apache2/libexec/mod_wl_20.so into server:ld.so.1
    >>
    /export/home/apache2/bin/httpd:fatal: relocation error:file
    /export/home/apache2/libexec/mod_wl_20.so: symbol apr_pool_create:referenced
    symbol not found.
    Has anyone expereinced a similiar problem?
    Thanks,
    Yanjing

  • Problems with new rc.conf network profile and rc.conf.pacnew [FIXED]

    Folks after the last updates I have the following error
    I used cat /var/log/boot | grep -C 10 'FAIL' | awk '{for (i =5; i <=NF; i++) printf("%s",$i); printf("\n")}' to get it.
    The query is outputing a LOT of garbage maybe someone can help me to improve it a bit but anyways....
    2011:^[[71G^[[1;34;40m[^[[1;37;40mDONE^[[1;34;40m]^[[1;0m
    2011:^[[1;34;40m::^[[1;37;40mActivatingSwap^[[1;0m^[[s^[[71G^[[1;34;40m[^[[0;36;40mBUSY^[[1;34;40m]^[[1;0m^[[71G^[[1;34;40m[^[[1;37;40mDONE^[[1;34;40m]^[[1;0m
    2011:^[[1;34;40m::^[[1;37;40mConfiguringTimeZone^[[1;0m^[[s^[[71G^[[1;34;40m[^[[0;36;40mBUSY^[[1;34;40m]^[[1;0m^[[71G^[[1;34;40m[^[[1;37;40mDONE^[[1;34;40m]^[[1;0m
    2011:^[[1;34;40m::^[[1;37;40mRemovingLeftoverFiles^[[1;0m^[[s^[[71G^[[1;34;40m[^[[0;36;40mBUSY^[[1;34;40m]^[[1;0m^[[71G^[[1;34;40m[^[[1;37;40mDONE^[[1;34;40m]^[[1;0m
    2011:^[[1;34;40m::^[[1;37;40mSettingHostname:mordor^[[1;0m^[[s^[[71G^[[1;34;40m[^[[0;36;40mBUSY^[[1;34;40m]^[[1;0m^[[71G^[[1;34;40m[^[[1;37;40mDONE^[[1;34;40m]^[[1;0m
    2011:^[[1;34;40m::^[[1;37;40mSettingLocale:en_US.UTF-8^[[1;0m^[[s^[[71G^[[1;34;40m[^[[0;36;40mBUSY^[[1;34;40m]^[[1;0m^[[71G^[[1;34;40m[^[[1;37;40mDONE^[[1;34;40m]^[[1;0m
    2011:^[[1;34;40m::^[[1;37;40mSettingConsolestoUTF-8mode^[[1;0m^[[s^[[71G^[[1;34;40m[^[[0;36;40mBUSY^[[1;34;40m]^[[1;0m^[%G^[[71G^[[1;34;40m[^[[1;37;40mDONE^[[1;34;40m]^[[1;0m
    2011:^[[1;34;40m::^[[1;37;40mLoadingKeyboardMap:br-abnt2^[[1;0m^[[s^[[71G^[[1;34;40m[^[[0;36;40mBUSY^[[1;34;40m]^[[1;0m^[[71G^[[1;34;40m[^[[1;37;40mDONE^[[1;34;40m]^[[1;0m
    2011:INIT:Enteringrunlevel:3
    2011:^[[1;34;40m::^[[1;37;40mStartingSyslog-NG^[[1;0m^[[s^[[71G^[[1;34;40m[^[[0;36;40mBUSY^[[1;34;40m]^[[1;0m^[[71G^[[1;34;40m[^[[1;37;40mDONE^[[1;34;40m]^[[1;0m
    2011:^[[1;34;40m::^[[1;37;40mStartingNetwork^[[1;0m^[[s^[[71G^[[1;34;40m[^[[0;36;40mBUSY^[[1;34;40m]^[[1;0m^[[71G^[[1;34;40m[^[[1;31;40mFAIL^[[1;34;40m]^[[1;0m
    2011:^[[1;34;40m::^[[1;37;40mMountingNetworkFilesystems^[[1;0m^[[s^[[71G^[[1;34;40m[^[[0;36;40mBUSY^[[1;34;40m]^[[1;0m^[[71G^[[1;34;40m[^[[1;37;40mDONE^[[1;34;40m]^[[1;0m
    2011:^[[1;34;40m::^[[1;37;40mStartingCronDaemon^[[1;0m^[[s^[[71G^[[1;34;40m[^[[0;36;40mBUSY^[[1;34;40m]^[[1;0m^[[71G^[[1;34;40m[^[[1;37;40mDONE^[[1;34;40m]^[[1;0m
    2011:^[[1;34;40m::^[[1;37;40mRestoringALSALevels^[[1;0m^[[s^[[71G^[[1;34;40m[^[[0;36;40mBUSY^[[1;34;40m]^[[1;0m^[[71G^[[1;34;40m[^[[1;37;40mDONE^[[1;34;40m]^[[1;0m
    2011:^[[1;34;40m::^[[1;37;40mStartingD-BUSsystemmessagebus^[[1;0m^[[s^[[71G^[[1;34;40m[^[[0;36;40mBUSY^[[1;34;40m]^[[1;0m^[[71G^[[1;34;40m[^[[1;37;40mDONE^[[1;34;40m]^[[1;0m
    2011:^[[1;34;40m::^[[1;37;40mStartingUDevDaemon^[[1;0m^[[s^[[71G^[[1;34;40m[^[[0;36;40mBUSY^[[1;34;40m]^[[1;0m^[[71G^[[1;34;40m[^[[1;37;40mDONE^[[1;34;40m]^[[1;0m
    2011:^[[1;34;40m::^[[1;37;40mTriggeringUDevuevents^[[1;0m^[[s^[[71G^[[1;34;40m[^[[0;36;40mBUSY^[[1;34;40m]^[[1;0m^[[71G^[[1;34;40m[^[[1;37;40mDONE^[[1;34;40m]^[[1;0m
    2011:^[[1;34;40m::^[[1;37;40mLoadingModules^[[1;0m^[[s^[[71G^[[1;34;40m[^[[0;36;40mBUSY^[[1;34;40m]^[[1;0m^[[71G^[[1;34;40m[^[[1;37;40mDONE^[[1;34;40m]^[[1;0m
    2011:^[[1;34;40m::^[[1;37;40mWaitingforUDevueventstobeprocessed^[[1;0m^[[s^[[71G^[[1;34;40m[^[[0;36;40mBUSY^[[1;34;40m]^[[1;0m^[[71G^[[1;34;40m[^[[1;37;40mDONE^[[1;34;40m]^[[1;0m
    2011:^[[1;34;40m::^[[1;37;40mBringinguploopbackinterface^[[1;0m^[[s^[[71G^[[1;34;40m[^[[0;36;40mBUSY^[[1;34;40m]^[[1;0m^[[71G^[[1;34;40m[^[[1;37;40mDONE^[[1;34;40m]^[[1;0m
    2011:^[[1;34;40m::^[[1;37;40mCheckingFilesystems^[[1;0m^[[s^[[71G^[[1;34;40m[^[[0;36;40mBUSY^[[1;34;40m]^[[1;0m/dev/sdb3:clean,258183/6111232files,4586437/24414012blocks
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mSettingHostname:mordor^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mSettingLocale:en_US.UTF-8^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mSettingConsolestoUTF-8mode^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[%G^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mLoadingKeyboardMap:br-abnt2^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:INIT:Enteringrunlevel:3
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mStartingSyslog-NG^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[31mWarning:^[[0;10mThisfunctionalityisdeprecated.
    2011:Pleasereferto/etc/rc.confonhowtodefineasinglewired
    2011:connection,oruseautilitysuchasnetcfg.
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mStartingNetwork^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10mSIOCADDRT:Nosuchprocess
    2011:^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1m^[[31mFAIL^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mMountingNetworkFilesystems^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mStartingCronDaemon^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mRestoringALSALevels^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mStartingD-BUSsystemmessagebus^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mStartingUDevDaemon^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mTriggeringUDevuevents^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mLoadingModules^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mWaitingforUDevueventstobeprocessed^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mBringinguploopbackinterface^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mCheckingFilesystems^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m/dev/sdb3:clean,270450/6111232files,8015085/24414012blocks
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mSettingHostname:mordor^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mSettingLocale:en_US.UTF-8^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mSettingConsolestoUTF-8mode^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[%G^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mLoadingKeyboardMap:br-abnt2^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:INIT:Enteringrunlevel:3
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mStartingSyslog-NG^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[31mWarning:^[[0;10mThisfunctionalityisdeprecated.
    2011:Pleasereferto/etc/rc.confonhowtodefineasinglewired
    2011:connection,oruseautilitysuchasnetcfg.
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mStartingNetwork^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10mSIOCADDRT:Nosuchprocess
    2011:^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1m^[[31mFAIL^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mMountingNetworkFilesystems^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mStartingCronDaemon^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mRestoringALSALevels^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mStartingD-BUSsystemmessagebus^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mStartingUDevDaemon^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mTriggeringUDevuevents^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mLoadingModules^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mWaitingforUDevueventstobeprocessed^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mBringinguploopbackinterface^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mCheckingFilesystems^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m/dev/sdb3:clean,270422/6111232files,8015125/24414012blocks
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mSettingHostname:mordor^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mSettingLocale:en_US.UTF-8^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mSettingConsolestoUTF-8mode^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[%G^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mLoadingKeyboardMap:br-abnt2^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:INIT:Enteringrunlevel:3
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mStartingSyslog-NG^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[31mWarning:^[[0;10mThisfunctionalityisdeprecated.
    2011:Pleasereferto/etc/rc.confonhowtodefineasinglewired
    2011:connection,oruseautilitysuchasnetcfg.
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mStartingNetwork^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10mSIOCADDRT:Nosuchprocess
    2011:^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1m^[[31mFAIL^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mMountingNetworkFilesystems^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mStartingCronDaemon^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mRestoringALSALevels^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mStartingD-BUSsystemmessagebus^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mStartingUDevDaemon^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mTriggeringUDevuevents^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mLoadingModules^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mWaitingforUDevueventstobeprocessed^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mBringinguploopbackinterface^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mCheckingFilesystems^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m/dev/sdb3:clean,270990/6111232files,8019043/24414012blocks
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mSettingHostname:mordor^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mSettingLocale:en_US.UTF-8^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mSettingConsolestoUTF-8mode^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[%G^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mLoadingKeyboardMap:br-abnt2^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:INIT:Enteringrunlevel:3
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mStartingSyslog-NG^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[31mWarning:^[[0;10mThisfunctionalityisdeprecated.
    2011:Pleasereferto/etc/rc.confonhowtodefineasinglewired
    2011:connection,oruseautilitysuchasnetcfg.
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mStartingNetwork^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10mSIOCADDRT:Nosuchprocess
    2011:^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1m^[[31mFAIL^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mMountingNetworkFilesystems^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mStartingCronDaemon^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mRestoringALSALevels^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mStartingD-BUSsystemmessagebus^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mStartingUDevDaemon^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mTriggeringUDevuevents^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mLoadingModules^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mWaitingforUDevueventstobeprocessed^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mBringinguploopbackinterface^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mCheckingFilesystems^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m/dev/sdb3:clean,273536/6111232files,8184441/24414012blocks
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mSettingHostname:mordor^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mSettingLocale:en_US.UTF-8^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mSettingConsolestoUTF-8mode^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[%G^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mLoadingKeyboardMap:br-abnt2^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:INIT:Enteringrunlevel:3
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mStartingSyslog-NG^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[31mWarning:^[[0;10mThisfunctionalityisdeprecated.
    2011:Pleasereferto/etc/rc.confonhowtodefineasinglewired
    2011:connection,oruseautilitysuchasnetcfg.
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mStartingNetwork^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10mSIOCADDRT:Nosuchprocess
    2011:^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1m^[[31mFAIL^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mMountingNetworkFilesystems^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mStartingCronDaemon^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mRestoringALSALevels^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mStartingD-BUSsystemmessagebus^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mStartingUDevDaemon^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mTriggeringUDevuevents^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mLoadingModules^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mWaitingforUDevueventstobeprocessed^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mBringinguploopbackinterface^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mCheckingFilesystems^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m/dev/sdb3:clean,273805/6111232files,8434474/24414012blocks
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mSettingHostname:mordor^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mSettingLocale:en_US.UTF-8^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mSettingConsolestoUTF-8mode^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[%G^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mLoadingKeyboardMap:br-abnt2^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:INIT:Enteringrunlevel:3
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mStartingSyslog-NG^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[31mWarning:^[[0;10mThisfunctionalityisdeprecated.
    2011:Pleasereferto/etc/rc.confonhowtodefineasinglewired
    2011:connection,oruseautilitysuchasnetcfg.
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mStartingNetwork^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10mSIOCADDRT:Nosuchprocess
    2011:^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1m^[[31mFAIL^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mMountingNetworkFilesystems^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mStartingCronDaemon^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mRestoringALSALevels^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mStartingD-BUSsystemmessagebus^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mStartingUDevDaemon^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mTriggeringUDevuevents^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mLoadingModules^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mWaitingforUDevueventstobeprocessed^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mBringinguploopbackinterface^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mCheckingFilesystems^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m/dev/sdb3:clean,273600/6111232files,8386385/24414012blocks
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mSettingHostname:mordor^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mSettingLocale:en_US.UTF-8^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mSettingConsolestoUTF-8mode^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[%G^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mLoadingKeyboardMap:br-abnt2^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:INIT:Enteringrunlevel:3
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mStartingSyslog-NG^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[31mWarning:^[[0;10mThisfunctionalityisdeprecated.
    2011:Pleasereferto/etc/rc.confonhowtodefineasinglewired
    2011:connection,oruseautilitysuchasnetcfg.
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mStartingNetwork^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10mSIOCADDRT:Nosuchprocess
    2011:^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1m^[[31mFAIL^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mMountingNetworkFilesystems^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mStartingCronDaemon^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mRestoringALSALevels^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mStartingD-BUSsystemmessagebus^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mStartingUDevDaemon^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mTriggeringUDevuevents^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mLoadingModules^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mWaitingforUDevueventstobeprocessed^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mBringinguploopbackinterface^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mCheckingFilesystems^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m/dev/sdb3:clean,272888/6111232files,8317174/24414012blocks
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mSettingHostname:mordor^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mSettingLocale:en_US.UTF-8^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mSettingConsolestoUTF-8mode^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[%G^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mLoadingKeyboardMap:br-abnt2^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:INIT:Enteringrunlevel:3
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mStartingSyslog-NG^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[31mWarning:^[[0;10mThisfunctionalityisdeprecated.
    2011:Pleasereferto/etc/rc.confonhowtodefineasinglewired
    2011:connection,oruseautilitysuchasnetcfg.
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mStartingNetwork^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10mSIOCADDRT:Nosuchprocess
    2011:^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1m^[[31mFAIL^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mMountingNetworkFilesystems^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mStartingCronDaemon^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mRestoringALSALevels^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mStartingD-BUSsystemmessagebus^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mStartingUDevDaemon^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mTriggeringUDevuevents^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mLoadingModules^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mWaitingforUDevueventstobeprocessed^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mBringinguploopbackinterface^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mCheckingFilesystems^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m/dev/sdb3:clean,380648/6111232files,7423668/24414012blocks
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mSettingHostname:mordor^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mSettingLocale:en_US.UTF-8^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mSettingConsolestoUTF-8mode^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[%G^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mLoadingKeyboardMap:br-abnt2^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:INIT:Enteringrunlevel:3
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mStartingSyslog-NG^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[31mWarning:^[[0;10mThisfunctionalityisdeprecated.
    2011:Pleasereferto/etc/rc.confonhowtodefineasinglewired
    2011:connection,oruseautilitysuchasnetcfg.
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mStartingNetwork^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10mSIOCADDRT:Nosuchprocess
    2011:^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1m^[[31mFAIL^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mMountingNetworkFilesystems^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mStartingCronDaemon^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mRestoringALSALevels^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mStartingD-BUSsystemmessagebus^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mStartingUDevDaemon^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mTriggeringUDevuevents^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mLoadingModules^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mWaitingforUDevueventstobeprocessed^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mBringinguploopbackinterface^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mCheckingFilesystems^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m/dev/sdb3:clean,380645/6111232files,7424068/24414012blocks
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mSettingHostname:mordor^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mSettingLocale:en_US.UTF-8^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mSettingConsolestoUTF-8mode^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[%G^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mLoadingKeyboardMap:br-abnt2^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:INIT:Enteringrunlevel:3
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mStartingSyslog-NG^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[31mWarning:^[[0;10mThisfunctionalityisdeprecated.
    2011:Pleasereferto/etc/rc.confonhowtodefineasinglewired
    2011:connection,oruseautilitysuchasnetcfg.
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mStartingNetwork^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10mSIOCADDRT:Nosuchprocess
    2011:^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1m^[[31mFAIL^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mMountingNetworkFilesystems^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mStartingCronDaemon^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mRestoringALSALevels^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mStartingD-BUSsystemmessagebus^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mStartingUDevDaemon^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mTriggeringUDevuevents^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mLoadingModules^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mWaitingforUDevueventstobeprocessed^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mBringinguploopbackinterface^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mCheckingFilesystems^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m/dev/sdb3:Superblocklastmounttimeisinthefuture.
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mSettingHostname:mordor^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mSettingLocale:en_US.UTF-8^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mSettingConsolestoUTF-8mode^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[%G^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mLoadingKeyboardMap:br-abnt2^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:INIT:Enteringrunlevel:3
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mStartingSyslog-NG^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[31mWarning:^[[0;10mThisfunctionalityisdeprecated.
    2011:Pleasereferto/etc/rc.confonhowtodefineasinglewired
    2011:connection,oruseautilitysuchasnetcfg.
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mStartingNetwork^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10mSIOCADDRT:Nosuchprocess
    2011:^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1m^[[31mFAIL^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mMountingNetworkFilesystems^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mStartingCronDaemon^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mRestoringALSALevels^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    2011:^[[0;10m^[[1m^[[34m::^[[0;10m^[[1mStartingD-BUSsystemmessagebus^[[0;10m^[[s^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[36mBUSY^[[0;10m^[[1m^[[34m]^[[0;10m^[[71G^[[0;10m^[[1m^[[34m[^[[0;10m^[[1mDONE^[[0;10m^[[1m^[[34m]^[[0;10m
    The specific error is Thisfunctionalityisdeprecated.
    2011:Pleasereferto/etc/rc.confonhowtodefineasinglewired
    What can I do? Cause I followed the instructions in https://wiki.archlinux.org/index.php/Netcfg
    and ended up with no network
    Also how can I generate a new rc.conf.packnew?
    Here is my  rc.conf
    cat /etc/rc.conf.packnew
    # /etc/rc.conf - Main Configuration for Arch Linux
    # LOCALIZATION
    # LOCALE: available languages can be listed with the 'locale -a' command
    # DAEMON_LOCALE: Set the locale during daemon startup and during the boot
    # process. If set to 'no', the C locale will be used.
    # HARDWARECLOCK: set to "UTC" or "localtime", any other value will result
    # in the hardware clock being left untouched (useful for virtualization)
    # TIMEZONE: timezones are found in /usr/share/zoneinfo
    # KEYMAP: keymaps are found in /usr/share/kbd/keymaps
    # CONSOLEFONT: found in /usr/share/kbd/consolefonts (only needed for non-US)
    # CONSOLEMAP: found in /usr/share/kbd/consoletrans
    # USECOLOR: use ANSI color sequences in startup messages
    LOCALE="en_US.UTF-8"
    DAEMON_LOCALE="no"
    HARDWARECLOCK="localtime"
    TIMEZONE="America/Sao_Paulo"
    KEYMAP="br-abnt2"
    CONSOLEFONT=
    CONSOLEMAP=
    USECOLOR="yes"
    # HARDWARE
    # MOD_AUTOLOAD: Allow autoloading of modules at boot and when needed
    # MOD_BLACKLIST: Prevent udev from loading these modules
    # MODULES: Modules to load at boot-up. Prefix with a ! to blacklist.
    # NOTE: Use of 'MOD_BLACKLIST' is deprecated. Please use ! in the MODULES array.
    MOD_AUTOLOAD="yes"
    #MOD_BLACKLIST=() #deprecated
    MODULES=(fuse)
    # Scan for LVM volume groups at startup, required if you use LVM
    USELVM="no"
    # NETWORKING
    # HOSTNAME: Hostname of machine. Should also be put in /etc/hosts
    HOSTNAME="mordor"
    # Use 'ifconfig -a' or 'ls /sys/class/net/' to see all available interfaces.
    # Interfaces to start at boot-up (in this order)
    # Declare each interface then list in INTERFACES
    # - prefix an entry in INTERFACES with a ! to disable it
    # - no hyphens in your interface names - Bash doesn't like it
    # DHCP: Set your interface to "dhcp" (eth0="dhcp")
    # Wireless: See network profiles below
    #Static IP example
    #eth0="eth0 192.168.0.2 netmask 255.255.255.0 broadcast 192.168.0.255"
    eth0="dhcp"
    INTERFACES=(eth0)
    # Routes to start at boot-up (in this order)
    # Declare each route then list in ROUTES
    # - prefix an entry in ROUTES with a ! to disable it
    gateway="default gw 192.168.0.1"
    ROUTES=(gateway)
    # Setting this to "yes" will skip network shutdown.
    # This is required if your root device is on NFS.
    NETWORK_PERSIST="no"
    # Enable these network profiles at boot-up. These are only useful
    # if you happen to need multiple network configurations (ie, laptop users)
    # - set to 'menu' to present a menu during boot-up (dialog package required)
    # - prefix an entry with a ! to disable it
    # Network profiles are found in /etc/network.d
    # This now requires the netcfg package
    NETWORKS=(main)
    # DAEMONS
    # Daemons to start at boot-up (in this order)
    # - prefix a daemon with a ! to disable it
    # - prefix a daemon with a @ to start it up in the background
    DAEMONS=(syslog-ng network netfs crond alsa dbus)
    My network profile:
    cat /etc/network.d/main
    CONNECTION='ethernet'
    DESCRIPTION='A basic dhcp ethernet connection using iproute'
    INTERFACE='eth0'
    IP='dhcp'
    Regards,
    vfbsilva
    Last edited by vfbsilva (2011-06-15 04:12:59)

    The problem was in rc.conf. Im posting the file with the fix, the network modules were being loaded in the wrong order on the modules array and I think I had a module missing. Anyway posting it:
    # /etc/rc.conf - Main Configuration for Arch Linux
    # LOCALIZATION
    # LOCALE: available languages can be listed with the 'locale -a' command
    # DAEMON_LOCALE: Set the locale during daemon startup and during the boot
    # process. If set to 'no', the C locale will be used.
    # HARDWARECLOCK: set to "UTC" or "localtime", any other value will result
    # in the hardware clock being left untouched (useful for virtualization)
    # TIMEZONE: timezones are found in /usr/share/zoneinfo
    # KEYMAP: keymaps are found in /usr/share/kbd/keymaps
    # CONSOLEFONT: found in /usr/share/kbd/consolefonts (only needed for non-US)
    # CONSOLEMAP: found in /usr/share/kbd/consoletrans
    # USECOLOR: use ANSI color sequences in startup messages
    LOCALE="en_US.UTF-8"
    DAEMON_LOCALE="no"
    HARDWARECLOCK="localtime"
    TIMEZONE="America/Sao_Paulo"
    KEYMAP="br-abnt2"
    CONSOLEFONT=
    CONSOLEMAP=
    USECOLOR="yes"
    VERBOSE="3"
    # HARDWARE
    # MOD_AUTOLOAD: Allow autoloading of modules at boot and when needed
    # MOD_BLACKLIST: Prevent udev from loading these modules
    # MODULES: Modules to load at boot-up. Prefix with a ! to blacklist.
    # NOTE: Use of 'MOD_BLACKLIST' is deprecated. Please use ! in the MODULES array.
    #MOD_AUTOLOAD="yes"
    #MOD_BLACKLIST=() #deprecated
    MODULES=(fuse)
    # Udev settle timeout (default to 30)
    UDEV_TIMEOUT=30
    # Scan for FakeRAID (dmraid) Volumes at startup
    USEDMRAID="no"
    # Scan for LVM volume groups at startup, required if you use LVM
    USELVM="no"
    # NETWORKING
    # HOSTNAME: Hostname of machine. Should also be put in /etc/hosts
    HOSTNAME="mordor"
    # Use 'ifconfig -a' or 'ls /sys/class/net/' to see all available interfaces.
    # Interfaces to start at boot-up (in this order)
    # Declare each interface then list in INTERFACES
    # - prefix an entry in INTERFACES with a ! to disable it
    # - no hyphens in your interface names - Bash doesn't like it
    # DHCP: Set your interface to "dhcp" (eth0="dhcp")
    # Wireless: See network profiles below
    #Static IP example
    #eth0="eth0 192.168.0.2 netmask 255.255.255.0 broadcast 192.168.0.255"
    eth0="dhcp"
    INTERFACES=(eth0)
    # Routes to start at boot-up (in this order)
    # Declare each route then list in ROUTES
    # - prefix an entry in ROUTES with a ! to disable it
    gateway="default gw 192.168.0.1"
    ROUTES=(gateway)
    # Setting this to "yes" will skip network shutdown.
    # This is required if your root device is on NFS.
    NETWORK_PERSIST="no"
    # Enable these network profiles at boot-up. These are only useful
    # if you happen to need multiple network configurations (ie, laptop users)
    # - set to 'menu' to present a menu during boot-up (dialog package required)
    # - prefix an entry with a ! to disable it
    # Network profiles are found in /etc/network.d
    # This now requires the netcfg package
    NETWORKS=(main)
    # DAEMONS
    # Daemons to start at boot-up (in this order)
    # - prefix a daemon with a ! to disable it
    # - prefix a daemon with a @ to start it up in the background
    DAEMONS=(syslog-ng crond alsa dbus net-profiles netfs)
    Hope it helps someone;

  • Default key date, Document date and posting date needs to be changed automa

    Hi Experts,
    The user wants to create a variant for Foreign currency valuation, wherein the default key date, Doc date and Posting date needs to be changed every month automatically. Is it possible?
    Please let me know your thoughts.
    Warm regards,
    Murukan Arunachalam

    Hi
    Please follow this process.
    Only specify fields that should be changed
    Select these fields by entering an X in the checkboxes
    Enter a U in the UPDATEFLAG field
    Always specify key fields when changing the data, including in the checkboxes
    The configuration is an exception here. If this needs to be changed, you need to complete it again fully.
    Maintain quantities and dates in the schedule line data.
    1. Minimum entry:
    You must enter the order number in the SALESDOCUMENT structure.
    You must always enter key fields for changes.
    You must always specify the update indicator in the ORDER_HEADER_INX.
    2. Commit control:
    The BAPI does not run a database Commit, which means that the application must trigger the Commit so that the changes are read to the database. To do this, use the BAPI_TRANSACTION_COMMIT BAPI.

  • Difference between Scheduling lines and Delivery schedule

    Hi SD Experts
    can u say me the clear difference between Scheduling lines and Delivery schedule.
    where we will maintain deliver schedule. whether delivery schedule is automatically created along scheduling agreements..
    with regards
    James

    Hi James,
    Schedule Lines: Has basically information realted to delivery scheduling in Sales Order level.
    Delivery Scheduling: Is a process using which system will determine what are the different activities which need to be performed and time taken for each activitiy only after which the material can be delivered to the customer.
    Delievry scheduling will be started only from the material availability date i.e., system will first determine the material avail date and then do scheduling. By default Standard SAP system does Backward Scheduling in case material availability falls beyond the required delivery date system will do forward schedluing
    Delivery Scheduling consists of the following Basic activities:
    We give deatils while creating order:
    Order Creation Date
    Required Delivery Date
    Order date - Material availability date - Transportation Planning Date - Loading date - Goods Issue Date - Required Delivery Date
    Time Between GI Date and required Delivery Date is called Transit Time
    Time Between LoadingDate and GI Date is called Loading time
    Time Between Material Availability Date and Loading Date consists of 2 components - Pick / PackTime and Transportation Planning Time
    System has to calculate all this before it determines the confirmed delivery date.
    Give your mail Id I have some Presentation I will send you across.
    REWARD POINTS IF IT HELPS
    Regards
    Srini

Maybe you are looking for

  • Finding the exact path of a file using a Java program

    Can anyone tell me how to find the exact path of a file which is saved in a directory other than the one in which the main file is saved? I know there is a class called File which has many methods like isAbsolutePath() and isPath() but they return th

  • How can i expand a Composition to the full width of the browser?

    I want to have a slideshow on the background of my site in the full browser window so i used the blank composition and added photos, I originally made it close to 2000 pixels wide and then I moved back the selection box to the browser line but for so

  • Kwin Issue

    I tried enabling cover switch in system settings, but it seemed to have no effect. It just gives me regular alt tab with no thumbnails. Now I can't even get the regular alt tab to work the way it was either. After disabling coverswitch and re enablin

  • Can't Get Airport Extreme To Dial-Up To ISP

    Just bought 2 of the UFO style Airport Extremes. I set both of them up, one at my house and one at my girlfriend's. Used her iBook to set them up and went through the Setup utility and all seemed fine except when I tried to set up the APX to dial up

  • Program to send mails from an ABAP program

    Hello,        I found the following program on the internet. When i run it i get the status as mail sent, but actually the mail is not delivered to the recipients email address. If i check tcode SBWP, a copy of the sent mail sits in outbox even thoug