Mac os library folder

Как открыть скрытую папку «Библиотеки» (Library) на Mac (macOS Sierra)

В macOS Sierra разработчики посчитали уместным не отображать папку «Библиотеки» в пользовательском каталоге. Так как в этой папке сосредоточено много важных системных данных (кэш, настройки программ и прочее), девелоперы решили обезопасить юзеров от случайного удаления этих файлов.

Однако есть простой способ, как быстро вернуть отображение «Библиотеки» в пользовательском каталоге. Для этого не понадобится совершать действий в Терминале, необходимо лишь следовать нашей инструкции:

Как открыть папку «Библиотеки» (Library) на macOS Sierra

1. Для начала необходимо зайти в Finder и нажать на меню «Переход», а затем «Переход к папке». Альтернативный вариант – нажать сочетание клавиш ⌘Cmd + ⇧Shift + G (может быть и ⌘Cmd + ⇧Shift + H);

2. Появится строка, в которой следует ввести адрес «

3. Сразу же после этого откроется искомый каталог «Библиотеки». В том случае, если работать с ним планируется нечасто, можно взять данный способ на заметку.

Но если предполагается обращаться к папке регулярно, можно перетянуть ее иконку в боковую панель. Таким образом, появится возможность быстрого и простого доступа к каталогу «Библиотеки».

Подробный видеообзор macOS Sierra

Источник

Доступ к папке Библиотеки (

/Library) в Finder

С версии Mac OS X — 10.7 папка “Library” (Библиотеки) по умолчанию в Finder спрятана от пользователя.

Способ №1

Эта возможность присутствует в OS X довольно давно. С помощью этого трюка можно быстро перейти в папку “Библиотеки”, при этом оставив её скрытой.

Нажмите на вкладку “Go” (Переход) в строке меню.

Зажмите клавишу Option ( Alt ). После этого в списке для перехода к папкам появится и папка “Библиотеки”:

Способ №2

Перейдите в домашнюю папку пользователя (для этого можно использовать сочетание клавиш Command+Shift+H ).

Нажмите на вкладку “View” (Вид) в строке меню и выберите пункт “Show View Options” (Показать параметры вида).

Отметьте пункт “Show Library Folder” (Показывать папку «Библиотеки»).

После этого папка “Библиотеки” будет видна в вашей домашней папке.

Способ №3

Нажмите на вкладку “Go” (Переход) в строке меню и выберите пункт “Go to Folder…” (Переход к Папке). Или используйте сочетание клавиш Cmd+Shift+G (Переход к Папке).

Введите адрес каталога:

Вы попадёте в каталог “Библиотеки”.

Способ №4

Этот способ использовался в OS X Lion и Mountain Lion, но так же работает в OS X Mavericks и Yosemite.

Запустите “Terminal” через “Spotlight” или “Launchpad” → “Utilities”

Введите следующую команду, чтобы показать спрятанную папку:

Папка “Библиотеки” станет видимой.

Возврат к стандартным настройкам:

Если эта статья помогла вам, пожалуйста, оставьте комментарий

Спасибо за прочтение!

Если этот пост помог вам, и вы хотели бы показать свою поддержку, подумайте о том, чтобы заправить будущие посты, купив мне чашку кофе!

Читайте также:  Драйвер для звуковых карт via hd audio windows 10

Источник

what does mac os /Library folder store?

I am a new to mac osx. One thing confusing me is what does /Library or /System/Library folders store? As its name meaning, I thought is should be something like /lib or /usr/lib in Linux. However, it does not. Inside it, it looks more similar to application bundles. And all naming is very application-specific, like /Library/iChat . If they are application-specific, then why they are called Library ? Usually when named as Library , it is for codes or resources sharing purpose.

1 Answer 1

The library folders store settings, resources, and support files. There up to 6 «levels» of them:

    The user library,

