Skip to main content
Topic solved
This topic has been marked as solved and requires no further attention.
Topic: Network issue (Read 6326 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

Re: Network issue

Reply #16
Ok going to install lts kernel and if i reboot it should load it?


Re: Network issue

Reply #18
yes, after boot  put here dmes output please. You can shutdown your computer, one minute wait and after start it again (for loading new fw <- advises some)

yes, you must modify your boot loader settings.  can you put here output from cfg file? probably you use grub, or ?

Re: Network issue

Reply #19
But how do i load the old kernel?

Re: Network issue

Reply #20
put here output from your grub.cfg,
and after run "grub-mkconfig -o /boot/grub/grub.cfg"

for syslinux you'll need to edit the syslinux config file in /boot/syslinux/syslinux.cfg accordingly, just point everything to the -lts kernel.

Re: Network issue

Reply #21
Code: [Select]
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
insmod part_gpt
insmod part_msdos
if [ -s $prefix/grubenv ]; then
  load_env
fi
if [ "${next_entry}" ] ; then
   set default="${next_entry}"
   set next_entry=
   save_env next_entry
   set boot_once=true
else
   set default="0"
fi

if [ x"${feature_menuentry_id}" = xy ]; then
  menuentry_id_option="--id"
else
  menuentry_id_option=""
fi

export menuentry_id_option

if [ "${prev_saved_entry}" ]; then
  set saved_entry="${prev_saved_entry}"
  save_env saved_entry
  set prev_saved_entry=
  save_env prev_saved_entry
  set boot_once=true
fi

function savedefault {
  if [ -z "${boot_once}" ]; then
    saved_entry="${chosen}"
    save_env saved_entry
  fi
}

function load_video {
  if [ x$feature_all_video_module = xy ]; then
    insmod all_video
  else
    insmod efi_gop
    insmod efi_uga
    insmod ieee1275_fb
    insmod vbe
    insmod vga
    insmod video_bochs
    insmod video_cirrus
  fi
}

set menu_color_normal=light-blue/black
set menu_color_highlight=light-cyan/blue

if [ x$feature_default_font_path = xy ] ; then
   font=unicode
else
insmod part_gpt
insmod ext2
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root  91db28a8-34cb-4e7d-8397-ec32152947de
else
  search --no-floppy --fs-uuid --set=root 91db28a8-34cb-4e7d-8397-ec32152947de
fi
    font="/usr/share/grub/unicode.pf2"
fi

if loadfont $font ; then
  set gfxmode=1920x1080x32,1280x720x32,auto
  load_video
  insmod gfxterm
  set locale_dir=$prefix/locale
  set lang=es_ES
  insmod gettext
fi
terminal_input console
terminal_output gfxterm
insmod part_gpt
insmod fat
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root  A10E-8CAD
else
  search --no-floppy --fs-uuid --set=root A10E-8CAD
fi
insmod jpeg
background_image -m stretch /grub/bg.jpg
if [ x$feature_timeout_style = xy ] ; then
  set timeout_style=hidden
  set timeout=0
# Fallback hidden-timeout code in case the timeout_style feature is
# unavailable.
elif sleep --interruptible 0 ; then
  set timeout=0
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/10_linux ###
menuentry 'Artix Linux' --class artix --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-91db28a8-34cb-4e7d-8397-ec32152947de' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_gpt
insmod fat
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root  A10E-8CAD
else
  search --no-floppy --fs-uuid --set=root A10E-8CAD
fi
echo 'Loading Linux linux ...'
linux /vmlinuz-linux root=UUID=91db28a8-34cb-4e7d-8397-ec32152947de rw  loglevel=3 quiet acpi_os_name=Linux acpi_osi=
echo 'Loading initial ramdisk ...'
initrd /initramfs-linux.img
}
submenu 'Advanced options for Artix Linux' $menuentry_id_option 'gnulinux-advanced-91db28a8-34cb-4e7d-8397-ec32152947de' {
menuentry 'Artix Linux, with Linux linux' --class artix --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-advanced-91db28a8-34cb-4e7d-8397-ec32152947de' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_gpt
insmod fat
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root  A10E-8CAD
else
  search --no-floppy --fs-uuid --set=root A10E-8CAD
fi
echo 'Loading Linux linux ...'
linux /vmlinuz-linux root=UUID=91db28a8-34cb-4e7d-8397-ec32152947de rw  loglevel=3 quiet acpi_os_name=Linux acpi_osi=
echo 'Loading initial ramdisk ...'
initrd /initramfs-linux.img
}
menuentry 'Artix Linux, with Linux linux (fallback initramfs)' --class artix --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-fallback-91db28a8-34cb-4e7d-8397-ec32152947de' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_gpt
insmod fat
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root  A10E-8CAD
else
  search --no-floppy --fs-uuid --set=root A10E-8CAD
fi
echo 'Loading Linux linux ...'
linux /vmlinuz-linux root=UUID=91db28a8-34cb-4e7d-8397-ec32152947de rw  loglevel=3 quiet acpi_os_name=Linux acpi_osi=
echo 'Loading initial ramdisk ...'
initrd /initramfs-linux-fallback.img
}
menuentry 'Artix Linux, with Linux linux (recovery mode)' --class artix --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-recovery-91db28a8-34cb-4e7d-8397-ec32152947de' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_gpt
insmod fat
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root  A10E-8CAD
else
  search --no-floppy --fs-uuid --set=root A10E-8CAD
fi
echo 'Loading Linux linux ...'
linux /vmlinuz-linux root=UUID=91db28a8-34cb-4e7d-8397-ec32152947de rw single
echo 'Loading initial ramdisk ...'
initrd /initramfs-linux-fallback.img
}
}

### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_linux_xen ###
### END /etc/grub.d/20_linux_xen ###

### BEGIN /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###

### BEGIN /etc/grub.d/41_custom ###
if [ -f  ${config_directory}/custom.cfg ]; then
  source ${config_directory}/custom.cfg
elif [ -z "${config_directory}" -a -f  $prefix/custom.cfg ]; then
  source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###

Re: Network issue

Reply #22
question: why you use "acpi_os_name=Linux acpi_osi="
in line
Code: [Select]
linux	/vmlinuz-linux root=UUID=91db28a8-34cb-4e7d-8397-ec32152947de rw  loglevel=3 quiet acpi_os_name=Linux acpi_osi= 
it's any fix?

Re: Network issue

Reply #23
I think is for my mouse but i dont know i think i didnt add it but now linux does not reconice my keyboard




Re: Network issue

Reply #27
I use it and it works but the laptop integrated keyboard, trackpad do not work
Also how did you get the url of the exact keyboard i use? Did you see my github?
Also how do i make nm reload so it tries to search networks when i load the module?

Re: Network issue

Reply #28
I use it and it works but the laptop integrated keyboard, trackpad do not work
Also how did you get the url of the exact keyboard i use? Did you see my github?
Also how do i make nm reload so it tries to search networks when i load the module?

No i just see your NUI in dmesg and search it in internet. I don't know your github page.
nm should automaticaly reload/search wifi connection, if iwlwifi modul will property loaded.

you can nm servce restart as usualy  (in my case "rc-service NetworkManager restart" ) - no idea, what you use for init

Re: Network issue

Reply #29
I restarted with rsm so rsm restart NetworkManager and nothing
Also on the new kernel cuz the old kernel was giving me more issues
Dmesg:  https://0x0.st/-XaN.json