Çatal

Uzman
Katılım
29 Kasım 2024
Mesajlar
42
Beğeniler
18
Fedora kullanıyorum ve Casper laptopumda klavye ışıkları Game Control Center ile değiştiriliyordu, ancak Linux'a geçince bu özellik çalışmıyor. Driver yüklediğimde ise BIOS hatası alıyorum. Bunun yerine başka bir uygulama ile bu işlemi yapma imkânım var mı?
 
Fedora kullanıyorum ve Casper laptopumda klavye ışıkları Game Control Center ile değiştiriliyordu, ancak Linux'a geçince bu özellik çalışmıyor. Driver yüklediğimde ise BIOS hatası alıyorum. Bunun yerine başka bir uygulama ile bu işlemi yapma imkânım var mı?

Selam, bunun için OpenRGB deneyebilirsiniz.
İndirme:

Kod:
sudo dnf install openrgb

Test:

Kod:
openrgb --detect
openrgb

Eğer çalışmazsa root yetkisi ile deneyin:

Kod:
sudo openrgb

Alternatif olarak Clevo kullanabilirsiniz.
Casper kullanan cihazların bazıları Clevo tabanlı anakartlar kullanır. Eğer anakartınız Clevo tabanlı ise aşağıdaki yöntemleri deneyebilirsiniz.

Clevo kurulum:

Kod:
git clone https://github.com/andrewnsk/clevo-kb
cd clevo-kb
make
sudo make install

Örnek kullanımı:

Kod:
sudo clevo-kb blue

RGB için:

Kod:
sudo clevo-kb --rgb FF0000 00FF00 0000FF
 
Son düzenleme:
Selam, bunun için OpenRGB deneyebilirsiniz.
İndirme:

Kod:
sudo dnf install openrgb

Test:

Kod:
openrgb --detect
openrgb

Eğer çalışmazsa root yetkisi ile deneyin:

Kod:
sudo openrgb

Alternatif olarak Clevo kullanabilirsiniz.
Casper kullanan cihazların bazıları Clevo tabanlı anakartlar kullanır. Eğer anakartınız Clevo tabanlı ise aşağıdaki yöntemleri deneyebilirsiniz.

Clevo kurulum:

Kod:
git clone https://github.com/andrewnsk/clevo-kb
cd clevo-kb
make
sudo make install

Örnek kullanımı:

Kod:
sudo clevo-kb blue

RGB için:

Kod:
sudo clevo-kb --rgb FF0000 00FF00 0000FF
Some internal devices may not be detected:One or more I2C or SMBus interfaces failed to initialize.RGB DRAM modules, some motherboards' onboard RGB lighting, and RGB Graphics Cards, will not be available in OpenRGB without I2C or SMBus.How to fix this:On Linux, this is usually because the i2c-dev module is not loaded.You must load the i2c-dev module along with the correct i2c driver for your motherboard. This is usually i2c-piix4 for AMD systems and i2c-i801 for Intel systems.See help.openrgb.org for additional troubleshooting steps if you keep seeing this message. hatası nedir hocam
 
Some internal devices may not be detected: One or more ı2C or SMBus interfaces failed to initialize. RGB DRAM modules, some motherboards' onboard RGB lighting, and RGB Graphics cards, will not be available in openrgb without ı2C or SMBus. How to fix this: On Linux, this is usually because the I2C-DEV module is not loaded. You must load the I2C-DEV module along with the correct i2C driver for your motherboard. This is usually I2C-PIIX4 for AMD systems and I2C-I801 for Intel systems. See help.openrgb.org for additional troubleshooting steps if you keep seeing this message. Hatası nedir hocam.

Hocam I2C-DEV modülü eksil olduğu için bu hatayı alıyorsunuz. Gerekli modülleri yüklemeniz lazım.

Intel sistem için I2C sürücüsü:

Kod:
sudo modprobe i2c-dev
sudo modprobe i2c-i801

AMD sistem için I2C sürücüsü:

Kod:
sudo modprobe i2c-dev
sudo modprobe i2c-piix4

Sistem başladığında otomatik yükleme için:

Kod:
echo "i2c-dev" | sudo tee -a /etc/modules-load.d/openrgb.conf
echo "i2c-i801" | sudo tee -a /etc/modules-load.d/openrgb.conf # (Intel için)
echo "i2c-piix4" | sudo tee -a /etc/modules-load.d/openrgb.conf # (AMD için)

Kullanıcıyı I2C grubuna ekle:

Kod:
sudo usermod -aG i2c $USER

Şu kodu gir:

Kod:
newgrp i2c

Tekrar başlat:

Kod:
sudo openrgb --i2c

I2C cihazını kontrol et:

Kod:
sudo dnf install i2c-tools
sudo i2cdetect -l # Tüm I2C bus'larını listele.
sudo i2cdetect -r 0 # 0 numaralı bus’ı tara (bus numarası değişebilir!)