Speed Issue on an UPDATE from a sub-select

Ignoring the fact this is a Spatial Query... having troubles understanding why a select finishes very quickly, yet putting the same select syntax in an UPDATE command as a sub-select takes forever to finish. Columns in the original table are indexed (ie SANITARY_MH_DATA.GIS_ID). The work-around has been to load a Temporary table with the sub-select results, followed by an UPDATE command. But it creates more sql code than needed.
Any hints appreciated.
Phil.
-- FIND THE SANITARY CATCHMENT THE MANHOLE IS IN --
-- need to add the ones that fall into more than 1 catchment
-- with the mask=TOUCH
UPDATE SANITARY_MH_DATA SET CATCHMENT_NAME = '';
-- THIS BLAZES AND IS DONE IN 5 SECONDS...
SELECT CATCHMENT_ID FROM
(SELECT A.GIS_ID AS MANHOLE, B.GIS_ID AS CATCHMENT_ID
FROM SANITARY_MH A, SANITARY_CATCHMENT B
WHERE SDO_RELATE (A.GEOMETRY,B.GEOMETRY, 'mask=INSIDE querytype=Window') = 'TRUE');
-- THIS BOGS DOWN AND TAKES FOREVER TO FINISH...
UPDATE SANITARY_MH_DATA SET CATCHMENT_NAME = ( SELECT CATCHMENT_ID FROM
(SELECT A.GIS_ID AS MANHOLE, B.GIS_ID AS CATCHMENT_ID
FROM SANITARY_MH A, SANITARY_CATCHMENT B
WHERE SDO_RELATE (A.GEOMETRY,B.GEOMETRY, 'mask=INSIDE querytype=Window') = 'TRUE')
WHERE SANITARY_MH_DATA.GIS_ID = A.MANHOLE);
EXIT;
Edited by: user13174287 on 24-Aug-2010 3:51 PM
Edited by: user13174287 on 24-Aug-2010 4:06 PM

There is such a way, however I doubt that it will work in your case. There are some restrictions on it.
You can write an update to a kind of inline query.
UPDATE (select dat.*, mh.GIS_ID AS MANHOLE, cat.GIS_ID CATCHMENT_ID
       from SANITARY_MH_DATA dat,  SANITARY_MH mh, SANITARY_CATCHMENT cat
       where SDO_RELATE (mh.GEOMETRY,cat.GEOMETRY, 'mask=INSIDE querytype=Window') = 'TRUE'
       and dat.GIS_ID = mh.GIS_ID
       ) v
SET v.CATCHMENT_NAME = v.CATCHMENT_ID
WHERE (v.CATCHMENT_NAME != v.CATCHMENT_ID or v.CATCHMENT_NAME is null)
;there is some join criteria missing between cat and dat. MAybe it would work if the CATACHMENT ID is fetched in the selct clause of the inline view, instead of joining it.
UPDATE (select dat.*, mh.GIS_ID AS MANHOLE,
                    (select cat.GIS_ID from SANITARY_CATCHMENT cat
                     where SDO_RELATE (mh.GEOMETRY,cat.GEOMETRY, 'mask=INSIDE querytype=Window') = 'TRUE'
                     and rownum = 1) as catchment_id
       from SANITARY_MH_DATA dat,  SANITARY_MH mh
       where dat.GIS_ID = mh.GIS_ID
       ) v
SET v.CATCHMENT_NAME = v.CATCHMENT_ID
WHERE (v.CATCHMENT_NAME != v.CATCHMENT_ID or v.CATCHMENT_NAME is null)
;Oh and there is the MERGE statement. This might help in your case.
Edited by: Sven W. on Aug 25, 2010 9:19 PM

