Then grant
vboxusers
groups access to the USB device filesystem:$ grep 108 /etc/group vboxusers:x:108: $ vim /etc/fstab usbfs /proc/bus/usb usbfs auto,busgid=108,busmode=0775,devgid=108,devmode=0664 0 0
vboxusers
groups access to the USB device filesystem:$ grep 108 /etc/group vboxusers:x:108: $ vim /etc/fstab usbfs /proc/bus/usb usbfs auto,busgid=108,busmode=0775,devgid=108,devmode=0664 0 0
password
into the main GRUB section to password protect the interactive operations (i.e. editing menu entries and entering the command-line interface). Optionally add lock
into a menu entry to prevent it from executing if no valid password is provided by the user.$ grub-md5-crypt Password: Retype password: $1$K0Kh10$OmQNQOthH8jppDFQ5TYx5/ $ chmod 600 /boot/grub/menu.lst $ vim /boot/grub/menu.lst default 0 ... password --md5sum $1$K0Kh10$OmQNQOthH8jppDFQ5TYx5/ title Linux kernel ... title OpenBSD lock kernel ...
svn mkdir http://svn.example.com/project/tags -m "release directory" svn copy http://svn.example.com/project/trunk \ http://svn.example.com/project/tags/1.0 -m "release 1.0"
SQL> alter session set nls_date_format = 'yyyy-mm-dd hh24:mi:ss'; SQL> alter session set nls_timestamp_format = 'yyyy-mm-dd hh24:mi:ss'; SQL> select foo_date from bar_table where rownum <= 1; FOO_DATE ------------------- 2012-01-01 01:02:03
vncviewer -via yourusername@remotemachine localhost:1
sudo yum install rpmdevtools rpm-build redhat-rpm-configInitialize the directory hierarchy for your custom build RPM packages as a regular user:
rpmdev-setuptreeOptionally add additional attributes into
~/.rpmmacros
, e.g.:
echo '%packager Your Name <your.name@foo.bar>' >> ~/.rpmmacrosUse
rpmbuild
to build RPM from a source RPM or from a SPEC file:
rpmbuild --rebuild package.src.rpm rpmbuild -bb package.spec