|
"Лечим" менеджер проприетарных драйверов. |
|
|
|
|
Автор: hawk
|
|
13.03.2008 09:10 |
Возможно кто то сталкивался с проблемой запуска менеджера проприетарных драйверов, находящегося в "Система-Администрирование".
В этой статье, я расскажу, как это легко поправить.
Для этого в консоли набираем: sudo gedit /usr/lib/python2.5/site-packages/RestrictedManager/RestrictedManagerCommon.py
Вводим пароль пользователя. В открывшемся редакторе переходим к следующим строкам (начало со строки №234. Для того, чтобы включить нумерацию строк в редакторе gedit, нужно зайти в "Правка-Параметры" в открывшемся окне "Вид" - "Показывать номера строк".):
return (t,
# %(os)s stands for the OS name. Prefix it or suffix it,
# but do not replace it.
_('Proprietary drivers do not have public source code that %(os)s '
'developers are free to modify. They represent a risk to you '
'because they are only available on the types of computer chosen by '
'the manufacturer, and security updates to them depend solely on the '
'responsiveness of the manufacturer. %(os)s cannot fix or improve '
'these drivers.') % {'os': get_os_name()}
)
Меняем данный блок следующим образом:
return (t, 'Some_text')
# %(os)s stands for the OS name. Prefix it or suffix it,
# but do not replace it.
# _('Proprietary drivers do not have public source code that %(os)s '
# 'developers are free to modify. They represent a risk to you '
# 'because they are only available on the types of computer chosen by '
# 'the manufacturer, and security updates to them depend solely on the '
# 'responsiveness of the manufacturer. %(os)s cannot fix or improve '
# 'these drivers.') % {'os': get_os_name()}
# )
Сохраняем изменения, переходим в "Система-Администрирование-Менеджер проприетарных драйверов", запускаем и устанавливаем драйвер.
|
|
Обновлено ( 29.03.2008 13:13 )
|
Комментарии