Similar Messages

  • Timeout issues with Software Update from Satellite ISP

    Anyone had any experiences with resolving latency issues and/or what my ISP claims is "long ping times" causing timeout s with OS 10.4x Software Update?
    I've had continuing issues with timeouts since changing ISP's to a satellite ISP here in Australia -- with our Macs seeming to be particularly sensitive.
    - Can't access Software Update as it times out
    - Same problems with some web sites
    - Page loading can hang up and fail to complete, particularly if the page contains lots bells and whistles.
    The ISP support desk has done their best, but has no Apple OSX expertise.
    Ideas anyone?

    Rick,
    I’ve answered the questions you’ve asked, starting below. I am using a router for LAN with 2 IBooks and a Windows XP machine. For further info, I have also included all of the settings recommended by the ISP and additional test results when directly connected to the modem from my Ibook. (Hope I haven’t gone from not giving you enough information to giving too much…)
    1) ISP: www.bordernet.com.au. The system is a two-way satellite link through what I think is an Optus satellite. Max speeds 64 kbps uplink and 256 kbps download. I seem to be getting consistent upload speeds of 48-52 kbps (with or without the router in use), but the download show at about 240+ kbps with the direct connection 150 kbps through the router – and sometimes things hang up altogether.
    Setting a static IP address in the router seems to be slightly more stable as the hang-ups in page loading don’t occur as much, but the speed is still down. (Upload and download tests are done from http://www.ozspeedtest.com) The ISP says is not reliable, but they haven’t been able to give me something more reliable where I can get actual statistics that I can quote – they usually have me attempt to download a file from a local net and read off the download speed as it changes – with the comment back from them, “well that seems OK…) Unfortunately they have no one on the help desk who knows macs, or who can troubleshoot beyond what to them is the obvious.
    2) Ping Test results (via router – see below):
    PING www.l.google.com (66.102.7.147): 56 data bytes
    64 bytes from 66.102.7.147: icmp_seq=0 ttl=241 time=1467.206 ms
    64 bytes from 66.102.7.147: icmp_seq=1 ttl=241 time=1540.800 ms
    64 bytes from 66.102.7.147: icmp_seq=2 ttl=241 time=1524.421 ms
    64 bytes from 66.102.7.147: icmp_seq=3 ttl=241 time=1483.034 ms
    64 bytes from 66.102.7.147: icmp_seq=4 ttl=241 time=1443.389 ms
    64 bytes from 66.102.7.147: icmp_seq=5 ttl=241 time=2211.268 ms
    64 bytes from 66.102.7.147: icmp_seq=6 ttl=241 time=1961.048 ms
    64 bytes from 66.102.7.147: icmp_seq=7 ttl=241 time=1619.386 ms
    64 bytes from 66.102.7.147: icmp_seq=8 ttl=241 time=1506.302 ms
    64 bytes from 66.102.7.147: icmp_seq=9 ttl=241 time=1615.718 ms
    --- www.l.google.com ping statistics ---
    10 packets transmitted, 10 packets received, 0% packet loss
    round-trip min/avg/max/stddev = 1443.389/1637.257/2211.268/237.610 ms
    2a) Ping test results
    PING www.apple.com (17.254.0.91): 56 data bytes
    64 bytes from 17.254.0.91: icmp_seq=0 ttl=240 time=1618.438 ms
    64 bytes from 17.254.0.91: icmp_seq=1 ttl=240 time=2143.729 ms
    64 bytes from 17.254.0.91: icmp_seq=2 ttl=240 time=1804.615 ms
    64 bytes from 17.254.0.91: icmp_seq=3 ttl=240 time=2184.935 ms
    64 bytes from 17.254.0.91: icmp_seq=4 ttl=240 time=2025.381 ms
    64 bytes from 17.254.0.91: icmp_seq=5 ttl=240 time=1593.362 ms
    64 bytes from 17.254.0.91: icmp_seq=6 ttl=240 time=1460.536 ms
    64 bytes from 17.254.0.91: icmp_seq=7 ttl=240 time=1449.835 ms
    64 bytes from 17.254.0.91: icmp_seq=8 ttl=240 time=1560.768 ms
    64 bytes from 17.254.0.91: icmp_seq=9 ttl=240 time=1910.285 ms
    --- www.apple.com ping statistics ---
    10 packets transmitted, 10 packets received, 0% packet loss
    round-trip min/avg/max/stddev = 1449.835/1775.188/2184.935/263.419 ms
    Ping has started ...
    PING 17.254.0.91 (17.254.0.91): 56 data bytes
    64 bytes from 17.254.0.91: icmp_seq=0 ttl=240 time=1555.541 ms
    64 bytes from 17.254.0.91: icmp_seq=1 ttl=240 time=1483.936 ms
    64 bytes from 17.254.0.91: icmp_seq=2 ttl=240 time=1562.882 ms
    64 bytes from 17.254.0.91: icmp_seq=3 ttl=240 time=1523.844 ms
    64 bytes from 17.254.0.91: icmp_seq=4 ttl=240 time=1452.485 ms
    64 bytes from 17.254.0.91: icmp_seq=5 ttl=240 time=1497.111 ms
    64 bytes from 17.254.0.91: icmp_seq=6 ttl=240 time=1485.532 ms
    64 bytes from 17.254.0.91: icmp_seq=7 ttl=240 time=1495.856 ms
    64 bytes from 17.254.0.91: icmp_seq=8 ttl=240 time=1485.677 ms
    64 bytes from 17.254.0.91: icmp_seq=9 ttl=240 time=1504.615 ms
    --- 17.254.0.91 ping statistics ---
    10 packets transmitted, 10 packets received, 0% packet loss
    round-trip min/avg/max/stddev = 1452.485/1504.748/1562.882/32.186 ms
    3) DNS Server: 61.88.88.88
    4) Running through a Router: D-LINK DI-704P, have tried letting the modem set the DHCP itself, also using static settings given by the ISP:
    IP address 10.16.143.74
    Subnet: 255.255.255.252
    Router: 10.16.143.73
    DNS 61.88.88.88
    Proxies 10.16.143.73 Port 9877
    5) Same configuration when using a direct connection from the modem to my Ibook.
    Test results with direct connection
    Ping has started ...
    PING www.apple.com (17.254.0.91): 56 data bytes
    64 bytes from 17.254.0.91: icmp_seq=0 ttl=241 time=1452.367 ms
    64 bytes from 17.254.0.91: icmp_seq=1 ttl=241 time=1469.663 ms
    64 bytes from 17.254.0.91: icmp_seq=2 ttl=241 time=1579.472 ms
    64 bytes from 17.254.0.91: icmp_seq=3 ttl=241 time=1477.354 ms
    64 bytes from 17.254.0.91: icmp_seq=4 ttl=241 time=1557.461 ms
    64 bytes from 17.254.0.91: icmp_seq=5 ttl=241 time=1480.565 ms
    64 bytes from 17.254.0.91: icmp_seq=6 ttl=241 time=1470.410 ms
    64 bytes from 17.254.0.91: icmp_seq=7 ttl=241 time=1490.254 ms
    64 bytes from 17.254.0.91: icmp_seq=8 ttl=241 time=1477.955 ms
    64 bytes from 17.254.0.91: icmp_seq=9 ttl=241 time=1497.614 ms
    --- www.apple.com ping statistics ---
    10 packets transmitted, 10 packets received, 0% packet loss
    round-trip min/avg/max/stddev = 1452.367/1495.311/1579.472/38.652 ms
    Ping has started ...
    PING 17.254.0.91 (17.254.0.91): 56 data bytes
    64 bytes from 17.254.0.91: icmp_seq=0 ttl=241 time=1531.316 ms
    64 bytes from 17.254.0.91: icmp_seq=1 ttl=241 time=1891.331 ms
    64 bytes from 17.254.0.91: icmp_seq=2 ttl=241 time=1669.007 ms
    64 bytes from 17.254.0.91: icmp_seq=3 ttl=241 time=2108.521 ms
    64 bytes from 17.254.0.91: icmp_seq=4 ttl=241 time=1798.268 ms
    64 bytes from 17.254.0.91: icmp_seq=5 ttl=241 time=1698.021 ms
    64 bytes from 17.254.0.91: icmp_seq=6 ttl=241 time=1568.465 ms
    64 bytes from 17.254.0.91: icmp_seq=7 ttl=241 time=1918.039 ms
    64 bytes from 17.254.0.91: icmp_seq=8 ttl=241 time=1629.117 ms
    64 bytes from 17.254.0.91: icmp_seq=9 ttl=241 time=1482.781 ms
    --- 17.254.0.91 ping statistics ---
    10 packets transmitted, 10 packets received, 0% packet loss
    round-trip min/avg/max/stddev = 1482.781/1729.487/2108.521/187.331 ms
    Hope all of this helps you to work out what is happening.
    Cheers,
    Frank

  • Issues after the update from 2.5.7 to 2.5.16

    A number of issues have cropped up due to / during / after the update of the forums from 2.5.7 to 2.5.16 at the beginning of this week. This is a list of those issues as I have compiled them. It is a work in progress and I will update it when more information becomes available.
    1 Username and email problems for some users. (fixed 2009-12-03)
    Some users have a suffix appended to their username and their email address replaced with a random string (as a consequence email notifications don't work anymore). This problem is being worked on. Time to fix is unknown. Users experiencing this problem are requested to report so in this thread: My user handle and e-mail have been changed without my knowledge Please include your old username, which Adobe ID's you have and whether you used the same email address for those Adobe IDs.
    2 Some user preferences are lost when logging in. (fixed 2009-12-03)
    When you log in to the forums (either manually or automatially based on a "Remember me" cookie), some of your preferences are overwritten by their default values. The most noiceable prference is the settng to display your screen name (real name) that will get reset to displaying a username. This problem is being worked on. Time to fix is unknown.
    3 The Rich Text Editor (RTE) is inserting linebreaks.
    When typing a post the RTE will randomly insert linebreaks.
    Workaround: remove the linebreaks manually.
    4 Raw (FreeMarker?) code is inserted in some posts (through the RTE?).
    In some posts code appears that was not entered by the user. The code looks something like below (but there may be much more then just this one line):
    function(){return A.apply(null,[this].concat($A(arguments)))}
    Workaround: edit the post and remove the code.
    5 The logout button disappeared.
    The logout button is no longer visible.
    Workaround: How can I log out from the forums?
    6 Search is down on one node. (fixed 2009-12-03)
    Search is down on the SGAURWA41P cluster node. This does not show itself as an error, but instead as 0 search results.
    Workaround: restart all browser windows and you may end up on another cluster node or use Google with a "site:forums.adobe.com" search modifier.
    7 Users have 404 problems on first request.
    This is not really a new problem, but it is something that was supposed to be fixed with the update. The problem is caused by the forums inserting a jsessionid parameter in the wrong place in the URL.
    Workaround: reload the page where the incorrect link is located.
    8 Image upload through camera button doesn't always work. (fixed 2009-11-30)
    Some people have reported problems with uploading JPG and PNG images using the camera icon.
    Workaround: attach the images instead.
    Update 2009-11-28:
    A probable cause for the error [The content type of this image is not allowed.] when uploading images through the camera button has been identified. Internet Explorer uploads images using a Content-Type header that differs from the IANA registered type for jpg and png images. As such, the recommended workaround for people wanting to upload images using the camera icon is to use a browser that is not Internet Explorer.

    Re issue 4, "Raw (FreeMarker?) code is inserted in some posts (through the RTE?)", the suggested workaround is:
    Workaround: edit the post and remove the code.
    With my IE 8, the workaround never works.  See this test post for an example:
    http://forums.adobe.com/message/2470219

  • Two Lightroom issues: Slow file update from CS3 and jitters

    After my recent update to latest version of Lightroom I am noticing two issues. When photos are selected in the film strip for editing the image jitters while it is rendering.
    After taking a photo into CS3 for editing, saving the file and returning to Lightroom, the duplicate thumbnail appears in the film strip but it does not update to showing the edits and new psd file extension. I often have to close Lightroom and reopen it to show the update. This has never occurred in the past. I always immediately see the duplicate file with revisions and the new file extension.
    Your help is appreciated.

    Thank you for your fast response ! I have a 2 TB Time Capsule as well. Maybe I will be moving the images to the Time Capsule and give it a try creating
    a new catalogue from that. All kind of files worked very well on all Mac OS X and still do except images. So it doesn't seem to be a Mac OS X / NAS thing
    generally. Looks more that LR 5 doesn't like the NAS especially when we take into consideration that the files work perfectly on my MacBook AIR that has
    access to the NAS, too but without LR 5.
    Regards,
    Bernd

  • Issues with texlive update from 2013 to 2014 version.

    I got an error about conflicting files:
    Packages (2): texlive-bin-2014.34260-1 texlive-core-2014.34872-1
    Total Installed Size: 350.75 MiB
    Net Upgrade Size: 34.54 MiB
    :: Proceed with installation? [Y/n]
    (2/2) checking keys in keyring [##############] 100%
    (2/2) checking package integrity [##############] 100%
    (2/2) loading package files [##############] 100%
    (2/2) checking for file conflicts [##############] 100%
    error: failed to commit transaction (conflicting files)
    texlive-core: /usr/share/texmf-dist/tex/latex/begriff/begriff.sty exists in filesystem
    Errors occurred, no packages were upgraded.
    However the file "begriff.sty" is owned by texlive-latexextra
    pacman -Qo /usr/share/texmf-dist/tex/latex/begriff/begriff.sty
    /usr/share/texmf-dist/tex/latex/begriff/begriff.sty is owned by texlive-latexextra 2013.33063-1
    Since i was in doubt if it is safe to call pacman with "-f" option, i removed the whole texlive and re-installed it.
    But as i run the installation i got warning about missing kpathsea. Now I'm in doubt if i should ignore those warning.
    Any advice is appreciated.
    >> texlive: updating the file name database...
    warning: kpathsea: configuration file texmf.cnf not found in these directories: /usr/bin:/usr/bin/share/texmf-local/web2c:/usr/bin/share/texmf-dist/web2c:/usr/bin/share/texmf/web2c:/usr/bin/texmf-local/web2c:/usr/bin/texmf-dist/web2c:/usr/bin/texmf/web2c:/usr:/usr/share/texmf-local/web2c:/usr/share/texmf-dist/web2c:/usr/share/texmf/web2c:/usr/texmf-local/web2c:/usr/texmf-dist/web2c:/usr/texmf/web2c://texmf-local/web2c:/://share/texmf-local/web2c://share/texmf-dist/web2c://share/texmf/web2c://texmf-local/web2c://texmf-dist/web2c://texmf/web2c.
    Last edited by irrlicht (2014-08-28 21:01:33)

    Just now I tried to upgrade my system and texlive-core could not be upgraded as a result conflicts with other packages. My solution, as I've seen this given elsewhere on the forums, is to remove the package you are trying to update. my solution was then to run # pacman -R $(pacman -Qq | grep texlive). This would remove all texlive packages. I first reinstalled texlive-bin and texlive-core, as these two were the ones that got updated today. I then went to re-install the other ones. I am getting the same conflicts as before.
    resolving dependencies...
    looking for inter-conflicts...
    Packages (4): texlive-langcjk-2013.32895-1 texlive-latexextra-2013.33063-1 texlive-pictures-2013.33045-1 texlive-science-2013.32850-1
    Total Installed Size: 467.68 MiB
    checking keyring...
    checking package integrity...
    loading package files...
    checking for file conflicts...
    texlive-langcjk: /usr/share/texmf-dist/dvips/garuda-c90/config.garuda-c90 exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/dvips/norasi-c90/config.norasi-c90 exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/LICENSE exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/MappingOther/90ms-RKSJ-UCS2 exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/MappingOther/90pv-RKSJ-UCS2 exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/MappingOther/90pv-RKSJ-UCS2C exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/MappingOther/Adobe-CNS1-B5pc exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/MappingOther/Adobe-CNS1-ETen-B5 exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/MappingOther/Adobe-CNS1-H-CID exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/MappingOther/Adobe-CNS1-H-Host exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/MappingOther/Adobe-CNS1-H-Mac exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/MappingOther/Adobe-GB1-GBK-EUC exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/MappingOther/Adobe-GB1-GBpc-EUC exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/MappingOther/Adobe-GB1-H-CID exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/MappingOther/Adobe-GB1-H-Host exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/MappingOther/Adobe-GB1-H-Mac exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/MappingOther/Adobe-Japan1-90ms-RKSJ exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/MappingOther/Adobe-Japan1-90pv-RKSJ exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/MappingOther/Adobe-Japan1-H-CID exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/MappingOther/Adobe-Japan1-H-Host exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/MappingOther/Adobe-Japan1-H-Mac exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/MappingOther/Adobe-Japan1-PS-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/MappingOther/Adobe-Japan1-PS-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/MappingOther/Adobe-Korea1-H-CID exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/MappingOther/Adobe-Korea1-H-Host exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/MappingOther/Adobe-Korea1-H-Mac exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/MappingOther/Adobe-Korea1-KSCms-UHC exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/MappingOther/Adobe-Korea1-KSCpc-EUC exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/MappingOther/B5pc-UCS2 exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/MappingOther/B5pc-UCS2C exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/MappingOther/ETen-B5-UCS2 exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/MappingOther/GBK-EUC-UCS2 exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/MappingOther/GBpc-EUC-UCS2 exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/MappingOther/GBpc-EUC-UCS2C exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/MappingOther/KSCms-UHC-UCS2 exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/MappingOther/KSCpc-EUC-UCS2 exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/MappingOther/KSCpc-EUC-UCS2C exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/MappingOther/UCS2-90ms-RKSJ exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/MappingOther/UCS2-90pv-RKSJ exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/MappingOther/UCS2-B5pc exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/MappingOther/UCS2-ETen-B5 exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/MappingOther/UCS2-GBK-EUC exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/MappingOther/UCS2-GBpc-EUC exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/MappingOther/UCS2-KSCms-UHC exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/MappingOther/UCS2-KSCpc-EUC exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/README exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ToUnicode/Adobe-CNS1-UCS2 exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ToUnicode/Adobe-GB1-UCS2 exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ToUnicode/Adobe-Japan1-UCS2 exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ToUnicode/Adobe-Korea1-UCS2 exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ac16/CMap/Adobe-CNS1-0 exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ac16/CMap/Adobe-CNS1-1 exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ac16/CMap/Adobe-CNS1-2 exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ac16/CMap/Adobe-CNS1-3 exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ac16/CMap/Adobe-CNS1-4 exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ac16/CMap/Adobe-CNS1-5 exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ac16/CMap/Adobe-CNS1-6 exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ac16/CMap/B5-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ac16/CMap/B5-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ac16/CMap/B5pc-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ac16/CMap/B5pc-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ac16/CMap/CNS-EUC-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ac16/CMap/CNS-EUC-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ac16/CMap/CNS1-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ac16/CMap/CNS1-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ac16/CMap/CNS2-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ac16/CMap/CNS2-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ac16/CMap/ETHK-B5-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ac16/CMap/ETHK-B5-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ac16/CMap/ETen-B5-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ac16/CMap/ETen-B5-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ac16/CMap/ETenms-B5-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ac16/CMap/ETenms-B5-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ac16/CMap/HKdla-B5-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ac16/CMap/HKdla-B5-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ac16/CMap/HKdlb-B5-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ac16/CMap/HKdlb-B5-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ac16/CMap/HKgccs-B5-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ac16/CMap/HKgccs-B5-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ac16/CMap/HKm314-B5-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ac16/CMap/HKm314-B5-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ac16/CMap/HKm471-B5-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ac16/CMap/HKm471-B5-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ac16/CMap/HKscs-B5-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ac16/CMap/HKscs-B5-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ac16/CMap/UniCNS-UCS2-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ac16/CMap/UniCNS-UCS2-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ac16/CMap/UniCNS-UTF16-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ac16/CMap/UniCNS-UTF16-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ac16/CMap/UniCNS-UTF32-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ac16/CMap/UniCNS-UTF32-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ac16/CMap/UniCNS-UTF8-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ac16/CMap/UniCNS-UTF8-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ac16/cid2code.txt exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ag15/CMap/Adobe-GB1-0 exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ag15/CMap/Adobe-GB1-1 exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ag15/CMap/Adobe-GB1-2 exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ag15/CMap/Adobe-GB1-3 exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ag15/CMap/Adobe-GB1-4 exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ag15/CMap/Adobe-GB1-5 exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ag15/CMap/GB-EUC-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ag15/CMap/GB-EUC-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ag15/CMap/GB-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ag15/CMap/GB-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ag15/CMap/GBK-EUC-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ag15/CMap/GBK-EUC-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ag15/CMap/GBK2K-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ag15/CMap/GBK2K-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ag15/CMap/GBKp-EUC-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ag15/CMap/GBKp-EUC-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ag15/CMap/GBT-EUC-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ag15/CMap/GBT-EUC-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ag15/CMap/GBT-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ag15/CMap/GBT-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ag15/CMap/GBTpc-EUC-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ag15/CMap/GBTpc-EUC-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ag15/CMap/GBpc-EUC-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ag15/CMap/GBpc-EUC-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ag15/CMap/UniGB-UCS2-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ag15/CMap/UniGB-UCS2-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ag15/CMap/UniGB-UTF16-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ag15/CMap/UniGB-UTF16-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ag15/CMap/UniGB-UTF32-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ag15/CMap/UniGB-UTF32-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ag15/CMap/UniGB-UTF8-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ag15/CMap/UniGB-UTF8-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ag15/cid2code.txt exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ai0/CMap/Identity-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ai0/CMap/Identity-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/78-EUC-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/78-EUC-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/78-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/78-RKSJ-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/78-RKSJ-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/78-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/78ms-RKSJ-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/78ms-RKSJ-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/83pv-RKSJ-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/90ms-RKSJ-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/90ms-RKSJ-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/90msp-RKSJ-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/90msp-RKSJ-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/90pv-RKSJ-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/90pv-RKSJ-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/Add-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/Add-RKSJ-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/Add-RKSJ-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/Add-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/Adobe-Japan1-0 exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/Adobe-Japan1-1 exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/Adobe-Japan1-2 exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/Adobe-Japan1-3 exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/Adobe-Japan1-4 exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/Adobe-Japan1-5 exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/Adobe-Japan1-6 exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/EUC-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/EUC-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/Ext-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/Ext-RKSJ-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/Ext-RKSJ-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/Ext-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/Hankaku exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/Hiragana exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/Katakana exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/NWP-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/NWP-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/RKSJ-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/RKSJ-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/Roman exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/UniJIS-UCS2-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/UniJIS-UCS2-HW-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/UniJIS-UCS2-HW-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/UniJIS-UCS2-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/UniJIS-UTF16-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/UniJIS-UTF16-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/UniJIS-UTF32-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/UniJIS-UTF32-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/UniJIS-UTF8-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/UniJIS-UTF8-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/UniJIS2004-UTF16-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/UniJIS2004-UTF16-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/UniJIS2004-UTF32-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/UniJIS2004-UTF32-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/UniJIS2004-UTF8-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/UniJIS2004-UTF8-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/UniJISPro-UCS2-HW-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/UniJISPro-UCS2-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/UniJISPro-UTF8-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/UniJISX0213-UTF32-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/UniJISX0213-UTF32-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/UniJISX02132004-UTF32-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/UniJISX02132004-UTF32-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/CMap/WP-Symbol exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/aj16/cid2code.txt exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ak12/CMap/Adobe-Korea1-0 exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ak12/CMap/Adobe-Korea1-1 exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ak12/CMap/Adobe-Korea1-2 exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ak12/CMap/KSC-EUC-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ak12/CMap/KSC-EUC-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ak12/CMap/KSC-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ak12/CMap/KSC-Johab-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ak12/CMap/KSC-Johab-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ak12/CMap/KSC-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ak12/CMap/KSCms-UHC-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ak12/CMap/KSCms-UHC-HW-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ak12/CMap/KSCms-UHC-HW-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ak12/CMap/KSCms-UHC-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ak12/CMap/KSCpc-EUC-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ak12/CMap/KSCpc-EUC-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ak12/CMap/UniKS-UCS2-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ak12/CMap/UniKS-UCS2-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ak12/CMap/UniKS-UTF16-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ak12/CMap/UniKS-UTF16-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ak12/CMap/UniKS-UTF32-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ak12/CMap/UniKS-UTF32-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ak12/CMap/UniKS-UTF8-H exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ak12/CMap/UniKS-UTF8-V exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/ak12/cid2code.txt exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/cmap-current-versions.txt exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/cmap-readme.txt exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/cmap/adobemapping/mapping-readme.txt exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/enc/dvips/c90/c90.enc exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/map/dvips/garuda-c90/garuda-c90.map exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/map/dvips/norasi-c90/norasi-c90.map exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/sfd/dnp/DNP.sfd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/tfm/public/garuda-c90/fgdb8z.tfm exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/tfm/public/garuda-c90/fgdbo8z.tfm exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/tfm/public/garuda-c90/fgdo8z.tfm exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/tfm/public/garuda-c90/fgdr8z.tfm exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/tfm/public/norasi-c90/ftnb8z.tfm exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/tfm/public/norasi-c90/ftnbi8z.tfm exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/tfm/public/norasi-c90/ftni8z.tfm exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/fonts/tfm/public/norasi-c90/ftnr8z.tfm exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/hbf2gf/README exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/hbf2gf/b5ka12.cfg exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/hbf2gf/b5kr12.cfg exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/hbf2gf/b5so12.cfg exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/hbf2gf/c1so12.cfg exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/hbf2gf/c2so12.cfg exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/hbf2gf/c3so12.cfg exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/hbf2gf/c4so12.cfg exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/hbf2gf/c5so12.cfg exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/hbf2gf/c6so12.cfg exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/hbf2gf/c7so12.cfg exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/hbf2gf/csso12.cfg exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/hbf2gf/gsfs14.cfg exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/hbf2gf/j2so12.cfg exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/hbf2gf/jsso12.cfg exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/hbf2gf/ksso17.cfg exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/contrib/wadalab/c42goth.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/contrib/wadalab/c42goth.fdx exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/contrib/wadalab/c42maru.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/contrib/wadalab/c42maru.fdx exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/contrib/wadalab/c42min.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/contrib/wadalab/c42min.fdx exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/contrib/wadalab/c52maru.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/contrib/wadalab/c52maru.fdx exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/contrib/wadalab/c52min.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/contrib/wadalab/c52min.fdx exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/contrib/wadalab/c70goth.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/contrib/wadalab/c70goth.fdx exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/contrib/wadalab/c70maru.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/contrib/wadalab/c70maru.fdx exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/contrib/wadalab/c70min.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/contrib/wadalab/c70min.fdx exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/Bg5/Bg5.cap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/Bg5/Bg5.chr exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/Bg5/Bg5.cpx exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/Bg5/Bg5.enc exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/Bg5/HK.enc exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/Bg5/c00bkai.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/Bg5/c00bkai.fdx exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/Bg5/c00bsmi.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/Bg5/c00bsmi.fdx exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/Bg5/c00bsmir.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/Bg5/c00bsmir.fdx exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/Bg5/c00cns.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/Bg5/c00fs.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/Bg5/c00kai.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/Bg5/c00kair.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/Bg5/c00kair.fdx exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/Bg5/c00song.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/Bg5/c01song.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/Bg5/c05song.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/Bg5/c09song.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/CEF/c80song.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/CEF/c81song.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/CJK.enc exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/CJK.sty exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/CJKfntef.sty exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/CJKnumb.sty exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/CJKspace.sty exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/CJKulem.sty exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/CJKutf8.sty exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/CJKvert.sty exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/CNS/EUC-TW.bdg exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/CNS/EUC-TW.chr exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/CNS/EUC-TW.enc exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/CNS/c31song.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/CNS/c32song.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/CNS/c33song.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/CNS/c34song.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/CNS/c35song.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/CNS/c36song.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/CNS/c37song.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/GB/GB.cap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/GB/GB.cpx exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/GB/c10fs.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/GB/c10gbsn.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/GB/c10gbsn.fdx exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/GB/c10gkai.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/GB/c10gkai.fdx exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/GB/c10song.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/GB/c11song.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/GB/c19song.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/GB/c20song.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/GB/c21song.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/JIS/EUC-JP.bdg exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/JIS/EUC-JP.chr exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/JIS/EUC-JP.enc exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/JIS/EUC-JPdnp.enc exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/JIS/JIS.cap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/JIS/JIS.cpx exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/JIS/JISdnp.enc exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/JIS/c40song.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/JIS/c41song.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/JIS/c42song.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/JIS/c43song.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/JIS/c50song.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/HLaTeX/HLaTeX.chr exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/HLaTeX/KSHL.enc exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/HLaTeX/c63bm.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/HLaTeX/c63dn.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/HLaTeX/c63gr.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/HLaTeX/c63gs.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/HLaTeX/c63gt.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/HLaTeX/c63jgt.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/HLaTeX/c63jmj.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/HLaTeX/c63jnv.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/HLaTeX/c63jsr.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/HLaTeX/c63mj.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/HLaTeX/c63pg.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/HLaTeX/c63pga.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/HLaTeX/c63ph.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/HLaTeX/c63pn.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/HLaTeX/c63sh.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/HLaTeX/c63tz.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/HLaTeX/c63vd.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/HLaTeX/c63yt.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/HLaTeX/c64bm.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/HLaTeX/c64dn.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/HLaTeX/c64gr.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/HLaTeX/c64gs.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/HLaTeX/c64gt.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/HLaTeX/c64jgt.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/HLaTeX/c64jmj.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/HLaTeX/c64jnv.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/HLaTeX/c64jsr.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/HLaTeX/c64mj.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/HLaTeX/c64pg.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/HLaTeX/c64pga.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/HLaTeX/c64ph.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/HLaTeX/c64pn.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/HLaTeX/c64sh.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/HLaTeX/c64tz.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/HLaTeX/c64vd.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/HLaTeX/c64yt.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/HLaTeX/c65bm.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/HLaTeX/c65dn.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/HLaTeX/c65gr.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/HLaTeX/c65gs.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/HLaTeX/c65gt.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/HLaTeX/c65jgt.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/HLaTeX/c65jmj.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/HLaTeX/c65jnv.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/HLaTeX/c65jsr.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/HLaTeX/c65mj.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/HLaTeX/c65pg.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/HLaTeX/c65pga.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/HLaTeX/c65ph.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/HLaTeX/c65pn.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/HLaTeX/c65sh.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/HLaTeX/c65tz.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/HLaTeX/c65vd.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/HLaTeX/c65yt.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/HLaTeX/pshan.sty exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/KS.chr exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/KS.enc exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/c60dr.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/c60gr.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/c60gs.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/c60gt.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/c60hgt.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/c60hmj.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/c60hol.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/c60hpg.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/c60mj.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/c61dr.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/c61gr.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/c61gs.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/c61gt.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/c61hgt.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/c61hmj.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/c61hol.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/c61hpg.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/c61mj.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/c62song.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/hangul.cap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/hangul.cpx exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/hangul2.cap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/hangul2.cpx exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/hanja.cap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/KS/hanja.cpx exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/SJIS/SJIS.bdg exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/SJIS/SJIS.cap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/SJIS/SJIS.chr exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/SJIS/SJIS.cpx exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/SJIS/SJIS.enc exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/SJIS/SJISdnp.chr exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/SJIS/SJISdnp.enc exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/SJIS/c49song.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/UTF8/UTF8.bdg exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/UTF8/UTF8.chr exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/UTF8/UTF8.enc exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/UTF8/c70bkai.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/UTF8/c70bkai.fdx exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/UTF8/c70bsmi.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/UTF8/c70bsmi.fdx exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/UTF8/c70gbsn.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/UTF8/c70gbsn.fdx exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/UTF8/c70gkai.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/UTF8/c70gkai.fdx exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/UTF8/c70mj.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/UTF8/c70mj.fdx exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/UTF8/c70song.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/UTF8/ja.cpx exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/UTF8/ko-Hang.cpx exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/UTF8/ko-Hang2.cpx exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/UTF8/ko-Hani.cpx exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/UTF8/zh-Hans.cpx exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/UTF8/zh-Hant.cpx exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/extended.chr exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/extended.enc exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/mule/MULEenc.sty exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/pinyin.sty exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/pmC.chr exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/pmCbig.enc exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/pmCsmall.enc exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/ruby.sty exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/standard.bdg exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/standard.chr exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/standard.enc exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/thai/c90cmr.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/thai/c90cmss.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/thai/c90cmtt.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/thai/c90enc.def exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/thai/c90gar.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/thai/c90nrsr.fd exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/texinput/thai/thaicjk.ldf exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjk/utils/pyhyphen/pinyin.ldf exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/cjkpunct/CJKpunct.sty exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0001.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0002.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0003.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0004.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0005.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0006.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0007.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0008.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0009.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0010.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0011.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0012.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0013.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0014.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0015.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0016.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0017.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0018.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0019.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0020.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0021.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0022.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0023.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0024.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0025.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0026.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0027.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0028.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0029.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0030.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0031.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0032.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0033.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0034.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0035.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0036.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0037.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0038.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0039.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0040.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0041.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0042.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0043.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0044.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0045.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0046.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0047.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0048.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0049.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0050.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0051.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0052.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0053.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0054.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0055.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0056.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0057.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0058.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0901.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0902.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0903.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0904.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0905.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0906.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0907.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0908.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0909.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0910.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0911.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0912.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0913.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0914.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0915.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0916.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0917.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0918.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0919.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0920.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0921.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0922.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0923.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0924.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0925.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0926.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0927.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0928.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0929.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0930.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0931.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0932.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0933.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0934.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0935.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0936.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0937.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0938.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0939.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0940.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0941.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0942.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0943.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0944.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0945.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0946.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0947.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0948.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0949.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0950.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0951.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0952.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0953.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0954.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0955.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0956.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0957.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0958.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0959.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0960.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0961.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0962.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0963.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0964.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0965.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0966.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0967.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0968.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0969.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0970.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0971.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0972.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0973.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0974.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0975.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0976.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0977.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0978.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0979.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0980.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0981.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0982.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0983.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0984.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0985.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0986.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0987.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0988.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0989.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0990.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0991.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0992.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0993.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c0994.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c1001.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c1002.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c1003.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c1004.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c1005.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c1006.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c1007.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c1008.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c1009.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c1010.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c1011.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c1012.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c1013.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c1014.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c1015.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c1016.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c1017.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c1018.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c1019.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c1020.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c1021.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c1022.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c1023.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c1024.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c1025.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c1026.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c1027.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c1028.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c1029.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c1030.cmap exists in filesystem
    texlive-langcjk: /usr/share/texmf-dist/tex/latex/xcjk2uni/cmap/c1031.cmap exists in filesyst

  • Outlook, People & Calendar nothing is working after last update from Microsoft

    Hi Team,
    Don't know whether Microsoft Team is capturing all the big questions & disappointment against the Windows 8.1. 
    Because many areas, I found the same issue but nothing gives proper response from Microsoft. Don't know whether they like to continue to compete Google & Others or not.. 
    Issue is with Update from Microsoft (Hotfix or any security or etc..) After update Microsoft Outlook, People or Calendar in Windows 8.1 stop working..
    When we clicked in It start flashing that but after 1 or 2 second, It just closed down without any error message (which more disappoint the user.. is that what microsoft released? shall we expect thats the quality from Microsoft Windows Team and as may be
    from LUMIA ? no error nothing & just close the application.. ) ?
    No update, nothing response from Microsoft on that.
    I am writing this in March 2014 which means, I recently experienced this with the updates. Hope Many others are disappoint as well. 
    Any response from Microsoft or Windows 8.1 Team ?
    Regards,
    Brijesh Shah
    Regards, Brijesh Shah

    1. You have landed in support forum. Majority of people here are computer professionals and some are from MS contingent staff. For your suggestions there is more appropriate site
    http://connect.microsoft.com/
    2. What device do you have. If you have Lumia, then try this forum
    http://www.windowsphone.com/en-US/how-to/wp-support?wp8
    3. What Office version do you have? For problems with office ask here
    http://social.technet.microsoft.com/Forums/office/en-US/home?category=officeitpro
    4. Unless you give more relevant data, it is very hard to provide any reliable advice (operating system, device parameters, event log errors and warnings, version of outlook, which updates have you installed...)
    Try to solve problems in more constructive way. Complaints are not the right way to real problem solution.
    Regards
    Milos

  • Cant update from ios 6 beta 4 to GM

    Keeps saying software is up to date when i check wirelessly and through iTunes. 
    Does anyone know how to get round this issue?

    To update from ios 6 Beta 4 to GM you need to follow these steps:
    1. Connect Iphone to computer with itunes running.
    2. Turn of iphone
    3. Hold down off button for 3 second
    4. While holding down off button hold the home button for 10 seconds
    5. after the 10 seconds let go of the off botton and wait for 6 seconds
    6. Wait then follow the Itunes restor and update walkthrough and it will download the latest version and update your Iphone for you.
    I hope this works for everyone and can comfirm worked for my Iphone 4s
    Regards,
                   Blue_Pils

  • Is `WHERE` clause pointless inside a sub-select?

    WHERE is part of the definition of a sub-select:
    [WITH [<calc-clause> ...]]
    SELECT [<axis-spec> [, <axis-spec> ...]]
    FROM [<identifier> | (< sub-select-statement >)]
    [WHERE <slicer>]
    [[CELL] PROPERTIES <cellprop> [, <cellprop> ...]]
    < sub-select-statement > :=
    SELECT [<axis-spec> [, <axis-spec> ...]]
    FROM [<identifier> | (< sub-select-statement >)]
    [WHERE <slicer>]I understand that a subselect does not reduce dimensionality or set context.
    If overall context of a script is not driven via a sub-select then is there ever a point in using this WHERE clause in the subselect? 
    An example in Adventure Works:
    SELECT
    [Measures].[Order Count] ON 0
    [Geography].[Country] * [Product].[Category] ON 1
    FROM
    SELECT
    [Geography].[Country].[Australia] ON 0
    FROM [Adventure Works]
    WHERE
    [Product].[Category].[Bikes]

    Hi WhyTheQ,
    According to your description, you want to know if the Where clause is working when the main select statement is not driven via the sub-select. Right?
    In MDX, Where clause is used for defining slicer axis so that only the data intersecting the with the specified member will be returned. It will work in the sub-select to restrict the data. However, the return result from sub-select should match
    the set on your axis. In this scenario, your sub-select returns an aggregation value of a dimension member, but in your main select row level expects a tuple set. So your can't get the result and it will throw error.
    Reference:
    Specifying the Contents of a Slicer Axis (MDX)
    Best Regards,
    Simon Hou
    TechNet Community Support

  • Having issues with speed with opening/dowloading/installing from some websites

    Had speed issues with my ISP and they seem to think it is because of the browser, and that I should be using IE. Knowing my ISP is not going to take responsibilities if the fault was on their side, I did not believe it. However, when Microsoft stopped support for XP operating system, I tried to download a security program from another website and again I had nothing but problems. The program would download and some times even get all the way to be installed but the program logo would hang on for ever while installing, and I could not launch the program. If the program installed I would have to remove it before going forward. Their technical support said it was because of the browser as well. I do have IE installed but I never use it as my browser unless I have no choice. Today, my ISP rep called to solve my issue and at her request opened IE as I could go no-where with Firefox. I was right, my ISP is full of it as she could not solve my problem with or without IE. However, I left IE opened and downloaded the other program which it is now working great. Will I have to be forced to use IE so that speed and downloading improves? I hope not.

    I can give a few tips.
    # Update all your add ons and extensions
    # [[Upgrade your graphics drivers to use hardware acceleration and WebGL]]
    # [https://addons.mozilla.org/en-US/firefox/addon/yslow/ YSlow add on]
    about:config tweaks
    network.http.max-connections = 64
    network.http.max-connections-per-server=21
    network.http.max-persistent-connections-per-server=12
    network.http.pipelining = true -
    network.http.proxy.pipelining = true -

  • Software Updates ADR Issue: "Failed to download the update from the internet. Error = 5"

    "Failed to download the update from internet. Error = 5"
    The above is the error I am getting when running any ADR. The error is quite clear software updates are failing to download and Error = 5 being a permissions error its clear that the downloads are failing due to incorrect permissions applied to the download
    path. 
    Here is the last bit of my ruleengine.log, everything above is the same except for the update trying to be downloaded of course:
    Failed to download the update from internet. Error = 5
    SMS_RULE_ENGINE 6/26/2014 9:21:59 AM
    5148 (0x141C)
    Failed to download ContentID 16860969 for UpdateID 16857152. Error code = 5
    SMS_RULE_ENGINE 6/26/2014 9:21:59 AM
    5148 (0x141C)
    Downloading contents (count = 1) for UpdateID 16857255
    SMS_RULE_ENGINE 6/26/2014 9:21:59 AM
    5148 (0x141C)
    List of update content(s) which match the content rule criteria = {16861141}
    SMS_RULE_ENGINE 6/26/2014 9:21:59 AM
    5148 (0x141C)
    Downloading content with ID 16861141 in the package
    SMS_RULE_ENGINE 6/26/2014 9:21:59 AM
    5148 (0x141C)
    Failed to download the update from internet. Error = 5
    SMS_RULE_ENGINE 6/26/2014 9:22:00 AM
    5148 (0x141C)
    Failed to download ContentID 16861141 for UpdateID 16857255. Error code = 5
    SMS_RULE_ENGINE 6/26/2014 9:22:00 AM
    5148 (0x141C)
    Failed to download any update SMS_RULE_ENGINE
    6/26/2014 9:22:00 AM 5148 (0x141C)
    Failed to download update contents. SMS_RULE_ENGINE
    6/26/2014 9:22:00 AM 5148 (0x141C)
    No new update was added to the package. Package "SCP0008A" would not be updated.
    SMS_RULE_ENGINE 6/26/2014 9:22:00 AM
    5148 (0x141C)
    Failed to run the DownloadAction for the AutoDeployment.
    SMS_RULE_ENGINE 6/26/2014 9:22:00 AM
    5148 (0x141C)
    STATMSG: ID=8706 SEV=E LEV=M SOURCE="SMS Server" COMP="SMS_RULE_ENGINE" SYS=SCCM-MPS.DSCICORP.COM SITE=SCP PID=2376 TID=5148 GMTDATE=Thu Jun 26 13:22:00.164 2014 ISTR0="SMS Rule Engine" ISTR1="Failed to download one or more
    content files" ISTR2="" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8="" ISTR9="" NUMATTRS=0
    SMS_RULE_ENGINE 6/26/2014 9:22:00 AM
    5148 (0x141C)
    Enforcing Create Deployment Action SMS_RULE_ENGINE
    6/26/2014 9:22:00 AM 5148 (0x141C)
      Create Deployment Rule Action XML is: <DeploymentCreationActionXML xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><CollectionId>SCP00055</CollectionId><IncludeSub>true</IncludeSub><Utc>false</Utc><Duration>0</Duration><DurationUnits>Hours</DurationUnits><AvailableDeltaDuration>0</AvailableDeltaDuration><AvailableDeltaDurationUnits>Hours</AvailableDeltaDurationUnits><SuppressServers>Checked</SuppressServers><SuppressWorkstations>Unchecked</SuppressWorkstations><PersistOnWriteFilterDevices>Unchecked</PersistOnWriteFilterDevices><AllowRestart>true</AllowRestart><DisableMomAlert>false</DisableMomAlert><GenerateMomAlert>false</GenerateMomAlert><UseRemoteDP>true</UseRemoteDP><UseUnprotectedDP>true</UseUnprotectedDP><UseBranchCache>true</UseBranchCache><EnableDeployment>true</EnableDeployment><EnableWakeOnLan>true</EnableWakeOnLan><AllowDownloadOutSW>false</AllowDownloadOutSW><AllowInstallOutSW>true</AllowInstallOutSW><EnableAlert>true</EnableAlert><AlertThresholdPercentage>90</AlertThresholdPercentage><AlertDuration>7</AlertDuration><AlertDurationUnits>Days</AlertDurationUnits><EnableNAPEnforcement>false</EnableNAPEnforcement><UserNotificationOption>DisplaySoftwareCenterOnly</UserNotificationOption><LimitStateMessageVerbosity>false</LimitStateMessageVerbosity><StateMessageVerbosity>10</StateMessageVerbosity><AllowWUMU>true</AllowWUMU><AllowUseMeteredNetwork>true</AllowUseMeteredNetwork></DeploymentCreationActionXML>
    SMS_RULE_ENGINE 6/26/2014 9:22:00 AM
    5148 (0x141C)
      Rule XML is: <AutoDeploymentRule xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><DeploymentName>Test ADR</DeploymentName><DeploymentDescription>Test ADR</DeploymentDescription><LocaleId>1033</LocaleId><UseSameDeployment>false</UseSameDeployment><EnableAfterCreate>true</EnableAfterCreate><NoEULAUpdates>false</NoEULAUpdates><AlignWithSyncSchedule>false</AlignWithSyncSchedule><ScopeIDs><ScopeID>SMS00UNA</ScopeID></ScopeIDs></AutoDeploymentRule>
    SMS_RULE_ENGINE 6/26/2014 9:22:00 AM
    5148 (0x141C)
      Criteria Filter Result XML is: <AutoDeploymentRule xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><DeploymentName>Test ADR</DeploymentName><DeploymentDescription>Test
    ADR</DeploymentDescription><LocaleId>1033</LocaleId><UseSameDeployment>false</UseSameDeployment><EnableAfterCreate>true</EnableAfterCreate><NoEULAUpdates>false</NoEULAUpdates><AlignWithSyncSchedule>false</AlignWithSyncSchedule><ScopeIDs><ScopeID>SMS00UNA</ScopeID></ScopeIDs></AutoDeploymentRule>
    SMS_RULE_ENGINE 6/26/2014 9:22:00 AM
    5148 (0x141C)
        Parsing Deployment Action XML...
    SMS_RULE_ENGINE 6/26/2014 9:22:00 AM
    5148 (0x141C)
        Parsing Rule XML... SMS_RULE_ENGINE
    6/26/2014 9:22:00 AM 5148 (0x141C)
    Could not find element DeploymentId SMS_RULE_ENGINE
    6/26/2014 9:22:00 AM 5148 (0x141C)
    Could not find element UpdateGroupId SMS_RULE_ENGINE
    6/26/2014 9:22:00 AM 5148 (0x141C)
    Could not find element UpdateGroupName SMS_RULE_ENGINE
    6/26/2014 9:22:00 AM 5148 (0x141C)
        SQL is: select cis.CI_ID from vCI_ConfigurationItems cis join vProvisionedCIs pci on cis.CI_ID = pci.CI_ID where cis.CI_ID in (16793068, 16793070, 16793441, 16793445, 16793531, 16793686, 16793688, 16794597, 16794600, 16794602, 16794604, 16795443,
    16795445, 16795709, 16795711, 16796210, 16796222, 16796292, 16796298, 16799495, 16799503, 16799602, 16799700, 16799703, 16799705, 16799712, 16799718, 16800300, 16800302, 16800367, 16800369, 16800371, 16800375, 16801224, 16801227, 16801237, 16801239, 16801287,
    16801289, 16801559, 16801566, 16801996, 16802034, 16802839, 16802841, 16803306, 16803310, 16803420, 16803422, 16806477, 16806479, 16809354, 16809360, 16809393, 16809397, 16809774, 16809786, 16809792, 16813338, 16813348, 16813636, 16813638, 16814948, 16814950,
    16815151, 16815153, 16817088, 16817102, 16817108, 16817398, 16817400, 16818677, 16818691, 16825397, 16840448, 16840458, 16840460, 16840462, 16840690, 16840700, 16840702, 16840710, 16840824, 16840826, 16842640, 16842641, 16842802, 16842803, 16842841, 16842870,
    16842871, 16842896, 16842917, 16843017, 16843042, 16843049, 16843051, 16845981, 16846404, 16846751, 16846757, 16848017, 16848021, 16848664, 16848687, 16849383, 16849385, 16852506, 16852514, 16852516, 16855484, 16857102, 16857151, 16857152, 16857255) order
    by cis.CI_ID SMS_RULE_ENGINE
    6/26/2014 9:22:00 AM 5148 (0x141C)
          0 of 115 updates are downloaded and will be added to the Deployment.
    SMS_RULE_ENGINE 6/26/2014 9:22:00 AM
    5148 (0x141C)
    The rule resulted in no updates being found. Skip deployment creation or update...
    SMS_RULE_ENGINE 6/26/2014 9:22:00 AM
    5148 (0x141C)
    CRuleHandler: Enforcing Actions for Rule 16777228 failed!
    SMS_RULE_ENGINE 6/26/2014 9:22:00 AM
    5148 (0x141C)
    CRuleHandler: ResetRulesAndCleanUp() SMS_RULE_ENGINE
    6/26/2014 9:22:00 AM 5148 (0x141C)
    Updated Failure Information for Rule: 16777228
    SMS_RULE_ENGINE 6/26/2014 9:22:00 AM
    5148 (0x141C)
    CRuleHandler: Deleting Rule 16777228 SMS_RULE_ENGINE
    6/26/2014 9:22:00 AM 5148 (0x141C)
    Found notification file C:\Program Files\Microsoft Configuration Manager\inboxes\RuleEngine.box\16777228.RUL
    SMS_RULE_ENGINE 6/26/2014 9:22:10 AM
    5148 (0x141C)
    RuleSchedulerThred: Change in Rules Object Signalled.
    SMS_RULE_ENGINE 6/26/2014 9:22:10 AM
    5228 (0x146C)
    Refreshed ScheduleList instance for Rule (16777228) from schedule string () with next occurence (12/31/1969 7:00:00 PM)
    SMS_RULE_ENGINE 6/26/2014 9:22:10 AM
    5228 (0x146C)
    FindNextEventTime found next event for RuleID 0 as :1/1/2038 12:00:00 AM
    SMS_RULE_ENGINE 6/26/2014 9:22:10 AM
    5228 (0x146C)
    RuleEngine: Got next rule execution time successfully. Next event is in  12369097 minutes
    SMS_RULE_ENGINE 6/26/2014 9:22:10 AM
    5228 (0x146C)
    Sleeping for 15 minutes SMS_RULE_ENGINE
    6/26/2014 9:22:10 AM 5228 (0x146C)
    Also, I do not have a patchdownloader.log anywhere, Ive checked all aforementioned locations from various sources and it just simply does not exist on my SCCM server. Here is my setup:
    Server1: Primary server with all roles installed locally except the site database is on its own server. WSUS is installed locally here and DB is stored here. 
    Server2: SQL DB for Primary site DB
    Server3: Secondary remote site running MP, DP, SUP. DB is SQL Express local. 
    So the SUP role was installed successfully on both server1 first and server 2 second with the site servers accounts. The SUP Synchronizes successfully and I can see a large list of updates available for use but not downloaded of course. I have set WSUS option
    to store updates locally and have plenty of space at the target destination.
    So here is my issue, I have been working on this issue for the better part of a week and understand the error code from the ruleengine.log to be a permissions issue. I have also proved this out but creating a test ADR with minimal updates and applied NTFS perms
    to the target path for Modify with the everyone group (testing purposes only). The updates downloaded successfully. So this puts me right back to where I was, knowing its a permissions issue but not understanding what permissions are needed. Let me explain
    further.
    The best way to start is to show what perms I have to the target location for downloads/wsus/sup anything:
    Path: \\Server1\UpdatesAndDefinitions    (permissions being applied to the UpdatesAndDefinitions root folder)
    SCCMAdmin (account used for most SCCM tasks except for NA) / Modify / Share and NTFS
    Server1$ (primary site server) / Modify / NTFS
    Everyone / read and execute / NTFS and Share
    There are other system generated perms but the above three are the important ones. So hence my confusion I know that the SCCMAdmin account or the Server its self has to be accessing the target directory so why is it failing with a permissions issue?
    My next step was to enable Auditing on the target path. Doing so revealed just what I thought and through me into further frustration:
    A network share object was accessed.
    Subject:
    Security ID:
    SYSTEM
    Account Name:
    SCCM-MPS$
    Account Domain:
    DSCI
    Logon ID:
    0x3e7
    Network Information:
    Source Address:
    fe80::306a:8827:8672:3ba5
    Source Port:
    50329
    Share Name: \\*\UpdatesAndDefinitions
    A handle to an object was requested.
    Subject:
    Security ID:
    DSCI\sccmadmin
    Account Name:
    sccmadmin
    Account Domain:
    DSCI
    Logon ID:
    0xad903c
    Object:
    Object Server:
    Security
    Object Type:
    File
    Object Name:
    F:\UpdatesAndDefinitions
    Handle ID:
    0xf5c
    Process Information:
    Process ID:
    0x10cc
    Process Name:
    C:\Windows\explorer.exe
    Access Request Information:
    Transaction ID:
    {00000000-0000-0000-0000-000000000000}
    Accesses:
    READ_CONTROL
    ReadAttributes
    Access Mask:
    0x20080
    Privileges Used for Access Check:
    Restricted SID Count:
    0
    Now I may not be the best I traversing through the mess of audit entry's and translating them, but from what I can see the two accounts that have the proper share and ntsf perms ive listed above are indeed the ones accessing the target location and the audit
    code is success. I filter for failures and found no audits for failures whatsoever yet my downloads still fail religiously, unless of course I open myself up with the everyone group.
    So next... I tried adding in the Network Service account with proper permissions, the Local Service Account, my user account, and all no go's.
    Next... I remove the SUP roles from SCCM checked the logs for deinstall confirmations, and reinstalled these roles. No Go!
    If anyone can assist I would be in your debt and very grateful. 
    Oh last note, but very important note I'm running SCCM 2012 SP1 CU4
    Thanks,
    Michael
    MichaelSpaulding

    I just tested with the everyone group further; I added everyone with modify for ntfs and just read only for share and downloads failed!
    I then changed the share perms for everyone to change and the ntfs to read/execute and poof downloads complete! Obviously change share perms for everyone leaves me open which Id like to prevent, so finding what account is being used is crucial.
    I have already tried adding all of the SCCM accounts I use and the servers themselves as change perms to share and ntfs and have not had any luck.
    MichaelSpaulding

  • Huge issue with battery and overheating in iOS 6.1.1 iPhone 4S and ipad new iOS 6.1 what I can do , I am very sorry for update from 5.1.1 it was the best

    Huge issue with battery and overheating in iOS 6.1.1 iPhone 4S and ipad new iOS 6.1 what I can do , I am very sorry for update from 5.1.1 it was the best
    My wife have iPhone 4 and ipad new is not updated it working good and my devices after update working bad :-(, likely the devices of my wife stay with 5.1.1

    good thing i havent updated mine yet.. 

  • I bought a new 5c and transferred from an old update from my iPhone 4.  The only issue I have is the name of my new phone.  How can I change it from Amyiphone4 to something else?

    I bought a new 5c and transferred from an old update from my iPhone 4.  The only issue I have is the name of my new phone.  How can I change it from Amyiphone4 to something else?

    settings - general - about - name - make the changes

  • After installing 3 updates from "software update app" today (june,11th) my MacBook Pro doesn't  initialize anymore. Why this is happening? And how do i solve this issue?

    Hello Mac Friends!
    Need some help here!
    After installing 3 updates from the "software update" app today (June, 11th) my macbook doesn' t initialize anymore.
    Is there someone who can help me fix this issue?
    Why this is happening?
    How can i fix it?
    Wainting some feedback...

    Two places to start with that would have been better:
    MacBook Pro
    https://discussions.apple.com/community/notebooks/macbook_pro 
    https://discussions.apple.com/community/mac_os
    http://www.apple.com/support/macbookpro
    TimeMachine 101
    https://support.apple.com/kb/HT1427
    Lion Recovery Mode
    http://support.apple.com/kb/HT4718
    How to clone your system:
    http://macperformanceguide.com/Mac-HowToClone-backup.htmlhttp://macperformanceguide.com/Mac-HowToClone.htmlhttp://www.macupdate.com/app/mac/7032/carbon-copy-cloner
    If you have backups, if you can and saved your ML installer, you can start over.
    Prevention and taking a more proactive approach to system maintenance and repair, rather than fixiing a problem (likely pre-existing?) format the drive or partition and reinstall 10.8.1 and restore from backups.
    Never had any issues? freezing? apps crashing before?

  • HT4623 My computer is not taking the new update from itunes. It states that i do not have the requirements to finish the Install and that it was Installed incorrectly. I have never had any issue with any previous update regarding iTunes. What is the issue

    My computer is not taking the new update from itunes. It states that i do not have the requirements to finish the Install and that it was Installed incorrectly. I have never had any issue with any previous update regarding iTunes. What is the issue?

    Hi there Double2D,
    You may find the troubleshooting steps in the article below helpful.
    iTunes 11.1.4 for Windows: Unable to install or open
    http://support.apple.com/kb/TS5376
    -Griff W. 

  • Updating a property node from a sub-vi

    I want to have a string indicator box that updates as my program moves along, i have been using the property node this works fine in the main vi but now i want to update it from a sub iv. any ideas?

    Tip: The easiest way to accomplish this is to do the following:
    In your top-level VI that has the control right-click on it and select Create-->Reference. This will allow you to place a reference in top-level VI's block diagram.
    Create a new VI that will be your subVI.
    Drag and drop the reference object from the block diagram of your top level VI to the front panel of your new subVI. This will create a reference control on your subVI that is of the same type as the control on your top-level VI.
    Connect the reference control on your subVI to a connection terminal, and then wire the reference object in your top-level VI's block diagram to the subVI's input terminal.
    Then, in your subVI you can just use the standard "Property" and "Invoke" nodes to fiddle with the control.

Maybe you are looking for

  • How to stop a process chain tempararly

    Hi we have a process chain BI (7.0) which extracts data from R/3 scheduled everyday at 6AM. However, our basis team is shutting down the R/3 server around this time for maintenance. I want stop the process cain for this day and start regular schedule

  • Trade in not listed on my account

    I began my GCU membership on November 3rd.  Just after that transaction, I returned to the store and traded in a copy of Madden 15 for the xb1.  The transaction (and points) are not listed on my mybestbuy account.  How can I correct this?

  • How to reduce time for replicating large tables?

    Hi Any suggestions on how to reduce the amount of time it takes to replicate a large table when it is first created? I have a table with 150 million rows in it, and it takes forever to start the replication process even if I run it in parallel, and I

  • Installing oracle 9.2.0.4.0 in LINUX AS 4,patch 4198954

    I tried to install oracle 9.2.0.4.0 in redhat enterprise linux AS4.but it gives me too many errors. I Serarched throgh some documents and found that before installing it,it have to be some packages installed. So I need patch number 4198954.(compat-or

  • Just updated, now .mov or other video won't play in Keynote

    As I put together my slideshow for church last night, I realized none of my .mov, mp4, mpg videos would work properly. They were playing, but just a black screen. A needed advent video would play audio just fine, but no video. From simple animated ba