/Library, stores per-user settings etc.

  • The local library, /Library, stores computer-wide settings etc. BTW, I call this the «local» library, because in NextStep it was /Local/Library, but you’ll see all sorts of other names for it, such as the root library, computer library, .
  • The network library, /Network/Library would store settings shared by all computers in a network domain — if a network domain admin set one up, which nobody does anymore
  • The system library, /System/Library, stores the base settings, resources, etc that come with OS X. In theory, you shouldn’t change anything in here.
  • Sandboxed apps don’t have access to most of the user’s home folder. They’re mostly restricted to their own sandbox «container» (which is itself inside the user library), and as a result they get their own «private» libraries:

      Per-application sandbox libraries,

    Источник

    File System Programming Guide

    macOS Library Directory Details

    The Library directories are where the system and your code store all of their related data and resources. In macOS, this directory can contain many different subdirectories, most of which are created automatically by the system. In iOS, the app installer creates only a few subdirectories in

    /Library (such as Caches and Preferences ) and your app is responsible for creating all others.

    Table A-1 lists some of the common subdirectories you might find in a Library directory in macOS along with the types of files that belong there. You should always use these directories for their intended purposes. For information about the directories your app should be using the most, see The Library Directory Stores App-Specific Files .

    Table A-1 Subdirectories of the Library directory

    Contains all app-specific data and support files. These are the files that your app creates and manages on behalf of the user and can include files that contain user data.

    By convention, all of these items should be put in a subdirectory whose name matches the bundle identifier of the app. For example, if your app is named MyApp and has the bundle identifier com.example.MyApp , you would put your app’s user-specific data files and resources in the

    /Library/Application Support/com.example.MyApp/ directory. Your app is responsible for creating this directory as needed.

    Resources required by the app to run must be placed inside the app bundle itself.

    Contains programs that assist users in configuration or other tasks.

    Contains audio plug-ins, loops, and device drivers.

    Contains app-specific autosave data.

    Contains cached data that can be regenerated as needed. Apps should never rely on the existence of cache files. Cache files should be placed in a directory whose name matches the bundle identifier of the app.

    By convention, apps should store cache files in a subdirectory whose name matches the bundle identifier of the app. For example, if your app is named MyApp and has the bundle identifier com.example.MyApp , you would put user-specific cache files in the

    Contains resources for picking colors according to a certain model, such as the HLS (Hue Angle, Saturation, Lightness) picker or RGB picker.

    Contains ColorSync profiles and scripts.

    Contains system bundles and extensions.

    Contains the home directories for any sandboxed apps. (Available in the user domain only.)

    Contextual Menu Items

    Contains plug-ins for extending system-level contextual menus.

    Contains data files with web browser cookies.

    Contains data used by Xcode and other developer tools.

    Contains language dictionaries for the spell checker.

    Contains documentation files and Apple Help packages intended for the users and administrators of the computer. (Apple Help packages are located in the Documentation/Help directory.) In the local domain, this directory contains the help packages shipped by Apple (excluding developer documentation).

    Contains device drivers and other kernel extensions.

    Contains aliases to frequently accessed folders, files, or websites. (Available in the user domain only.)

    Contains font files for both display and printing.

    Contains frameworks and shared libraries. The Frameworks directory in the system domain is for Apple-provided frameworks only. Developers should install their custom frameworks in either the local or user domain.

    Contains plug-ins, libraries, and filters for web-browser content.

    Contains keyboard definitions.

    Specifies the agent apps to launch and run for the current user.

    Specifies the daemons to launch and run as root on the system.

    Contains log files for the console and specific system services. Users can also view these logs using the Console app.

    Contains the user’s mailboxes. (Available in the user domain only.)

    Contains plug-ins for the System Preferences app. Developers should install their custom preference panes in the local domain.

    Contains the user’s preferences. You should never create files in this directory yourself. To get or set preference values, you should always use the NSUserDefaults class or an equivalent system-provided interface.

    In the system and local domains, this directory contains print drivers, PPD plug-ins, and libraries needed to configure printers. In the user domain, this directory contains the user’s available printer configurations.

    Contains QuickLook plug-ins. If your app defines a QuickLook plug-in for viewing custom document types, install it in this directory (user or local domains only).

    Contains QuickTime components and extensions.

    Contains screen saver definitions. See Screen Saver Framework Reference for a description of the interfaces used to create screen saver plug-ins.

    Contains scripts and scripting resources that extend the capabilities of AppleScript.

    Contains system alert sounds.

    (Deprecated) Contains system and third-party scripts and programs to be run at boot time. (See Daemons and Services Programming Guide for more information about starting up processes at boot time.)

    Contains web server content. This directory contains the CGI scripts and webpages to be served. (Available in the local domain only.)

    Copyright © 2018 Apple Inc. All Rights Reserved. Terms of Use | Privacy Policy | Updated: 2018-04-09

    Источник

    Как найти папку Library в Mac OS

    Как и Windows, операционная система Mac OS имеет скрытую папку библиотек, называемую Library или Библиотека. Скрыта она потому, что содержит настройки, которых несведущему человеку лучше не касаться. Удаление всех или части этих параметров в лучшем случае заставит вас переустановить определенные приложения, а в худшем — приведёт к сбою всей системы и потребует полной её переустановки.

    Но бывает просто необходимо получить доступ к Библиотеке. Например, многие приложения размещают туда свои резервные копии, и если вы хотите сделать бэкап приложения, в любом случае понадобится доступ к этой папке. Но как осуществить доступ к Library, не навредив работе системы? Об этом мы расскажем в этой статье.

    Что такое папка «Library»?

    Library — область компьютера, где хранятся все настройки приложений Mac OS. Вот, допустим, устанавливаете вы программу. В Library автоматически создаётся папка для всех ключевых настроек программы. Они могут включать в себя что угодно: плагины, файлы параметров, лог-файлы. Все они скрыты, чтобы любопытный пользователь случайно их не удалил. А то откроет папку, подумает, как много ненужного мусора хранится у него в системе, и удалит всё к чёрту. А потом в лучшем случае просто какие-то приложения откажутся работать, а то и вся система может полететь. Но уже поздно! Можно сказать, что Apple защищает нас от наших собственных худших побуждений! Но иногда, как мы уже говорили, показать Library просто необходимо. Поэтому мы и расскажем, как это сделать.

    Есть два способа добраться до Библиотеки для тех, кто уверен, что не устроит в ней какой-нибудь апокалипсис системы.

    Показать Library при помощи клавиши ALT

    Перейдите в Finder и прокрутите вниз меню «Переход».

    Вы увидите, что Library отсутствует в списке. Чтобы открыть ее, нажмите клавишу Alt (также называемую клавишей Option) в нижней левой части клавиатуры. Появится долгожданная Library.

    Нажав на неё, вы перейдёте непосредственно внутрь папки. Но описанный метод имеет один недостаток: ежели вы отпустите палец с клавиши Alt, папка автоматически исчезнет.

    Показать Library при помощи опции «Переход к папке»

    Как мы уже сказали выше, первый способ работает, только когда нажата клавиша Alt. Но есть иной метод. При нажатии Alt постарайтесь запомнить путь к папке Library. Он показывается вверху, когда вы находитесь в папке. Затем вернитесь в меню «Переход» Finder и внизу вы увидите опцию «Переход к папке».

    Когда вы нажмете на неё, появится окно, где можно ввести нужный путь.

    Теперь осталось нажать «Перейти», и вы внутри папки.

    Заключение

    В былые времена папка Library не была скрытой. Но постепенно разработчики пришли к выводу, что это плохая идея. Так как если сделать её видимой и постоянно показывать, пользователь может случайно удалить критически важный файл, что приведёт к неправильной работе всей системы. Да и вы убедились: найти папку в нужный момент совсем нетрудно.

    Как показать скрытые файлы в MacOS

    Возможно, вы не знаете, но на ПК в Mac OS есть тысячи спрятанных файлов и…

    Как почистить клавиатуру ноутбука?

    Даже если мы очень аккуратно пользуемся ноутбуком, его очень легко испачкать. Ноутбук часто оставляют в…

    IPad 5G: стоимость и обзор будущей новинки

    2019 год ознаменовался анонсом от таких глобальных компаний как Huawei, Xiaomi и Samsung. Новость о…

    Источник

    Читайте также:  Очень медленно работает ноутбук windows что делать
    Оцените статью