[solved]GNU make

I am trying to install virtualbox but It says I need to install gnu make
I did some searches and I got nowhere.
I enoven pacman -Ss and got no hits.
WHat file do I need to install?
Last edited by Romanrp (2009-11-24 16:45:40)

we have virtualbox-ose in our repo(only i686) and for x86_64 http://bbs.archlinux.org/viewtopic.php? … 81#p631681 or virtualbox_bin in aur http://aur.archlinux.org/packages.php?ID=9753

Similar Messages

  • Anyone have luck with gnu make in a solaris 8 container?

    global zone running solaris 10 05/08 (480 hw). got a solaris 8 zone up (flash arcive of one of our solaris 8 systems, NICE!!!). got most items working, except i have probs with gmake (gnu make), any version. ive tried older-current, built from src, and binary packages. all have the same prob.
    gmake: *** wait: Error 0. Stop.
    gmake: *** Waiting for unfinished jobs....
    truss (from inside the sol8 zone)
    20050: llseek(0, 0, SEEK_CUR) = 952421
    20050: _exit(0)
    20049: Received signal #18, SIGCLD, in wait() [caught]
    20049: siginfo: SIGCLD CLD_EXITED pid=20050 status=0x0000
    20049: wait()
    havent tried dtrace yet from the global zone. am i missing some type of privilege outside of the default ones? i can compile and build most open src items with the system make, however we have our own products we build with gnu make.

    agreed. though in this solaris 8 zone, i have built openssh, openssl, openldap, mit krb5, sudo, various other gnu utils, and a few more open src projs and all seem to work just fine. test programs ran ok, and i connect via sshd (5.0p1+hpn). we are an isv, and i have had some of our folks run our prods through a bit and so far all those have been ok as well. we are going to run oracle in this env shortly as well as stress test with our prods.
    it would be interesting to see what some of the sun folks have to say. with your change to job.c, i was able to run all the make checks, and have used gmake to build a few projects as well. i probably will see what gmake can do building gcc with -j4.
    very nice find by the way. hope this does raise a few flags with sun as to why this change would be needed.
    for sanity sake: unified diff (prob not formated correctly on this site, ARGH):
    --- job.c.orig 2008-04-29 13:07:09.312266000 -0400
    +++ job.c 2008-04-29 13:07:57.154445000 -0400
    @@ -559,7 +559,7 @@
    else
    pid = 0;
    - if (pid < 0)
    + if (pid < 0 && errno != 0)
    /* The wait*() failed miserably. Punt. */
    pfatal_with_name ("wait");
    Edited by: sid_sanders on Apr 29, 2008 10:08 AM

  • Serious problem with Xcode 4.3.2 - no GNU make

    There is a SERIOUS problem with Xcode 4.3.2.  I just installed it and when I click the downloaded package I jsut get a Xcode.app.
    No longer does it allow me to install packages.
    Instead I get nothing but an Xcode.app to drag and drop into /Applications.
    More terrible is the fact that it no longer ships with GNU make.  Which means nothing inside of the MacPort project will work anymore.
    For example:
    bash-3.2$ sudo port install make
    bash-3.2$ sudo port install gimp
    Warning: The Command Line Tools for Xcode don't appear to be installed; most ports will likely fail to build.
    Warning: See http://guide.macports.org/chunked/installing.xcode.html for more information.
    --->  Computing dependencies for gimpError: Unable to execute port: can't read "build.cmd": Failed to locate 'make' in path: '/opt/local/bin:/opt/local/sbin:/bin:/sbin:/usr/bin:/usr/sbin' or at its MacPorts configuration time location, did you move it?
    To report a bug, see <http://guide.macports.org/#project.tickets>

    The command line tools need to be installed separately.
    Go to Xcode->Preferences->Downloads
    Which is what the error message you got and the link it pointed to is teling you.

  • Creating .out with GNU Make for VxWorks targets

    Hi
    I would like to know how to compile .out files for VxWorks using GNU Make. I have found the redistributable GNU tool chain attached to the website below but I do not know how to run the setup-gcc.bat file. Could anyone tell me the steps from the beginning (extracting the files, folder directory, what things I need to change, etc)??
    Thank you & Regards
    Lee
    http://zone.ni.com/devzone/cda/tut/p/id/5694

    You are unlikely to get an answer here. Your better option would be the real-time board, but even there I doubt you will find many people with experience in this type of thing. That tutorial seems pretty detailed, so if your problem is with the MAKE part, I suggest you try searching in the relevant forums, as more people here would only know LabVIEW.
    Try to take over the world!

  • GNU make ignores the PATH variable

    I just want to restate what was said in this post (that is now archived):
    http://discussions.apple.com/thread.jspa?threadID=2144085
    I have the exact same problem. The PATH variable is not taken into account when running simple commands in a makefile. If I change the command to something just a little more complex, like "echo hello && command" it works. So it seems to be an optimisation problem.
    I am running GNU Make 3.81 on Mac OS X 10.6.4.

    On 08/17/2015 05:50 AM, matt matt wrote:
    > Having installed cygwin and editing the PATH variable was not sufficient
    > for me because I'm running a user account.
    >
    > When I run "gcc -v" in cmd.exe I get the output: "..not recognized as an
    > internal command"
    > When I run "gcc- v" in cmd.exe as administrator this is no problem.
    >
    > How can I make this work for the user account?
    There's an Eclipse forum dedicated to C/C++ questions you might wish to
    post in. It's called Eclipse CDT.

  • [SOLVED] Makepkg makes qmake or make act weird and causes trouble

    I am trying to build an Arch package from a Qt app. The app is split into some libraries that are compiled with the main application. Installation instruction for the whole app are defined in src.pro (see the hierarchy below), which are then written into the Makefiles that are generated on-the-fly during the build process. When I run 'qmake && make && make install' manually, everything goes fine. But when I try to build the package using a PKGBUILD, for some reason the Makefile generated based on the src.pro is missing installation instruction for the libraries (lib1, lib2, etc.).
    I don't really have any idea of what is the problem. I tried to study the output of the make process and it seems like that when running makepkg, qmake first runs on each subdirectory to generate the Makefiles and only then begins the actual build process. Manually running make first builds one directory, then the second one and so on and only generates a Makefile when entering a directory. Since the libraries marked for installation do not exist in the beginning of the build process, they are not put into the Makefile at all, I think.
    My first idea for a solution was to move the installation instructions into the libraries' own .pro files but that didn't seem to change anything. The build() process in the makepkg only runs qmake, make and make install - what I also do manually.
    The directory structure of the project is like this:
    project/
        project.pro
        src/
            src.pro
            lib1/
                lib1.pro
            lib2/
                lib2.pro
    Last edited by Verge (2011-10-07 19:07:33)

    After many hours I finally came up with a solution that was too easy... I only needed an "install.pri" file in which I added two lines:
    target.path = /path/
    INSTALLS += target
    Next I just included that file into each lib's .pro file and now the makepkg process works. "target" is somewhat a magical variable for qmake.
    I consider this solved.
    Last edited by Verge (2011-10-07 19:08:22)

  • [Solved]using 'make oldconfig'

    Hi, I'm running my own kernel (mainline) ,  when rebuild, I use this order:
    sudo /usr/bin/modprobed-db recall
    make localmodconfig
    make oldconfig
    make nconfig
    Now I come to the conclusion, things ain't the way I think they supposed to be.
    When F.I.  ISDN support was removed from the previous kernel, shouldn't this be left out using 'make oldconfig'?
    Because every time I edit the config with nconfig, these things are still present, and I remove them , again.
    Now, I'm sure this ain't how it's supposed to be , am I doing something wrong ?
    Thanks qinohe
    Last edited by qinohe (2014-07-23 12:05:04)

    lolilolicon wrote:
    Does this `modprobe` a list of modules? It's probably unnecessary, as you can:
    make LSMOD=<insert path to file> localmodconfig
    where file contains a list of modules, or is an executable that outputs such a list.
    Ah, that's a nice one, gonna use it. Yes, it's Modprobed-db, a tool that keeps track off all modules ever used on the system, I could uninstall it, I know all modules, and can add one to the list myself if necessary.
    Depends on what your ".config" file looks like at the time you run `make oldconfig`.
    Probably not the edited config, but the new one.
    Do you have the file ".config" in the directory when you run `make localmodconfig`? If so, did you remember to update the file from which this file is copied? Alternatively, you can bypass creating ".config" before `make localmodconfig`, in which case /proc/config.gz will be used as a base.
    A new one is in 'src' but not in the the 'build dir. Should I copy the old config to it?
    I need to create me a nice work flow for this, gonna try a few sequences, and check which is the best for me to use, thanks.
    edit:adding this line before-  solved it all,
    zcat /proc/config.gz > ~/builds/abs/core/linux/src/${_srcname}/.config
    Thanks again lolilolicon
    Last edited by qinohe (2014-07-23 12:05:55)

  • [Solved] How make to work League of Legends on Arch x64?

    Hello,
    I was trying to install LoL by using PlayOnLinux. The wiki describes it as "the easiest method." ( https://wiki.archlinux.org/index.php/Le … nux_Method ).
    Unfortunately I cannot figure this out. I installed LoL just fine, I updated it, but when I'm clicking "Play" button, then I'm getting exception:
    ALSA lib dlmisc.c:252:(snd1_dlobj_cache_get) Cannot open shared library /usr/lib32/alsa-lib/libasound_module_pcm_pulse.so
    wine: Unhandled page fault on read access to 0x00001ff0 at address 0x1ff0 (thread 0043), starting debugger...
    I was trying different wine versions without luck. It's hard to find anything useful about this by using google.
    Anyone have any idea how to make it to work with playonlinux?
    Last edited by luken (2014-07-08 21:51:10)

    @luken trial-and-error method using speaker-test I would argue. Usually it should copy the front jack signal. Here are just a few:
    speaker-test -c 2 -t wav -D dmix:0,0
    speaker-test -c 2 -t wav -D dmix:0,1
    speaker-test -c 2 -t wav -D dmix:0,2
    speaker-test -c 2 -t wav -D dmix:1,0
    speaker-test -c 2 -t wav -D dmix:1,1
    speaker-test -c 2 -t wav -D dmix:1,2
    # Depending on your setup, it might be necessary to use 8 channels with -c 8.
    # Or in script form
    MX=2;MY=3;
    for X in $(seq 0 $MX); do for Y in $(seq 0 $MY); do speaker-test -c 2 -t wav -D dmix:$X,$Y; done; done
    Should this not work, then you may want to look at hdajackretask from alsa-tools package and copy the front jack to the headphone one or disable jack sensing.
    luken wrote:Thank you very much for the explanation smile
    You are welcome.
    @Kobibr I fail to see what a tutorial and patch for wine for textures has to do with this thread. It is nice to see people getting involved though.

  • [solved] Window Maker

    I installed Window Maker. According to the Window Maker archwiki I created a GNUstep directory in my home directory and added 'export GNUSTEP_USER_ROOT="~/GNUstep"' to .baschrc. When I run the Window Maker settings installation program (wmaker.inst) I get the following message:
    Installing WindowMaker 0.95.4 for current user...
    Directory specified in GNUSTEP_USER_ROOT environment variable does not exist
    I don't understand what I'm doing wrong.
    Last edited by lnx (2013-04-28 14:36:34)

    abarbarian wrote:
    To possibly help other folks I found that placing this
    export GNUSTEP_USER_ROOT="/home/bloodaxe/GNUstep"
    in ~/.bashrc  worked for me. Whereas the line given in the guide
    export GNUSTEP_USER_ROOT="~/GNUstep"
    did not.
    I think it was me that put that in the wiki. I do remember something about "~" not working for something, but I'm surprised the above didn't work. I mean, it should be exactly the same...
    Although I don't use Window Maker at the moment, I just did a quick test: It should work without quotation marks:
    export GNUSTEP_USER_ROOT=~/GNUstep
    I'll go ahead and make that small change to the wiki. Feel free to make any other changes.
    I did give windowmaker-git a quick try last night. It appears that, in the future, you won't need to set any variables yourself. Which is kind of odd, because I didn't have to set any variable myself back when I used Window Maker in 2001.
    EDIT: Even better, this should work:
    export GNUSTEP_USER_ROOT="${HOME}/GNUstep"
    Last edited by drcouzelis (2013-05-03 13:22:28)

  • [solved] apophenia: make succeeds, makepkg fails

    Hello! I tried to write a PKGBUILD for a statistics library called apophenia (http://apophenia.info/). I can './configure && make' in the source directory without any problems, but when I run makepkg the build fails with the following error:
    CC apop_tests.lo
    CC apop_model_transform.lo
    CC apop_update.lo
    CC asprintf.lo
    In file included from /usr/include/stdio.h:937:0,
    from asprintf.c:34:
    asprintf.c: In function 'asprintf':
    /usr/include/bits/stdio2.h:207:1: error: inlining failed in call to always_inline 'vasprintf': function not inlinable
    asprintf.c:248:10: error: called from here
    make[2]: *** [asprintf.lo] Error 1
    make[2]: Leaving directory `/home/joshua/ABS/apophenia/src/apophenia-0.99'
    make[1]: *** [all-recursive] Error 1
    make[1]: Leaving directory `/home/joshua/ABS/apophenia/src/apophenia-0.99'
    make: *** [all] Error 2
    ==> ERROR: A failure occurred in build().
    Aborting...
    Note that the library author included the file asprintf.c in the source, but an arch system should already have this in stdlib or something, right? Anyway, here is the PKGBUILD. I'm compiling on an x86_64 machine, by the way.
    pkgname=apophenia
    pkgver=0.99
    pkgrel=1
    pkgdesc="An open statistical library"
    url="http://apophenia.info"
    arch=('x86_64' 'i686')
    license=('GPLv2' 'custom:apop_license')
    depends=('gsl' 'lapack')
    optdepends=('sqlite')
    makedepends=()
    conflicts=()
    replaces=()
    backup=()
    install=
    source=("https://github.com/downloads/b-k/Apophenia/${pkgname}-${pkgver}-03_Dec_12.tgz")
    md5sums=('5f23bb2e40b1bdf6e9b63e419cd896bc')
    build() {
    cd "${srcdir}/${pkgname}-${pkgver}"
    ./configure
    make
    package() {
    cd "${srcdir}/${pkgname}-${pkgver}"
    make DESTDIR="${pkgdir}" install
    install -Dm644 COPYING2 "$pkgdir/usr/share/licenses/$pkgname/apop_license"
    Any ideas?
    Last edited by diffyQ (2013-01-09 04:08:03)

    Thanks, '!buildflags' did the trick.  I'll have to figure out which option was causing the problem.
    Last edited by diffyQ (2013-01-09 04:08:24)

  • [Solved] I make mistake, switch /etc/fonts/conf.d of ubuntu to my arch

    Arch's fonts was too small in firefox and sites was difficult to read and with layout wrong because of font, then I switch the fonts config of ubuntu to my arch to fix this problem and I solve, otherwise now I receive errors in terminal when I perform a program like this: Fontconfig warning: "/etc/fonts/conf.d/53-monospace-lcd-filter.conf", line 17: invalid constant used : legacy".
    somebody can help me?
    sorry by bad english.
    Last edited by solanoalves (2008-01-23 04:08:29)

    A good idea would be to post that file.
    An alternative would be to remove the contents of /etc/fonts/conf.d and reinstall the fontconfig package. Then follow the instructions in the wiki to get a better font rendering.
    Good luck

  • [Solved] Need 'make' command to install nic driver - can I d/l to usb?

    I have a Linhes box running archlinux. The pc has a realtek driver that does not work. I have the updated driver that will work but as I have no internet access on the pc I need to install the driver from a usb stick. However, I cannot run the 'make' command because it is not installed. I cannot install anything from pacman because I have no internet access. So my question is can I download whatever I need (base-devel?) from another pc and install it through a usb stick so that I can then install the realtek driver?
    Last edited by Ozdemon (2012-09-16 19:40:19)

    lucke wrote:"make" belongs to a make package, and this package depends only on sh and glibc. Use the "Download from mirror" link on http://www.archlinux.org/packages/core/i686/make/ (change the version to x86_64 if needed by following the link below "Download from mirror") and pacman -U that package on the destination pc.
    Thanks, that looks like just what I need. Can you confirm that I do not extract the package, I just put it on to the usb and then as root pacman -U /path/to/package?

  • [Solved]GNU replacement for Adobe InDesign

    Since Adobe's software is so bloated, I plan to use ArchLinux for everything and use Windows exclusively for gaming (and video editing if cinerella is not adequate). I use Adobe InDesign a little bit and I was wondering what I could use in place of it.
    Last edited by jordanwb (2008-12-10 14:27:55)

    jordanwb wrote:
    Looks cool, I'll give it a try. Also in cinerella can I export to the DVD format and make menus, subtitles and stuff like that?
    I just realized found out its spelt "cinelerra", not "cinerella". oops.
    I dont know how that fits in this thread, but yes, you should be able to do that... but not the menus, you need to use a dvdauthor software to archieve that..

  • [Solved]GNU GRUB 1.99 just sits there

    It just sits there and doesn't auto start unless I choose a boot option, I have no idea where to look to fix it either. I can either select Arch or the backup, no matter how long I let it sit there, I can hit enter and then it goes through the boot up, it is not game breaking, but the point of the system is mainly to be used remotely. If for any reason I reboot it, I need to go to it and attach a keyboard to press enter and continue. Any thoughts?
    EDIT:
    Fixed it by using regular parted and then regular grub instead of 2.
    Last edited by Never (2011-12-25 00:42:36)

    My original /etc/default/grub:
    GRUB_DEFAULT=0
    GRUB_TIMEOUT=5
    GRUB_DISTRIBUTOR="Arch Linux"
    GRUB_CMDLINE_LINUX_DEFAULT="quiet"
    GRUB_CMDLINE_LINUX=""
    # Preload both GPT and MBR modules so that they are not missed
    GRUB_PRELOAD_MODULES="part_gpt part_msdos"
    # Uncomment to enable Hidden Menu, and optionally hide the timeout count
    #GRUB_HIDDEN_TIMEOUT=5
    #GRUB_HIDDEN_TIMEOUT_QUIET=true
    # Uncomment to use basic console
    GRUB_TERMINAL_INPUT=console
    # Uncomment to disable graphical terminal
    #GRUB_TERMINAL_OUTPUT=console
    # The resolution used on graphical terminal
    # note that you can use only modes which your graphic card supports via VBE
    # you can see them in real GRUB with the command `vbeinfo'
    GRUB_GFXMODE=auto
    # Uncomment to allow the kernel use the same resolution used by grub
    GRUB_GFXPAYLOAD_LINUX=keep
    # Uncomment if you want GRUB to pass to the Linux kernel the old parameter
    # format "root=/dev/xxx" instead of "root=/dev/disk/by-uuid/xxx"
    #GRUB_DISABLE_LINUX_UUID=true
    # Uncomment to disable generation of recovery mode menu entries
    GRUB_DISABLE_RECOVERY=true
    # Uncomment and set to the desired menu colors. Used by normal and wallpaper
    # modes only. Entries specified as foreground/background.
    GRUB_COLOR_NORMAL="light-blue/black"
    GRUB_COLOR_HIGHLIGHT="light-cyan/blue"
    # Uncomment one of them for the gfx desired, a image background or a gfxtheme
    #GRUB_BACKGROUND="/path/to/wallpaper"
    #GRUB_THEME="/path/to/gfxtheme"
    # Uncomment to get a beep at GRUB start
    #GRUB_INIT_TUNE="480 440 1"
    my original /boot/grub/grub.cfg:
    # DO NOT EDIT THIS FILE
    # It is automatically generated by grub-mkconfig using templates
    # from /etc/grub.d and settings from /etc/default/grub
    ### BEGIN /etc/grub.d/00_header ###
    insmod part_gpt
    insmod part_msdos
    if [ -s $prefix/grubenv ]; then
    load_env
    fi
    set default="0"
    insmod part_gpt
    insmod part_msdos
    # Include fat fs module - required for uefi systems.
    insmod fat
    insmod ext2
    insmod ext2
    insmod search_fs_file
    insmod search_fs_uuid
    insmod search_label
    insmod linux
    insmod chain
    set pager=1
    set locale_dir=${prefix}/locale
    # DEVICE DETAILS: /dev/hda3 UUID=cb37554d-a6ed-438c-b07e-189a1e873f00 LABEL=BOOT_ARCH
    # DEVICE DETAILS: /dev/hda4 UUID=ca19f354-f367-4626-bea4-af5909a37aab LABEL=SWAP_ARCH
    # DEVICE DETAILS: /dev/hda5 UUID=6e0e7ba8-6268-4791-9638-8630da290149 LABEL=ROOT_ARCH
    # DEVICE DETAILS: /dev/hda6 UUID=7df146c7-8db1-49ce-98bd-64aaa35eb522 LABEL=HOME_ARCH
    # (0) Arch Linux
    menuentry "Arch Linux" {
    search --fs-uuid --no-floppy --set=root cb37554d-a6ed-438c-b07e-189a1e873f00
    linux /vmlinuz26-lts root=/dev/disk/by-uuid/6e0e7ba8-6268-4791-9638-8630da290149 rootfstype=ext3 ro add_efi_memmap
    initrd /kernel26-lts.img
    # (1) Arch Linux Fallback
    menuentry "Arch Linux Fallback" {
    search --fs-uuid --no-floppy --set=root cb37554d-a6ed-438c-b07e-189a1e873f00
    linux /vmlinuz26-lts root=/dev/disk/by-uuid/6e0e7ba8-6268-4791-9638-8630da290149 rootfstype=ext3 ro add_efi_memmap
    initrd /kernel26-lts-fallback.img
    ## (2) Windows BIOS
    ## Will work only in grub2 bios
    #menuentry \"Microsoft Windows 7 BIOS-MBR\" {
    # insmod part_msdos
    # insmod ntfs
    # insmod search_fs_uuid
    # insmod ntldr
    # search --fs-uuid --no-floppy --set=root 69B235F6749E84CE
    # ntldr ()/bootmgr
    ## (3) Windows x86_64 UEFI
    ## Will work only in grub2 uefi x86_64
    #menuentry \"Microsoft Windows x86_64 UEFI-GPT\" {
    # insmod part_gpt
    # insmod fat
    # insmod search_fs_uuid
    # insmod chain
    # search --fs-uuid --no-floppy --set=root 1CE5-7F28
    # chainloader ()/efi/Microsoft/Boot/bootmgfw.efi
    I don't know why I have the "# Include fat fs module - required for uefi systems." parts, I don't have a UEFI system, but I did let the software auto partition the drive.
    new grub.cfg after sudo grub-mkconfig -o /boot/grub/grub.cfg:
    # DO NOT EDIT THIS FILE
    # It is automatically generated by grub-mkconfig using templates
    # from /etc/grub.d and settings from /etc/default/grub
    ### BEGIN /etc/grub.d/00_header ###
    insmod part_gpt
    insmod part_msdos
    if [ -s $prefix/grubenv ]; then
    load_env
    fi
    set default="0"
    if [ "${prev_saved_entry}" ]; then
    set saved_entry="${prev_saved_entry}"
    save_env saved_entry
    set prev_saved_entry=
    save_env prev_saved_entry
    set boot_once=true
    fi
    function savedefault {
    if [ -z "${boot_once}" ]; then
    saved_entry="${chosen}"
    save_env saved_entry
    fi
    function load_video {
    insmod vbe
    insmod vga
    insmod video_bochs
    insmod video_cirrus
    set menu_color_normal=light-blue/black
    set menu_color_highlight=light-cyan/blue
    insmod part_gpt
    insmod ext2
    set root='(hd0,gpt5)'
    search --no-floppy --fs-uuid --set=root 6e0e7ba8-6268-4791-9638-8630da290149
    if loadfont /usr/share/grub/unicode.pf2 ; then
    set gfxmode=auto
    load_video
    insmod gfxterm
    insmod part_gpt
    insmod ext2
    set root='(hd0,gpt3)'
    search --no-floppy --fs-uuid --set=root cb37554d-a6ed-438c-b07e-189a1e873f00
    set locale_dir=($root)/grub/locale
    set lang=en_US
    insmod gettext
    fi
    terminal_input console
    terminal_output gfxterm
    set timeout=5
    ### END /etc/grub.d/00_header ###
    ### BEGIN /etc/grub.d/10_linux ###
    menuentry 'Arch Linux, with Linux vmlinuz26-lts' --class archlinux --class gnu-linux --class gnu --class os {
    load_video
    set gfxpayload=keep
    insmod gzio
    insmod part_gpt
    insmod ext2
    set root='(hd0,gpt3)'
    search --no-floppy --fs-uuid --set=root cb37554d-a6ed-438c-b07e-189a1e873f00
    echo 'Loading Linux vmlinuz26-lts ...'
    linux /vmlinuz26-lts root=UUID=6e0e7ba8-6268-4791-9638-8630da290149 ro quiet
    echo 'Loading initial ramdisk ...'
    initrd /kernel26-lts.img
    menuentry 'Arch Linux, with Linux vmlinuz26-lts Fallback' --class archlinux --class gnu-linux --class gnu --class os {
    load_video
    set gfxpayload=keep
    insmod gzio
    insmod part_gpt
    insmod ext2
    set root='(hd0,gpt3)'
    search --no-floppy --fs-uuid --set=root cb37554d-a6ed-438c-b07e-189a1e873f00
    echo 'Loading Linux vmlinuz26-lts ...'
    linux /vmlinuz26-lts root=UUID=6e0e7ba8-6268-4791-9638-8630da290149 ro quiet
    echo 'Loading initial ramdisk ...'
    initrd /kernel26-lts-fallback.img
    ### END /etc/grub.d/10_linux ###
    ### BEGIN /etc/grub.d/20_linux_xen ###
    ### END /etc/grub.d/20_linux_xen ###
    ### BEGIN /etc/grub.d/20_memtest86+ ###
    ### END /etc/grub.d/20_memtest86+ ###
    ### BEGIN /etc/grub.d/30_os-prober ###
    ### END /etc/grub.d/30_os-prober ###
    ### BEGIN /etc/grub.d/40_custom ###
    # This file provides an easy way to add custom menu entries. Simply type the
    # menu entries you want to add after this comment. Be careful not to change
    # the 'exec tail' line above.
    ### END /etc/grub.d/40_custom ###
    ### BEGIN /etc/grub.d/41_custom ###
    if [ -f $prefix/custom.cfg ]; then
    source $prefix/custom.cfg;
    fi
    ### END /etc/grub.d/41_custom ###
    It flashed welcome to grub and then immediately went to black, so now I can't access the system at all.

  • [SOLVED] GNU Screen - sessions always dead after restart

    I recently started using GNU screen.  I'm able to detach and reattach sessions normally, except after a restart.  Then any detached sessions are marked as dead and all I can do is run a screen -wipe.  My sessions are stored in ~/.screen. 
    I've searched the web and forums but no one seems to have had this problem.
    Any ideas?  Screen's a lot less useful if I can't reattach after restarting.
    Last edited by noahsark1126 (2009-08-18 05:14:42)

    This is sort of related, but sometimes it is possible to use special software to suspend an application as a file, which could possibly be set up with screen to provide a rebootable state. However this software seems to be fairly hard to find and get working well enough to be usable. If you want to investigate more, you can probably google for something like "linux application freezing" or "linux application checkpointing".
    Actually I just found the software I was thinking of as I'm typing this, http://cryopid.berlios.de/. The page doesn't seem to be loading for me, but I think I have used this in the past with limited success. Not sure if it up to date with the latest kernels however.

Maybe you are looking for