Çسî DSM 6.2.3-25426 Update 2 ¼º°ø

   Á¶È¸ 5759   Ãßõ 0    

https://www.synology.com/ko-kr/releaseNote/DS918+#ver_25426-2 (529)

FX2421 지원 추가, 보안패치랑 버그 수정이네요.

   


   

What's New

   

  1. Added support for Synology Expansion Unit FX2421.

   

Fixed Issues

   

  1. Fixed the issue where a DS920+ or DS720+ might not enter hibernation when its connected expansion unit has entered deep sleep.
  2.     
  3. Fixed the issue where drive status LED indicators on a connected expansion unit might not work properly when the expansion unit wakes up from deep sleep.
  4.     
  5. Fixed the issue where daylight saving time might not display correctly in certain time zones (e.g., Dublin, Casablanca).
  6.     
  7. Fixed the issue where mounted remote shared folders on a Synology NAS may cause volumes to operate improperly or the Synology NAS unable to shut down in certain scenarios.
  8.     
  9. Fixed the issue where the system might incorrectly prompt "drive slot disabled” notice when a DS413 or DS213+ wakes up from deep sleep.
  10.     
  11. Enhanced the performance in writing a large number of files to a Btrfs volume with RAID 1 configuration using hard disk drives (HDD).
  12.     
  13. Fixed the issue where Synology Universal Search and Synology Drive might consume excessive CPU resources when the option "Utilize unused memory as database cache to improve (search) performance" has been enabled.
  14.     
  15. Fixed the issue where domain-related services might not resume working because the update of domain data could not be complete.
  16.     
  17. Fixed security vulnerabilities (Synology-SA-20:18).
  18.     
  19. Fixed the issue where the system might incorrectly prompt IP address conflict warning if a network interface card is attached to Synology NAS and the option "Reply to ARP requests if the target IP address is a local address configured on the incoming interface" is disabled.
  20.     
  21. Fixed the issue where the status of an Ethernet port might not be detected properly when the Ethernet port is not connected to a network cable while Open vSwitch has been enabled.


asrcok J4105-ITX + 1.04b(0.13.3드라이버) + 918+ 네이티브 업데이트 후 아직 문제없네요.

설치 후 재부팅 합니다.


ªÀº±Û Àϼö·Ï ½ÅÁßÇÏ°Ô.
asus z170 hero, i7-7700t + 1.04b 918+ , VMWare Workstation ±â¹Ý¿¡¼­ upgrade ¼º°øÇß½À´Ï´Ù.
DSM 6.2.3-25426 Update -> DSM 6.2.3-25426 Update 2
¾÷µ¥ÀÌÆ®¸¦ À§ÇØ ³»·Á¹ÞÀº ¾÷µ¥ÀÌÆ® ÆÄÀÏ ¼Õ»óµÇ¾ú´Ù´Â ¸Þ¼¼Áö°¡ ÀÚ²Ù ¶°¼­
¾Æ·¡ URL ó·³ ÁøÇàÇÏ¿© ÇØ°áÇÏ¿´½À´Ï´Ù.
https://xpenology.com/forum/topic/28183-running-623-on-esxi-synoboot-is-broken-fix-available/
¿ä¾à
1. Download the attached FixSynoboot.sh script  --> À§ »çÀÌÆ®¿¡ ÀÖÀ½.
2. Copy the file to /usr/local/etc/rc.d   
3. chmod 0755 /usr/local/etc/rc.d/FixSynoboot.sh
4. xpenology reboot
5. upgrade
     
ÁöÀÎȯ 2020-07
°¨»çÇÕ´Ï´Ù.
´öºÐ¿¡ ÇØ°áÇÏ¿´½À´Ï´Ù.

Esxi 6.7, 1.04b 918+ ȯ°æÀÔ´Ï´Ù.
          
µµ¿òÀÌ µÇ¼Ì´Ù´Ï ´ÙÇàÀÔ´Ï´Ù. Áñ°Å¿î ÁÖ¸»µÇ¼¼¿ä
               
#!/bin/ash
# FixSynoboot() extracted from Jun 1.04b loader
# added hotplug-out event to gracefully clean up esata volumes 2020-Apr-18
# cleaned up share references in message log and root folder 2020-May-16

