Gentoo LinuxでGRUBのタイムアウトをデフォルトの5秒から変更したい場合は、/etc/default/grub
のGRUB_TIMEOUT=5
という部分を書き換えると良いようです。
# Boot the default entry this many seconds after the menu is displayed
GRUB_TIMEOUT=10
#GRUB_TIMEOUT_STYLE=menu
変更できたらgrub-mkconfig
します。
# grub-mkconfig -o /boot/grub/grub.cfg
リンク
GRUB2 – Gentoo Wiki
https://wiki.gentoo.org/wiki/GRUB2
関連記事
Gentoo LinuxのKernel Upgradeガイド
Gentoo LinuxのKernel Upgradeガイド(自分用メモ)です。
1. インストール
# emerge --ask sys-kernel/gentoo-sources
2. eselect
# eselect kernel list
# eselect kernel set <target>
3. ビルド&インストール 注
# cd ...
Gentoo LinuxでMingw
Gentoo LinuxでMingwを使ったクロスコンパイル
crossdevをインストール
# emerge -v sys-devel/crossdev
/etc/make.confにPORTDIR_OVERLAYを追加
PORTDIR_OVERLAY="/usr/local/portage"
/usr/local/portageがない場合はディレクトリを作成
...
Gentoo LinuxでC#を使ってみた
Gentoo LinuxのMonoでC#を使ってみたので、使い方をメモしてみます。
インストール
# emerge -av mono
プログラミング
$ vi hello.cs
$ cat hello.cs
using System;
public class Hello
{
static public void Main ()
{
Console.Wri...
Gentoo LinuxでNTFSとexFATを使う手順
Gentoo LinuxでNTFSとexFATを使う手順について
カーネルの準備
File systems --->
<*> FUSE (Filesystem in Userspace) support
DOS/FAT/NT Filesystems --->
<*> NTFS file system support
<*> NTFS ...
Gentoo Linuxの古いPORTAGEをダウンロードする方法
Gentoo Linuxの古いPORTAGEをダウンロードしたい場合は
Index of /gentoo/releases/snapshots/current/squashfshttp://distfiles.gentoo.org/releases/snapshots/current/squashfs/
から毎月1日のスナップショットがダウンロードできるようになっています。
s...
Gentoo Linuxでインストールしたパッケージの一覧
Gentooでインストールしたパッケージの一覧を調べたい場合は、次のような場所を探してみると良いそうです。
emergeでインストールしたパッケージの一覧
/var/lib/portage/world
--oneshotのオプションを付けてインストールした場合はリストに追加されないみたいです。
インストールしてあるパッケージの一覧
/var/db/pkgにあるディレ...