Jump to content
XPEnology Community

Search the Community

Showing results for 'SataPortMap'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Information
    • Readers News & Rumours
    • Information and Feedback
    • The Noob Lounge
  • XPEnology Project
    • F.A.Q - START HERE
    • Loader Releases & Extras
    • DSM Updates Reporting
    • Developer Discussion Room
    • Tutorials and Guides
    • DSM Installation
    • DSM Post-Installation
    • Packages & DSM Features
    • General Questions
    • Hardware Modding
    • Software Modding
    • Miscellaneous
  • International
    • РУССКИЙ
    • FRANÇAIS
    • GERMAN
    • SPANISH
    • ITALIAN
    • KOREAN

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


About Me

  1. I also mention that it is recommended to plug your HDD starting from the first sata port, that is SATA0. If you have only one drive then it should be SataPortMap=1 if you have 2 drives then SataPortMap=2 and so on.
  2. You mean this part? : Because I altered the SataPortMap value already to reflect my system; SataPortMap=1 Edit: I changed SataPortMap=1 to SataPortMap=10 with the append grub command. (Figuring SATA0 port has 1 drive, SATA1 port has 0) Now I see this message when connecting: This is the normal Migration message? Or is this install as in re-install? Edit: Clicking "Install" answered my question
  3. Thank you. There was this BIOS option which simulates a removable drive to be Auto/FDD/HD etc. I forced it be HD and now it succesfully boots the loader. The system shows up in Synology Assistant as "Migratable". Now there is the following messages when connecting: In this system there are 2 SATA ports. The first one has 1 HD connected. Do I have to change "SataPortMap=" value? SATA ports are in AHCI mode.
  4. I have a N54L as well, with four HDD's. My update went flawlessly. I did however (just to be save) appended the SATAportmap option in the config file.
  5. Il est brut comme au moment du dl. grub.cfg if serial --port=0x3F8 --speed=115200;then set has_serial=true terminal_input --append serial terminal_output --append serial else clear fi terminal_input --append console terminal_output --append console if [ x"${grub_platform}" = xefi ]; then insmod efi_gop insmod efi_uga else insmod vbe fi set extra_initrd="extra.lzma" set info="info.txt" set vid=0x058f set pid=0x6387 set sn=C7LWN09761 set mac1=0011322CA785 set rootdev=/dev/md0 set netif_num=1 set extra_args_3615='' set common_args_3615='syno_hdd_powerup_seq=0 HddHotplug=0 syno_hw_version=DS3615xs vender_format_version=2 console=ttyS0,115200n8 withefi elevator=elevator quiet' set sata_args='sata_uid=1 sata_pcislot=5 synoboot_satadom=1 DiskIdxMap=0C SataPortMap=1 SasIdxMap=0' set default='0' set timeout='1' set fallback='1' if [ -s $prefix/grubenv ]; then load_env set default="${saved_entry}" fi VERSION="with Jun's Mod v1.01" function savedefault { if [ -s $prefix/grubenv ]; then saved_entry="${chosen}" save_env saved_entry fi } function do_option { if [ $# -lt 2 ]; then eval "set value=\"\$$1\"" echo "current $1: $value"; return; fi set key=$1 shift set $key="$*" if [ -s $prefix/grubenv ]; then save_env $key fi } function vid { do_option vid $@; } function pid { do_option pid $@; } function sn { do_option sn $@; } function mac1 { do_option mac1 $@; } function mac2 { do_option mac2 $@; } function mac3 { do_option mac3 $@; } function mac4 { do_option mac4 $@; } function rootdev { do_option rootdev $@; } function append { do_option extra_args_3615 $@; } function vidpid { if [ $# -lt 2 ]; then echo "usage: vidpid 0xVVVV 0xPPPP"; return; fi set usb_args="vid=$1 pid=$2" if [ -s $prefix/grubenv ]; then save_env usb_args fi } function showtips { if [ -n "$has_serial" ]; then terminal_output --remove serial fi echo "Screen will stop updating shortly, please open http://find.synology.com to continue." echo echo if [ -n "$has_serial" ]; then terminal_output --append serial fi } function loadinitrd { if [ -s $img/$info ]; then if [ -n "$has_serial" ]; then terminal_output --remove serial fi cat $img/$info if [ -n "$has_serial" ]; then terminal_output --append serial fi fi if [ -s $img/$extra_initrd ]; then initrd $img/ramdisk.lzma $img/$extra_initrd else initrd $img/ramdisk.lzma fi } function common_add_option { eval "set value=\"\$$1\"" if [ -z $value ]; then return 1; fi set common_args="$common_args $1=$value" } function common_add_option_ex { eval "set value=\"\$$1\"" if [ -z $value ]; then return 1; fi set common_args="$common_args $2=$value" } function loadlinux { set model=$1 set bootdev=$2 shift 2 if [ -n $vid -a -n $pid ]; then set usb_args="vid=$vid pid=$pid" fi eval "set common_args=\"\$common_args_$model\"" eval "set extra_args=\"\$extra_args_$model\"" eval "set bootdev_args=\"\$${bootdev}_args\"" common_add_option_ex rootdev root common_add_option sn if common_add_option mac1; then set netif_num=1; fi if common_add_option mac2; then set netif_num=2; fi if common_add_option mac3; then set netif_num=3; fi if common_add_option mac4; then set netif_num=4; fi common_add_option netif_num if [ -z $zImage ]; then set zImage=zImage fi linux $img/$zImage $common_args $bootdev_args $extra_args $@ } menuentry "DS3615xs 6.02 Baremetal $VERSION" --class os { set img=/image/DS3615xs savedefault loadlinux 3615 usb loadinitrd showtips } menuentry "DS3615xs 6.02 Baremetal $VERSION Reinstall" --class os { set img=/image/DS3615xs savedefault loadlinux 3615 usb mfg loadinitrd showtips } menuentry "DS3615xs 6.02 Baremetal $VERSION Force Install" --class os { set img=/image/DS3615xs savedefault loadlinux 3615 usb mfg syno_port_thaw=1 loadinitrd showtips } menuentry "DS3615xs 6.02 Baremetal AMD $VERSION" --class os { set img=/image/DS3615xs set zImage=bzImage savedefault loadlinux 3615 usb loadinitrd showtips } menuentry "DS3615xs 6.02 VMWare/ESXI $VERSION" --class os { set img=/image/DS3615xs savedefault loadlinux 3615 sata loadinitrd showtips } Hide
  6. Oui tout à fait, je ne modifie plus le grub.cfg car je n'obtient pas le menu. J'ai à nouveau repris le dl fichier img, j'arrive bien au menu. je met le vid + pid + sn + mac1 + timeout=3 et append SataPortMap=4 c'est tout, rien d'autre, disk en AHCI Ce que je ne comprend pas c'est l'erreur "no such partition" il cherche une partition sur les disk ou sur la clé usb ? Le seul problème que j'avais avec la 5.2 était que le bios resetait à chaque redémarrage, il fallait à chaque fois appuyer sur "F1" pour continuer.
  7. Bonjour Polanskiman, J'ai un message d'erreur lorsque je veux joindre un document. "Sorry, the board attachment quota has been reached." Les modif Grub.cfg: set vid=0x1AA6 set pid=0x0201 set sn=B2LWN03576 set mac1=001132FF6E50 set rootdev=/dev/md0 set netif_num=1 set extra_args_3615='' set common_args_3615='syno_hdd_powerup_seq=0 HddHotplug=0 syno_hw_version=DS3615xs vender_format_version=2 console=ttyS0,115200n8 withefi elevator=elevator quiet' set sata_args='sata_uid=1 sata_pcislot=5 synoboot_satadom=1 DiskIdxMap=0C SataPortMap=4 SasIdxMap=0' set default='0' set timeout='3' set fallback='1' Pour info: Lorsque je laisse la clé tel quel sans modification, j'ai bien le menu. Si je fais les modif je n'ai plus le menu et j'arrive sur la racine: GNU GRUB version 2.02~beta2-9ubuntu1.12 Minimal BASH-like line editing is supported. For the first word, TAB lists possible command completions. Anywhere else TAB lists possible device or file complettions. grub> Donc, je laisse la clé tel quel et je modifie quand j'arrive au menu avec "C" Après losque je choisis "Réinstall" ou "Force Install" j'ai l'erreur "no such partition" Erreur exact: error: failure reading sector 0x363d from 'hd0' error: failure reading sector 0x3561 from 'hd0' error: failure reading sector 0x3561 from 'hd0' Screen will stop updating shortly, please ope http://find.synology.com to continue Press any key to continue... et je reviens au menu. Voilà j'espère avoir été explicite, j'ai les photos mais impossible de les poser sur le forum si vous avez une adresse mail, je peux vous les envoyer. Merci pour votre aide...
  8. martva

    DSM 6.1.x Loader

    -=SUCCES: BAREMETAL N54L/4HDD/4G=- Followed the instructions here: http://xpenology.com/forum/viewtopic.php?f=2&t=22100 Changes: Changed the vid= using my own USB VID Changed the pid= using my own USB PID Changed the sn= using my own generated SN Changed the mac1= using my own generated MAC address Changed set timeout='1' to set timeout='10' Changed set default='0' to set default='3' For default AMD bootoption appended SataPortMap=4 After boot I went to find.synology.com Updated from 5.2.5592 to 6.0.2.8451 After reboot I lost my static ip settings. I needed to set this manual again. I updated to Update 5 without any problems. I also saw Synology finally released Source code for branche 8451. https://sourceforge.net/projects/dsgpl/files/Synology%20NAS%20GPL%20Source/8451branch/bromolow-source/
  9. Donc, je ne touche pas au "SataPortMap=1" du grub.cfg ? Bon, je reviens avec la même erreur que le début de mon post grub> Hors, avec l'xpe 5.2 ça fonctionne correctement J'ai retenté en recommençant clé etc... J'arrive bien au menu, bien sur avec une autre erreur: error: no such partition error: no such partition Screen will stop updating shortly, please open http://find.synology.com to continue. Et je reviens automatiquement au menu avec la sélection. Je ne comprend vraiment pas.
  10. Pourquoi avoir mis SataportMap=44 ? En principe il n'y a pas besoin de cela d' autant plus que le port sata a 6 ports et que cela devrait donc être plutôt =6 Il faut mettre le nombre de disque présents. Donc si 5 disques alors SataPortMap=5, si 4 disques alors SataPortMap=4. Soyez sûr de branchez les disques en commencant par le premier port sata normalement indiqué comme SATA0. bonjour, Lorsque vous me dites SataPortMap=5 (pour 5 disks) c'est bien au niveau du grub.cfg ou après avoir le menu : Append sataportmap=4 ? Je conseille append SataPortMap= aprés le menu.
  11. Pourquoi avoir mis SataportMap=44 ? En principe il n'y a pas besoin de cela d' autant plus que le port sata a 6 ports et que cela devrait donc être plutôt =6 Il faut mettre le nombre de disque présents. Donc si 5 disques alors SataPortMap=5, si 4 disques alors SataPortMap=4. Soyez sûr de branchez les disques en commencant par le premier port sata normalement indiqué comme SATA0. bonjour, Lorsque vous me dites SataPortMap=5 (pour 5 disks) c'est bien au niveau du grub.cfg ou après avoir le menu : Append sataportmap=4 ?
  12. Pourquoi avoir mis SataportMap=44 ? En principe il n'y a pas besoin de cela d' autant plus que le port sata a 6 ports et que cela devrait donc être plutôt =6 Il faut mettre le nombre de disque présents. Donc si 5 disques alors SataPortMap=5, si 4 disques alors SataPortMap=4. Soyez sûr de branchez les disques en commencant par le premier port sata normalement indiqué comme SATA0.
  13. ok merci je vais essayer... En mettant sataportmap=6 je n'ai plus de menu
  14. Pourquoi avoir mis SataportMap=44 ? En principe il n'y a pas besoin de cela d' autant plus que le port sata a 6 ports et que cela devrait donc être plutôt =6
  15. Bonjour Polanskiman, Et merci pour votre retour... alors oui pour les 4 go .... J'ai refait la clé usb sur une autre machine et j'arrive bien au menu. Le seul problème est quand je sélectionne la ligne "réinstall" j'ai une erreur : " error: no such partition" je ne sais pas combien de contrôleur, j'ai comme info "Built-in ICH9/9R SATA Controller" avec 6 ports. Est-ce que ça viendrait du "SataPortMap=44" ? j'avoue, j'ai vraiment un peu de mal.
  16. Do we have to edit the entry "SataPortMap=22" ??
  17. Merci pour ce très bon tuto, j'ai pu installé avec succès DSM 6 sur 2 machines. Néanmoins quelques points que je pense méritent mention : - Sur mes 2 machines les disques durs n'étaient pas détectés lors de l’installation s'ils n'étaient pas branchés dans l'ordre sur les ports sata de la carte mère (par exemple avec 2 HDD, un sur port 0 et l'autre sur port 1 -> OK. Un sur port 1 et l'autre sur port 2 -> non détecté), que ce soit avec le mode normal, force instal, ou avec l'astuce SataPortMap. C'est mentionné dans le tuto dans la parti SataPortMap, mais je pense que ça pourrait être plus clair, et mentionné plus tot dans le tuto, car ce n'est apparemment pas limité à l'utilisation de cette astuce. - En utilisant force instal, il ne faut pas oublié de revenir en mode normal lors du reboot automatique durant l’installation, sinon ça re-propose d'installer lorsqu'on se reconnecte sur l'IP du NAS. Revenir en mode normal après avoir reboot en force instal (en cas d'oubli de changer lors du reboot automatique) a l'air de créer des problèmes d'installation, bref il vaut mieux guetter le reboot automatique et être près à revenir en mode normal à ce moment là - Le DS 3615 ne supporte pas la création de volumes SHR mais on peut réactiver le support, pour ça il faut modifier un fichier du DSM, l'accès root est requis, le problème c'est qu'il n'y a plus de compte root avec les récents DSM donc apparemment impossible de se connecter avec les droits nécessaire pour modifier le fichier avec WinSCP pour une édition facile. On peut utiliser l'éditeur vi en se connectant via SSH avec putty par exemple, et en élevant vos droits avec sudo -i mais perso je capte pas comment utiliser vi. libre à vous de l'utiliser si c'est dans vos cordes. edit : suivez plutôt la méthode avec vi plus bas dans la page qui ne nécessite pas de réactiver le compte root : https://xpenology.com/forum/topic/6367-tuto-installermigrer-dsm-52-à-602-loader-jun/?do=findComment&comment=58826 Pour pouvoir éditer avec WinSCP la solution c'est de réactiver le compte root : - activer l'accès SSH dans DSM - connecter avec un client SSH (genre putty) - login avec le compte admin - sudo -i pour élevé les droits - synouser --setpw root votre_nouveau_mot_de_passe_root - exit - connecter vous avec WinSCP avec come login root et votre mot de passe root que vous venez de créer. - aller à /etc.defaults/synoinfo.conf - passez en commentaire ou bien supprimer supportraidgroup="yes" - ajouter support_syno_hybrid_raid="yes" - sauvegarder et quitter Maintenant Synology a désactivé le compte root sur les récents DSM pour des question de sécurité, donc si quelqu'un sait si re-désactiver le compte root est possible alors je veux bien la manip En tous cas la manip fonctionne correctement (d'autres utilisateurs en on parlé aussi sur le topic du loader).
  18. Locutus

    DSM 6.1.x Loader

    I read, but i am not sure how to check it. I try the syntax "append SataPortMap=422" and result found that DSM cannot find any HDD. Is that relate to my hardware spec? I don understand how to check the number of port and the number of controller. I have a gen7 N40L and use "SataPortMap=51" with 5 disks at first and now 6 disks without problems
  19. I successfully created a DSM6 key and booted my N54L and it is found on the network. So, I guess that there is a problem with the creation of your key. I followed this: ==> viewtopic.php?f=2&t=22100&p=76338#p76338 but the changes I made to grub.cfg were to: set my VID and PID; set sn and mac; Sataportmap to 4 and I got frustrated with trying to set the default boot menu item and just deleted all the ones I didn't want leaving the AMD option.
  20. tomoki

    DSM 6.1.x Loader

    I read, but i am not sure how to check it. I try the syntax "append SataPortMap=422" and result found that DSM cannot find any HDD. Is that relate to my hardware spec? I don understand how to check the number of port and the number of controller.
  21. What SataPortMap= do you have in your config grub.cfg file? I didn't. Is that it is a must? and I donno what is the correct syntax. Should I type "SataPortMap=422" if I have 5 HDD? How can I check my SATA controller? Have a read at the tutorial. It's all explained there >>> viewtopic.php?f=2&t=22100
  22. tomoki

    DSM 6.1.x Loader

    What SataPortMap= do you have in your config grub.cfg file? I didn't. Is that it is a must? and I donno what is the correct syntax. Should I type "SataPortMap=422" if I have 5 HDD? How can I check my SATA controller?
  23. tomoki

    DSM 6.1.x Loader

    What SataPortMap= do you have in your config grub.cfg file? I didn't. Is that it is a must? and I donno what is the correct syntax. Should I type "SataPortMap=422" if I have 5 HDD? How can I check my SATA controller?
  24. What SataPortMap= do you have in your config grub.cfg file?
  25. dabone

    Working DSM 6

    I've installed 6 using the "DSM 6.0.2 Loader ( was "A new loader for latest DSM")" I'm using a Intel S1200KP motherboard, Xeon 1225 Cpu, 16GB ram and 4 sata HDDS connected to the motherboard. I also have a secondary NIC card using the 82571eb chipset. Install was very easy, I modded the img file grub config and changed the vid/pid and and added the Mac's for all 4 intel nics. Then during the first boot I added the append SataPortMap=4 Right after install, I upgraded the the latest DSM "DSM 6.0.2-8451 Update 4" The only issue I'm having is that I can't create a volume without creating a raid set. I've tried AHCI and raid modes on the controller. All the drives are seen fine, just no option to create the volume. it says "The is no RAID Group in your system, please go to RAID Group tab to create a new RAID group first." Any suggestions? Thanks, later, dabone
×
×
  • Create New...