Recherche avancée

Médias (0)

Mot : - Tags -/javascript

Aucun média correspondant à vos critères n’est disponible sur le site.

Sur d’autres sites (500)

  • Replace HTTP links with HTTPS links.

    20 juillet 2019, par blueimp
    Replace HTTP links with HTTPS links.
  • referenced links (url#id) broke on split chapters

    21 février 2016, par Grandt
    referenced links (url#id) broke on split chapters
    

    Fixed : referenced links (url#id) broke on split chapters.
    Changed : Generated TOC file changed from using hardcoded spaces to
    indent nested chapters, to using the CSS, defaulting to 2em per level.
    The tocCss can override this by defining .level[1-n], though the default
    only defines indents for levels 1-7. Reference links has their class as
    class=".level1 reference"

  • Disadvantages to creating/removing many hard links ?

    6 novembre 2011, par agartland

    I need to create hundreds to thousands of temporary hard or symbolic links that will be deleted shortly after creation. For my purposes both types of links will work (i.e. the target is not a directory and it always exists on the same file system)

    As I understand it, symbolic links create a small file that contains the path to the original file. Whereas a hardlink creates a reference to the data in the same inode. So maybe if I am going to be creating/deleting thousands of these links is it better to be creating and deleting thousands of tiny files (symlinks) or thousands of these references (hardlinks) ? It seems like one taxes the hard drive (maybe fragmentation) while the other might tax the file system itself ? Where are inode references stored. Do I risk corrupting the file system by making so many hard links ? What about speed ?

    Thanks for your expertise !

    This a work around to be able to use ffmpeg to encode a movie out of an arbitrary subset of images from a directory. Since ffmpeg requires that the files be named properly (e.g. frame%04d.jpg) I realized I can just create hard/sym links to the subset of files and just name the links appropriately. This avoids renaming the original files and having to actually copy the data. It works great but it requires creating and deleting many thousands of links, repeatedly.

    Sort of addresses this problem too I believe :
    convert image sequence using ffmpeg