User Tools

Site Tools


mywiki:linux:notes

Fedora Notes

Confiugration

Install Local yum repository based on Fedora 20 DVD ISO

Set sudo for one user

#su - # #Suppose Set user sampleusername to administrator #usermod sampleusername -a -G root

Or directly add below line into /etc/sudoers file:

sampleusername ALL=(ALL) ALL

Disable Firewall/Selinux

  • Disable firewall otherwise windows cannot see the PC
  systemctl stop firewalld       #temporarily stop firewall
  systemctl disable firewalld    #permanent disable firewall after every reboot
  • dsiable secure linux, otherwise windows don't have any access right to the shared folder, even big file create/copy will fail
  setenforce 0       #temporarily disable selinux
  set below line in file /etc/selinux/config:  #permanent disable selinux for every reboot
  SELINUX=disabled

Set up Samba Server

Issues

bootloader stage1 target device

During Installing Fedora 20 via DVD ROM, Error “you have not created a bootloader stage1 target device” :

Solution: Reboot the computer and go to boot menu(priority) in BIOS setting. Select normal DVD Room boot up instead of EFI: DVD Rom.

/lib/ld-linux.so.2: bad ELF interpreter: No such file or directory

When tried to run “mips-linux-gnu-gcc”, it reports “/lib/ld-linux.so.2: bad ELF interpreter: No such file or directory ”. The fixing method:

  sudo yum install libstdc++.i686
  sudo yum install ncurses-libs.i686
  sudo yum install zlib.i686
mywiki/linux/notes.txt · Last modified: by 127.0.0.1