FixSynoboot()
{
if [ ! -e /dev/synoboot ]; then
  tail -n+3 /proc/partitions | while read major minor sz name
  do
    if echo $name | grep -q "^sd[[:alpha:]]*$";then
      basename=$name
      minor0=$minor
      synoboot1=""
      synoboot2=""
      continue
    fi
    if [ $name = "${basename}1" -a $sz -le 512000 ]; then
      synoboot1="$name"
      minor1=$minor
    elif [ $name = "${basename}2" -a $sz -le 512000 ]; then
      synoboot2="$name"
      minor2=$minor
    else
      continue
    fi
    if [ -n "$synoboot1" -a -n "$synoboot2" ]; then
      # begin hotplug event added
      if [ -e /sys/class/block/$basename ]; then
        port=$(synodiskport -portcheck $basename)
        df | grep "^/dev/$basename." | while read share; do
          share=$(echo $share | awk '{print $1,$NF}')
          sharedir=$(echo $share | awk '{print $2}')
          sharebase=$(echo $sharedir | awk -F\/ '{print $2}')
          sharedir=$(echo $sharedir | awk -F\/ '{print $3}')
          if ( synocheckshare --vol-unmounting $port $share ); then
            umount $(echo $share | awk '{print $1}')
            grep -v "^$share" /run/synostorage/volumetab >/tmp/volumetab
            mv /tmp/volumetab /run/synostorage/volumetab
            rm "/$sharebase/@eaDir/$sharedir/SYNO@.attr"
            find "/$sharebase" -empty -type d -delete 2>/dev/null
          fi
        done
        echo "remove" >/sys/class/block/$basename/uevent
      fi
      # end

      rm "/dev/$basename"
      rm "/dev/$synoboot1"
      rm "/dev/$synoboot2"
      rm "/dev/${basename}3"
      mknod /dev/synoboot b $major $minor0
      mknod /dev/synoboot1 b $major $minor1
      mknod /dev/synoboot2 b $major $minor2
      break
    fi
  done
fi
}

RUNAS="root"

case $1 in
    start)
FixSynoboot
        exit 0
        ;;
    stop)
        exit 0
        ;;
    status)
        exit 0
        ;;
    log)
        exit 1
        ;;
    *)
        exit 1
        ;;
esac
                    
Á¦°¡ ¸¶Ä§ Æ÷·³ °èÁ¤ÀÌ À־ ½ºÅ©¸³Æ® ¿Å°Ü º¾´Ï´Ù. ÆÄÀÏ·Î ÇÊ¿äÇϽźР¿äûÁֽøé ÀÚ·á½Ç¿¡µµ ¿Ã·Á µå¸®°Ú±Þ´Ï´Ù.
                         
ÆÛ½Ì±Û 2020-07
ÀÚ·á½Ç¿¡ ¾÷·Îµå ºÎŹµå¸³´Ï´Ù
                         
ÀÚ·á½Ç¿¡µµ ¿Ã·È½À´Ï´Ù.
http://www.2cpu.co.kr/PDS/13495
ºí·¢ÆÞ 2020-07
3615xs. 
I3-7100t, ½´¸¶ x11she,1.03b ¾÷±Û¼º°øÀÔ´Ï´Ù
À̼¼¶ó 2020-07
Àúµµ Á¤»ó¾÷µ¥ÀÌÆ® µÇ¾ú½À´Ï´Ù.
i5-45xx
h81m-ds2v
1.04b 918+
NEXT-362DCP dual lan
½ÇÄÄ
i5-45xx ¼¼´ë 2´ë ¸ðµÎ Á¤»ó ¾÷µ¥ÀÌÆ® µÇ¾ú½À´Ï´Ù.
ÆÛ½Ì±Û 2020-07
¾îÂî¾îÂîÇÏ¿© °øÀ¯Æú´õ ±îÁø È­ÀÏ(FixSynoboot.sh)À» °¡Á®¿Í¼­ Ä«ÇǸ¦ ÇÏ·Á Çߴµ¥ Permission denied°¡ ¶ß³×¿ä.
Linux,Unix ¿ÏÀü Àë¹ðÀÌÀÔ´Ï´Ù.
Åڳݿ¡¼­

admin@XPE_CLT2:/volume2/thefunedu/TheFunHDD$ cp FixSynoboot.sh /usr/local/etc/rc.d/FixSynoboot.sh

cp: cannot create regular file ??usr/local/etc/rc.d/FixSynoboot.sh?? Permission denied

¾î¶»°Ô ÇØ¾ß Æ۹̼ÇÀ» ¾òÀ»±î¿ä?
j4105 ¾÷µ« ¼º°ø
ÁÒ½´¾Æ 2020-07
DS3617xs¿¡¼­´Â DSM ¼³Ä¡ÇÏ¸é ¹Ù·Î 6.2.3-25426 Update 2ÀÌ µË´Ï´Ù.
ÆÄÀÏ ¼Õ»óµÇ¾ú´Ù´Â ¸Þ¼¼Áö ÀÌ·±°Å ¾ø´øµ¥...


NAS
Á¦¸ñPage 204/303
2015-12   1077503   ¹é¸Þ°¡
2014-05   4526393   Á¤ÀºÁØ1
01-08   929   ¶óÁîOMV
03-24   959   Ç×°ø¸ðÇÔ
2014-03   3355   Çϳª¾Æºü
2015-08   4905   ¿ÀÆÛ·¹ÀÕ
2016-02   8337   ĵÀ§µå
2016-03   5852   ±è¿µÇÑ
2017-01   3820   ³ª³ëÅ¥ºê
2017-11   3691   dongcheol
2018-11   7133   Bermuth
2019-03   2809   ´Ü¾Æ
2019-06   3784   ÅëÅë9
2020-03   3887   À²À̺üºü
2020-04   3965   ²¬±¸
2020-07   5760   À̹ο쿡¿ä
2021-01   1592   Negatic
2021-02   1317   ÇϾá¾Æºü
2021-10   2153   inoriks
2022-04   1559   KurTurCho
2022-09   1415   Rainwalk
2023-07   1403   Ãʺ¸³ª½º