mirror of
https://github.com/mbirth/wiki.git
synced 2024-12-24 22:54:09 +00:00
Add redirect to new site.
This commit is contained in:
parent
5afeb5c0f9
commit
9b668db718
13
_layouts/redirect.html
Normal file
13
_layouts/redirect.html
Normal file
@ -0,0 +1,13 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='utf-8' />
|
||||
<meta http-equiv="refresh" content="0; url={{ page.redirect_to }}" />
|
||||
<title>CONTENT MOVED: {{ page.title }} :: {{ site.name }}</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>The page <em>{{ page.title }}</em> moved.</h1>
|
||||
|
||||
If you are not being redirected automatically, please <a href="{{ page.redirect_to }}">click here</a>.
|
||||
</body>
|
||||
</html>
|
@ -1,17 +1,20 @@
|
||||
---
|
||||
title: Domain-Cookies
|
||||
language: en
|
||||
layout: default
|
||||
created: 2008-07-15 22:08:02 +0200
|
||||
updated: 2008-07-15 22:08:02 +0200
|
||||
toc: false
|
||||
language: en
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2008/07/15/domain-cookies.html
|
||||
tags:
|
||||
- know-how
|
||||
- development
|
||||
- web
|
||||
- cookies
|
||||
- know-how
|
||||
- development
|
||||
- web
|
||||
- cookies
|
||||
title: Domain-Cookies
|
||||
toc: false
|
||||
updated: 2008-07-15 22:08:02 +0200
|
||||
---
|
||||
|
||||
According to various documentation, the cookie domain has to contain **at least** 2 dots for a browser to accept this
|
||||
as a wildcard cookie (e.g. `.google.com`) and use this for all sub-domains. So `.foo.bar.com` should work - **should**.
|
||||
Opera doesn't like it and only accepts it domain-wide if there are **exactly** 2 dots in the domain name. In this case
|
||||
`.bar.com`. If you use `.foo.bar.com` the string is ignored and the cookie only gets set for the current domain.
|
||||
`.bar.com`. If you use `.foo.bar.com` the string is ignored and the cookie only gets set for the current domain.
|
@ -1,16 +1,19 @@
|
||||
---
|
||||
title: Bazaar (bzr)
|
||||
language: en
|
||||
layout: default
|
||||
created: 2008-07-31 22:32:29 +0200
|
||||
updated: 2008-08-01 00:41:36 +0200
|
||||
toc: false
|
||||
language: en
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2008/07/31/bazaar-bzr.html
|
||||
tags:
|
||||
- know-how
|
||||
- development
|
||||
- dvcs
|
||||
- bazaar
|
||||
- know-how
|
||||
- development
|
||||
- dvcs
|
||||
- bazaar
|
||||
title: Bazaar (bzr)
|
||||
toc: false
|
||||
updated: 2008-08-01 00:41:36 +0200
|
||||
---
|
||||
|
||||
Bazaar is a distributed versioning system.
|
||||
|
||||
**Homepage:** <http://bazaar-vcs.org/>
|
||||
@ -66,4 +69,4 @@ You will mostly just convert the dumpfile to a big bzr-repo:
|
||||
|
||||
You can then push the repo to the central repo by issuing
|
||||
|
||||
bzr push bzr/ bzr://path/to/central/repo
|
||||
bzr push bzr/ bzr://path/to/central/repo
|
@ -1,16 +1,19 @@
|
||||
---
|
||||
title: Mono + WinForms
|
||||
language: en
|
||||
layout: default
|
||||
created: 2008-10-08 15:23:14 +0200
|
||||
updated: 2009-07-17 23:15:27 +0200
|
||||
toc: false
|
||||
language: en
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2008/10/08/mono-+-winforms.html
|
||||
tags:
|
||||
- know-how
|
||||
- development
|
||||
- mono
|
||||
- winforms
|
||||
- know-how
|
||||
- development
|
||||
- mono
|
||||
- winforms
|
||||
title: Mono + WinForms
|
||||
toc: false
|
||||
updated: 2009-07-17 23:15:27 +0200
|
||||
---
|
||||
|
||||
**Installation manual:** [mono-project.com](http://www.mono-project.com/WinForms_Designer#Installation)
|
||||
**Forum:** [UbuntuForums.org](http://ubuntuforums.org/showthread.php?t=468183)
|
||||
|
||||
@ -30,4 +33,4 @@ Version: 2.0.0.0
|
||||
Libs: -r:${pkglibdir}/System.Windows.Forms.dll
|
||||
~~~
|
||||
|
||||
Afterwards you can add this as a Reference to your project in MonoDevelop.
|
||||
Afterwards you can add this as a Reference to your project in MonoDevelop.
|
@ -1,15 +1,18 @@
|
||||
---
|
||||
title: Firebug
|
||||
language: en
|
||||
layout: default
|
||||
created: 2008-12-22 14:58:35 +0100
|
||||
updated: 2009-07-24 12:34:42 +0200
|
||||
toc: false
|
||||
language: en
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2008/12/22/firebug.html
|
||||
tags:
|
||||
- know-how
|
||||
- development
|
||||
- firebug
|
||||
- know-how
|
||||
- development
|
||||
- firebug
|
||||
title: Firebug
|
||||
toc: false
|
||||
updated: 2009-07-24 12:34:42 +0200
|
||||
---
|
||||
|
||||
Firebug is a useful Firefox extension to debug JavaScript and more. To not raise error messages on browsers without
|
||||
Firebug, there's a small script called [firebugx.js](http://getfirebug.com/firebug/firebugx.js), which creates empty
|
||||
functions. [Sascha Hameister](http://javascript.io/index.php?/archives/42-Kleiner-Performance-Patch-fuer-firebugx.js.html)
|
||||
@ -30,4 +33,4 @@ if (!window.console || !console.firebug) {
|
||||
}
|
||||
{% endhighlight %}
|
||||
|
||||
You might also want to use [Firebug Lite](http://getfirebug.com/lite.html).
|
||||
You might also want to use [Firebug Lite](http://getfirebug.com/lite.html).
|
@ -1,16 +1,19 @@
|
||||
---
|
||||
title: PEAR Channels
|
||||
language: en
|
||||
layout: default
|
||||
created: 2009-02-11 20:29:22 +0100
|
||||
updated: 2009-08-09 13:35:46 +0200
|
||||
toc: false
|
||||
language: en
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2009/02/11/pear-channels.html
|
||||
tags:
|
||||
- know-how
|
||||
- development
|
||||
- php
|
||||
- pear
|
||||
- know-how
|
||||
- development
|
||||
- php
|
||||
- pear
|
||||
title: PEAR Channels
|
||||
toc: false
|
||||
updated: 2009-08-09 13:35:46 +0200
|
||||
---
|
||||
|
||||
Some channels for PEAR. Use this to add them:
|
||||
|
||||
pear channel-discovery <url>
|
||||
@ -44,4 +47,4 @@ The easiest solution was found in the last post of a thread in the [PEAR Forum](
|
||||
* do a `sudo pear update-channels`
|
||||
|
||||
|
||||
*[PEAR]: PHP Extension and Application Repository
|
||||
*[PEAR]: PHP Extension and Application Repository
|
@ -1,15 +1,18 @@
|
||||
---
|
||||
title: Compile wx.NET
|
||||
language: en
|
||||
layout: default
|
||||
created: 2010-01-22 17:36:17 +0100
|
||||
updated: 2010-01-22 17:48:52 +0100
|
||||
toc: false
|
||||
language: en
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2010/01/22/compile-wx.net.html
|
||||
tags:
|
||||
- know-how
|
||||
- development
|
||||
- wx-net
|
||||
- know-how
|
||||
- development
|
||||
- wx-net
|
||||
title: Compile wx.NET
|
||||
toc: false
|
||||
updated: 2010-01-22 17:48:52 +0100
|
||||
---
|
||||
|
||||
* **Homepage:** <http://wxnet.sf.net/>
|
||||
|
||||
*wx.NET* is a *wxWidgets*-wrapper for Mono. The compilation is not really straight-forward as one is used to.
|
||||
@ -33,4 +36,4 @@ tags:
|
||||
|
||||
make wxnet-core
|
||||
|
||||
1. find your library in `Bin/wx.NET.dll`
|
||||
1. find your library in `Bin/wx.NET.dll`
|
@ -1,17 +1,20 @@
|
||||
---
|
||||
title: JSON Mime-Types
|
||||
language: en
|
||||
layout: default
|
||||
created: 2010-03-11 14:34:12 +0100
|
||||
updated: 2010-03-11 14:34:12 +0100
|
||||
toc: false
|
||||
language: en
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2010/03/11/json-mime-types.html
|
||||
tags:
|
||||
- know-how
|
||||
- development
|
||||
- web
|
||||
- javascript
|
||||
- json
|
||||
- know-how
|
||||
- development
|
||||
- web
|
||||
- javascript
|
||||
- json
|
||||
title: JSON Mime-Types
|
||||
toc: false
|
||||
updated: 2010-03-11 14:34:12 +0100
|
||||
---
|
||||
|
||||
For JSON data, there are different mime-types floating around the web:
|
||||
|
||||
* `application/json`
|
||||
@ -23,4 +26,4 @@ At [ruby-forum.com](http://www.ruby-forum.com/topic/94728#193035) there is a nic
|
||||
is best to use **`text/x-json`**. The already wide-spread `application/json` is not really correct as `application` is
|
||||
meant for data which can only be read *after being processed*. But as JSON is clear-text, you can read it somewhat
|
||||
without parsing. That's why the `text` branch is to be preferred. And as the `json` type is not yet approved, you have
|
||||
to use `x-json` - a nonstandard extension.
|
||||
to use `x-json` - a nonstandard extension.
|
@ -1,16 +1,19 @@
|
||||
---
|
||||
title: Tools I should use more often
|
||||
language: en
|
||||
layout: default
|
||||
created: 2016-04-08 22:38:47 +0200
|
||||
updated: 2016-10-30 12:36:59 +0100
|
||||
toc: false
|
||||
language: en
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2016/04/08/tools-i-should-use-more-often.html
|
||||
tags:
|
||||
- know-how
|
||||
- development
|
||||
- tools
|
||||
- helpers
|
||||
- know-how
|
||||
- development
|
||||
- tools
|
||||
- helpers
|
||||
title: Tools I should use more often
|
||||
toc: false
|
||||
updated: 2016-10-30 12:36:59 +0100
|
||||
---
|
||||
|
||||
I often come across useful little tools where I think, I should try them later.
|
||||
But this "later" never happens…
|
||||
|
||||
@ -43,4 +46,4 @@ Cool tools I already use
|
||||
* [fish-shell](https://github.com/fish-shell/fish-shell) --- friendly interactive shell
|
||||
* [glances](https://github.com/nicolargo/glances) --- An eye on your system, htop+df+iotop+iftop and more
|
||||
* [Guake](https://github.com/Guake/guake) --- drop-down terminal for Gnome
|
||||
* [Fira Code](https://github.com/tonsky/FiraCode) --- development font with awesome ligatures for pretty code
|
||||
* [Fira Code](https://github.com/tonsky/FiraCode) --- development font with awesome ligatures for pretty code
|
@ -1,16 +1,19 @@
|
||||
---
|
||||
title: Getting Email Under Control
|
||||
language: en
|
||||
layout: default
|
||||
created: 2008-07-15 23:59:52 +0200
|
||||
updated: 2008-07-15 23:59:52 +0200
|
||||
toc: false
|
||||
language: en
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2008/07/15/getting-email-under-control.html
|
||||
tags:
|
||||
- know-how
|
||||
- gettingthingsdone
|
||||
- gtd
|
||||
- email
|
||||
- know-how
|
||||
- gettingthingsdone
|
||||
- gtd
|
||||
- email
|
||||
title: Getting Email Under Control
|
||||
toc: false
|
||||
updated: 2008-07-15 23:59:52 +0200
|
||||
---
|
||||
|
||||
* **Homepage:** [www.davidco.com](http://www.davidco.com/store/catalog/NEW-Getting-Email-Under-Control-p-16377.php)
|
||||
|
||||
Managing the flood of email messages that most of us need to interact with on a daily basis is a growing challenge. No
|
||||
@ -161,4 +164,4 @@ whatever it takes to use it wisely and safely. It is a huge productivity enhance
|
||||
a severe occupational hazard.
|
||||
|
||||
|
||||
©David Allen & Company 1998, 2008. All rights reserved. www.DavidAllenGTD.com
|
||||
©David Allen & Company 1998, 2008. All rights reserved. www.DavidAllenGTD.com
|
@ -1,20 +1,23 @@
|
||||
---
|
||||
title: Sony PlayStation 2
|
||||
language: en
|
||||
layout: default
|
||||
created: 2008-12-05 00:31:49 +0100
|
||||
updated: 2008-12-05 00:31:49 +0100
|
||||
toc: false
|
||||
language: en
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2008/12/05/sony-playstation-2.html
|
||||
tags:
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- sony
|
||||
- playstation
|
||||
- pstwo
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- sony
|
||||
- playstation
|
||||
- pstwo
|
||||
title: Sony PlayStation 2
|
||||
toc: false
|
||||
updated: 2008-12-05 00:31:49 +0100
|
||||
---
|
||||
|
||||
<ul>
|
||||
{% for page in site.categories.sony-playstation-2 %}
|
||||
<li><a href="{{ page.url }}">{{ page.title }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</ul>
|
@ -1,17 +1,20 @@
|
||||
---
|
||||
title: ASUS WL-300g
|
||||
layout: default
|
||||
created: 2009-02-02 23:18:42 +0100
|
||||
updated: 2009-02-02 23:18:42 +0100
|
||||
toc: true
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2009/02/02/asus-wl-300g.html
|
||||
tags:
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- wifi
|
||||
- asus
|
||||
- firmware
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- wifi
|
||||
- asus
|
||||
- firmware
|
||||
title: ASUS WL-300g
|
||||
toc: true
|
||||
updated: 2009-02-02 23:18:42 +0100
|
||||
---
|
||||
|
||||
Install DD-WRT
|
||||
==============
|
||||
|
||||
@ -48,4 +51,4 @@ The CRC32 checksum matched that in the header.
|
||||
So I calculated the CRC32 of my modified file and changed the header - and now I could upload the DD-WRT file using the normal firmware
|
||||
upgrade of the original firmware. After installing v23, you can easily update to v24 using the DD-WRT web interface.
|
||||
|
||||
![DD-WRT Version Info]({{ site.url }}/assets/ddwrt.png)
|
||||
![DD-WRT Version Info]({{ site.url }}/assets/ddwrt.png)
|
@ -1,17 +1,20 @@
|
||||
---
|
||||
title: Samsung SGH-Z300/ZM60
|
||||
language: en
|
||||
layout: default
|
||||
created: 2009-02-02 18:44:27 +0100
|
||||
updated: 2009-02-02 18:51:02 +0100
|
||||
toc: false
|
||||
language: en
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2009/02/02/samsung-sgh-z300zm60.html
|
||||
tags:
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- samsung
|
||||
- phone
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- samsung
|
||||
- phone
|
||||
title: Samsung SGH-Z300/ZM60
|
||||
toc: false
|
||||
updated: 2009-02-02 18:51:02 +0100
|
||||
---
|
||||
|
||||
I got a Samsung ZM-60 from T-Mobile (incl. SIMlock). The first shock came after switching it on for the first time:
|
||||
Everything was in the T-Mobile magenta color. After some research, I found out, that it's originally a `SGH-Z300`.
|
||||
|
||||
@ -61,4 +64,4 @@ Phone identification
|
||||
|
||||
The phone sends the following User-Agent to websites:
|
||||
|
||||
SGH-Z300 SHP/VPP/R5 SMB3.1 SMM-MMS/1.2.0 profile/MIDP-2.0
|
||||
SGH-Z300 SHP/VPP/R5 SMB3.1 SMM-MMS/1.2.0 profile/MIDP-2.0
|
@ -1,18 +1,21 @@
|
||||
---
|
||||
title: Siemens A55
|
||||
language: en
|
||||
layout: default
|
||||
created: 2009-02-02 22:30:48 +0100
|
||||
updated: 2009-02-02 22:30:48 +0100
|
||||
toc: false
|
||||
language: en
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2009/02/02/siemens-a55.html
|
||||
tags:
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- siemens
|
||||
- phone
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- siemens
|
||||
- phone
|
||||
title: Siemens A55
|
||||
toc: false
|
||||
updated: 2009-02-02 22:30:48 +0100
|
||||
---
|
||||
|
||||
A friend visited me bringing two A55 with SIMlock. Both were from the same provider and both didn't accept the
|
||||
unlocking code from the provider for some reason. After trying the usual tools without luck, we used the [testpoint method](http://www.allsiemens.com/testpoints/siemens-A55.htm).
|
||||
Using very sharp tweezers, we scratched away the protective from the desired trace and cut it. Now we were able to use
|
||||
*Freia* without any problems. (set to "Bootcore Bug")
|
||||
*Freia* without any problems. (set to "Bootcore Bug")
|
@ -1,17 +1,20 @@
|
||||
---
|
||||
title: SIEMENS Gigaset
|
||||
language: en
|
||||
layout: default
|
||||
created: 2009-02-02 02:15:29 +0100
|
||||
updated: 2009-02-02 22:27:14 +0100
|
||||
toc: false
|
||||
language: en
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2009/02/02/siemens-gigaset.html
|
||||
tags:
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- siemens
|
||||
- phone
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- siemens
|
||||
- phone
|
||||
title: SIEMENS Gigaset
|
||||
toc: false
|
||||
updated: 2009-02-02 22:27:14 +0100
|
||||
---
|
||||
|
||||
Service mode
|
||||
============
|
||||
|
||||
|
@ -1,17 +1,20 @@
|
||||
---
|
||||
title: Siemens M65
|
||||
language: en
|
||||
layout: default
|
||||
created: 2009-02-02 21:39:52 +0100
|
||||
updated: 2009-02-02 22:26:57 +0100
|
||||
toc: false
|
||||
language: en
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2009/02/02/siemens-m65.html
|
||||
tags:
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- siemens
|
||||
- phone
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- siemens
|
||||
- phone
|
||||
title: Siemens M65
|
||||
toc: false
|
||||
updated: 2009-02-02 22:26:57 +0100
|
||||
---
|
||||
|
||||
A M65 of my in-laws seemed broken so I took it home to play around with my `DCA-510`-cable.
|
||||
|
||||
It showed firmware rev. 15 … the current one was rev. 58. I read somewhere that older firmware WILL produce problems so
|
||||
@ -51,4 +54,4 @@ Internal Filesystem
|
||||
|
||||
If you want to get rid of the "Load games", "Load Ringtones", etc. menus, just use the [VSOFS-Plugin](http://www.totalcmd.net/plugring/vsofs.html)
|
||||
for [Total Commander](http://www.ghisler.com/) to delete the file `\\M65\Config\Default\MagicLinks\MagicLinks.xml` and
|
||||
the directory on the phone.
|
||||
the directory on the phone.
|
@ -1,18 +1,21 @@
|
||||
---
|
||||
title: TEAC MP-380 / entryx EM850
|
||||
language: en
|
||||
layout: default
|
||||
created: 2009-02-02 22:49:04 +0100
|
||||
updated: 2009-02-02 22:49:04 +0100
|
||||
toc: false
|
||||
language: en
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2009/02/02/teac-mp-380-entryx-em850.html
|
||||
tags:
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- teac
|
||||
- entryx
|
||||
- mp3player
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- teac
|
||||
- entryx
|
||||
- mp3player
|
||||
title: TEAC MP-380 / entryx EM850
|
||||
toc: false
|
||||
updated: 2009-02-02 22:49:04 +0100
|
||||
---
|
||||
|
||||
A local discounter offered a MP4-player *[entryx EM850](http://www.entryx.de/deutsch/produkte/mp3player/2gb_mediaplayer_mp3.html)*
|
||||
some time ago. The supplied firmware has some severe problems, e.g. the devices powers off while playing without touching it.
|
||||
|
||||
@ -44,4 +47,4 @@ Now do the following:
|
||||
After the upgrade completed, you might have to format the internal storage for the player to recognize it.
|
||||
|
||||
Some little bonus: After the upgrade, you'll find a Tetris game as well as a FM-Tuner. But the latter one doesn't have
|
||||
any reception - maybe they didn't add an antenna, although the IC would support it.
|
||||
any reception - maybe they didn't add an antenna, although the IC would support it.
|
@ -1,18 +1,21 @@
|
||||
---
|
||||
title: ZyXEL Prestige 660HW-67
|
||||
language: en
|
||||
layout: default
|
||||
created: 2009-02-02 20:55:24 +0100
|
||||
updated: 2009-02-02 20:55:24 +0100
|
||||
toc: false
|
||||
language: en
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2009/02/02/zyxel-prestige-660hw-67.html
|
||||
tags:
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- zyxel
|
||||
- prestige
|
||||
- router
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- zyxel
|
||||
- prestige
|
||||
- router
|
||||
title: ZyXEL Prestige 660HW-67
|
||||
toc: false
|
||||
updated: 2009-02-02 20:55:24 +0100
|
||||
---
|
||||
|
||||
The 660HW-67 was distributed in Germany as the "WLAN Modem 100" through the Arcor ISP. It came with the firmware `QD.7`
|
||||
which seems to be originally made for AOL.
|
||||
|
||||
@ -36,4 +39,4 @@ This is how it works (using the serial connector on the PCB and a terminal progr
|
||||
1. upload the new firmware again but cancel the upload after about 600 KiB (~12 min at 9600 baud)
|
||||
* the router will boot into a debug mode
|
||||
1. upload the new `rom-0` file
|
||||
1. upload the new firmware file
|
||||
1. upload the new firmware file
|
@ -1,17 +1,20 @@
|
||||
---
|
||||
title: Nintendo DS
|
||||
language: en
|
||||
layout: default
|
||||
created: 2009-03-10 00:43:19 +0100
|
||||
updated: 2009-03-10 01:13:42 +0100
|
||||
toc: false
|
||||
language: en
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2009/03/10/nintendo-ds.html
|
||||
tags:
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- nintendo
|
||||
- gaming
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- nintendo
|
||||
- gaming
|
||||
title: Nintendo DS
|
||||
toc: false
|
||||
updated: 2009-03-10 01:13:42 +0100
|
||||
---
|
||||
|
||||
(DS = Dual Screen)
|
||||
|
||||
![]({{ site.url }}/assets/nintendo_ds_lite.jpg)
|
||||
@ -29,4 +32,4 @@ Links
|
||||
=====
|
||||
|
||||
* [Nintendo DS homebrew](http://en.wikipedia.org/wiki/Nintendo_DS_homebrew)
|
||||
* [Hacking Nintendo DS](http://doc.kodewerx.org/hacking_nds.html) --- list of ActionReplay code structure and some generic assembler codes
|
||||
* [Hacking Nintendo DS](http://doc.kodewerx.org/hacking_nds.html) --- list of ActionReplay code structure and some generic assembler codes
|
@ -1,17 +1,20 @@
|
||||
---
|
||||
title: Nintendo Wii
|
||||
language: en
|
||||
layout: default
|
||||
created: 2009-03-10 00:43:19 +0100
|
||||
updated: 2009-03-10 01:13:42 +0100
|
||||
toc: false
|
||||
language: en
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2009/03/10/nintendo-wii.html
|
||||
tags:
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- nintendo
|
||||
- gaming
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- nintendo
|
||||
- gaming
|
||||
title: Nintendo Wii
|
||||
toc: false
|
||||
updated: 2009-03-10 01:13:42 +0100
|
||||
---
|
||||
|
||||
<ul>
|
||||
{% for page in site.categories.nintendo-wii %}
|
||||
<li><a href="{{ page.url }}">{{ page.title }}</a></li>
|
||||
@ -25,4 +28,4 @@ Links
|
||||
=====
|
||||
|
||||
* [The Homebrew Channel](http://hbc.hackmii.com/)
|
||||
* [WiiBrew Wiki](http://wiibrew.org/wiki/Main_Page)
|
||||
* [WiiBrew Wiki](http://wiibrew.org/wiki/Main_Page)
|
@ -1,16 +1,19 @@
|
||||
---
|
||||
title: Jamba Downloads
|
||||
language: de
|
||||
layout: default
|
||||
created: 2009-04-11 22:06:49 +0200
|
||||
updated: 2009-04-11 22:06:49 +0200
|
||||
toc: false
|
||||
language: de
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2009/04/11/jamba-downloads-de.html
|
||||
tags:
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- jamba
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- jamba
|
||||
title: Jamba Downloads
|
||||
toc: false
|
||||
updated: 2009-04-11 22:06:49 +0200
|
||||
---
|
||||
|
||||
Vor etlicher Zeit hatte ich mal 100,- € Guthaben bei Jamba gewonnen. Beim Versuch, ein Programm auf mein Samsung Z300
|
||||
zu laden (das Z300 gibt's bei Jamba nur unter der T-Mobile-Bezeichnung *ZM60*), zeigte mir Jamba, dass mein Handy
|
||||
angeblich keine Software downloaden könne. Der kleinere Bruder, das Z500, hingegen unterstützt das merkwürdigerweise.
|
||||
@ -49,4 +52,4 @@ Apache-Webserver mit folgender Zeile in einer Datei `.htaccess`:
|
||||
|
||||
AddType application/java-archive .jar
|
||||
|
||||
Dann braucht man nur noch per GPRS auf den URL der `.jar`-Datei zuzugreifen und der Download startet.
|
||||
Dann braucht man nur noch per GPRS auf den URL der `.jar`-Datei zuzugreifen und der Download startet.
|
@ -1,17 +1,20 @@
|
||||
---
|
||||
title: MSI RG54SE
|
||||
language: en
|
||||
layout: default
|
||||
created: 2009-05-16 22:20:01 +0200
|
||||
updated: 2009-05-16 22:20:01 +0200
|
||||
toc: false
|
||||
language: en
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2009/05/16/msi-rg54se.html
|
||||
tags:
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- msi
|
||||
- router
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- msi
|
||||
- router
|
||||
title: MSI RG54SE
|
||||
toc: false
|
||||
updated: 2009-05-16 22:20:01 +0200
|
||||
---
|
||||
|
||||
Sold under following names:
|
||||
|
||||
* CC&C WA-2204A
|
||||
@ -20,4 +23,4 @@ Sold under following names:
|
||||
* Canyon WF514v2
|
||||
* GigaFast WF719-CAPR
|
||||
* ZCOMAX WA-2204A
|
||||
* Zonet ZSR1114WE
|
||||
* Zonet ZSR1114WE
|
@ -1,17 +1,20 @@
|
||||
---
|
||||
title: Cisco Catalyst 2950
|
||||
language: de
|
||||
layout: default
|
||||
created: 2009-06-05 09:54:04 +0200
|
||||
updated: 2009-06-05 17:01:15 +0200
|
||||
toc: false
|
||||
language: de
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2009/06/05/cisco-catalyst-2950-de.html
|
||||
tags:
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- cisco
|
||||
- catalyst
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- cisco
|
||||
- catalyst
|
||||
title: Cisco Catalyst 2950
|
||||
toc: false
|
||||
updated: 2009-06-05 17:01:15 +0200
|
||||
---
|
||||
|
||||
MAC Adresstabelle
|
||||
=================
|
||||
|
||||
@ -171,4 +174,4 @@ Netgear FS108P PoE-Switch
|
||||
|
||||
Der gleiche Angriff auf einen *Netgear FS108P* Switch bringt den Switch nur dazu, Pakete an unbekannte MAC-Adressen zu
|
||||
ignorieren. Somit wäre das eine DoS-Attacke - aber keine Möglichkeit, fremde Daten mitzusniffen. Die Broadcast-Pakete
|
||||
hingegen werden auf allen Ports ausgegeben und fluten somit auch angeschlossene Switches/Router.
|
||||
hingegen werden auf allen Ports ausgegeben und fluten somit auch angeschlossene Switches/Router.
|
@ -1,17 +1,20 @@
|
||||
---
|
||||
title: AudioMate / ALLSOUND
|
||||
language: en
|
||||
layout: default
|
||||
created: 2009-01-26 09:54:04 +0200
|
||||
updated: 2009-06-27 17:01:15 +0200
|
||||
toc: false
|
||||
language: en
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2009/01/26/audiomate-allsound.html
|
||||
tags:
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- audiomate
|
||||
- allsound
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- audiomate
|
||||
- allsound
|
||||
title: AudioMate / ALLSOUND
|
||||
toc: false
|
||||
updated: 2009-06-27 17:01:15 +0200
|
||||
---
|
||||
|
||||
![]({{ site.url }}/assets/audiomate.jpg)
|
||||
|
||||
* allnet **ALLSOUND**: [allnet.de](http://www.allnet.de/downloads.php?produkt=ALLSOUND)
|
||||
@ -22,4 +25,4 @@ tags:
|
||||
{% for page in site.categories.audiomate %}
|
||||
<li><a href="{{ page.url }}">{{ page.title }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</ul>
|
@ -1,17 +1,20 @@
|
||||
---
|
||||
title: Samsung SE-T084M
|
||||
language: en
|
||||
layout: default
|
||||
created: 2009-05-15 15:59:19 +0200
|
||||
updated: 2009-10-26 21:41:59 +0100
|
||||
toc: false
|
||||
language: en
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2009/05/15/samsung-se-t084m.html
|
||||
tags:
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- samsung
|
||||
- drive
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- samsung
|
||||
- drive
|
||||
title: Samsung SE-T084M
|
||||
toc: false
|
||||
updated: 2009-10-26 21:41:59 +0100
|
||||
---
|
||||
|
||||
The SE-T084M is an external USB burner with everything but BluRay burning.
|
||||
|
||||
![]({{ site.url }}/assets/samsung_se-t084m.jpg)
|
||||
@ -43,4 +46,4 @@ You can enable *RPC1* by using [MCSE](http://forum.rpc1.org/viewtopic.php?f=2&t=
|
||||
Windows XP will continue to show a *X changes left* in the region settings. But this is a software lock. Open *RegEdit*
|
||||
and go to `HKEY_LOCAL_MACHINE\Software\Microsoft`. There you'll find a key with strange characters (something like `';t-z%`)
|
||||
which contains a single REG_QWORD value. Delete the whole key and you'll be back at *5 changes left*.
|
||||
</div></p>
|
||||
</div></p>
|
@ -1,20 +1,23 @@
|
||||
---
|
||||
title: BIOS Passwörter
|
||||
language: de
|
||||
alternatives:
|
||||
- language: en
|
||||
url: /know-how/hacking/bios-passwords.html
|
||||
layout: default
|
||||
- language: en
|
||||
url: /know-how/hacking/bios-passwords.html
|
||||
created: 2008-07-18 01:36:55 +0200
|
||||
updated: 2009-10-30 22:53:14 +0100
|
||||
toc: true
|
||||
language: de
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2008/07/18/bios-passwoerter-de.html
|
||||
tags:
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- bios
|
||||
- passwords
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- bios
|
||||
- passwords
|
||||
title: BIOS Passwörter
|
||||
toc: true
|
||||
updated: 2009-10-30 22:53:14 +0100
|
||||
---
|
||||
|
||||
[This page in English.]({% post_url 2009-10-30-bios-passwords %})
|
||||
|
||||
Da Notebook-Hersteller die Vergesslichkeit von Passwörtern als Problem erkannt haben, ist es oft recht einfach, ein
|
||||
@ -114,4 +117,4 @@ Notrettung
|
||||
|
||||
Wenn man noch booten kann, und nur das Passwort für das BIOS-Setup braucht, hilft in den meisten Fällen Christophe
|
||||
Grenier's CmosPwd weiter. Es liest das Passwort aus dem CMOS-Speicher und entschlüsselt es. Für SONY VAIO-Notebooks,
|
||||
siehe [hier]({% post_url 2008-07-20-sony-vaio %}).
|
||||
siehe [hier]({% post_url 2008-07-20-sony-vaio %}).
|
@ -1,20 +1,23 @@
|
||||
---
|
||||
title: BIOS Passwords
|
||||
language: en
|
||||
alternatives:
|
||||
- language: de
|
||||
url: /know-how/hacking/bios-passwords-de.html
|
||||
layout: default
|
||||
- language: de
|
||||
url: /know-how/hacking/bios-passwords-de.html
|
||||
created: 2008-07-16 00:44:43 +0200
|
||||
updated: 2009-10-30 22:53:46 +0100
|
||||
toc: true
|
||||
language: en
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2008/07/16/bios-passwords.html
|
||||
tags:
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- bios
|
||||
- passwords
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- bios
|
||||
- passwords
|
||||
title: BIOS Passwords
|
||||
toc: true
|
||||
updated: 2009-10-30 22:53:46 +0100
|
||||
---
|
||||
|
||||
[Diese Seite auf Deutsch.]({% post_url 2009-10-30-bios-passwords-de %})
|
||||
|
||||
Since Notebook-manufacturers know of the problem of forgotten passwords, they often implement easy ways to remove BIOS
|
||||
@ -109,4 +112,4 @@ If everything fails
|
||||
|
||||
If you can still boot and only need the password to the BIOS-setup, Christophe Grenier's
|
||||
[CmosPwd](http://www.cgsecurity.org/wiki/CmosPwd) will help you in most cases. It reads out the CMOS-memory and tries
|
||||
to decrypt the password stored there. For SONY Vaio notebooks, look [here]({% post_url 2008-07-20-sony-vaio %}).
|
||||
to decrypt the password stored there. For SONY Vaio notebooks, look [here]({% post_url 2008-07-20-sony-vaio %}).
|
@ -1,17 +1,20 @@
|
||||
---
|
||||
title: Linksys NSLU2
|
||||
layout: default
|
||||
created: 2009-08-10 01:41:46 +0200
|
||||
updated: 2009-12-06 14:01:10 +0100
|
||||
toc: true
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2009/08/10/linksys-nslu2.html
|
||||
tags:
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- linksys
|
||||
- nas
|
||||
- storage
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- linksys
|
||||
- nas
|
||||
- storage
|
||||
title: Linksys NSLU2
|
||||
toc: true
|
||||
updated: 2009-12-06 14:01:10 +0100
|
||||
---
|
||||
|
||||
**NSLU2** means *Network Storage Link for USB 2.0 Disk Drives*. Also see [here](http://en.wikipedia.org/wiki/NSLU2).
|
||||
|
||||
![NSLU2]({{ site.url }}/assets/nslu2.jpg)
|
||||
@ -153,4 +156,4 @@ I compiled their [iStat Server](http://code.google.com/p/istatd/) on my Slug and
|
||||
Download: [istatd_0.5.4_armel.deb]({{ site.url }}/assets/istatd_0.5.4_armel.deb)
|
||||
|
||||
|
||||
[^1]: both found in `/boot` on the root partition of the NSLU2-disk
|
||||
[^1]: both found in `/boot` on the root partition of the NSLU2-disk
|
@ -1,17 +1,20 @@
|
||||
---
|
||||
title: MEDION HDDrive2go
|
||||
language: de
|
||||
layout: default
|
||||
created: 2009-06-09 15:43:52 +0200
|
||||
updated: 2009-12-27 20:18:52 +0100
|
||||
toc: false
|
||||
language: de
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2009/06/09/medion-hddrive2go-de.html
|
||||
tags:
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- medion
|
||||
- hdd
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- medion
|
||||
- hdd
|
||||
title: MEDION HDDrive2go
|
||||
toc: false
|
||||
updated: 2009-12-27 20:18:52 +0100
|
||||
---
|
||||
|
||||
<img src="{{ site.url }}/assets/hddrive2go.jpg" alt="" height="300" />
|
||||
|
||||
|
||||
@ -76,4 +79,4 @@ Links
|
||||
* <http://daltrey.org/linux/cypress.html>
|
||||
* <http://www.winhelpline.info/forum/600850-post150.html>
|
||||
* <http://daltrey.org/tw/tiki-index.php?page=CypressAt2lp>
|
||||
* <http://www.cypress.com/products/?gid=9&fid=14&rpn=CY7C68300C>
|
||||
* <http://www.cypress.com/products/?gid=9&fid=14&rpn=CY7C68300C>
|
@ -1,18 +1,21 @@
|
||||
---
|
||||
title: AVM Fritz!Box 7270
|
||||
layout: default
|
||||
created: 2009-12-19 18:40:34 +0100
|
||||
updated: 2010-01-05 00:19:18 +0100
|
||||
toc: true
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2009/12/19/avm-fritz!box-7270.html
|
||||
tags:
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- avm
|
||||
- fritz
|
||||
- fritzbox
|
||||
- settings
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- avm
|
||||
- fritz
|
||||
- fritzbox
|
||||
- settings
|
||||
title: AVM Fritz!Box 7270
|
||||
toc: true
|
||||
updated: 2010-01-05 00:19:18 +0100
|
||||
---
|
||||
|
||||
**Homepage:** <http://www.avm.de/de/Produkte/FRITZBox/FRITZ_Box_Fon_WLAN_7270/index.php>
|
||||
|
||||
Fritz Fun
|
||||
@ -132,4 +135,4 @@ Now just insert your desired DNS servers, upload the changed config and you shou
|
||||
|
||||
*[FB]: Fritz!Box
|
||||
*[DNS]: Domain Name System
|
||||
*[ISP]: Internet Service Provider
|
||||
*[ISP]: Internet Service Provider
|
@ -1,18 +1,21 @@
|
||||
---
|
||||
title: SONY PlayStation Portable
|
||||
language: en
|
||||
layout: default
|
||||
created: 2010-01-08 08:47:41 +0100
|
||||
updated: 2010-01-11 21:39:20 +0100
|
||||
toc: false
|
||||
language: en
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2010/01/08/sony-playstation-portable.html
|
||||
tags:
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- sony
|
||||
- playstation
|
||||
- psp
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- sony
|
||||
- playstation
|
||||
- psp
|
||||
title: SONY PlayStation Portable
|
||||
toc: false
|
||||
updated: 2010-01-11 21:39:20 +0100
|
||||
---
|
||||
|
||||
* **Model:** PSP Slim (PSP-2004)
|
||||
* **Battery:** PSP-S110
|
||||
|
||||
@ -185,4 +188,4 @@ Links
|
||||
=====
|
||||
|
||||
* <http://forums.afterdawn.com/thread_view.cfm/591203>
|
||||
* <http://www.pspmod.com/forums/psp-hardware-guides/28603-guide-using-pandoras-battery-easy-way-but-you-must-have-cfw.html>
|
||||
* <http://www.pspmod.com/forums/psp-hardware-guides/28603-guide-using-pandoras-battery-easy-way-but-you-must-have-cfw.html>
|
@ -1,19 +1,22 @@
|
||||
---
|
||||
title: Synology Telnet password
|
||||
language: en
|
||||
layout: default
|
||||
created: 2016-01-26 19:54:55 +0100
|
||||
updated: 2016-01-26 19:54:55 +0100
|
||||
toc: true
|
||||
language: en
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2016/01/26/synology-telnet-password.html
|
||||
tags:
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- synology
|
||||
- xpenology
|
||||
- telnet
|
||||
- password
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- synology
|
||||
- xpenology
|
||||
- telnet
|
||||
- password
|
||||
title: Synology Telnet password
|
||||
toc: true
|
||||
updated: 2016-01-26 19:54:55 +0100
|
||||
---
|
||||
|
||||
If you ever had a problem with your Synology DiskStation, you might have
|
||||
stumbled upon the emergency telnet access or even the serial port on the PCB.
|
||||
|
||||
@ -80,4 +83,4 @@ time might be reset to 1 January 1970.
|
||||
</div></p>
|
||||
|
||||
By the way: This password doesn't work for SSH after you've setup your Synology.
|
||||
After the setup, the `root` password is that of your `admin` user.
|
||||
After the setup, the `root` password is that of your `admin` user.
|
@ -1,16 +1,19 @@
|
||||
---
|
||||
title: TASSIMO Barcodes
|
||||
language: de
|
||||
layout: default_nobreaktables
|
||||
created: 2013-09-08 15:43:52 +0200
|
||||
updated: 2016-04-16 18:37:49 +0200
|
||||
toc: true
|
||||
language: de
|
||||
layout: redirect
|
||||
layout_old: default_nobreaktables
|
||||
redirect_to: https://blog.mbirth.de/archives/2013/09/08/tassimo-barcodes-de.html
|
||||
tags:
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- tassimo
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- tassimo
|
||||
title: TASSIMO Barcodes
|
||||
toc: true
|
||||
updated: 2016-04-16 18:37:49 +0200
|
||||
---
|
||||
|
||||
Im Gegensatz zu anderen Kapselmaschinen, bringen die Kapseln bei Tassimo ihre Zubereitungsanleitung gleich mit:
|
||||
In Form eines Barcodes auf der Kapsel.
|
||||
|
||||
@ -185,4 +188,4 @@ Links
|
||||
* [Tassimo Patent US7231869](http://www.google.com/patents/US7231869?printsec=description&dq=coffee+barcode)
|
||||
* [Reverse engineering T-Disk barcodes for Tassimo coffee makers](http://reverseengineering.stackexchange.com/questions/3919/reverse-engineering-t-disk-barcodes-for-tassimo-coffee-makers)
|
||||
* [Tassimo (T-Disc) Barcode von "Großer Tasse"](http://board.gulli.com/thread/739924-s-tassimo-t-disc-barcode-von-grosser-tasse/)
|
||||
* [Tassimo Heißwasser-Disc mit 4 einstellbaren Mengen](http://www.kaffekompagniet.com/shop/tassimo-hot-water-916p.html)
|
||||
* [Tassimo Heißwasser-Disc mit 4 einstellbaren Mengen](http://www.kaffekompagniet.com/shop/tassimo-hot-water-916p.html)
|
@ -1,17 +1,20 @@
|
||||
---
|
||||
title: Crypto-Virus decrypted
|
||||
language: en
|
||||
layout: default
|
||||
created: 2016-07-08 15:41:41 +0200
|
||||
updated: 2016-07-08 15:41:41 +0200
|
||||
toc: false
|
||||
language: en
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2016/07/08/crypto-virus-decrypted.html
|
||||
tags:
|
||||
- know-how
|
||||
- hacking
|
||||
- virus
|
||||
- cryptovirus
|
||||
- cryptor
|
||||
- know-how
|
||||
- hacking
|
||||
- virus
|
||||
- cryptovirus
|
||||
- cryptor
|
||||
title: Crypto-Virus decrypted
|
||||
toc: false
|
||||
updated: 2016-07-08 15:41:41 +0200
|
||||
---
|
||||
|
||||
A friend received the following mail from (supposedly) **FedEx International**:
|
||||
|
||||
![]({{ site.url }}/assets/cryptovirusmail.png)
|
||||
@ -167,4 +170,4 @@ you still have in that mail with the bogus zip file. Using that, we can download
|
||||
the PHP script again, which contains the actual key.
|
||||
|
||||
After deobfuscating it, you just have to change `$a='e'` to `$a='d'` and run it
|
||||
and it should decrypt all your files again. Problem solved.
|
||||
and it should decrypt all your files again. Problem solved.
|
@ -1,19 +1,22 @@
|
||||
---
|
||||
title: Crossgrade firmware in SmartEye IP camera
|
||||
language: en
|
||||
layout: default
|
||||
created: 2016-11-13 23:31:43 +0100
|
||||
updated: 2016-11-13 23:31:43 +0100
|
||||
toc: true
|
||||
language: en
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2016/11/13/crossgrade-firmware-in-smarteye-ip-camera.html
|
||||
tags:
|
||||
- know-how
|
||||
- hacking
|
||||
- firmware
|
||||
- ip-camera
|
||||
- smarteye
|
||||
- wansview
|
||||
- instar
|
||||
- know-how
|
||||
- hacking
|
||||
- firmware
|
||||
- ip-camera
|
||||
- smarteye
|
||||
- wansview
|
||||
- instar
|
||||
title: Crossgrade firmware in SmartEye IP camera
|
||||
toc: true
|
||||
updated: 2016-11-13 23:31:43 +0100
|
||||
---
|
||||
|
||||
A few years ago, I got a [Wansview](http://www.wansview.com/) NCH-536MW IP
|
||||
camera. That was one of the first 720p cameras with night-vision, motion and
|
||||
all features you could wish for.
|
||||
@ -337,4 +340,4 @@ Read more
|
||||
=========
|
||||
|
||||
* [forum.hardware.fr](http://forum.hardware.fr/hfr/HardwarePeripheriques/webcam-camera-ip/unique-wansview-camera-sujet_56652_12.htm#t701130)
|
||||
* [openipcam.com](http://www.openipcam.com/forum/index.php?topic=342.0)
|
||||
* [openipcam.com](http://www.openipcam.com/forum/index.php?topic=342.0)
|
@ -1,19 +1,21 @@
|
||||
---
|
||||
title: TV Hotel Mode
|
||||
language: en
|
||||
layout: default
|
||||
created: 2017-09-26 14:25:43 +0200
|
||||
updated: 2017-09-26 14:25:43 +0200
|
||||
toc: true
|
||||
language: en
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2017/09/26/tv-hotel-mode.html
|
||||
tags:
|
||||
- know-how
|
||||
- hacking
|
||||
- tv
|
||||
- television
|
||||
- hotel
|
||||
- hotelmode
|
||||
- hidden
|
||||
- menu
|
||||
- know-how
|
||||
- hacking
|
||||
- tv
|
||||
- television
|
||||
- hotel
|
||||
- hotelmode
|
||||
- hidden
|
||||
- menu
|
||||
title: TV Hotel Mode
|
||||
toc: true
|
||||
updated: 2017-09-26 14:25:43 +0200
|
||||
---
|
||||
|
||||
LG
|
||||
@ -35,4 +37,4 @@ Philips 26HFL5870D and similar
|
||||
|
||||
1. Press the following keys in sequence:
|
||||
|
||||
<kbd>3</kbd> <kbd>1</kbd> <kbd>9</kbd> <kbd>7</kbd> <kbd>5</kbd> <kbd>3</kbd> <kbd>MUTE</kbd>
|
||||
<kbd>3</kbd> <kbd>1</kbd> <kbd>9</kbd> <kbd>7</kbd> <kbd>5</kbd> <kbd>3</kbd> <kbd>MUTE</kbd>
|
@ -1,20 +1,23 @@
|
||||
---
|
||||
title: Toyota Touch 2 Firmware Update
|
||||
language: en
|
||||
layout: default
|
||||
created: 2017-10-21 20:00:00 +0200
|
||||
updated: 2017-10-21 20:00:00 +0200
|
||||
toc: false
|
||||
language: en
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2017/10/21/toyota-touch-2-firmware-update.html
|
||||
tags:
|
||||
- know-how
|
||||
- hacking
|
||||
- toyota
|
||||
- touch
|
||||
- touch&go
|
||||
- touch2
|
||||
- firmware
|
||||
- software
|
||||
- know-how
|
||||
- hacking
|
||||
- toyota
|
||||
- touch
|
||||
- touch&go
|
||||
- touch2
|
||||
- firmware
|
||||
- software
|
||||
title: Toyota Touch 2 Firmware Update
|
||||
toc: false
|
||||
updated: 2017-10-21 20:00:00 +0200
|
||||
---
|
||||
|
||||
What unit do I have?
|
||||
====================
|
||||
|
||||
@ -78,6 +81,4 @@ The Update
|
||||
about 25 seconds. So 30 seconds should be safe.)
|
||||
1. Turn on the ignition (Don't start the car.) and **WAIT** again. The headunit should boot with
|
||||
the new software version.
|
||||
1. Done.
|
||||
|
||||
|
||||
1. Done.
|
@ -1,15 +1,18 @@
|
||||
---
|
||||
title: Monitor Android Traffic with Wireshark (Windows)
|
||||
layout: default
|
||||
created: 2014-05-15 17:11:42 +0200
|
||||
updated: 2014-05-15 17:11:42 +0200
|
||||
toc: false
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2014/05/15/monitor-android-traffic-with-wireshark-windows.html
|
||||
tags:
|
||||
- know-how
|
||||
- hacking
|
||||
- android
|
||||
- wireshark
|
||||
- know-how
|
||||
- hacking
|
||||
- android
|
||||
- wireshark
|
||||
title: Monitor Android Traffic with Wireshark (Windows)
|
||||
toc: false
|
||||
updated: 2014-05-15 17:11:42 +0200
|
||||
---
|
||||
|
||||
Preparation
|
||||
===========
|
||||
|
||||
@ -32,4 +35,4 @@ Open 3 shells. Run these commands:
|
||||
|
||||
3rd shell:
|
||||
|
||||
ncat 127.0.0.1 11233 | "C:\Program Files\Wireshark\Wireshark.exe" -k -i -
|
||||
ncat 127.0.0.1 11233 | "C:\Program Files\Wireshark\Wireshark.exe" -k -i -
|
@ -1,18 +1,21 @@
|
||||
---
|
||||
title: Display density on Android
|
||||
language: en
|
||||
layout: default
|
||||
created: 2015-12-02 17:19:42 +0200
|
||||
updated: 2015-12-02 17:19:42 +0200
|
||||
toc: false
|
||||
language: en
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2015/12/02/display-density-on-android.html
|
||||
tags:
|
||||
- know-how
|
||||
- hacking
|
||||
- android
|
||||
- display
|
||||
- resolution
|
||||
- lcd
|
||||
- know-how
|
||||
- hacking
|
||||
- android
|
||||
- display
|
||||
- resolution
|
||||
- lcd
|
||||
title: Display density on Android
|
||||
toc: false
|
||||
updated: 2015-12-02 17:19:42 +0200
|
||||
---
|
||||
|
||||
Methods
|
||||
=======
|
||||
|
||||
@ -114,4 +117,4 @@ you use **both** methods and set them to the same value, everything will look
|
||||
just fine.
|
||||
</div></p>
|
||||
|
||||
More info at the [xda forum](http://forum.xda-developers.com/nexus-9/general/guide-little-trick-improvimg-nexus-9-t3224931).
|
||||
More info at the [xda forum](http://forum.xda-developers.com/nexus-9/general/guide-little-trick-improvimg-nexus-9-t3224931).
|
@ -1,16 +1,19 @@
|
||||
---
|
||||
title: AudioMate Hardware
|
||||
layout: default
|
||||
created: 2009-06-27 00:13:04 +0200
|
||||
updated: 2009-06-26 00:41:29 +0200
|
||||
toc: false
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2009/06/27/audiomate-hardware.html
|
||||
tags:
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- audiomate
|
||||
- allsound
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- audiomate
|
||||
- allsound
|
||||
title: AudioMate Hardware
|
||||
toc: false
|
||||
updated: 2009-06-26 00:41:29 +0200
|
||||
---
|
||||
|
||||
Opened with front panel
|
||||
=======================
|
||||
|
||||
@ -59,4 +62,4 @@ Back of Front PCB
|
||||
*[ICs]: Integrated Circuits
|
||||
*[CPU]: Central Processing Unit
|
||||
*[CPLD]: Complex Programmable Logic Device
|
||||
*[FIFO]: First In, First Out
|
||||
*[FIFO]: First In, First Out
|
@ -1,17 +1,20 @@
|
||||
---
|
||||
title: AudioMate Firmware
|
||||
layout: default
|
||||
created: 2009-01-26 00:47:15 +0100
|
||||
updated: 2016-02-01 17:42:11 +0100
|
||||
toc: false
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2009/01/26/audiomate-firmware.html
|
||||
tags:
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- audiomate
|
||||
- allsound
|
||||
- firmware
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- audiomate
|
||||
- allsound
|
||||
- firmware
|
||||
title: AudioMate Firmware
|
||||
toc: false
|
||||
updated: 2016-02-01 17:42:11 +0100
|
||||
---
|
||||
|
||||
Download
|
||||
========
|
||||
|
||||
@ -93,4 +96,4 @@ A user called "tidy" has found out what the header bytes are meaning and how che
|
||||
> The checksum is calculated by interpreting the file as a little endian int16 stream, adding up its
|
||||
> values, truncating the 16LSBs after every addition and calculating the value that is missing to
|
||||
> sum up to 0x10000. I.e. if one calculates the checksum as described over the whole file including
|
||||
> the calculated checksum the result has to be zero.
|
||||
> the calculated checksum the result has to be zero.
|
@ -1,18 +1,21 @@
|
||||
---
|
||||
title: Acer TravelMate 203TX
|
||||
language: de
|
||||
layout: default
|
||||
created: 2008-07-16 08:29:10 +0200
|
||||
updated: 2008-07-16 08:29:10 +0200
|
||||
toc: false
|
||||
language: de
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2008/07/16/acer-travelmate-203tx-de.html
|
||||
tags:
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- bios
|
||||
- passwords
|
||||
- acer
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- bios
|
||||
- passwords
|
||||
- acer
|
||||
title: Acer TravelMate 203TX
|
||||
toc: false
|
||||
updated: 2008-07-16 08:29:10 +0200
|
||||
---
|
||||
|
||||
1. Öffne die Klappe.
|
||||
Hier siehst Du die "Schultern", das QuickAccess-Panel und die Tastatur:
|
||||
![]({{ site.url }}/assets/acer203tx1.jpg)
|
||||
@ -37,4 +40,4 @@ tags:
|
||||
sie einrastet. Danach, setz das QuickAccess-Panel wieder ein (Einsetzen und nach links schieben). Und zu guter
|
||||
Letzt, die "Schultern".
|
||||
|
||||
[Zurück zur Übersicht.]({% post_url 2009-10-30-bios-passwords-de %})
|
||||
[Zurück zur Übersicht.]({% post_url 2009-10-30-bios-passwords-de %})
|
@ -1,18 +1,21 @@
|
||||
---
|
||||
title: Baycom Worldbook II
|
||||
layout: default
|
||||
created: 2008-07-20 22:18:02 +0200
|
||||
updated: 2008-07-20 22:18:02 +0200
|
||||
toc: false
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2008/07/20/baycom-worldbook-ii.html
|
||||
tags:
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- bios
|
||||
- passwords
|
||||
- baycom
|
||||
- worldbook
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- bios
|
||||
- passwords
|
||||
- baycom
|
||||
- worldbook
|
||||
title: Baycom Worldbook II
|
||||
toc: false
|
||||
updated: 2008-07-20 22:18:02 +0200
|
||||
---
|
||||
|
||||
1. Open the lid.
|
||||
1. Remove the keyboard. Proceed as follows:
|
||||
First use a flat screwdriver to get unter the keyboard at the green line. Perhaps you have to push in the small clip
|
||||
@ -29,4 +32,4 @@ tags:
|
||||
battery housing.
|
||||
1. Replace the keyboard. Make sure it snaps into all clips. Now, the BIOS (incl. the password) should be erased.
|
||||
|
||||
[Back to overview.]({% post_url 2009-10-30-bios-passwords %})
|
||||
[Back to overview.]({% post_url 2009-10-30-bios-passwords %})
|
@ -1,18 +1,21 @@
|
||||
---
|
||||
title: COMPAQ Armada
|
||||
layout: default
|
||||
created: 2008-07-20 22:19:00 +0200
|
||||
updated: 2008-07-20 22:19:00 +0200
|
||||
toc: false
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2008/07/20/compaq-armada.html
|
||||
tags:
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- bios
|
||||
- passwords
|
||||
- compaq
|
||||
- armada
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- bios
|
||||
- passwords
|
||||
- compaq
|
||||
- armada
|
||||
title: COMPAQ Armada
|
||||
toc: false
|
||||
updated: 2008-07-20 22:19:00 +0200
|
||||
---
|
||||
|
||||
This is a short one:
|
||||
|
||||
1. Remove the battery, the AC cable and the BIOS battery
|
||||
@ -20,4 +23,4 @@ This is a short one:
|
||||
1. Insert the AC cable into the notebook and **DON'T PRESS ANYTHING**
|
||||
1. After 5 seconds, the notebook should turn itself on and the password should be gone.
|
||||
|
||||
[Back to overview.]({% post_url 2009-10-30-bios-passwords %})
|
||||
[Back to overview.]({% post_url 2009-10-30-bios-passwords %})
|
@ -1,18 +1,21 @@
|
||||
---
|
||||
title: DELL Latitude series
|
||||
layout: default
|
||||
created: 2008-07-20 22:26:53 +0200
|
||||
updated: 2008-07-20 22:25:53 +0200
|
||||
toc: false
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2008/07/20/dell-latitude-series.html
|
||||
tags:
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- bios
|
||||
- passwords
|
||||
- dell
|
||||
- latitude
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- bios
|
||||
- passwords
|
||||
- dell
|
||||
- latitude
|
||||
title: DELL Latitude series
|
||||
toc: false
|
||||
updated: 2008-07-20 22:25:53 +0200
|
||||
---
|
||||
|
||||
These ones are something different. DELL notebooks save their BIOS password in an EEPROM-chip so it isn't deleted when
|
||||
you short-circuit the BIOS battery or something like that.
|
||||
|
||||
@ -47,4 +50,4 @@ breach or because of a BIOS upgrade). The generated universal password doesn't w
|
||||
Also read the DELL-section under [General strategies]({% post_url 2009-10-30-bios-passwords %}#dell_notebooks).
|
||||
|
||||
|
||||
[Back to overview.]({% post_url 2009-10-30-bios-passwords %})
|
||||
[Back to overview.]({% post_url 2009-10-30-bios-passwords %})
|
@ -1,19 +1,22 @@
|
||||
---
|
||||
title: Fujitsu-Siemens Lifebook E-Series
|
||||
layout: default
|
||||
created: 2008-07-20 15:33:11 +0200
|
||||
updated: 2008-07-20 15:33:11 +0200
|
||||
toc: false
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2008/07/20/fujitsu-siemens-lifebook-e-series.html
|
||||
tags:
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- bios
|
||||
- passwords
|
||||
- fujitsu
|
||||
- siemens
|
||||
- lifebook
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- bios
|
||||
- passwords
|
||||
- fujitsu
|
||||
- siemens
|
||||
- lifebook
|
||||
title: Fujitsu-Siemens Lifebook E-Series
|
||||
toc: false
|
||||
updated: 2008-07-20 15:33:11 +0200
|
||||
---
|
||||
|
||||
1. Turn the notebook on its lid, plug out the power cord, remove the battery and the CD-ROM drive
|
||||
1. Remove the screws marked below:
|
||||
|
||||
@ -39,4 +42,4 @@ tags:
|
||||
says you have to take your notebook to a service point to let it be done. (because the Lifebook E-series is **so**
|
||||
secure LOL )
|
||||
|
||||
[Back to overview.]({% post_url 2009-10-30-bios-passwords %})
|
||||
[Back to overview.]({% post_url 2009-10-30-bios-passwords %})
|
@ -1,18 +1,21 @@
|
||||
---
|
||||
title: SONY VAIO
|
||||
layout: default
|
||||
created: 2008-07-20 15:44:48 +0200
|
||||
updated: 2008-07-20 17:34:22 +0200
|
||||
toc: false
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2008/07/20/sony-vaio.html
|
||||
tags:
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- bios
|
||||
- passwords
|
||||
- sony
|
||||
- vaio
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- bios
|
||||
- passwords
|
||||
- sony
|
||||
- vaio
|
||||
title: SONY VAIO
|
||||
toc: false
|
||||
updated: 2008-07-20 17:34:22 +0200
|
||||
---
|
||||
|
||||
In the newer SONY VAIO Notebooks, the BIOS password is no longer stored in the volatile CMOS-area but on an EEPROM.
|
||||
|
||||
Jean Delvare has published [his results](http://khali.linux-fr.org/vaio/eeprom.html) of an analysis of various Sony
|
||||
@ -116,4 +119,4 @@ This is a naked SONY VAIO V505:
|
||||
*[CD]: Compact Disc
|
||||
*[FAT]: File Allocation Table
|
||||
*[RAM]: Random Access Memory
|
||||
*[TFT]: Thin Film Transistor
|
||||
*[TFT]: Thin Film Transistor
|
@ -1,18 +1,21 @@
|
||||
---
|
||||
title: DELL Latitude CPi series
|
||||
layout: default
|
||||
created: 2008-07-21 19:19:56 +0200
|
||||
updated: 2008-07-21 19:19:56 +0200
|
||||
toc: false
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2008/07/21/dell-latitude-cpi-series.html
|
||||
tags:
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- bios
|
||||
- passwords
|
||||
- dell
|
||||
- latitude
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- bios
|
||||
- passwords
|
||||
- dell
|
||||
- latitude
|
||||
title: DELL Latitude CPi series
|
||||
toc: false
|
||||
updated: 2008-07-21 19:19:56 +0200
|
||||
---
|
||||
|
||||
Thanks to *Heiko Kehr*. (Everything was done according to [this manual](http://www.darkmagic.org/mike/dell-tag/dell/dell.html).)
|
||||
|
||||
1. You can easily remove the keyboard after loosing the six screws. Pay attention that you lift the keyboard equally on
|
||||
@ -41,4 +44,4 @@ Thanks to *Heiko Kehr*. (Everything was done according to [this manual](http://w
|
||||
![]({{ site.url }}/assets/dellcpi_7.jpg)
|
||||
|
||||
|
||||
[Back to overview.]({% post_url 2009-10-30-bios-passwords %})
|
||||
[Back to overview.]({% post_url 2009-10-30-bios-passwords %})
|
@ -1,18 +1,21 @@
|
||||
---
|
||||
title: GERICOM Webboy
|
||||
layout: default
|
||||
created: 2008-07-21 19:26:28 +0200
|
||||
updated: 2008-07-21 19:26:28 +0200
|
||||
toc: false
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2008/07/21/gericom-webboy.html
|
||||
tags:
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- bios
|
||||
- passwords
|
||||
- gericom
|
||||
- webboy
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- bios
|
||||
- passwords
|
||||
- gericom
|
||||
- webboy
|
||||
title: GERICOM Webboy
|
||||
toc: false
|
||||
updated: 2008-07-21 19:26:28 +0200
|
||||
---
|
||||
|
||||
1. Turn the notebook onto its lid and remove the power plug and battery
|
||||
1. Remove the screws of the top left cover and open it. You will find the CPU-Cooler.
|
||||
![The area accessible through the top-left opening on the bottom side]({{ site.url }}/assets/gcwb_1.jpg)
|
||||
@ -26,4 +29,4 @@ tags:
|
||||
the middle of the CPU) is a death sentence to the CPU. And NEVER boot the notebook without CPU-Cooling!
|
||||
|
||||
|
||||
[Back to overview.]({% post_url 2009-10-30-bios-passwords %})
|
||||
[Back to overview.]({% post_url 2009-10-30-bios-passwords %})
|
@ -1,22 +1,25 @@
|
||||
---
|
||||
title: IBM PS/2 Aptiva
|
||||
layout: default
|
||||
created: 2008-07-21 19:26:56 +0200
|
||||
updated: 2008-07-21 19:26:56 +0200
|
||||
toc: false
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2008/07/21/ibm-ps2-aptiva.html
|
||||
tags:
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- bios
|
||||
- passwords
|
||||
- ibm
|
||||
- aptiva
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- bios
|
||||
- passwords
|
||||
- ibm
|
||||
- aptiva
|
||||
title: IBM PS/2 Aptiva
|
||||
toc: false
|
||||
updated: 2008-07-21 19:26:56 +0200
|
||||
---
|
||||
|
||||
This is a short one:
|
||||
|
||||
For skipping the password check, you have to hold down both mousebuttons after power-on until the first beep.
|
||||
If this doesn't work, try to press both mousebuttons repeatedly.
|
||||
|
||||
|
||||
[Back to overview.]({% post_url 2009-10-30-bios-passwords %})
|
||||
[Back to overview.]({% post_url 2009-10-30-bios-passwords %})
|
@ -1,18 +1,21 @@
|
||||
---
|
||||
title: IBM ThinkPad series
|
||||
layout: default
|
||||
created: 2008-07-21 19:50:40 +0200
|
||||
updated: 2008-07-21 19:50:40 +0200
|
||||
toc: true
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2008/07/21/ibm-thinkpad-series.html
|
||||
tags:
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- bios
|
||||
- passwords
|
||||
- ibm
|
||||
- thinkpad
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- bios
|
||||
- passwords
|
||||
- ibm
|
||||
- thinkpad
|
||||
title: IBM ThinkPad series
|
||||
toc: true
|
||||
updated: 2008-07-21 19:50:40 +0200
|
||||
---
|
||||
|
||||
Please also see [this homepage](http://www.ja.axxs.net/unlock/) for more information regarding removing passwords from
|
||||
IBM ThinkPads.
|
||||
|
||||
@ -319,4 +322,4 @@ The hard disk password is stored on the hard disk.
|
||||
1. Reinstall the DIMM cover.
|
||||
|
||||
|
||||
[Back to overview.]({% post_url 2009-10-30-bios-passwords %})
|
||||
[Back to overview.]({% post_url 2009-10-30-bios-passwords %})
|
@ -1,17 +1,20 @@
|
||||
---
|
||||
title: Toshiba notebooks
|
||||
layout: default
|
||||
created: 2008-07-21 19:59:58 +0200
|
||||
updated: 2008-07-21 19:59:58 +0200
|
||||
toc: false
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2008/07/21/toshiba-notebooks.html
|
||||
tags:
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- bios
|
||||
- passwords
|
||||
- toshiba
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- bios
|
||||
- passwords
|
||||
- toshiba
|
||||
title: Toshiba notebooks
|
||||
toc: false
|
||||
updated: 2008-07-21 19:59:58 +0200
|
||||
---
|
||||
|
||||
I found three different ways for bypassing the password-check on a Toshiba-notebook. I had no chance to test them, so I
|
||||
can't promise they will work.
|
||||
|
||||
@ -62,4 +65,4 @@ This is a 25pin male connector which fits onto the printer port. You have to sho
|
||||
After plugging the modified connector onto the notebook, the BIOS shouldn't ask for any password.
|
||||
|
||||
|
||||
[Back to overview.]({% post_url 2009-10-30-bios-passwords %})
|
||||
[Back to overview.]({% post_url 2009-10-30-bios-passwords %})
|
@ -1,18 +1,21 @@
|
||||
---
|
||||
title: Shameless Rip-Off by pc-doctors.com
|
||||
layout: default
|
||||
created: 2010-01-13 02:13:02 +0100
|
||||
updated: 2010-04-02 00:27:30 +0200
|
||||
toc: false
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2010/01/13/shameless-rip-off-by-pc-doctors.com.html
|
||||
tags:
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- bios
|
||||
- passwords
|
||||
- ripoff
|
||||
- copycat
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- bios
|
||||
- passwords
|
||||
- ripoff
|
||||
- copycat
|
||||
title: Shameless Rip-Off by pc-doctors.com
|
||||
toc: false
|
||||
updated: 2010-04-02 00:27:30 +0200
|
||||
---
|
||||
|
||||
I recently found some of my manuals to remove BIOS passwords in a very familiar design on a
|
||||
[totally foreign site](http://www.pc-doctors.com/other/free-info/):
|
||||
|
||||
@ -44,4 +47,4 @@ If anyone wants to pay him a "nice" visit ... [Google him](http://google.com/sea
|
||||
</div></p>
|
||||
|
||||
|
||||
[Back to overview.]({% post_url 2009-10-30-bios-passwords %})
|
||||
[Back to overview.]({% post_url 2009-10-30-bios-passwords %})
|
@ -1,17 +1,20 @@
|
||||
---
|
||||
title: Backup Savegames on Nintendo DS
|
||||
language: en
|
||||
layout: default
|
||||
created: 2009-03-15 14:34:37 +0100
|
||||
updated: 2009-03-15 22:16:40 +0100
|
||||
toc: false
|
||||
language: en
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2009/03/15/backup-savegames-on-nintendo-ds.html
|
||||
tags:
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- nintendo
|
||||
- gaming
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- nintendo
|
||||
- gaming
|
||||
title: Backup Savegames on Nintendo DS
|
||||
toc: false
|
||||
updated: 2009-03-15 22:16:40 +0100
|
||||
---
|
||||
|
||||
To backup savegames from your cartridges (e.g. for use with a ROM dump on a card like the
|
||||
[CycloDS Evolution]({% post_url 2009-03-22-cyclods-evolution %})) there are two ways.
|
||||
|
||||
@ -45,4 +48,4 @@ Wi-Fi method
|
||||
I did not test this method, but it needs a working Wi-Fi-connection from your NDS to your Access Point and some PC in
|
||||
your network. You'll have to setup a FTP server. Download the *NDS Backup Tool WiFi* from [Rudolph](http://www009.upp.so-net.ne.jp/rudolph/nds/Backup/),
|
||||
unpack to your microSD and modify the file `NDS_Backup_Tool_Wifi.ini` and enter the IP, Port, Username and Password of
|
||||
your FTP server. The rest of the process should be similar to the above (despite of the switching cartridges).
|
||||
your FTP server. The rest of the process should be similar to the above (despite of the switching cartridges).
|
@ -1,17 +1,20 @@
|
||||
---
|
||||
title: EZFlash 3in1
|
||||
language: en
|
||||
layout: default
|
||||
created: 2009-03-15 15:49:39 +0100
|
||||
updated: 2009-03-15 22:17:41 +0100
|
||||
toc: false
|
||||
language: en
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2009/03/15/ezflash-3in1.html
|
||||
tags:
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- nintendo
|
||||
- gaming
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- nintendo
|
||||
- gaming
|
||||
title: EZFlash 3in1
|
||||
toc: false
|
||||
updated: 2009-03-15 22:17:41 +0100
|
||||
---
|
||||
|
||||
<img src="{{ site.url }}/assets/ez3in1.jpg" alt="" width="200" />
|
||||
|
||||
* **Homepage:** [ezflash.cn](http://www.ezflash.cn/home.htm)
|
||||
@ -32,4 +35,4 @@ The EZFlash 3in1 is a GBA-cartridge for the Slot2 of the NDS which provides the
|
||||
*[RAM]: Random Access Memory
|
||||
*[NDS]: Nintendo Dual Screen
|
||||
*[GBA]: Nintendo GameBoy Advance
|
||||
*[SRAM]: Static Random Access Memory
|
||||
*[SRAM]: Static Random Access Memory
|
@ -1,17 +1,20 @@
|
||||
---
|
||||
title: Wii Downloads
|
||||
language: en
|
||||
layout: default
|
||||
created: 2009-03-10 00:51:47 +0100
|
||||
updated: 2009-03-15 22:18:54 +0100
|
||||
toc: false
|
||||
language: en
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2009/03/10/wii-downloads.html
|
||||
tags:
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- nintendo
|
||||
- gaming
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- nintendo
|
||||
- gaming
|
||||
title: Wii Downloads
|
||||
toc: false
|
||||
updated: 2009-03-15 22:18:54 +0100
|
||||
---
|
||||
|
||||
The *Nintendo Channel* on the [Nintendo Wii]({% post_url 2009-03-10-nintendo-wii %}) allows you to download Demo
|
||||
versions of NDS games right to your NDS to play. Just do the following:
|
||||
|
||||
@ -20,4 +23,4 @@ versions of NDS games right to your NDS to play. Just do the following:
|
||||
1. click "Categories" on top
|
||||
1. select **DS Download Service**
|
||||
1. just select a game, wait for it to download
|
||||
1. follow the on-screen instructions
|
||||
1. follow the on-screen instructions
|
@ -1,17 +1,20 @@
|
||||
---
|
||||
title: ndstool
|
||||
language: en
|
||||
layout: default
|
||||
created: 2009-03-16 00:48:30 +0100
|
||||
updated: 2009-03-16 00:48:30 +0100
|
||||
toc: false
|
||||
language: en
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2009/03/16/ndstool.html
|
||||
tags:
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- nintendo
|
||||
- gaming
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- nintendo
|
||||
- gaming
|
||||
title: ndstool
|
||||
toc: false
|
||||
updated: 2009-03-16 00:48:30 +0100
|
||||
---
|
||||
|
||||
The `ndstool` can show header information of ROM files as well as extract the game logo or even the whole ROM contents.
|
||||
It also can recombine the extracted ROM contents to a working ROM again.
|
||||
|
||||
@ -134,4 +137,4 @@ ARM9 footer found.
|
||||
|
||||
Security data CRC (0x1000-0x2FFF) 0x6FFF
|
||||
Segment3 CRC (0x3000-0x3FFF) (NYI)
|
||||
~~~
|
||||
~~~
|
@ -1,17 +1,20 @@
|
||||
---
|
||||
title: Extract Sound from ROMs
|
||||
language: en
|
||||
layout: default
|
||||
created: 2009-03-17 20:41:05 +0100
|
||||
updated: 2009-03-17 20:41:05 +0100
|
||||
toc: false
|
||||
language: en
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2009/03/17/extract-sound-from-roms.html
|
||||
tags:
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- nintendo
|
||||
- gaming
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- nintendo
|
||||
- gaming
|
||||
title: Extract Sound from ROMs
|
||||
toc: false
|
||||
updated: 2009-03-17 20:41:05 +0100
|
||||
---
|
||||
|
||||
To extract sounds (or graphics) from a ROM, you'll need the [ndstool]({% post_url 2009-03-16-ndstool %})
|
||||
and [ndssndext](http://www.4shared.com/file/68276816/8092229e/ndssndext_v04.html).
|
||||
|
||||
@ -25,4 +28,4 @@ somewhere. This is a sound archive format. Now run this through the `ndssndext`
|
||||
wine ndssndext.exe sound_data.sdat
|
||||
|
||||
This creates a new folder which contains more folders with the actual contents from the `.sdat`-file. These can be MIDI
|
||||
files and/or (converted) WAV files.
|
||||
files and/or (converted) WAV files.
|
@ -1,17 +1,20 @@
|
||||
---
|
||||
title: CycloDS Evolution
|
||||
language: en
|
||||
layout: default
|
||||
created: 2009-03-10 01:04:17 +0100
|
||||
updated: 2009-03-22 13:01:57 +0100
|
||||
toc: false
|
||||
language: en
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2009/03/10/cyclods-evolution.html
|
||||
tags:
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- nintendo
|
||||
- gaming
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- nintendo
|
||||
- gaming
|
||||
title: CycloDS Evolution
|
||||
toc: false
|
||||
updated: 2009-03-22 13:01:57 +0100
|
||||
---
|
||||
|
||||
<img src="{{ site.url }}/assets/cyclodsevo.jpg" alt="" width="200" />
|
||||
|
||||
* **Homepage:** [cyclopsds.com](http://www.cyclopsds.com/)
|
||||
@ -39,4 +42,4 @@ is ~1,7 MiB. There's even a direct link to the latest version of the file:
|
||||
* <http://cheats.gbatemp.net/latest/user.evoCHEATS.zip>
|
||||
|
||||
You might also want to trim your `default.evoCheats` file down to 0 Bytes and make it read-only so that only the newer
|
||||
cheats database is used.
|
||||
cheats database is used.
|
@ -1,17 +1,20 @@
|
||||
---
|
||||
title: Dump Games
|
||||
language: en
|
||||
layout: default
|
||||
created: 2009-03-15 14:41:43 +0100
|
||||
updated: 2009-03-23 01:04:47 +0100
|
||||
toc: false
|
||||
language: en
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2009/03/15/dump-games.html
|
||||
tags:
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- nintendo
|
||||
- gaming
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- nintendo
|
||||
- gaming
|
||||
title: Dump Games
|
||||
toc: false
|
||||
updated: 2009-03-23 01:04:47 +0100
|
||||
---
|
||||
|
||||
Dumping game cartridges is done the same way like [dumping savegames]({% post_url 2009-03-15-backup-savegames %}).
|
||||
|
||||
|
||||
@ -56,4 +59,4 @@ Games which use the WiFi feature mostly store their connection info in this empt
|
||||
</div></p>
|
||||
|
||||
A good trimmer is [NDSTokyoTrim](http://techsuki.net/nintendo-ds-rom-trimmer/) which can detect WiFi-games and leaves
|
||||
the space for their settings.
|
||||
the space for their settings.
|
@ -1,17 +1,20 @@
|
||||
---
|
||||
title: Favourite NDS Games
|
||||
language: en
|
||||
layout: default
|
||||
created: 2009-03-23 00:34:05 +0100
|
||||
updated: 2009-10-28 02:04:10 +0100
|
||||
toc: false
|
||||
language: en
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2009/03/23/favourite-nds-games.html
|
||||
tags:
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- nintendo
|
||||
- gaming
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- nintendo
|
||||
- gaming
|
||||
title: Favourite NDS Games
|
||||
toc: false
|
||||
updated: 2009-10-28 02:04:10 +0100
|
||||
---
|
||||
|
||||
Here's a list of my favorite games:
|
||||
|
||||
| Game | Genre | Comment |
|
||||
@ -21,4 +24,4 @@ Here's a list of my favorite games:
|
||||
| Another Code | Adventure | almost as great as Time Hollow |
|
||||
| Korg DS-10 | Music | |
|
||||
| Crosswords DS | Puzzle | |
|
||||
| Picross | Puzzle | |
|
||||
| Picross | Puzzle | |
|
@ -1,17 +1,20 @@
|
||||
---
|
||||
title: Wii Twilight Hack
|
||||
language: en
|
||||
layout: default
|
||||
created: 2008-07-18 22:44:40 +0200
|
||||
updated: 2008-07-18 22:44:40 +0200
|
||||
toc: false
|
||||
language: en
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2008/07/18/wii-twilight-hack.html
|
||||
tags:
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- nintendo
|
||||
- wii
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- nintendo
|
||||
- wii
|
||||
title: Wii Twilight Hack
|
||||
toc: false
|
||||
updated: 2008-07-18 22:44:40 +0200
|
||||
---
|
||||
|
||||
The Twilight Hack is described at [Code Retard](http://www.coderetard.com/2008/05/07/install-wii-virtual-console-game-channels-with-wad-installer/).
|
||||
It works by using a bug in *Zelda - Twilight Princess*. In short is goes like this:
|
||||
|
||||
@ -23,4 +26,4 @@ It works by using a bug in *Zelda - Twilight Princess*. In short is goes like th
|
||||
1. get *Zelda - Twilight Princess*, run it at least once on your Wii to create the savegame slot
|
||||
1. insert SD card, delete savegame on your Wii and copy the Twilight Hack savegame from your SD card
|
||||
1. now run *Zelda*, load game, walk towards the guy and talk to him
|
||||
1. the screen goes black and shows the WAD Installer which installs all files found in `/wad`
|
||||
1. the screen goes black and shows the WAD Installer which installs all files found in `/wad`
|
@ -1,17 +1,20 @@
|
||||
---
|
||||
title: Wii Savegame Editing
|
||||
language: en
|
||||
layout: default
|
||||
created: 2008-07-23 21:31:36 +0200
|
||||
updated: 2008-07-23 21:31:58 +0200
|
||||
toc: false
|
||||
language: en
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2008/07/23/wii-savegame-editing.html
|
||||
tags:
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- nintendo
|
||||
- wii
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- nintendo
|
||||
- wii
|
||||
title: Wii Savegame Editing
|
||||
toc: false
|
||||
updated: 2008-07-23 21:31:58 +0200
|
||||
---
|
||||
|
||||
Savegames, as well as almost all other files, are encrypted using some crypto magic. The keys were found and now there
|
||||
are some tools to decrypt and recrypt the savegames called [Segher's Wii.git](http://wiibrew.org/wiki/Segher's_Wii.git).
|
||||
|
||||
@ -24,4 +27,4 @@ After that, find the 3 interesting keys on [HackMii](http://hackmii.com/2008/04/
|
||||
Create a directory `~/.wii` and put the 3 keys in ***binary*** form in there. (No text file with the values as numbers
|
||||
and letters but binary files with exactly 16 Bytes per file. Use `ghex2` or such.)
|
||||
|
||||
If everything is correct, you can uncompress savegames data.bin using `tachtig` and recompress them using `twintig`.
|
||||
If everything is correct, you can uncompress savegames data.bin using `tachtig` and recompress them using `twintig`.
|
@ -1,17 +1,20 @@
|
||||
---
|
||||
title: Wii MPlayer and Samba
|
||||
language: en
|
||||
layout: default
|
||||
created: 2009-01-18 23:26:15 +0100
|
||||
updated: 2009-01-18 23:26:15 +0100
|
||||
toc: false
|
||||
language: en
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2009/01/18/wii-mplayer-and-samba.html
|
||||
tags:
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- nintendo
|
||||
- wii
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- nintendo
|
||||
- wii
|
||||
title: Wii MPlayer and Samba
|
||||
toc: false
|
||||
updated: 2009-01-18 23:26:15 +0100
|
||||
---
|
||||
|
||||
The [MPlayer Christmas Edition](http://www.elotrolado.net/hilo_mplayer-christmas-edition_1157252) for Wii supports SMB
|
||||
browsing. You can configure the login data of the desired SMB share through the `smb.conf` on the SD card as follows:
|
||||
|
||||
@ -25,4 +28,4 @@ port=445
|
||||
|
||||
For it to work, you **MUST** use a dedicated user in Samba. Guest shares won't work. Also make sure you have
|
||||
**`security=user`** set in your Linux `smb.conf`. For more information see
|
||||
[this thread](http://www.tehskeen.com/forums/showpost.php?p=48403&postcount=76) as tehskeen.com.
|
||||
[this thread](http://www.tehskeen.com/forums/showpost.php?p=48403&postcount=76) as tehskeen.com.
|
@ -1,17 +1,20 @@
|
||||
---
|
||||
title: Nintendo Wii Encryption Keys
|
||||
language: en
|
||||
layout: default
|
||||
created: 2009-01-30 12:56:51 +0100
|
||||
updated: 2009-01-30 13:00:54 +0100
|
||||
toc: false
|
||||
language: en
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2009/01/30/nintendo-wii-encryption-keys.html
|
||||
tags:
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- nintendo
|
||||
- wii
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- nintendo
|
||||
- wii
|
||||
title: Nintendo Wii Encryption Keys
|
||||
toc: false
|
||||
updated: 2009-01-30 13:00:54 +0100
|
||||
---
|
||||
|
||||
To use these keys with e.g. [Segher's Wii.git](http://wiibrew.org/wiki/Segher's_Wii.git), you have to put them in binary
|
||||
files, i.e. use a Hex-Editor and paste these keys so that you get a 16 Byte long file for each key. Segher's tools
|
||||
expect them to be located in `~/.wii/<keyname>`, e.g. `~/.wii/common-key`.
|
||||
@ -37,4 +40,4 @@ sd-iv
|
||||
md5-blanker
|
||||
===========
|
||||
|
||||
0e65378199be4517ab06ec22451a5793
|
||||
0e65378199be4517ab06ec22451a5793
|
@ -1,17 +1,20 @@
|
||||
---
|
||||
title: Favourite Wii Games
|
||||
language: en
|
||||
layout: default
|
||||
created: 2009-03-23 00:38:45 +0100
|
||||
updated: 2009-03-23 00:38:45 +0100
|
||||
toc: false
|
||||
language: en
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2009/03/23/favourite-wii-games.html
|
||||
tags:
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- nintendo
|
||||
- wii
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- nintendo
|
||||
- wii
|
||||
title: Favourite Wii Games
|
||||
toc: false
|
||||
updated: 2009-03-23 00:38:45 +0100
|
||||
---
|
||||
|
||||
Here's a list of my favorite Wii games:
|
||||
|
||||
| Game | Genre | Comment |
|
||||
@ -21,4 +24,4 @@ Here's a list of my favorite Wii games:
|
||||
| Onslaught (WiiWare) | FPS | lots of fun playing this plain and straight forward shooter |
|
||||
| World of Goo (WiiWare) | Puzzle | very addictive |
|
||||
| Okami | Adventure | really great graphics, nice gameplay |
|
||||
| NfS: Undercover | Racing | made a lot of fun playing it with the GC controller |
|
||||
| NfS: Undercover | Racing | made a lot of fun playing it with the GC controller |
|
@ -1,17 +1,20 @@
|
||||
---
|
||||
title: Mii to NDS Transfer
|
||||
language: en
|
||||
layout: default
|
||||
created: 2009-03-10 01:08:20 +0100
|
||||
updated: 2009-05-22 00:16:54 +0200
|
||||
toc: false
|
||||
language: en
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2009/03/10/mii-to-nds-transfer.html
|
||||
tags:
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- nintendo
|
||||
- wii
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- nintendo
|
||||
- wii
|
||||
title: Mii to NDS Transfer
|
||||
toc: false
|
||||
updated: 2009-05-22 00:16:54 +0200
|
||||
---
|
||||
|
||||
The *Mii Channel* has a hidden **Transfer to DS** option. According to [cubed3.com](http://www.cubed3.com/news/11049)
|
||||
the only NDS game using this for now is the Japanese title *Aruite Wakaru Seikatsu Rhythm DS*. To enable the feature,
|
||||
do this:
|
||||
@ -20,4 +23,4 @@ do this:
|
||||
1. push <kbd>A</kbd> once
|
||||
1. push <kbd>B</kbd> once
|
||||
1. push <kbd>1</kbd> once
|
||||
1. hold <kbd>2</kbd>
|
||||
1. hold <kbd>2</kbd>
|
@ -1,17 +1,20 @@
|
||||
---
|
||||
title: Wii Homebrew Channel
|
||||
language: en
|
||||
layout: default
|
||||
created: 2009-10-07 22:46:34 +0200
|
||||
updated: 2009-10-07 22:48:41 +0200
|
||||
toc: false
|
||||
language: en
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2009/10/07/wii-homebrew-channel.html
|
||||
tags:
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- nintendo
|
||||
- wii
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- nintendo
|
||||
- wii
|
||||
title: Wii Homebrew Channel
|
||||
toc: false
|
||||
updated: 2009-10-07 22:48:41 +0200
|
||||
---
|
||||
|
||||
Install on 4.2e
|
||||
===============
|
||||
|
||||
@ -24,4 +27,4 @@ Install on 4.2e
|
||||
Wii then try again)
|
||||
* select *Yes*
|
||||
* follow the instructions (you most probably want to install all 3 options - try to install BootMii as boot2, if it
|
||||
doesn't work, install as IOS)
|
||||
doesn't work, install as IOS)
|
@ -1,17 +1,20 @@
|
||||
---
|
||||
title: USBLoader GX for the Wii
|
||||
language: en
|
||||
layout: default
|
||||
created: 2010-05-08 12:47:47 +0200
|
||||
updated: 2010-05-08 12:47:47 +0200
|
||||
toc: false
|
||||
language: en
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2010/05/08/usbloader-gx-for-the-wii.html
|
||||
tags:
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- nintendo
|
||||
- wii
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- nintendo
|
||||
- wii
|
||||
title: USBLoader GX for the Wii
|
||||
toc: false
|
||||
updated: 2010-05-08 12:47:47 +0200
|
||||
---
|
||||
|
||||
* **Homepage:** <http://usbloadergx.koureio.net/>
|
||||
|
||||
|
||||
@ -24,4 +27,4 @@ Foreign games settings
|
||||
* If `Error #02` appears, activate the *Error 02 Fix*
|
||||
* If you only see a black screen after launching the game, make sure, the Game is not Japanese- or English-only. If so,
|
||||
change the *Game language* setting to match that of the game. (Some games don't have a fall-back setting for their
|
||||
language, so they will crash if the Wii is set to another language than supported.)
|
||||
language, so they will crash if the Wii is set to another language than supported.)
|
@ -1,17 +1,20 @@
|
||||
---
|
||||
title: Backup Wii games to USB HDD
|
||||
language: en
|
||||
layout: default
|
||||
created: 2009-05-24 19:35:29 +0200
|
||||
updated: 2010-11-14 16:05:02 +0100
|
||||
toc: false
|
||||
language: en
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2009/05/24/backup-wii-games-to-usb-hdd.html
|
||||
tags:
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- nintendo
|
||||
- wii
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- nintendo
|
||||
- wii
|
||||
title: Backup Wii games to USB HDD
|
||||
toc: false
|
||||
updated: 2010-11-14 16:05:02 +0100
|
||||
---
|
||||
|
||||
* [mikeandheth.com](http://www.mikeandheth.com/games/97-connect-wii-usb-hard-drive.html)
|
||||
* [gbatemp.net](http://wiki.gbatemp.net/wiki/index.php?title=USB_Loader_Releases) --- List of USB Loader programs for the Wii
|
||||
* [gbatemp.net](http://wiki.gbatemp.net/wiki/index.php?title=WBFS_Managers) --- List of WBFS Managers (programs to copy game ISO files to USB via your PC)
|
||||
@ -107,4 +110,4 @@ Play Call of Duty: Black Ops
|
||||
============================
|
||||
|
||||
To play CoD:BO (and not get stuck in the *"Loading…"*-screen), you'll need the cIOS rev20b found [here](http://filetrip.net/f12411-cIOS-Installer-Xr20b.html).
|
||||
Install using IOS249 from base 57 into slot 249. After that, the game should work.
|
||||
Install using IOS249 from base 57 into slot 249. After that, the game should work.
|
@ -1,17 +1,20 @@
|
||||
---
|
||||
title: DMS4Pro
|
||||
language: en
|
||||
layout: default
|
||||
created: 2008-12-05 00:31:21 +0100
|
||||
updated: 2008-12-05 00:31:21 +0100
|
||||
toc: false
|
||||
language: en
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2008/12/05/dms4pro.html
|
||||
tags:
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- sony
|
||||
- playstation
|
||||
- pstwo
|
||||
- dms4pro
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- sony
|
||||
- playstation
|
||||
- pstwo
|
||||
- dms4pro
|
||||
title: DMS4Pro
|
||||
toc: false
|
||||
updated: 2008-12-05 00:31:21 +0100
|
||||
---
|
||||
**Firmware:** [sksapps.com](http://www.sksapps.com/index.php?page=dms4.html) (Latest is 0.41)
|
||||
|
||||
**Firmware:** [sksapps.com](http://www.sksapps.com/index.php?page=dms4.html) (Latest is 0.41)
|
@ -1,17 +1,20 @@
|
||||
---
|
||||
title: OggSync for Windows Mobile
|
||||
language: en
|
||||
layout: default
|
||||
created: 2008-09-12 22:19:31 +0200
|
||||
updated: 2008-09-12 22:19:31 +0200
|
||||
toc: false
|
||||
language: en
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2008/09/12/oggsync-for-windows-mobile.html
|
||||
tags:
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- microsoft
|
||||
- windowsmobile
|
||||
- know-how
|
||||
- hacking
|
||||
- hardware
|
||||
- microsoft
|
||||
- windowsmobile
|
||||
title: OggSync for Windows Mobile
|
||||
toc: false
|
||||
updated: 2008-09-12 22:19:31 +0200
|
||||
---
|
||||
|
||||
**Tested Version:** 4.19
|
||||
|
||||
OggSync connects to `https://oggsync.com/r/r` or `https://oggsync.com/r/e` and sends the entered info (PayPal eMail or
|
||||
@ -71,4 +74,4 @@ you own and put this totally complicated PHP script onto it:
|
||||
<?php
|
||||
echo 'Pro';
|
||||
?>
|
||||
{% endhighlight %}
|
||||
{% endhighlight %}
|
@ -1,17 +1,20 @@
|
||||
---
|
||||
title: Sphairon AR860
|
||||
layout: default
|
||||
created: 2009-01-24 17:10:21 +0100
|
||||
updated: 2009-01-24 17:27:46 +0100
|
||||
toc: false
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2009/01/24/sphairon-ar860.html
|
||||
tags:
|
||||
- know-how
|
||||
- hardware
|
||||
- sphairon
|
||||
- ar860
|
||||
- router
|
||||
- dsl
|
||||
- know-how
|
||||
- hardware
|
||||
- sphairon
|
||||
- ar860
|
||||
- router
|
||||
- dsl
|
||||
title: Sphairon AR860
|
||||
toc: false
|
||||
updated: 2009-01-24 17:27:46 +0100
|
||||
---
|
||||
|
||||
The AR860 is shipped by e.g. *versatel* - configured as a DSL modem.
|
||||
|
||||
Admin accounts
|
||||
@ -39,4 +42,4 @@ Convert to Router
|
||||
=================
|
||||
|
||||
To switch from "Modem" mode to "Router" mode, there's a nice manual over at [versaforum.de](http://www.versaforum.de/forum/showthread.php?t=5378).
|
||||
Another manual is at [mhilfe.de](http://wiki.mhilfe.de/index.php?title=Sphairon_AR860).
|
||||
Another manual is at [mhilfe.de](http://wiki.mhilfe.de/index.php?title=Sphairon_AR860).
|
@ -1,15 +1,18 @@
|
||||
---
|
||||
title: hp Laserjet IIIp
|
||||
layout: default
|
||||
created: 2009-02-01 17:28:28 +0100
|
||||
updated: 2009-02-01 17:28:28 +0100
|
||||
toc: false
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2009/02/01/hp-laserjet-iiip.html
|
||||
tags:
|
||||
- know-how
|
||||
- hardware
|
||||
- hp
|
||||
- laserjet
|
||||
- know-how
|
||||
- hardware
|
||||
- hp
|
||||
- laserjet
|
||||
title: hp Laserjet IIIp
|
||||
toc: false
|
||||
updated: 2009-02-01 17:28:28 +0100
|
||||
---
|
||||
|
||||
Endless feeding
|
||||
===============
|
||||
|
||||
@ -26,4 +29,4 @@ Now you have different options:
|
||||
|
||||
* remove the rubber pads completely (don't wonder about the clicking noise when printing!)
|
||||
* replace the rubber pads
|
||||
* *my solution:* Put scotch tape on the sticky pads so that they don't stick to the coils anymore
|
||||
* *my solution:* Put scotch tape on the sticky pads so that they don't stick to the coils anymore
|
@ -1,16 +1,19 @@
|
||||
---
|
||||
title: MEDION BIOS settings
|
||||
layout: default
|
||||
created: 2009-02-02 02:24:33 +0100
|
||||
updated: 2009-02-08 14:42:42 +0100
|
||||
toc: false
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2009/02/02/medion-bios-settings.html
|
||||
tags:
|
||||
- know-how
|
||||
- hardware
|
||||
- medion
|
||||
- bios
|
||||
- settings
|
||||
- know-how
|
||||
- hardware
|
||||
- medion
|
||||
- bios
|
||||
- settings
|
||||
title: MEDION BIOS settings
|
||||
toc: false
|
||||
updated: 2009-02-08 14:42:42 +0100
|
||||
---
|
||||
|
||||
Some MEDION PCs have hidden BIOS settings. To get to them, get into the BIOS and press <kbd>F11</kbd>. If you're asked for a password, try `am8888egh` or `am8888egc`. Maybe you can even omit the last letter.
|
||||
|
||||
According to a MEDION employee, there are only 2 employees who know this password. Also it shouldn't be leaked to the net so that no one fools around with the settings.
|
||||
@ -18,4 +21,4 @@ Well, IMHO everyone should decide for his own whether he wants to risk damaging
|
||||
|
||||
More info: [PC Welt forums](http://www.pcwelt.de/forum/showthread.php?t=196865), [Wim's BIOS](http://www.wimsbios.com/phpBB2/viewtopic.php?t=7557)
|
||||
|
||||
*[IMHO]: In My Humble Opinion
|
||||
*[IMHO]: In My Humble Opinion
|
@ -1,16 +1,19 @@
|
||||
---
|
||||
title: Evoluent Vertical Mouse 3
|
||||
layout: default
|
||||
created: 2009-02-09 17:50:56 +0100
|
||||
updated: 2009-02-10 00:01:22 +0100
|
||||
toc: false
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2009/02/09/evoluent-vertical-mouse-3.html
|
||||
tags:
|
||||
- know-how
|
||||
- hardware
|
||||
- evoluent
|
||||
- verticalmouse
|
||||
- mouse
|
||||
- know-how
|
||||
- hardware
|
||||
- evoluent
|
||||
- verticalmouse
|
||||
- mouse
|
||||
title: Evoluent Vertical Mouse 3
|
||||
toc: false
|
||||
updated: 2009-02-10 00:01:22 +0100
|
||||
---
|
||||
|
||||
![Evoluent Vertical Mouse 3]({{ site.url }}/assets/vm3_sm.jpg)
|
||||
|
||||
* **Homepage:** [evoluent.com](http://www.evoluent.com/vm3.html)
|
||||
@ -51,4 +54,4 @@ My final `xinput` line looks like this:
|
||||
You could also map 9→6 and 2→7 to have the 2 additional buttons emulate *Wheel left* and *Wheel right*:
|
||||
|
||||
# input id: 1 2 3 4 5 6 7 8 9
|
||||
xinput set-button-map <device-id> 1 7 2 4 5 8 9 3 6
|
||||
xinput set-button-map <device-id> 1 7 2 4 5 8 9 3 6
|
@ -1,16 +1,19 @@
|
||||
---
|
||||
title: Logitech V400
|
||||
layout: default
|
||||
created: 2009-02-09 20:24:26 +0100
|
||||
updated: 2009-02-23 01:12:24 +0100
|
||||
toc: false
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2009/02/09/logitech-v400.html
|
||||
tags:
|
||||
- know-how
|
||||
- hardware
|
||||
- logitech
|
||||
- mouse
|
||||
- usb
|
||||
- know-how
|
||||
- hardware
|
||||
- logitech
|
||||
- mouse
|
||||
- usb
|
||||
title: Logitech V400
|
||||
toc: false
|
||||
updated: 2009-02-23 01:12:24 +0100
|
||||
---
|
||||
|
||||
![Logitech V400]({{ site.url }}/assets/logitech_v400.jpg)
|
||||
|
||||
* **Support:** [logitech.com](http://www.logitech.com/index.cfm/428/144&cl=us,en)
|
||||
@ -52,4 +55,4 @@ According to this the default configuration (`xinput set-button-map <device-id>
|
||||
If you prefer to swap the thumb buttons so that "Up" is *Thumb1* and "Down" is *Thumb2* you can do this using the following command:
|
||||
|
||||
# input id: 1 2 3 4 5 6 7 8 9
|
||||
xinput set-button-map <device-id> 1 2 3 4 5 6 7 9 8
|
||||
xinput set-button-map <device-id> 1 2 3 4 5 6 7 9 8
|
@ -1,16 +1,19 @@
|
||||
---
|
||||
title: Acer Aspire One
|
||||
layout: default
|
||||
created: 2008-09-28 19:33:49 +0200
|
||||
updated: 2009-03-29 18:35:53 +0200
|
||||
toc: false
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2008/09/28/acer-aspire-one.html
|
||||
tags:
|
||||
- know-how
|
||||
- hardware
|
||||
- acer
|
||||
- aspire
|
||||
- netbook
|
||||
- know-how
|
||||
- hardware
|
||||
- acer
|
||||
- aspire
|
||||
- netbook
|
||||
title: Acer Aspire One
|
||||
toc: false
|
||||
updated: 2009-03-29 18:35:53 +0200
|
||||
---
|
||||
|
||||
![Acer Aspire One]({{ site.url }}/assets/aspire-one.jpg)
|
||||
|
||||
* **Support page:** [support.acer-euro.com](http://support.acer-euro.com/drivers/notebook/as_one_150.html)
|
||||
@ -19,4 +22,4 @@ tags:
|
||||
{% for page in site.categories.acer-aspire-one %}
|
||||
<li><a href="{{ page.url }}">{{ page.title }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</ul>
|
@ -1,16 +1,19 @@
|
||||
---
|
||||
title: SIEMENS Gigaset M34 USB
|
||||
language: de
|
||||
layout: default
|
||||
created: 2009-04-11 23:12:19 +0200
|
||||
updated: 2009-04-11 23:12:19 +0200
|
||||
toc: false
|
||||
language: de
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2009/04/11/siemens-gigaset-m34-usb-de.html
|
||||
tags:
|
||||
- know-how
|
||||
- hardware
|
||||
- siemens
|
||||
- gigaset
|
||||
- know-how
|
||||
- hardware
|
||||
- siemens
|
||||
- gigaset
|
||||
title: SIEMENS Gigaset M34 USB
|
||||
toc: false
|
||||
updated: 2009-04-11 23:12:19 +0200
|
||||
---
|
||||
|
||||
Der [Gigaset M34 USB](http://gigaset.siemens.com/shc/0,1935,de_de_0_69566_rArNrNrNrN,00.html)-DECT-Adapter von
|
||||
SIEMENS funktionierte von meinen getesteten Basisstationen nur an der *Gigaset SX440isdn* in vollem Umfang. An der
|
||||
*Gigaset SLX740isdn* funktioniert er nur als drahtlose ISDN-Karte und an der *Gigaset SL100* nur als VoIP-Telefon.
|
||||
@ -76,4 +79,4 @@ machen, aber ich kann weder Faxe verschicken noch unsere Telefonanlage via B-Kan
|
||||
*[WLAN]: Wireless Local Area Network
|
||||
*[AIM]: AOL Instant Messenger
|
||||
*[ISDN]: Integrated Services Digital Network
|
||||
*[PPP]: Point-to-Point Protocol
|
||||
*[PPP]: Point-to-Point Protocol
|
@ -1,15 +1,18 @@
|
||||
---
|
||||
title: Analog TFT calibration
|
||||
layout: default
|
||||
created: 2009-05-12 14:19:22 +0200
|
||||
updated: 2009-05-12 14:19:22 +0200
|
||||
toc: false
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2009/05/12/analog-tft-calibration.html
|
||||
tags:
|
||||
- know-how
|
||||
- hardware
|
||||
- tft
|
||||
- calibration
|
||||
- know-how
|
||||
- hardware
|
||||
- tft
|
||||
- calibration
|
||||
title: Analog TFT calibration
|
||||
toc: false
|
||||
updated: 2009-05-12 14:19:22 +0200
|
||||
---
|
||||
|
||||
If you have connected your TFT via an analog VGA cable, you might have some blurry vision or even flickering
|
||||
in some cases. If the following picture shows some flickering or looks blurry, your display needs calibration.
|
||||
|
||||
@ -21,4 +24,4 @@ To calibrate your display, go to [Randy Simons' page](http://randysimons.com/pag
|
||||
2. put your browser in full-screen mode (mostly by pressing <kbd>F11</kbd>)
|
||||
3. issue the auto-calibration on your TFT display (most displays have a specific *"Auto"* button)
|
||||
4. make sure the picture doesn't flicker anymore
|
||||
5. exit full-screen mode (<kbd>F11</kbd> again)
|
||||
5. exit full-screen mode (<kbd>F11</kbd> again)
|
@ -1,15 +1,18 @@
|
||||
---
|
||||
title: Apple iPhone
|
||||
layout: default
|
||||
created: 2009-04-20 20:22:56 +0200
|
||||
updated: 2009-05-19 03:57:37 +0200
|
||||
toc: false
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2009/04/20/apple-iphone.html
|
||||
tags:
|
||||
- know-how
|
||||
- hardware
|
||||
- apple
|
||||
- iphone
|
||||
- know-how
|
||||
- hardware
|
||||
- apple
|
||||
- iphone
|
||||
title: Apple iPhone
|
||||
toc: false
|
||||
updated: 2009-05-19 03:57:37 +0200
|
||||
---
|
||||
|
||||
<img src="{{ site.url }}/assets/apple_iphone.jpg" alt="Apple iPhone" height="200" />
|
||||
|
||||
* **Homepage:** [apple.com](http://www.apple.com/iphone/)
|
||||
@ -21,4 +24,4 @@ tags:
|
||||
{% for page in site.categories.apple-iphone %}
|
||||
<li><a href="{{ page.url }}">{{ page.title }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</ul>
|
@ -1,14 +1,16 @@
|
||||
---
|
||||
title: MSI DigiVox A/D USB2.0
|
||||
layout: default
|
||||
created: 2009-05-20 11:05:28 +0200
|
||||
updated: 2009-07-17 22:53:23 +0200
|
||||
toc: false
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2009/05/20/msi-digivox-ad-usb2.0.html
|
||||
tags:
|
||||
- know-how
|
||||
- hardware
|
||||
- msi
|
||||
- digivox
|
||||
- know-how
|
||||
- hardware
|
||||
- msi
|
||||
- digivox
|
||||
title: MSI DigiVox A/D USB2.0
|
||||
toc: false
|
||||
updated: 2009-07-17 22:53:23 +0200
|
||||
---
|
||||
|
||||
Ubuntu
|
||||
@ -31,4 +33,4 @@ If you want to try the `totem-gstreamer`, try this:
|
||||
scan -p -x 0 /usr/share/dvb/dvb-t/de-Berlin > ~/.gstreamer-0.10/channels.conf
|
||||
|
||||
|
||||
(or you could just copy the file over, if you already created one)
|
||||
(or you could just copy the file over, if you already created one)
|
@ -1,16 +1,19 @@
|
||||
---
|
||||
title: SIEMENS SL2-141-I
|
||||
language: de
|
||||
layout: default
|
||||
created: 2009-08-19 01:16:17 +0200
|
||||
updated: 2009-08-19 01:17:31 +0200
|
||||
toc: false
|
||||
language: de
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2009/08/19/siemens-sl2-141-i-de.html
|
||||
tags:
|
||||
- know-how
|
||||
- hardware
|
||||
- siemens
|
||||
- router
|
||||
- know-how
|
||||
- hardware
|
||||
- siemens
|
||||
- router
|
||||
title: SIEMENS SL2-141-I
|
||||
toc: false
|
||||
updated: 2009-08-19 01:17:31 +0200
|
||||
---
|
||||
|
||||
Dieser Router wird von *Alice* ausgeliefert und kommt mit einer hoffnungslos veralteten (3.29a) oder komplett
|
||||
kastrierten (4.7-irgendwas) Firmware daher.
|
||||
|
||||
@ -49,4 +52,4 @@ einfach mal den Router neustarten oder evtl. auf Werkseinstellungen zurücksetze
|
||||
|
||||
Für den Notfall gäbe es noch ein serielles Interface auf der Platine des Routers. Solange der Bootloader nicht
|
||||
beschädigt wird, kann man damit in jedem Fall jegliche Firmware aufspielen. Ein JTAG-Interface soll die Platine wohl
|
||||
auch bieten.
|
||||
auch bieten.
|
@ -1,16 +1,19 @@
|
||||
---
|
||||
title: SanDisk Sansa FUZE
|
||||
layout: default
|
||||
created: 2008-12-31 00:04:38 +0100
|
||||
updated: 2009-10-15 09:30:10 +0200
|
||||
toc: false
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2008/12/31/sandisk-sansa-fuze.html
|
||||
tags:
|
||||
- know-how
|
||||
- hardware
|
||||
- sandisk
|
||||
- sansa
|
||||
- fuze
|
||||
- know-how
|
||||
- hardware
|
||||
- sandisk
|
||||
- sansa
|
||||
- fuze
|
||||
title: SanDisk Sansa FUZE
|
||||
toc: false
|
||||
updated: 2009-10-15 09:30:10 +0200
|
||||
---
|
||||
|
||||
![]({{ site.url }}/assets/sansa_fuze_image_01.png)
|
||||
|
||||
* **Beginner's Guide to Sansa Players:** [ubuntuforums.org](http://ubuntuforums.org/showthread.php?t=312196)
|
||||
@ -25,4 +28,4 @@ tags:
|
||||
{% for page in site.categories.sandisk-sansa-fuze %}
|
||||
<li><a href="{{ page.url }}">{{ page.title }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</ul>
|
@ -1,16 +1,19 @@
|
||||
---
|
||||
title: Loewe Concept Plus
|
||||
language: de
|
||||
layout: default
|
||||
created: 2009-11-06 21:46:28 +0100
|
||||
updated: 2009-11-06 21:46:28 +0100
|
||||
toc: false
|
||||
language: de
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2009/11/06/loewe-concept-plus-de.html
|
||||
tags:
|
||||
- know-how
|
||||
- hardware
|
||||
- loewe
|
||||
- tv
|
||||
- know-how
|
||||
- hardware
|
||||
- loewe
|
||||
- tv
|
||||
title: Loewe Concept Plus
|
||||
toc: false
|
||||
updated: 2009-11-06 21:46:28 +0100
|
||||
---
|
||||
|
||||
AV1 und AV2 gleichzeitig
|
||||
========================
|
||||
|
||||
@ -27,4 +30,4 @@ Nach dem Entfernen des Pin 16 aus dem Scart-Stecker[^1] kann man jetzt problemlo
|
||||
umschalten.
|
||||
|
||||
|
||||
[^1]: Da ist ein kleiner Widerhaken an der Fahne, den man mit einer geeigneten Zange platt drücken muss, dann kann man die Fahne nach innen herausnehmen.
|
||||
[^1]: Da ist ein kleiner Widerhaken an der Fahne, den man mit einer geeigneten Zange platt drücken muss, dann kann man die Fahne nach innen herausnehmen.
|
@ -1,16 +1,19 @@
|
||||
---
|
||||
title: SIEMENS S1621-Z220-A
|
||||
language: de
|
||||
layout: default
|
||||
created: 2009-12-01 19:32:31 +0100
|
||||
updated: 2009-12-03 09:23:13 +0100
|
||||
toc: true
|
||||
language: de
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2009/12/01/siemens-s1621-z220-a-de.html
|
||||
tags:
|
||||
- know-how
|
||||
- hardware
|
||||
- siemens
|
||||
- router
|
||||
- know-how
|
||||
- hardware
|
||||
- siemens
|
||||
- router
|
||||
title: SIEMENS S1621-Z220-A
|
||||
toc: true
|
||||
updated: 2009-12-03 09:23:13 +0100
|
||||
---
|
||||
|
||||
Dieser WLAN-Router wird von Alice unter der Bezeichnung *Alice Modem WLAN 1121* ausgeliefert. Die Standard-IP im
|
||||
Auslieferungszustand ist `192.168.1.1`. Weitere Informationen gibt's im [alice-wiki.de](http://www.alice-wiki.de/Alice_Modem_1121_WLAN).
|
||||
|
||||
@ -221,4 +224,4 @@ Unterseite
|
||||
*[PCI]: Peripheral Component Interconnect
|
||||
*[ADSL]: Asynchronous Digital Subscriber Line
|
||||
*[CPE]: Customer-Premises Equipment
|
||||
*[SD-RAM]: Synchronous Dynamic Random Access Memory
|
||||
*[SD-RAM]: Synchronous Dynamic Random Access Memory
|
@ -1,15 +1,18 @@
|
||||
---
|
||||
title: TomTom PNAs
|
||||
layout: default
|
||||
created: 2009-06-01 13:23:00 +0200
|
||||
updated: 2009-12-13 02:28:10 +0100
|
||||
toc: true
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2009/06/01/tomtom-pnas.html
|
||||
tags:
|
||||
- know-how
|
||||
- hardware
|
||||
- tomtom
|
||||
- navigation
|
||||
- know-how
|
||||
- hardware
|
||||
- tomtom
|
||||
- navigation
|
||||
title: TomTom PNAs
|
||||
toc: true
|
||||
updated: 2009-12-13 02:28:10 +0100
|
||||
---
|
||||
|
||||
**Homepage:** [tomtom.com](http://www.tomtom.com/)
|
||||
|
||||
Custom Firmware
|
||||
@ -83,4 +86,4 @@ Tested with NavCore 9.014 and 9.024, maps 830 and 840. All combinations show the
|
||||
|
||||
*[PNAs]: Personal Navigation Assistants
|
||||
*[TTS]: Text to Speech
|
||||
*[POIs]: Points of Interest
|
||||
*[POIs]: Points of Interest
|
@ -1,17 +1,20 @@
|
||||
---
|
||||
title: memup Pop Key
|
||||
layout: default
|
||||
created: 2009-12-22 00:43:14 +0100
|
||||
updated: 2009-12-22 01:15:54 +0100
|
||||
toc: false
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2009/12/22/memup-pop-key.html
|
||||
tags:
|
||||
- know-how
|
||||
- hardware
|
||||
- memup
|
||||
- popkey
|
||||
- usb
|
||||
- know-how
|
||||
- hardware
|
||||
- memup
|
||||
- popkey
|
||||
- usb
|
||||
title: memup Pop Key
|
||||
toc: false
|
||||
updated: 2009-12-22 01:15:54 +0100
|
||||
---
|
||||
* **Homepage:** <http://www.memup.com/>
|
||||
|
||||
* **Homepage:** <http://www.memup.com/>
|
||||
|
||||
I just bought a 4GB *Pop Key* in a local supermarket. This device not only works as a simple flash disk but also brings a CD-ROM-Partition with a small security software with it. This just calls for modification...
|
||||
|
||||
@ -25,4 +28,4 @@ With the [SMI UFD Utility](http://ftp.usboffice.kr/files/SMI_UFD_Utility.zip), y
|
||||
This way, you can make it e.g. a Windows XP or Windows 7 installation device, use it for the [System Rescue CD](http://www.sysresccd.org/Main_Page) or - if you can trick the *U3 LaunchPad* into
|
||||
accepting the stick - burn the U3 software to it to make it U3 compatible.
|
||||
|
||||
*[SMI]: Semiconductor Manufacturing International
|
||||
*[SMI]: Semiconductor Manufacturing International
|
@ -1,14 +1,16 @@
|
||||
---
|
||||
title: SheevaPlug / GuruPlug
|
||||
layout: default
|
||||
created: 2009-09-29 15:04:58 +0200
|
||||
updated: 2010-02-24 00:56:29 +0100
|
||||
toc: false
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2009/09/29/sheevaplug-guruplug.html
|
||||
tags:
|
||||
- know-how
|
||||
- hardware
|
||||
- sheevaplug
|
||||
- guruplug
|
||||
- know-how
|
||||
- hardware
|
||||
- sheevaplug
|
||||
- guruplug
|
||||
title: SheevaPlug / GuruPlug
|
||||
toc: false
|
||||
updated: 2010-02-24 00:56:29 +0100
|
||||
---
|
||||
|
||||
* [marvell.com](http://www.marvell.com/products/embedded_processors/developer/kirkwood/sheevaplug.jsp) - Manufacturer of the SheevaPlug
|
||||
@ -18,4 +20,4 @@ tags:
|
||||
* [openplug.org](http://openplug.org/plugforum/) - English forum about the SheevaPlug
|
||||
* [sheevaplug.de](http://www.sheevaplug.de/forum.html) - German forum about the SheevaPlug
|
||||
* [computingplugs.com](http://computingplugs.com/index.php/SheevaPlug_Performance) - Performace ratings of the SheevaPlug
|
||||
* [open-rd.org](http://www.open-rd.org/) - same architecture as SheevaPlug but with lots of more I/Os
|
||||
* [open-rd.org](http://www.open-rd.org/) - same architecture as SheevaPlug but with lots of more I/Os
|
@ -1,16 +1,19 @@
|
||||
---
|
||||
title: Google Nexus One
|
||||
layout: default
|
||||
created: 2010-03-23 14:55:15 +0100
|
||||
updated: 2010-03-23 14:57:19 +0100
|
||||
toc: false
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2010/03/23/google-nexus-one.html
|
||||
tags:
|
||||
- know-how
|
||||
- hardware
|
||||
- google
|
||||
- nexusone
|
||||
- passion
|
||||
- know-how
|
||||
- hardware
|
||||
- google
|
||||
- nexusone
|
||||
- passion
|
||||
title: Google Nexus One
|
||||
toc: false
|
||||
updated: 2010-03-23 14:57:19 +0100
|
||||
---
|
||||
|
||||
<img src="{{ site.url }}/assets/nexus_one.png" alt="Google Nexus One" height="180" />
|
||||
|
||||
* **Homepage:** <http://www.google.com/phone/>
|
||||
@ -19,4 +22,4 @@ tags:
|
||||
{% for page in site.categories.google-nexus-one %}
|
||||
<li><a href="{{ page.url }}">{{ page.title }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</ul>
|
@ -1,18 +1,21 @@
|
||||
---
|
||||
redirect_from:
|
||||
- /know-how/hardware/fortuna-gpsmartbt/
|
||||
title: Fortuna GPSmart BT
|
||||
layout: default
|
||||
created: 2009-02-02 19:07:10 +0100
|
||||
updated: 2010-07-22 09:55:56 +0200
|
||||
toc: false
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_from:
|
||||
- /know-how/hardware/fortuna-gpsmartbt/
|
||||
redirect_to: https://blog.mbirth.de/archives/2009/02/02/fortuna-gpsmart-bt.html
|
||||
tags:
|
||||
- know-how
|
||||
- hardware
|
||||
- fortuna
|
||||
- gpsmart
|
||||
- gps
|
||||
- know-how
|
||||
- hardware
|
||||
- fortuna
|
||||
- gpsmart
|
||||
- gps
|
||||
title: Fortuna GPSmart BT
|
||||
toc: false
|
||||
updated: 2010-07-22 09:55:56 +0200
|
||||
---
|
||||
|
||||
**Homepage:** [fortuna.com.tw](http://www.fortuna.com.tw/gpsmart.htm)
|
||||
|
||||
<img src="{{ site.url }}/assets/gpsmart.jpg" height="300" alt="Fortuna GPSmart" />
|
||||
@ -67,4 +70,4 @@ Sync cable
|
||||
==========
|
||||
|
||||
The MiniUSB port on the GPSmart is not really a USB interface. The GPSmart has a serial interface and also uses the port for power.
|
||||
The FortunaSync cable uses a [FTDI FT232BM](http://www.ftdichip.com/FTProducts.htm#FT232BM) which also controls pin #4 (see above). This IC converts the serial signals to USB.
|
||||
The FortunaSync cable uses a [FTDI FT232BM](http://www.ftdichip.com/FTProducts.htm#FT232BM) which also controls pin #4 (see above). This IC converts the serial signals to USB.
|
@ -1,17 +1,20 @@
|
||||
---
|
||||
title: MSI P45 Platinum
|
||||
layout: default
|
||||
created: 2009-08-10 20:43:58 +0200
|
||||
updated: 2010-10-09 20:02:39 +0200
|
||||
toc: false
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2009/08/10/msi-p45-platinum.html
|
||||
tags:
|
||||
- know-how
|
||||
- hardware
|
||||
- msi
|
||||
- mainboard
|
||||
- p45
|
||||
- platinum
|
||||
- know-how
|
||||
- hardware
|
||||
- msi
|
||||
- mainboard
|
||||
- p45
|
||||
- platinum
|
||||
title: MSI P45 Platinum
|
||||
toc: false
|
||||
updated: 2010-10-09 20:02:39 +0200
|
||||
---
|
||||
|
||||
BIOS
|
||||
====
|
||||
|
||||
@ -54,4 +57,4 @@ AMI BIOS
|
||||
| `A7512IMS.17A` | 2009-12-24 |
|
||||
| `A7512IMS.17B` | 2010-04-30 |
|
||||
| `A7512IMS.17D` | 2010-07-01 |
|
||||
| `A7512IMS.17E` | 2010-09-24 |
|
||||
| `A7512IMS.17E` | 2010-09-24 |
|
@ -1,15 +1,17 @@
|
||||
---
|
||||
title: SonyEricsson MBW-150
|
||||
layout: default
|
||||
created: 2010-10-09 19:02:24 +0200
|
||||
updated: 2010-10-09 19:02:24 +0200
|
||||
toc: true
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2010/10/09/sonyericsson-mbw-150.html
|
||||
tags:
|
||||
- know-how
|
||||
- hardware
|
||||
- sony
|
||||
- sonyericsson
|
||||
- mbw150
|
||||
- know-how
|
||||
- hardware
|
||||
- sony
|
||||
- sonyericsson
|
||||
- mbw150
|
||||
title: SonyEricsson MBW-150
|
||||
toc: true
|
||||
updated: 2010-10-09 19:02:24 +0200
|
||||
---
|
||||
|
||||
![SonyEricsson MBW-150]({{ site.url }}/assets/mbw150.jpg)
|
||||
@ -141,4 +143,4 @@ if ( isset( $_REQUEST['l1'] ) && isset( $_REQUEST['l2'] ) ) {
|
||||
|
||||
Under Linux, you can send a notification like this:
|
||||
|
||||
wget -O - --quiet "http://www.example.org/notifier/notify.php?l1=This+is+line1&l2=And+this+is+line2"
|
||||
wget -O - --quiet "http://www.example.org/notifier/notify.php?l1=This+is+line1&l2=And+this+is+line2"
|
@ -1,19 +1,22 @@
|
||||
---
|
||||
title: Amazon Kindle
|
||||
layout: default
|
||||
created: 2011-04-25 14:36:25 +0200
|
||||
updated: 2011-04-25 14:36:25 +0200
|
||||
toc: false
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2011/04/25/amazon-kindle.html
|
||||
tags:
|
||||
- know-how
|
||||
- hardware
|
||||
- amazon
|
||||
- kindle
|
||||
- paperwhite
|
||||
- voyage
|
||||
- know-how
|
||||
- hardware
|
||||
- amazon
|
||||
- kindle
|
||||
- paperwhite
|
||||
- voyage
|
||||
title: Amazon Kindle
|
||||
toc: false
|
||||
updated: 2011-04-25 14:36:25 +0200
|
||||
---
|
||||
|
||||
<ul>
|
||||
{% for page in site.categories.amazon-kindle %}
|
||||
<li><a href="{{ page.url }}">{{ page.title }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</ul>
|
@ -1,17 +1,20 @@
|
||||
---
|
||||
title: DYMO LabelWriter 320 under Ubuntu Linux
|
||||
layout: default
|
||||
created: 2011-10-09 22:37:45 +0200
|
||||
updated: 2012-01-20 09:31:29 +0100
|
||||
toc: false
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2011/10/09/dymo-labelwriter-320-under-ubuntu-linux.html
|
||||
tags:
|
||||
- know-how
|
||||
- hardware
|
||||
- dymo
|
||||
- labelwriter
|
||||
- ubuntu
|
||||
- linux
|
||||
- know-how
|
||||
- hardware
|
||||
- dymo
|
||||
- labelwriter
|
||||
- ubuntu
|
||||
- linux
|
||||
title: DYMO LabelWriter 320 under Ubuntu Linux
|
||||
toc: false
|
||||
updated: 2012-01-20 09:31:29 +0100
|
||||
---
|
||||
|
||||
This label printer doesn't work out of the box under Linux. There are some instructions over at
|
||||
[ubuntuforums.org](http://ubuntuforums.org/showthread.php?t=861781), but they're missing something
|
||||
for the latest Ubuntu *Oneiric Ocelot*. These instructions should work:
|
||||
@ -30,4 +33,4 @@ for the latest Ubuntu *Oneiric Ocelot*. These instructions should work:
|
||||
1. now open **System Settings** → **Printer**
|
||||
1. make sure, your LabelWriter is connected
|
||||
1. add a new printer, choose your LabelWriter, when asked for a driver, point it to `ppd/lw320.ppd` from the `dymo-cups-drivers-1.2.0` directory
|
||||
1. start printing, e.g. from [glabels](apt://glabels)
|
||||
1. start printing, e.g. from [glabels](apt://glabels)
|
@ -1,16 +1,18 @@
|
||||
---
|
||||
title: Stardom SOHORAID SR3610
|
||||
layout: default
|
||||
created: 2012-08-20 21:27:36 +0200
|
||||
updated: 2012-08-20 22:27:38 +0200
|
||||
toc: false
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2012/08/20/stardom-sohoraid-sr3610.html
|
||||
tags:
|
||||
- know-how
|
||||
- hardware
|
||||
- stardom
|
||||
- sohoraid
|
||||
- raid
|
||||
- sr3610
|
||||
- know-how
|
||||
- hardware
|
||||
- stardom
|
||||
- sohoraid
|
||||
- raid
|
||||
- sr3610
|
||||
title: Stardom SOHORAID SR3610
|
||||
toc: false
|
||||
updated: 2012-08-20 22:27:38 +0200
|
||||
---
|
||||
|
||||
<img src="{{ site.url }}/assets/sohoraid_sr3610.jpg" alt="Stardom SOHORAID SR3610" height="250" />
|
||||
@ -28,4 +30,4 @@ Firmware
|
||||
* **Download:** [sohoraid_ro3687v.zip]({{ site.url }}/assets/sohoraid_ro3687v.zip)
|
||||
|
||||
To install, download the **RAIDGuide 1.28.1.14** (32-bit or 64-bit version) from [icy-dock.eu](http://www.icy-dock.eu/en/pages/service/driver.php) (use the SR5600 one for 64-bit).
|
||||
You'll need a RS323 cable to update the firmware.
|
||||
You'll need a RS323 cable to update the firmware.
|
@ -1,16 +1,19 @@
|
||||
---
|
||||
title: Western Digital GreenPower Disks
|
||||
layout: default
|
||||
created: 2012-08-20 20:27:16 +0200
|
||||
updated: 2012-08-20 22:27:02 +0200
|
||||
toc: true
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2012/08/20/western-digital-greenpower-disks.html
|
||||
tags:
|
||||
- know-how
|
||||
- hardware
|
||||
- westerndigital
|
||||
- greenpower
|
||||
- wdgreen
|
||||
- know-how
|
||||
- hardware
|
||||
- westerndigital
|
||||
- greenpower
|
||||
- wdgreen
|
||||
title: Western Digital GreenPower Disks
|
||||
toc: true
|
||||
updated: 2012-08-20 22:27:02 +0200
|
||||
---
|
||||
|
||||
Advanced Format
|
||||
===============
|
||||
|
||||
@ -60,4 +63,4 @@ Set the desired value as follows:
|
||||
Please power cycle your drive off and on for the new setting to be taken into account. A reboot will not be enough!
|
||||
|
||||
|
||||
Do as it says to enable the new setting.
|
||||
Do as it says to enable the new setting.
|
@ -1,15 +1,18 @@
|
||||
---
|
||||
title: TechniSat DigiCorder
|
||||
layout: default
|
||||
created: 2013-11-27 00:02:41 +0100
|
||||
updated: 2013-11-27 01:29:09 +0100
|
||||
toc: false
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2013/11/27/technisat-digicorder.html
|
||||
tags:
|
||||
- know-how
|
||||
- hardware
|
||||
- technisat
|
||||
- digicorder
|
||||
- know-how
|
||||
- hardware
|
||||
- technisat
|
||||
- digicorder
|
||||
title: TechniSat DigiCorder
|
||||
toc: false
|
||||
updated: 2013-11-27 01:29:09 +0100
|
||||
---
|
||||
|
||||
Concat Transport Stream
|
||||
=======================
|
||||
|
||||
@ -44,4 +47,4 @@ Notes:
|
||||
* bitrate 8888k can be reduced
|
||||
* direct piping (`cat movie*.TS4 | avconv -i -`) doesn't work (in Windows)
|
||||
* ProjectX doesn't like `avconv -g 100`
|
||||
* without demuxing, AVStoDVD can't sync the tracks
|
||||
* without demuxing, AVStoDVD can't sync the tracks
|
@ -1,21 +1,23 @@
|
||||
---
|
||||
title: DeckLink BlackMagic Quad
|
||||
language: en
|
||||
layout: default
|
||||
created: 2015-10-09 11:16:16 +0100
|
||||
updated: 2015-10-09 11:16:16 +0100
|
||||
toc: false
|
||||
language: en
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2015/10/09/decklink-blackmagic-quad.html
|
||||
tags:
|
||||
- know-how
|
||||
- hardware
|
||||
- decklink
|
||||
- blackmagic
|
||||
- know-how
|
||||
- hardware
|
||||
- decklink
|
||||
- blackmagic
|
||||
title: DeckLink BlackMagic Quad
|
||||
toc: false
|
||||
updated: 2015-10-09 11:16:16 +0100
|
||||
---
|
||||
|
||||
ffmpeg -f decklink -i "DeckLink SDI (1)@3" -framerate 25 -vf "yadif=0:-1,scale=1280:720,setdar=16/9" -codec:v mpeg4 -r 25.000 -b:v 2000k -maxrate 3500k -c:a libvo_aacenc -b:a 256k -f mpegts udp://10.24.141.132:1234 -vf "scale=320:200" -c:a mp3 -f mpegts udp://10.24.141.132:1235
|
||||
ffmpeg -f decklink -i "DeckLink SDI (1)@3" -framerate 25 -vf "yadif=0:-1,scale=1280:720,setdar=16/9" -codec:v mpeg4 -r 25.000 -b:v 2000k -maxrate 3500k -c:a libvo_aacenc -b:a 256k -f mpegts udp://10.24.141.132:1234 -vf "scale=320:200" -c:a mp3 -f mpegts udp://10.24.141.132:1235
|
||||
|
||||
You can use any of the 4 BlackMagic processors by specifying `DeckLink SDI (1)` … `DeckLink SDI (4)`. The number after the `@` is the port.
|
||||
|
||||
This example streams the signal on port `@3` in 2 different formats to different ports on `10.24.141.132`.
|
||||
|
||||
More info on [StackOverflow](http://stackoverflow.com/questions/19212047/ffmpeg-command-line-for-capturing-and-recording-audio-and-video-in-720p-from-d).
|
||||
More info on [StackOverflow](http://stackoverflow.com/questions/19212047/ffmpeg-command-line-for-capturing-and-recording-audio-and-video-in-720p-from-d).
|
@ -1,18 +1,21 @@
|
||||
---
|
||||
title: hp Spectre x360
|
||||
layout: default
|
||||
language: en
|
||||
created: 2016-07-26 11:03:08 +0200
|
||||
updated: 2016-07-26 11:03:08 +0200
|
||||
toc: false
|
||||
language: en
|
||||
layout: redirect
|
||||
layout_old: default
|
||||
redirect_to: https://blog.mbirth.de/archives/2016/07/26/hp-spectre-x360.html
|
||||
tags:
|
||||
- know-how
|
||||
- hardware
|
||||
- hp
|
||||
- spectre
|
||||
- x360
|
||||
- notebook
|
||||
- know-how
|
||||
- hardware
|
||||
- hp
|
||||
- spectre
|
||||
- x360
|
||||
- notebook
|
||||
title: hp Spectre x360
|
||||
toc: false
|
||||
updated: 2016-07-26 11:03:08 +0200
|
||||
---
|
||||
|
||||
![hp Spectre x360 13-4104ng]({{ site.url }}/assets/hp-spectre-x360.jpg)
|
||||
|
||||
* **Model no.:** 13-4104ng
|
||||
@ -22,4 +25,4 @@ tags:
|
||||
{% for page in site.categories.hp-spectre-x360 %}
|
||||
<li><a href="{{ page.url }}">{{ page.title }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</ul>
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user