New OpenRSI to test...

tawargite

Registered
Messages
7
i have a problem with some pluging like: ts pannel and keymap by kingflood. it s impossible to install them. i have tried many methods....no results.
 

nickman9271

Registered
Messages
14
why do u need tspanel in a openpli based image ?
u can download almost everything through plugin feeds , even cam . also tspanel is not suggested by the openrsi team .
 

gorski

Registered
Messages
1,553
TS Panel has some good tools to see what's going on inside the E2, that OpenPLi have not included...

I installed the image on my Elite with 1GB DOM. AZUp did this (you must be in Rescue Mode to connect with Telnet and give fdisk -l command):

Code:
Linux/mips 3.5.5-opensat

# fdisk -l

Disk /dev/hda: 1002 MB, 1002258432 bytes
16 heads, 63 sectors/track, 1942 cylinders
Units = cylinders of 1008 * 512 = 516096 bytes

Device Boot     Start         End     Blocks Id System
/dev/hda1             1         372     187487+ 83 Linux
/dev/hda2             373         381     4536 83 Linux
/dev/hda3             382         499     59472 82 Linux swap
/dev/hda4             500     1942     727272 5 Extended
/dev/hda5             500     1942     727271+ 83 Linux

Thanx to Fabry
smile.png
I can now copy the DOM contents to a USB stick, then resize the partitions according to my needs (larger E2 partition for more stuff on it, without it being clogged up), then return the content to DOM. Fabry's script has to be modified only slightly, depending on the mounted USB device, in my case dev/sda1 = media/usb:

Code:
/dev/sda1             1         64     514048+ 83 Linux

The script to do it with looks like this, in my case:

