Advertise Here
Advertise Here
Advertise Here
Advertise Here
Page 4 of 4 FirstFirst ... 234
Results 31 to 36 of 36

Thread: ΟΔΗΓΟΙ - ΡΥΘΜΙΣΕΙΣ «ΧΩΡΙΣ ΣΧΟΛΙΑ!»

  1. #31
    Banned
    Join Date
    01-10-2008
    Posts
    2,213
    Uploads
    69
    Likes
    0

    Re: 10._ ΟΔΗΓΟΙ - ΡΥΘΜΙΣΕΙΣ «ΧΩΡΙΣ ΣΧΟΛΙΑ!»

    επειδή όπως ανάφερε και πιο πάνω ο φίλος ο DOUROS , όλο και περισσότερα images πλέων δεν έχουν online server για cams , εδώ έχω φτιάξει ένα οδηγό εύκολο που παρουσιάζει
    1) πως να προσθέσουμε κάποιους server που ακόμα έχουν υποστήριξη και
    2) πως να προσθέσουμε manual ένα plugin από ftp και μετά από το blue πάνελ εγκατάσταση .

    useraddon.rar

  2. Advertise Here
  3. #32
    Peace Love Unity douros's Avatar
    Join Date
    08-11-2009
    Location
    /gtp
    Posts
    4,149
    Uploads
    21
    Likes
    7

    Re: 10._ ΟΔΗΓΟΙ - ΡΥΘΜΙΣΕΙΣ «ΧΩΡΙΣ ΣΧΟΛΙΑ!»

    All the Telnet Commands for your DM800

    Change Enigma2 tuner root password
    Note: Minimal 5 and maximal 8 characters long, and can consist of UPPERCASE/lowercase letters and numbers.
    passwd
    Solving a jammed Enigma2 tuner
    killall enigma2
    Reboot a Enigma2 tuner
    reboot
    Reload Enigma2 tuner settings
    Note: Change X in:
    0, reloading lamedb and Userbouquets
    1, reloading lamedb only
    2, reloading Userbouquets only
    Change powerstate of a Enigma2 tuner
    Note: Change password in your used root password!
    Standby:
    DeepStandby:
    Reboot:
    Restart Enigma2:
    Wakeup from Standby:
    Basic navigation
    cd (”change directory”), will take you back to your $HOME directory
    cd
    To change to a specific directory, type cd followed by the path to the directory. If it is a subdirectory of the current directory, you can just type the directory name
    cd /path/to/directory
    Typing cd .. moves you up one directory from your current location
    cd ..
    To see which directory you are in, type pwd (”print (display) working directory”)
    pwd
    Just as it sounds, use exit to log out
    exit
    Creating and deleting directories
    To create a new directory, type mkdir (”make directory”) and specify the new directory’s name
    mkdir directoryname
    To delete an empty directory, type rmdir (”remove directory”) and the directory’s name
    rmdir directoryname
    Install & remove & list packages
    To get a package to /tmp directory on Enigma2 tuner and unzip it:
    cd /tmp
    wget exact-package-name.ipk.zip
    unzip exact-package-name.ipk.zip
    Installation:
    opkg install exact-package-name.ipk
    or
    opkg packagename
    Uninstall:
    opkg remove exact-package-name.ipk
    List installed packages:
    opkg list_installed
    List all packages:
    opkg list
    List only enigma2 plugin packages:
    opkg list "enigma2-plugin*"
    ^To filter the list, added the filtered word after the command between two stars, example: opkg list_installed *plugin*

    Update Enigma2 tuner
    init 4
    opkg update && opkg upgrade
    init 3
    exit
    Create Enigma log (see what Enigma does)
    init 4
    enigma2
    or
    init 4
    /bin/sh /usr/bin/enigma2.sh
    Telnet will output Enigma2 activity. To stop press CTRL-C.
    To resume normal operation:
    init 3
    Create Enigma screenshot
    grab /tmp/screenshot.bmp
    ^After that go with ftp client or network browser to /tmp/ directory of Enigma2 tuner/pvr and download the screenshot.bmp file. Type "grab" to see more options, for saving jpg/png files and mixing video and OSD

    Listing files
    To display a list of files and subdirectories in your current directory, type ls (”list”)
    ls
    To see a more complete list which includes hidden files or files that begin with a “.” (dot), type ls -a
    ls -a
    To list all files and directories in long format which will provide details about each file and directory, type ls -la
    ls -la
    To list all directories and files, sorted by size, in long format, type ls -lS
    ls -lS
    To list all files and directories in long format by time modified, type ls -lta
    ls -lta
    Copying files
    Copy the contents of one file to another file, resulting in two copies of the same file on your account
    cp oldfilename newfilename
    Copy the contents of one directory to another directory. Make sure you have created the destination directory before trying to copy files to it - see mkdir above. Results in two copies of the files on your account; one copy in the existing directory and another in the destination directory
    cp directory/* destinationdirectory
    Copy a whole directory tree, including subdirectories:
    cp -r /etc/enigma2 /hdd/backup/
    ^This will create /hdd/backup/enigma2, and copy everything in it

    Searching files and directories
    The find command can be used to locate files or a group of files. It can also be used to display directories. The example given will find all file and directory names within the current directory and subdirectories of it that begin with the letter n. (You can also explore using the locate command - type info locate and/or man locate for usage information.)
    find -name ‘n*’
    To locate text in a specific file or directory of files (use * in place of filename to search all of the files in the current directory). The -i argument indicates the search is to disregard cASe, the -n instructs to show the corresponding line number, and -w tells it to match only based on the whole word. (This doesn’t even begin to touch on the power of grep and its many uses. In addition to its searching capability, the grep command can be used in combination with other commands to act as a filter. It also allows the use of “wildcards”. Two other variations of grep are also available, egrep and fgrep. To begin your quest for more information, type man grep and/or info grep.)
    grep -inw text filename
    Displaying / comparing file content
    Counts and displays the number of lines, number of words, and number of characters of the given file
    wc filename
    Displays the entire contents of a file
    cat filename
    Shows the content of the file, including line numbers (nl=number lines)
    nl filename
    Displays the contents of a file one screen at a time. Press the SPACEBAR to display the next screen of text
    more filename
    Compares the contents of the two named files and reports the first different character found and the line number
    cmp filename1 filename2
    Compares the contents of the two named files and reports all of the differences found. (Can also be used for comparing the contents of two directories.)
    diff filename1 filename2
    Moving, renaming, and deleting files
    Use to rename a file (mv fileA fileB), move a file (mv fileA /dirA/), or both (mv fileA /dirB/fileB)
    mv oldfilename newfilename
    Removes (deletes) the specified file. (The -i is not necessary, but is recommended as it will prompt you to confirm the action first. When prompted, type y to confirm or type n if you changed your mind.)
    rm -i filename
    Changing permissions
    Changes the permissions on a filename or directory as specified. (First go with cd command to directory where the file is.)
    chmod permissions filename
    This permission is only nessesary if a script (*.sh) or specific type of file won't work/handle properly. Normally you don't need to give permission to new files. For "normal" files (configs, plugins, etc.) the mode should simply be 600 or 666.
    For root access use whatever is most intuitive to you, 700, 755, 777 is all ok. (On your dreambox at least.)
    Advisable is 700 to signify these files are meant to be used by root only.
    More chmod info can be found in this link.
    Here a example of a chmod for a script file
    chmod 755 HackSat_Key_downloader_userscript.sh
    You can also add or remove permissions using letters (you can see them with "ls -l", as described above), which is handy for multiple files, to strip away "execute" permission from all files, or to add "read" and "execute" to all .sh files, or make all files read-only (not writable):
    chmod a-x *
    chmod a+rx *.sh
    chmod a-w *
    Archives and compression
    To archive a directory and all of its contents including subdirectories, navigate to where the directory is located and type the above command, replacing filename.tar with the name you wish to give the archive file and directoryname with the name of the directory you wish to archive. Alternatively, you can archive a select group of individual files (or directories) by specifying each file name in place of directoryname separated by spaces, like tar -cvf filename.tar fileA fileB fileC. Note: When creating a tar file (aka “tarball”) be sure to specify the name you wish to give the tar file! (TAR indicates Tape ARchive, as it was originally a tape archiving program. The -c means “create”, v means “verbose” (which basically says tell me what you’re doing), and the f indicates that a filename will follow (filename.tar)).
    To create, list or extract from gzip compressed archives, use the extra "z" switch. Note that "-czf" if identical to "-c -z -f". Most archives were created this way
    tar -cvf filename.tar directoryname
    tar -czvf filename.tar.gz directoryname
    Typing this command will result in a list of the contents of the tar file. This is generally a good thing to do before unpacking the tar file to be sure there are no matching filenames which will result in files being unintentionally overwritten
    tar -tvf filename.tar
    tar -tvzf filename.tar.gz
    You can see the similarities to the command used to tar the file. This time, though, you use -x to “extract” instead of the -c used to create. The files will be placed in the current directory. You can also extract only certain select files (or directories) by specifying the individual names, separated by spaces, after the tar filename, such as tar -xvf filename.tar fileA fileC
    tar -xvf filename.tar
    tar -xzvf filename.tar.gz
    Instead of the -z switch, you can use gzip on the commandline to compress single files. This is much less efficient though. The filename will automatically change from filename.tar to filename.tar.gz (appending .gz to the file extension)
    gzip filename.tar
    This command (g”unzip”) is used to uncompress a .gz file, which will also result in the filename being changed back to filename.tar. Alternatively, you can use gzip -d (for “decompress”) in place of gunzip
    gunzip filename.tar.gz
    Sometimes ".tar.gz" is abbreviated to ".tgz".
    You may also encounter "bzip2" files, typically named filename.tar.bz2. To uncompress these, type the following:
    bunzip filename.tar.bz2 | tar xvf -
    ^(notice the vertical bar and the dash at the end)

    To reboot and stop the Enigma2 (Dreambox!) tuner to upload & install a image by computer browser
    Be shure you only do this if you want to reflash the Enigma2 tuner. Because your Enigma2 tuner will boot with DHCP active so that you can upload a new image by browser on a computer
    mount /boot -o remount,rw
    rm /boot/*
    reboot
    To flash an image using telnet
    This method will only work with a .img image file.
    1. Rename the image file to backup.img
    2. FTP the image file to the /tmp folder on the Enigma2 tuner
    Telnet to your box and paste the following command:
    cd /tmp && eraseall /dev/mtd/3 && cp backup.img /dev/mtd/3 && reboot
    To backup an image using telnet
    cat /dev/mtd/3 » /tmp/backup.img
    ^1)FTP to the box and navigate to the /tmp
    ^^2) Here you will find the backup.img file

    To copy an image from your PC to the Enigma2 tuner via telnet
    First of all, you need to have a mounted directory from your PC. Make sure you have the image.img file in your mounted directory on your PC. Telnet to the Enigma2 tuner and paste this command:
    cp /hdd/movie/image.img /tmp/image.img
    ^The img will be copied from your mounted directory to the /tmp folder on the Enigma2 tuner ready to be flashed

  4. #33
    VIP Member HOBSAT's Avatar
    Join Date
    08-09-2009
    Location
    Megalo Kastro
    Posts
    2,563
    Uploads
    4
    Likes
    0

    Re: 10._ ΟΔΗΓΟΙ - ΡΥΘΜΙΣΕΙΣ «ΧΩΡΙΣ ΣΧΟΛΙΑ!»

    Από άλλο φόρουμ και τον @antonis41
    τον οποίο ευχαριστώ.


    ΕΓΓΡΑΦΗ ΤΑΙΝΙΑΣ απο dm με χρηση UBUNTU και WGET

    Καλησπερα σε ολη την παρεα.Μιας και ειδα πως εδω μεσα εχεται αρκετα θεματα οσον αναφορα τα LINUX ,σκεφτηκα να γραψω καποια πραγματα
    σχετικα με την εγγραφη μιας ταινιας (για παραδειγμα) στον σκληρο δισκο του pc μεσω dreambox.Ξεχναμε εντελως το NgrabLITE.
    Πρωτα απο ολα θα χρειαστουμε ενα προγραμμα που λεγεται wget...ανοιγουμε συστημα, παμε διαχειρηση συστηματος και παταμε διαχειρηση πακετων
    synaptic. Στο searce γραφουμε wget και μας εμφανιζει ολες της σχετικες εντολες...πανω πανω συνηθως ειναι και το προγραμμα που ψαχνουμε.
    Δεξι κλικ και παταμε δημειωση για εγγατασταση,,,μετα ακολουθως παταμε στην επανω πλευρα του παραθυρου την εντολη (κουμπακι) εφαρμογη!
    Ως εδω τελειωσε το πρωτο μερος.
    Στην συνεχεισ ανοιγουμε MOZILLA ή οτι αλλο Browser δουλευετε και χτυπαμε 192.168.1.χ , την ip του dreambox δηλαδη, τωρα μολις μπητε μεσα
    επανω δεξια υπαρχει ενα εικονιδιο που λεγεται VLC, επανω εκει δεξι κλικ και κατεβασμα του αρχειου στον δισκο...αμεσως μετα κλεινετε τον Browser
    δεν μας χρειαζεται αλλο ,πλεον !!
    Το αρχειο λοιπον που κατεβηκε στον δισκο μας εχει ονομασια "video.m3u" στην συνεχεια κανοντας επανω του δεξι κλικ το ανοιγουμε με καποιο
    notepad ή επεξεργαστη κειμενου ή οτιδηποτε αλλο διαθετεται, μεσα λοιπον θα παρετε μια γραμμη εντολης του στυλ...http://192.168.1.5:31339/0,018d,0bdl...1ffe......οπως βλεπεται υπαρχει και η ip του dreambox ,μην μπερδευτητε γιατι στην συνεχεια θα αλλαξετε το 192.168.1.5 με την αντιστιχη δικη σας......ως εδω τελειωσαμε και με το δευτερο δυσκολο μερος!!
    Παμε τωρα λοιπον και φτιαχνουμε μια γραμμη του στυλ....... wget "http://root:[email protected]:31339/0,018d,0bdl,0c08,1ffe"-O C:/record.ts
    Εδω λοιπον αλλαζουμε το root:dreambox με τα αντοιστιχα συνθηματικα που μπαινουμε στο ονειροκουτι μας ,αλλαζουμε το 31339 με 31344 αναλογα με το image και το stream,και σαν ip βαζουμε τιν αντοιστιχη δικη του,
    ολα τα υπολοιπα τα παμε τυφλοσουρτη βαση του τι μας εδωσε το αρχειο 'video.m3u"
    Την Γραμμη/εντολη λοιπον την κανουμε copy past στο τερματικο μας και γραφουμε με της ωρες.Αν καποια στιγμη θελουμε να σταματησουμε την εγγραφη
    παταμε ctrl+c και φυσικα σταματανε τα παντα.Το μονο αρνητικο που υπαρχει εδω ειναι οτι πρεπει να εισαι πανω απο το μηχανημα συνεχως για να σταματησεις την εγγραφη ,δυστηχως οπου και αν εψαξα δεν βρηκα κατι να υπαρχει με εντολη timer.Aν καποιος φιλος μπορει να βοηθησει θα ηταν θαυμα.
    Εαν τωρα θελετε να γραφεται και να βλεπεται ταυτοχρονα ,βαζετε την εξης εντολη .....wget "http://192.168.1.5:31339/0,018d,0bdl,0c08,1ffe" -O - | tee file_to_save_record.ts | vlc -
    Για ολα σας γραφω τα δοκιμασα με gemini οπου οι εγγραφες ηταν κατακληκτικες οπου το συστημα δεν κρασαρε με τιποτα μιας και ολα τα εκανα με κλωνο dm500 με τα συνηθης γνωστα προβληματα!! Δεν τα εχω κανει test σε αλλο image λογικα θα δουλευει, οπως επισεις η εντολη αυτη ισχυει και για χρηστες
    windows αρκει μονο να κατεβασουν το wget και ολα τα υπολοιπα τα κανουν οπως γραφω,δεν αλλαζει τιποτα αλλο.


    εδώ και το ανάλλογο βίντεο από τον ίδιο.
    http://@@@.youtube.com/watch?v=vOKMupIuziM
    τα @ κάντε τα w



  5. #34
    VIP Member HOBSAT's Avatar
    Join Date
    08-09-2009
    Location
    Megalo Kastro
    Posts
    2,563
    Uploads
    4
    Likes
    0

    Re: 10._ ΟΔΗΓΟΙ - ΡΥΘΜΙΣΕΙΣ «ΧΩΡΙΣ ΣΧΟΛΙΑ!»

    και πάλι απο τον φίλο @Αntonis από άλλο φόρουμ . τον οποίο ευχαριστώ

    Convert script για ταινία από dm σε pc με χρήση UBUNTU και WGET

    Καλησπερα σε ολη την παρεα.
    Εδω θα αναφερθω στο πως θα κανουμε convert μια ταινια που γραψαμε απο τον dm στον σκληρο δισκο του pc με την χρηση
    του wget.
    ΠΡΟΣΟΧΗ ΟΤΑΝ ΣΑΣ ΓΡΑΦΩ ΚΑΠΟΙΕΣ ΕΝΤΟΛΕΣ ΜΕΣΑ ΣΕ ΔΙΑΛΥΤΙΚΑ του στυλ "convert.sh" ΤΑ ΔΥΑΛΥΤΙΚΑ ΑΡΙΣΤΕΡΑ ΚΑΙ ΔΕΞΙΑ ΤΟΥ
    ΚΕΙΜΕΝΟΥ-ΕΝΤΟΛΗΣ ΔΕΝ ΘΑ ΤΑ ΛΑΜΒΑΝΕΤΑΙ ΥΠΟΨΙΝ !!!

    Το θεμα θα ειναι λιγακι μακροσκελές, αλλα αξιζει την προσοχη για οσους ενδιαφερονται!
    Αλλα καθολου δυσκολο στην εφαρμογη του
    Αφου τελειωσουμε την εγγραφη της ταινιας μας θα παρουμε ενα αρχειο του στυλ "0,0108,0409,0297,0295,1rfe-O"

    Οπως παρατηρουμε εδω αυτο το αρχειο δεν εχει καταληξη mpeg ουτε κατι αλλο,
    αλλα αν του κανουμε δεξι κλικ θα ανοιξει
    με vlc ειτε με καποιο Media player και θα παιξει η ταινια μας κανονικα στο pc.

    1.βημα ειναι να κλικαρουμε μια φορα επανω στο αρχειο να το "μπλεδιασουμε" και αμεσως μετα παταμε F2 να του
    κανουμε rename ,με οτι ονομα θελουμε...για παραδειγμα "h tainia moy.mpeg" !

    2.βημα ειναι να κανουμε δεξι κλικ στην επιφανεια εργασιας και να πατησουμε δημιουργια εγγραφου ενος νεου αρχειου.

    3.βημα ειναι να δωσουμε ονομασια στο αρχειο ως "convert.sh"
    (εδω οπως βλεπεται θα φτιαξουμε script που οπως γνωστο τα
    script ειναι ολα τα λεφτα)

    4.βημα ειναι να ανοιξουμε το αρχειο "convert.sh"

    5.βημα μεσα στο κενο αυτο αρχειο κανουμε copy past την εξεις εντολη....
    ======================================== ======
    #!/bin/sh
    for file in *.mpeg
    do
    mencoder -oac mp3lame -lameopts cbr=128 -ovc xvid -xvidencopts bitrate=2200 "$file" -o output_"$file".avi
    done
    ======================================== ======
    6.βημα παταμε ctrl+s να σωσουμε το αρχειο και το κλεινουμε

    7.βημα παταμε δεξι κλικ και κατεβαινουμε κατω κατω και παταμε ιδιοτητες-properties....
    στην καρτελα που θα μας ανοιξει
    κλικαρουμε σε αυτην που λεει ΔΙΚΑΙΩΜΑΤΑ....
    και εκει μεσα το μονο που κανουμε ειναι να κλικαρουμε κατω κατω που λεει
    "να επιτρεπεται η εκτελεση του αρχειου ως προγραμμα" και κατοπιν παταμε κλεισιμο.

    8.βημα παταμε δεξι κλικ στην επιφανεια εργασιας και δημιουργουμε ενα νεο φακελο,
    οπου εκει μεσα βαζουμε την ταινια μας
    "h tainia moy.mpeg" και οπως και το αρχειο που δημιουργησαμε "convert.sh"

    9.βημα Μεσα στον φακελο αυτο κανουμε διπλο κλικ στο αρχειο "convert.sh" και αυτοματως θα μας εμφανιστει μια
    καρτελα που θα λεει τα εξεις παρακατω.....

    α)Εκτελεση απο τερματικο
    β)Εμφανιση
    γ)Ακυρωση
    δ)Εκτελεση

    εμεις θα πατησουμε το δ-εκτελεση και αυτοματως μεσα στον φακελο αυτον θα δειτε να τρεχει και ενα τριτο αρχειο
    που θα ανομαζεται "h tainia moy.mpeg.avi"

    Σε περιπτωση που δεν συμβει κατι τετοιο που αναγραφω στο βημα 9
    ριξτε μια ματια μεσα στον φακελο που ειναι η ταινια
    με το αρχειο "convert.sh" επαναλαμβανοντας το βημα 7.

    Εδω τελειωσε ολη η αναφορα μου με το convert και θα μπω σε καποιες παρατηρησεις για περισσοτερη βοηθεια

    1-Αφου λοιπον εκτελοντας το βημα 9 και αρχιζει και τρεχει το 3 αρχειο "h tainia moy.mpeg.avi"
    το οποιο αρχειο ειναι
    και το τελικο αρχειο που χρειαζομαστε, μπορουμε να κλεισουμε τον φακελο που το εχουμε προσορινα αποθηκευμενο και
    να εκτελουμε αλλες εργασιες στα linux ,αυτο καποια στιγμη θα τελειωση αναλογα φυσικα με το μεγεθος της ταινιας

    2-Αφου τελειωση το convert μπορουμε πατωντας F2 να κανουμε rename στο αρχειο με καταληξη .avi

    3-Μπορουμε να φτιαξουμε πολλους φακελους με πολλες ταινιες για convert ΤΑΥΤΟΧΡΟΝΑ
    και να τρεχουν ολα μαζι ,αναλογα με
    την ταχυτητα του επεξεργαστη μας....αρκει και μονο να υπαρχει στοκ καθε φακελο ΜΟΝΟ ΜΙΑ ΤΑΙΝΙΑ ΜΕ ΤΟ ΑΝΤΙΣΤΟΙΧΟ
    "convert.sh" και παντα να δινεται προσοχη στο βημα 7

    4-το bitrate ειναι στα 2200...μπορειτε να τα αυξομειωσετε απο 1600 εως 2500 και θα εχετε και τα αντίστοιχα
    ποιοτικα αποτελεσματα....αυτο ειναι δικη σας επιλογη!
    Εγω το εχω στα 2500 και ειναι τελειο...

    ΟΟΟΟυυυυφφφφφφ Αυτα........

    καλες εγγραφες σε ολους......βαλτε λινουξ....ειναι τζαμπα και καλλυτερα...ετσι τουλαχιστον θελω να νομιζω......

    Ευχαριστω για την φιλοξενια και ζητω συγνωμη για τα πολλα μπλα -μπλα......

  6. #35
    Peace Love Unity douros's Avatar
    Join Date
    08-11-2009
    Location
    /gtp
    Posts
    4,149
    Uploads
    21
    Likes
    7

    Re: 10._ ΟΔΗΓΟΙ - ΡΥΘΜΙΣΕΙΣ «ΧΩΡΙΣ ΣΧΟΛΙΑ!»

    ΟΔΗΓΟΣ ΓΙΑ LOGGING

    Κατεβάζουμε το Irdeto EMM Extractor 1.98 και το ΕΜΚ 3.1/ΕΜΚ 3.5.......(βρείτε τα)
    Ανοίγουμε το Irdeto EMM Extractor 1.98 και πατάμε Options πάνω αριστερά και μετά Dream Log Server
    Το μόνο που αλάζετε εδώ είναι η ip που έχει το dreambox......τα άλλα παραμένουν ως έχουν και πατάτε Save
    log.jpg

    Ξανά πατάμε Options και μετά Log Files
    Στη πάνω σερά είναι η διαδρομή που βρίσκεται το πρόγραμμα (το αφήνουμε ως έχει) και απλά τικάρουμε την επιλογή EMM Type και του δίνουμε ένα όνομα που θα έχουν τα text που θα δημιουργούνται (εγώ το έχω logfile εδώ.....βάζετε ότι θέλετε) και πατάτε Save
    log1.jpg

    Αφού έχουν γίνει αυτά πατάμε Start Logging και το πρόγραμμα αρχίζει και δημιουργεί σε μορφή text τα EMM Logs στο φάκελο εγκαταστασής του

    Πάμε τώρα στο κομμάτι που θέλουμε να στείλουμε ένα log στη κάρτα μας

    Ανοίγουμε το EMK 3.1/EMK 3.5 και πατάμε RESET, ώστε το πρόγραμμα να μας εμφανίσει τα στοιχεία της κάρτας........εδώ για παράδειγμα έχουμε για HSN το 719E4D (δεν υπάρχει σε αρχείο....είναι μόνο για παράδειγμα), και κάνουμε copy το HSN
    log2.jpg

    Αφού έχουμε κάνει copy το HSN μας, ανοίγουμε με το notepad, το logfile που έχουμε απο το λογκαρισμά μας, ή που έχουμε κατεβάσει, πατάμε Επεξεργασία και μετά Εύρεση και κάνουμε paste to HSN
    log3.jpg

    Και πατάμε εύρεση επόμενου και βλέπουμε ότι βρήκε το HSN μας
    log4.jpg

    Μετά κάνουμε copy από τη γραμμή που βρέθηκε το HSN, αυτό 824038ΧΧΧΧΧΧΧΧΧΧΧΧΧΧΧΧΧΧΧΧΧΧΧΧΧΧΧΧΧΧΧΧΧΧ ΧΧΧΧΧΧΧΧΧΧΧΧΧΧΧΧΧΧΧΧΧΧΧΧΧΧΧΧΧΧΧΧΧΧΧΧΧΧΧΧ ΧΧΧΧ
    log5.jpg

    Ξανά γυρνάμε στο EMK 3.1/EMK 3.5 και κάνουμε paste τη γραμή από το logfile στο πεδίο που λέει Logged Data to Send to Card και πατάμε SEND TO CARD
    Μπορεί το πρόγραμμα να μας πεις EMM Not Successfull, απλά το αγνοούμε και είμαστε σίγουρη ότι τη δέχτηκε τη γραμμή εάν δούμε το 3F που έχω μέσα σε κύκλο
    log6.jpg

    Για το κόπο που έκανα να τα ετοιμάσω.......κεράστε καμιά μπύρα στο καφενέ

  7. #36
    VIP Member nikolas021292's Avatar
    Join Date
    21-04-2009
    Posts
    3,287
    Uploads
    10
    Likes
    0

    Re: 10._ ΟΔΗΓΟΙ - ΡΥΘΜΙΣΕΙΣ «ΧΩΡΙΣ ΣΧΟΛΙΑ!»

    New Extras 10_2012 για nemesis E2 το αποσυμπιέζουμε και το ρίχνουμε με dcc στον φάκελο etc
    Attached Files Attached Files

Page 4 of 4 FirstFirst ... 234
Advertise Here

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •