So guys, as I said, there my audio info of my notebook:
I use a linux environment, and typed lspci in terminal, my audio card is: 00:1b.0 Audio device: Intel Corporation 7 Series/C210 Series Chipset Family High Definition Audio Controller (rev 04).
To enable audio to intel audio cards you need put the modules(exfat64.mo and ntfs64.mod) in right place(in my case, /efi/RemixOS), and configure grub correctly like this:
menuentry 'Remix OS' --class android-x86 {
set root='(hd0,11)'
insmod /efi/RemixOS/exfat64.mod
insmod /efi/RemixOS/ntfs64.mod
linuxefi /RemixOS/kernel root=/dev/ram0 androidboot.hardware=remix_x86_64 androidboot.selinux=permissive DATA= SRC=RemixOS CREATE_DATA_IMG=1
initrdefi /RemixOS/initrd.img
}
To find what put in set root, in grub you need to enter in cosole mode and type "ls", so it will list all hds and partitions like this (hd0,1). But if you know wich partition and hd your remixOS was installed, put like this (hdx,y), where x is hd number(starts in 0) and y is partition number(starts in 0).
You also can add the flag "quiet" to skip initialization messages.
I did this, and my sound works like a charm :)