Homebrew [How-to] Load a fw.img for Any File Dumping + WiiUBru status update

x65943

pronouns big/pingus
Supervisor
GBAtemp Patron
Joined
Jun 23, 2014
Messages
6,262
Trophies
3
Location
ΗΠΑ
XP
27,071
Country
United States
I'm pretty sure mine's not the SHA-1.

SHA-1 is always 40 characters; so if it's 40 characters you've got the wrong value

Also make sure you replaced the

wiiu_common_key = ""
starbuck_ancast_key = ""
starbuck_ancast_iv = ""

It's important to keep the ""s
 

ghostpotato

Well-Known Member
Member
Joined
Mar 27, 2016
Messages
142
Trophies
0
Age
43
XP
89
Country
United States
SHA-1 is always 40 characters; so if it's 40 characters you've got the wrong value

Also make sure you replaced the

wiiu_common_key = ""
starbuck_ancast_key = ""
starbuck_ancast_iv = ""

It's important to keep the ""s
Mine's 32 chars, and I did keep the quotes. Would it be OK if I a) PM'd you the code I have or b) post the first 2 chars of mine?
 
Last edited by ghostpotato,

x65943

pronouns big/pingus
Supervisor
GBAtemp Patron
Joined
Jun 23, 2014
Messages
6,262
Trophies
3
Location
ΗΠΑ
XP
27,071
Country
United States
Mine's 32 chars, and I did keep the quotes.

Sorry I can't be more helpful. This is what a successful run looks like. Maybe post a screenshot?

i3qcwW3.png


Also. You can't do anything in PM that you can't do in the forums. As far as the first 2 characters - I think that would also be against the rules.
 
Last edited by x65943,
Joined
Jan 6, 2016
Messages
789
Trophies
0
Age
26
Location
XP
314
Country
Canada
How do I do this? I am following the instructions on the pastebin, but when it told me to open the files (third step I think) I always get this message:
"no module named crypto.cipher". I thought it may have been when I installed Python 3.5.2 I think (It was the latest version), so I uninstalled it and downloaded Python 2.7
Same issue occurs when I downloaded Python 2.7, so I found on the net that I needed a thing called "pip".
So I downloaded pip and I know it works, I am able to use in in Command Prompt. So then, I went and typed this in Command Prompt:
"pip install pycrypto"
I just got a bunch of red and white text which I don't know what it means.
I am a total noob with Python, so sorry!!
I am on Windows 7 Ultimate 64-bit
Can anyone help resolve my issue?
 
Last edited by OfficialBrony,

x65943

pronouns big/pingus
Supervisor
GBAtemp Patron
Joined
Jun 23, 2014
Messages
6,262
Trophies
3
Location
ΗΠΑ
XP
27,071
Country
United States
How do I do this? I am following the instructions on the pastebin, but when it told me to open the files (third step I think) I always get this message:
"no module named crypto.cipher". I thought it may have been when I installed Python 3.5.2 I think (It was the latest version), so I uninstalled it and downloaded Python 2.7
Same issue occurs when I downloaded Python 2.7, so I found on the net that I needed a thing called "pip".
So I downloaded pip and I know it works, I am able to use in in Command Prompt. So then, I went and typed this in Command Prompt:
"pip install pycrypto"
I just got a bunch of red and white text which I don't know what it means.
I am a total noob with Python, so sorry!!
I am on Windows 7 Ultimate 64-bit
Can anyone help resolve my issue?

Type
python -m pip install pycrypto
 

x65943

pronouns big/pingus
Supervisor
GBAtemp Patron
Joined
Jun 23, 2014
Messages
6,262
Trophies
3
Location
ΗΠΑ
XP
27,071
Country
United States
Add this to your path in your environment variables ;C:\Python27

or type out the whole path for python when you input the code C:/Python27/python.exe -m pip install pycrypto
 

Cyan

GBATemp's lurking knight
Former Staff
Joined
Oct 27, 2002
Messages
23,749
Trophies
4
Age
46
Location
Engine room, learning
XP
15,662
Country
France
you are missing the environment variable path to your python install folder.
reinstall python, or try "python2" or "python3" instead?
or add the path to python to your PATH environment variable, or you can do it temporarily in the command line window too

Set path=%PATH%;/c/path/to/python
python -m pip install pycrypto

edit: or the full path to the exe like x65943 said.

Or another solution is also to extract pycrypto manually to your python install folder, but you will still have issues compiling anything if the command "python" is not in your PATH.
 
Joined
Jan 6, 2016
Messages
789
Trophies
0
Age
26
Location
XP
314
Country
Canada
Trust me, just type "C:/Python27/python.exe -m pip install pycrypto"

