Jump to content
Read the Funtoo Newsletter: Summer 2023 ×

whiteghost

Members
  • Posts

    34
  • Joined

  • Last visited

  • Days Won

    2

Posts posted by whiteghost

  1. hi all,

    i use xfce.

    i often use vlc to play media. i set option to disable screen saver while using vlc.

    not sure how effective that is.

    i recently tried 

    $xset s off 

    and thought it was helpin...

     

    now i am watching netflix on google-chrome.... AND I REALLY WANT MY SCREEN TO STAY ON!

     

    i had xscreensaver disabled, now unmerged it, no relief.

     

    please help.

  2. Grub is capable of auto detecting OSes, so it may not be an issue from the Funtoo side. I need to get the rest of Funtoo installed before I go any further, though.

    not quite. look at

    $man boot.conf

     

    here is mine for an example

     

     $ cat /etc/boot.conf
    boot {
    generate grub
    default "Funtoo Linux" 
    timeout 3 
    }
     
    "Funtoo Linux" {
    kernel kernel-xfce
    initrd initramfs-xfce
    params real_root=/dev/sda2
    params += video=800x600
    }
     
    "Funtoo Linux g3" {
    kernel kernel-deb
    initrd initramfs-deb
    params real_root=/dev/sda3
            params += video=800x600 
     
    "Funtoo Linux better-initramfs" {
    kernel vmlinuz[-v]
    initrd /initramfs.cpio.gz
    }
    "Windows 7" {
    type win7
    params root=/dev/sdc1
    }
     
    "kde" {
           kernel kernel-kde
           initrd initramfs-kde
           params real_root=/dev/sdd1        
           params += rootfstype=ext4
           params += video=800x600
    }
  3. emerge -s bumble

    Searching...    

    [ Results for search key : bumble ]

    [ Applications found : 1 ]

     

    *  x11-misc/bumblebee

          Latest version available: 3.2.1

          Latest version installed: [ Not Installed ]

          Size of files: 139 kB


          Description:   Service providing elegant and stable means of managing Optimus graphics chipsets

          License:       GPL-3

     


  4. $ cat /usr/share/i18n/SUPPORTED | grep BR
    pt_BR.UTF-8 UTF-8
    pt_BR ISO-8859-1
     

     

    put 

     

    pt_BR.UTF-8 UTF-8

     

    in /etc/locale.gen

     

    then run 

     

    #locale-gen

     

    nano  ~/.bashrc

    export LANG="pt_BR.UTF-8"

    export LC_COLLATE="C"
     

    For a system-wide default locale:

    root #env-update && source /etc/profile

    For a user-specific locale:

     

    user $source ~/.bashrc
     
     
     
     
    xfce ~ # locale
    LANG=pt_BR.UTF-8
    LC_CTYPE="pt_BR.UTF-8"
    LC_NUMERIC="pt_BR.UTF-8"
    LC_TIME="pt_BR.UTF-8"
    LC_COLLATE=C
    LC_MONETARY="pt_BR.UTF-8"
    LC_MESSAGES="pt_BR.UTF-8"
    LC_PAPER="pt_BR.UTF-8"
    LC_NAME="pt_BR.UTF-8"
    LC_ADDRESS="pt_BR.UTF-8"
    LC_TELEPHONE="pt_BR.UTF-8"
    LC_MEASUREMENT="pt_BR.UTF-8"
    LC_IDENTIFICATION="pt_BR.UTF-8"
    LC_ALL=
     
     
    # nano /etc/portage/make.conf
     
    LINGUAS="pt_BR"
×
×
  • Create New...