GithubHelp home page GithubHelp logo

Comments (3)

GoogleCodeExporter avatar GoogleCodeExporter commented on June 10, 2024
> I don't remember exactly, something along the lines of trying to initialize 
partitions

Without knowing exactly where it fails it is impossible to fix it.
As nobody else complained...

From your description, the partitioning succeeds, but the swap was not created 
and activated

For GPT, you could get errors like:

GPT partitioning disk ...
Error creating swap:
Error creating first partition
Error creating second partition

Creating and activating swap in disk
some mkswap error
some swapon error

Not knowing which one happened and what the error was makes it impossible to 
fix.

The following errors are a consequence of that one.

> So I executed "mkswap /dev/sda1" and then "swapon /dev/sda1"

Those are the commands executed by the wizard.

Perhaps you could try to replicate the bug, dealing only with the swap 
partition, not the data partition?
The following are the commands executed by the wizard regarding creating and 
activating swap, if you could try then after stopping running services and 
turning swap off could help diagnose the problem:

Assuming that the disk device is 'sda' and the swap partition is the first one, 
start by turning off swap:

swapoff /dev/sda1

then copy/paste the following commands:

i=/dev/sda
echo "Creating and activating swap in disk $(basename $i)..."
res="$(mkswap ${i}1 2>&1)"
if test $? != 0; then
    echo "mkswap error: $res"
else
    res="$(swapon -p 1 ${i}1 2>&1)"
    if test $? != 0; then
        echo "swapon error: $res"
    else
        echo " done."
    fi
fi

What is printed?

Anyway, this should be reported in sourceforge, 
https://sourceforge.net/p/alt-f/_list/tickets, as the previous issue says

Thanks

Original comment by [email protected] on 2 Jun 2013 at 4:44

from alt-f.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 10, 2024
Re-created the ticket in Sourceforge: https://sourceforge.net/p/alt-f/tickets/1/

You might want to consider something like updating the "Issues" link on the 
home page to go to the Sourceforge issue tracker though if you want people to 
post in the right place straight away ;)

++Alex

Original comment by [email protected] on 3 Jun 2013 at 9:42

from alt-f.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 10, 2024
moved to sourceforge
Thanks

Original comment by [email protected] on 4 Jun 2013 at 2:09

  • Changed state: Duplicate

from alt-f.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.