Code:
mkdir usb
mount -o noatime /dev/sda1 usb
mkdir dom
mount -o noatime /dev/hda1 dom
cd usb
mkdir backup
cd backup
mkdir dom
cd /home/root
cp -a dom/* usb/backup/dom/
umount dom
echo ",512,83" > hda.out
echo ",4,83" **** hda.out
echo ",128,82" **** hda.out
echo ",,5" **** hda.out
echo ",,83" **** hda.out
sfdisk -f -uM /dev/hda < hda.out
mkfs.ext3 /dev/hda1 -b 4096 -E stride=96
mkfs.ext3 /dev/hda2 -b 4096 -E stride=96
mkswap /dev/hda3
mkfs.ext3 /dev/hda5 -b 4096 -E stride=96
sync
mount -o noatime /dev/hda1 dom
cp -a usb/backup/dom/* dom/
sync
umount usb
umount dom
reboot -f

Here are the results:

Code:
Powered by Opensat
Linux/mips 3.5.5-opensat

# mkdir usb
# mount -o noatime /dev/sda1 usb
# mkdir dom
# mount -o noatime /dev/hda1 dom
# cd usb
# mkdir backup
# cd backup
# mkdir dom
# cd /home/root
# cp -a dom/* usb/backup/dom/
# umount dom
# echo ",512,83" > hda.out
# echo ",4,83" **** hda.out
# echo ",128,82" **** hda.out
# echo ",,5" **** hda.out
# echo ",,83" **** hda.out
# sfdisk -f -uM /dev/hda < hda.out
Checking that no-one is using this disk right now ...
OK

Disk /dev/hda: 1942 cylinders, 16 heads, 63 sectors/track
Old situation:
Units = mebibytes of 1048576 bytes, blocks of 1024 bytes, counting from 0

Device Boot Start End MiB #blocks Id System
/dev/hda1         0+ 183- 184- 187487+ 83 Linux
/dev/hda2     183+ 187-     5-     4536 83 Linux
/dev/hda3     187+ 245- 59-     59472 82 Linux swap / Solaris
/dev/hda4     245+ 955- 711- 727272 5 Extended
/dev/hda5     245+ 955- 711- 727271+ 83 Linux
New situation:
Units = mebibytes of 1048576 bytes, blocks of 1024 bytes, counting from 0

Device Boot Start End MiB #blocks Id System
/dev/hda1         0+ 512- 513- 524663+ 83 Linux
/dev/hda2     512+ 516-     5-     4536 83 Linux
/dev/hda3     516+ 645- 129- 131544 82 Linux swap / Solaris
/dev/hda4     645+ 955- 311- 318024 5 Extended
/dev/hda5     645+ 955- 311- 318023+ 83 Linux
Warning: no primary partition is marked bootable (active)
This does not matter for LILO, but the DOS MBR will not boot this disk.
Successfully wrote the new partition table

Re-reading the partition table ...

If you created or changed a DOS partition, /dev/foo7, say, then use dd(1)
to zero the first 512 bytes: dd if=/dev/zero of=/dev/foo7 bs=512 count=1
(See fdisk(8).)
# mkfs.ext3 /dev/hda1 -b 4096 -E stride=96
mke2fs 1.41.12 (17-May-2010)
warning: 93 blocks unused.

Filesystem label=
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
Stride=96 blocks, Stripe width=0 blocks
32832 inodes, 131072 blocks
6558 blocks (5.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=134217728
4 block groups
32768 blocks per group, 32768 fragments per group
8208 inodes per group
Superblock backups stored on blocks:
     32768, 98304

Writing inode tables: done
Creating journal (4096 blocks): done
Writing superblocks and filesystem accounting information: done

This filesystem will be automatically checked every 38 mounts or
180 days, whichever comes first. Use tune2fs -c or -i to override.
# mkfs.ext3 /dev/hda2 -b 4096 -E stride=96
mke2fs 1.41.12 (17-May-2010)
Filesystem label=
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
Stride=96 blocks, Stripe width=0 blocks
1152 inodes, 1134 blocks
56 blocks (4.94%) reserved for the super user
First data block=0
1 block group
32768 blocks per group, 32768 fragments per group
1152 inodes per group

Writing inode tables: done

Filesystem too small for a journal
Writing superblocks and filesystem accounting information: done

This filesystem will be automatically checked every 28 mounts or
180 days, whichever comes first. Use tune2fs -c or -i to override.
# mkswap /dev/hda3
Setting up swapspace version 1, size = 134696960 bytes
UUID=7349eff7-f42c-42d9-ab6d-f58403b9793d
# mkfs.ext3 /dev/hda5 -b 4096 -E stride=96
mke2fs 1.41.12 (17-May-2010)
Filesystem label=
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
Stride=96 blocks, Stripe width=0 blocks
79584 inodes, 79505 blocks
3975 blocks (5.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=83886080
3 block groups
32768 blocks per group, 32768 fragments per group
26528 inodes per group
Superblock backups stored on blocks:
     32768

Writing inode tables: done
Creating journal (4096 blocks): done
Writing superblocks and filesystem accounting information: done

This filesystem will be automatically checked every 26 mounts or
180 days, whichever comes first. Use tune2fs -c or -i to override.
# sync
# mount -o noatime /dev/hda1 dom
# cp -a usb/backup/dom/* dom/
# sync
# umount usb
# umount dom
# reboot -f

After the (successful E2) reboot, the partition table looked like this:

Code:
# fdisk -l

Disk /dev/hda: 1002 MB, 1002258432 bytes
16 heads, 63 sectors/track, 1942 cylinders
Units = cylinders of 1008 * 512 = 516096 bytes

Device Boot     Start         End     Blocks Id System
/dev/hda1             1     1041     524663+ 83 Linux
/dev/hda2         1042     1050     4536 83 Linux
/dev/hda3         1051     1311     131544 82 Linux swap
/dev/hda4         1312     1942     318024 5 Extended
/dev/hda5         1312     1942     318023+ 83 Linux

Disk /dev/mtdblock0: 8 MB, 8388608 bytes
255 heads, 63 sectors/track, 1 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes

So, now I have:

1/2 GB hda1 = E2 partition - meaning, lots of space to experiment with emus, skins, plugins and whatnot...
4 MB hda2 = who knows what this is for???
128 MB hda3 = SWAP partition - when big updates are available, this makes them possible...
over 300MB of hda4/5 = extended partition, where /cf is, where one directs EPG, picons, subtitles etc. (via HD Glass skin etc.)

I updated the whole thing twice now, 44 and then 16 updates.

Configured tuner for 4in1 Centauri switch and manually scanned all 4 satellites - all fine. See images attached to my post above... Later I saw Henksat's plugin: Installed the Wavefrontier plugin, will test later...

Network configured - problems reproducing a full DVD (Expo '92 Sevilla, "Guitar legends" concert, "Fusion nights") using MC - the everlasting cogs of confusion (COC
biggrin.png
)... (AZ had to be restarted at the back)

Installed CrossEPG, Device Manager for OpenPLi 3.0, EPG cash selector, Backup suite 7.1 couldn't be installed, Dreamexplorer 7.4, Subtitle player 3.20, Systemtools 2.0, CCcam, OSCam, their "status" plugins etc. etc.

A third attempt at a software update > GSOD!!!

Device Manager doesn't see DOM at all. No "management" like this is possible... PB Device Manager is better, as it gives one many options...

From TS Panel: installed some tools etc. Those help a bit but not as good as the integrated PB Centre tools!

Wanted to remove "wireless" stuff using TS PaneL > GSOD!

CCcam is working fine. Can't check the card reader now, sorry...

Must go to bed now.... more fun tomorrow...

So far - looking good, guys!!! :thum:
 
Top