Linux
- Details
- Parent Category: главный раздел
- Category: Linux
- Hits: 2820
find /home/user -type f \( -newermt "1 Jan 2015" -and -not -newermt "2 Jan 2015" \) -exec ls -l {} \
find /home/user -type f \( -newermt "1 Jan 2015" -and -not -newermt "2 Jan 2015" \) -delete
Read more: Как найти и удалить файлы за конкретную дату в Linux
- Details
- Parent Category: главный раздел
- Category: Linux
- Hits: 4441
Выполните следующие шаги для добавления установочного DVD RHEL в качестве репозитория.
Шаг 1: Создаем точку монтирование и монтируем DVD
$ mkdir /mnt/rhel-dvd && mount -t iso9660 -o ro /dev/cdrom /mnt/rhel-dvd
Шаг 2: Создаем конфигурационный файл ‘rhel-dvd.repo’
$ touch /etc/yum.repos.d/rhel-dvd.repo
- Details
- Parent Category: главный раздел
- Category: Linux
- Hits: 2972
To gunzip and untar a file in a single step, use the following—note that the z switch is the important one that tells tar to unzip it.
tar xvfz somefilename.tar.gz
Read more: Unzip и Untar tar.gz или tar.bz2 файлы в один шаг
- Details
- Parent Category: главный раздел
- Category: Linux
- Hits: 3010