watch -n 1 grep -e Dirty: -e Writeback: /proc/meminfo
Пример вывода:
Every 1,0s: grep -e Dirty: -e Writeback: /proc/meminfo Sat Dec 3 14:17:35 2016 Dirty: 57712 kB Writeback: 8 kB
watch -n 1 grep -e Dirty: -e Writeback: /proc/meminfo
Every 1,0s: grep -e Dirty: -e Writeback: /proc/meminfo Sat Dec 3 14:17:35 2016 Dirty: 57712 kB Writeback: 8 kB
Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\Folder\shell\OpenCmd] @="Открыть cmd…" "Icon"="%SystemRoot%\\system32\\cmd.exe" "SeparatorAfter"=dword:00000001 [HKEY_CLASSES_ROOT\Folder\shell\OpenCmd\command] @="cmd.exe /k pushd \"%L\"" |
Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\Directory\Background\shell\OpenCmd] "Icon"="%SystemRoot%\\system32\\cmd.exe" @="Открыть cmd…" "SeparatorAfter"=dword:00000001 [HKEY_CLASSES_ROOT\Directory\Background\shell\OpenCmd\command] @="cmd.exe" |
touch -t 12100000 date
Теперь с помощью find ищем все файлы, старше заданной даты:find . -newer date
-t timeВыдержка из man find:
Use the specified time instead of the current time. The option-argument shall be a decimal number of the form:
[[CC]YY]MMDDhhmm[.SS]
where each two digits represents the following:
MM
The month of the year [01,12].
DD
The day of the month [01,31].
hh
The hour of the day [00,23].
mm
The minute of the hour [00,59].
CC
The first two digits of the year (the century).
YY
The second two digits of the year.
SS
The second of the minute [00,60].
-newer file
File was modified more recently than file. If file is a symbolic link and the -H option or the -L option is in effect, the modification time of the file it points to is always used.
fdisk /dev/sdc
На новом разделе необходимо создать файловую систему NTFS.
mkfs.ntfs -f /dev/sdc1
Далее монтируем раздел с файловой системой NTFS и копируем все файлы с установочного DVD-диска или его образа на только что созданную файловую систему. По окончании операции не забываем отмонтировать раздел с NTFS.Записываем главную загрузочную запись (MBR) для Windows 7.mount /dev/sdc1 /mnt/ntfs_disk cp -r /mnt/windows7_distr/* /mnt/ntfs_disk/ umount /dev/sdc1
ms-sys -7 /dev/sdc
Установочный USB-диск с Windows 7 готов к использованию.
Создаем каталог, куда будет установлен Oracle Instant Client (выполнять из консоли Wine):wine cmd
c:& mkdir oracle\instantclient\11.2.0.2\network
Распаковываем содержимое архивов instantclient-basic-nt-11.2.0.2.0.zip и instantclient-sqlplus-nt-11.2.0.2.0.zip в каталог ${WINEPREFIX-~/.wine}/drive_c/oracle/instantclient/11.2.0.2).
NLS_LANG AMERICAN_RUSSIA.CL8MSWIN1251 ORACLE_HOME C:\oracle\instantclient\11.2.0.2 TNS_ADMIN C:\oracle\instantclient\11.2.0.2\network
cd /d c:\oracle\instantclient\11.2.0.2 & sqlplus /nolog
Длина файла указывается в байтах.fsutil file createnew <имя файла> <длина>
sudo zypper addrepo -f http://download.opensuse.org/repositories/home:/ZaWertun:/console/openSUSE_12.1/home:ZaWertun:console.repo
Переход на использование пакета mc из этого репозитория:sudo zypper install --from home_ZaWertun_console mc
String.prototype.format = function() { var args = arguments; return this.replace(/{(\d+)}/g, function(match, number) { return typeof args[number] != 'undefined' ? args[number] : match; }); };
Переходим в конец файла и находим следующие строки:sudo $EDITOR /usr/lib/pm-utils/sleep.d/99Zgrub
Меняем файл, чтобы его содержимое выглядело так:###### main() if [ "$1" = hibernate ] || [ "$1" = suspend -a "$2" = suspend_hybrid ]; then prepare-grub fi if [ "$1" = thaw ] || [ "$1" = resume -a "$2" = suspend_hybrid ]; then grub-once-restore fi
Источник: Boot another OS after hibernate (workaround).###### main() if [ "$1" = hibernate ] || [ "$1" = suspend -a "$2" = suspend_hybrid ]; then # prepare-grub fi if [ "$1" = thaw ] || [ "$1" = resume -a "$2" = suspend_hybrid ]; then # grub-once-restore fi