If that's where python is, it will work and install pycrypto for you.
upload_2016-11-1_10-8-51.png
upload_2016-11-1_10-9-32.png
??? Thats the same thing on what I did before when I typed just "pip install pycrypto" just red text, white text then more red text...
 

x65943

pronouns big/pingus
Supervisor
GBAtemp Patron
Joined
Jun 23, 2014
Messages
6,262
Trophies
3
Location
ΗΠΑ
XP
27,071
Country
United States
Works fine on my end
7TbHagF.png


So you installed pip as a standalone package? It is installed when you install python. Maybe try removing and reinstalling python?
 
Joined
Jan 6, 2016
Messages
789
Trophies
0
Age
26
Location
XP
314
Country
Canada
Works fine on my end
7TbHagF.png


So you installed pip as a standalone package? It is installed when you install python. Maybe try removing and reinstalling python?
Scroll up, you'll see the video I used

--------------------- MERGED ---------------------------

let us know if it worked for you too.
it worked for me :)

be sure to pick the correct package (32 or 64 bit) corresponding to your installed python (not to your computer's 32 or 64bit)
Yeah, I have Python 2.7...
Not 2.6
 

x65943

pronouns big/pingus
Supervisor
GBAtemp Patron
Joined
Jun 23, 2014
Messages
6,262
Trophies
3
Location
ΗΠΑ
XP
27,071
Country
United States
Scroll up, you'll see the video I used

That video was made before December 2014 - when pip started to be included in all python distros. You installed pip even though it was already installed. I wonder if that might be what's causing your issue.
 
Joined
Jan 6, 2016
Messages
789
Trophies
0
Age
26
Location
XP
314
Country
Canada
That video was made before December 2014 - when pip started to be included in all python distros. You installed pip even though it was already installed. I wonder if that might be what's causing your issue.
How could that be the issue, when that same issue happened before I did anything??
 

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
  • BigOnYa @ BigOnYa:
    Yea is sad. His 2 movies were good. Informative about our food industry.
  • BigOnYa @ BigOnYa:
    This was one of the craziest movies I've seen about our food industry, lots of stuff I didn't know. A must see. https://youtu.be/OqzjC-ENrl8?si=GYxmdY5nShzGniVi
  • OctoAori20 @ OctoAori20:
    Oh, that dude?
  • OctoAori20 @ OctoAori20:
    I stopped believing or caring about that dude when I found out about some of the more questionable nonsense he did in his life.
  • BigOnYa @ BigOnYa:
    Like what? I didn't know or hear.
  • K3Nv2 @ K3Nv2:
    You mean like every famous person that ever existed
    +1
  • K3Nv2 @ K3Nv2:
    I get so tired of hearing oh I liked him until...
  • OctoAori20 @ OctoAori20:
    I just know dude was a chronic alcoholic and such.
  • BigOnYa @ BigOnYa:
    I've been to his chicken restaurant he started in his 2nd movie, Holy Chicken, was pretty good. It is only 15-20 miles from me in Ohio. It only lasted 1 yr or so then closed tho.
  • OctoAori20 @ OctoAori20:
    There are very few people I just have just an immense dislike of and he's one of those very few people, the only other example is Gene Simmons. My musician uncle on my mother's side of the family actually met Gene once during some event and said he was the most unpleasant person to be around.
  • K3Nv2 @ K3Nv2:
    I met myself once turns out that guy is a giant piece of shit that doesn't deserve any of my respect
  • BigOnYa @ BigOnYa:
    Damn alcoholics! (Sshhh- Opens another beer)
  • OctoAori20 @ OctoAori20:
    Agreed, Ken
  • OctoAori20 @ OctoAori20:
    I can't say I've ever tried even a sip of beer tbh-
  • K3Nv2 @ K3Nv2:
    You met yourself also and is a giant piece of shit?
    +1
  • OctoAori20 @ OctoAori20:
    Then again, I don't think I'd really enjoy it //shrug
  • OctoAori20 @ OctoAori20:
    I'm sure it's an acquired taste :P
  • K3Nv2 @ K3Nv2:
    Poor lad can never enjoy the amazing taste of four loko
    +1
  • BigOnYa @ BigOnYa:
    Root beer is a gateway drink, don't ever try it either.
  • K3Nv2 @ K3Nv2:
    @BigOnYa, don't you love how smooth MD20 is
  • BigOnYa @ BigOnYa:
    Mad dog 20 20? Oh yea fixed the typo. I haven't seen that or had forever. Do they still make it?
  • K3Nv2 @ K3Nv2:
    I think it's why I'm alive
    +1
  • BigOnYa @ BigOnYa:
    What happens if when playing Paper Mario, you start a fire in-game?
    K3Nv2 @ K3Nv2: https://youtu.be/vja8uoOy5XE?si=d2qo7jYK9TiyaOZ2