Easy Wii Linux: Instant PC October 29, 2011 10:22PM | Registered: 16 years ago Posts: 98 |
Re: Easy Wii Linux: Instant PC November 08, 2011 10:11PM | Registered: 12 years ago Posts: 2 |
Re: Easy Wii Linux: Instant PC November 09, 2011 01:29AM | Registered: 16 years ago Posts: 98 |
a solution for the network issue November 09, 2011 12:03PM | Registered: 12 years ago Posts: 2 |
"SET failed on device wlan0 ; No such device"After running iwconfig as root i found out that, like the error says, there is no wlan0 but there is a wlan1. So i ran
nano -c /root/whiite-ez-wifi-configand changed line 33 from
IFACE=wlan0to
IFACE=wlan1then i ran the config tool again and it worked like a charm.
{SD}:\bootmii\ppcboot.elfwith the kernel that works for you. For me, 576iPAL.elf works so i have moved that file to the bootmii folder and renamed it to ppcboot.elf (after backing up the original file ofcourse).
Re: Easy Wii Linux: Instant PC November 09, 2011 09:58PM | Registered: 12 years ago Posts: 2 |
Re: Easy Wii Linux: Instant PC November 25, 2011 09:14PM | Registered: 12 years ago Posts: 2 |
Re: Easy Wii Linux: Instant PC November 30, 2011 02:11PM | Registered: 12 years ago Posts: 2 |
Quote
E: Package 'chromium-browser' has no installation candidate
ifconfig wlan1(ip is listed as "inet addr", in my case 192.168.1.100). Then you can use your favorite ssh client, for example putty to open up a connection to your wii so you can remotely control it. This helped me a great deal, because i can simply browse the web while working on the wii and i get to copy/paste commands instead of manually typing them.
apt-get remove lostirc sylpheed bitlbee bittornado leafpad epdfview xzgv xpaint ace-of-penguins
apt-get autoremoveThis cleaned up about 40 MB. More space can be cleared by removing localized files that you don't use. This can be done by installing a package called localepurge, so i ran
apt-get install localepurgeIt will ask you which locales you wish to keep, all other locales will be deleted. The first time, you will have to manually trigger the program, so i ran
localepurgeThis cleaned up another 85 MB and if you install any other programs in the future, all other locales will be automatically be purged. Running df -h again revealed that i now have 278M free.
Re: Easy Wii Linux: Instant PC November 30, 2011 11:55PM | Registered: 16 years ago Posts: 98 |
Re: Easy Wii Linux: Instant PC January 16, 2012 09:15PM | Registered: 14 years ago Posts: 51 |
Re: Easy Wii Linux: Instant PC January 17, 2012 11:34PM | Registered: 16 years ago Posts: 98 |
Re: Easy Wii Linux: Instant PC January 18, 2012 03:20AM | Registered: 12 years ago Posts: 1 |
Re: Easy Wii Linux: Instant PC January 18, 2012 01:48PM | Registered: 14 years ago Posts: 51 |
apt-get update apt-get upgrade apt-get autoclean reboot
Re: Easy Wii Linux: Instant PC January 19, 2012 08:53PM | Registered: 12 years ago Posts: 1 |
Re: Easy Wii Linux: Instant PC January 20, 2012 01:04AM | Registered: 16 years ago Posts: 98 |
Re: Easy Wii Linux: Instant PC January 20, 2012 12:52PM | Registered: 14 years ago Posts: 51 |
Re: Easy Wii Linux: Instant PC January 26, 2012 05:16PM | Registered: 14 years ago Posts: 51 |
cd /media/usb dd if=/dev/zero of=linuxds2.img seek=2500999999 bs=1 count=1(this line created a new image file of nearly 2.5 Gb)
mke2fs -F linuxds2.img(created a filesystem within the image)
mkdir img1 mkdir img2 mount -o loop linuxdsk.img /media/usb/img1 mount -o loop linuxds2.img /media/usb/img2(mounted both image files)
cd /media/usb/img1 cp -R -f * /media/usb/img2(copied the contents of linuxdsk.img onto linuxds2.img)
cd /media/usb umount img1 umount img2 rm -r -f img1 rm -r -f img2(unmounted the images and deleted the directories created for the mount)
rm linuxdsk.img mv linuxds2.img linuxdsk.img(deleted old image file and renamed the new one to replace the old one)
chmod a+x linuxdsk.img chmod 777 linuxdsk.img(changed permissions)
cd /var/lib/dpkg/updates rm -r -f * dpkg --configure -a
allowed_users=consoleTo
allowed_users=anybody
su - wii -c "xinit /usr/bin/jwm"
Re: Easy Wii Linux: Instant PC May 11, 2012 02:33AM | Registered: 12 years ago Posts: 1 |
Re: Easy Wii Linux: Instant PC June 08, 2012 07:02AM | Registered: 12 years ago Posts: 2 |
Re: Easy Wii Linux: Instant PC June 08, 2012 02:18PM | Registered: 12 years ago Posts: 2 |
Re: Easy Wii Linux: Instant PC June 14, 2012 05:31AM | Registered: 12 years ago Posts: 1 |