how to get optimal performance from Centrino Advanced-N 6205 wifi card

799

Well so it turns out 802.11n was disabled for some reason:

mwhudson@narsil:~$ sudo grep 11n -r /etc
/etc/modprobe.d/intel_11n_disable.conf:options iwlwifi 11n_disable=1

Moving that file out of the way got me the performance I expected.

Share:
799

Related videos on Youtube

Ahmed Sayed
Author by

Ahmed Sayed

Updated on September 18, 2022

Comments

  • Ahmed Sayed
    Ahmed Sayed over 1 year

    I am using xamarin.forms. I am trying to insert data in caches.

    var getData = JsonConvert.DeserializeObject<UserViewModel>(Respone);
    await BlobCache.LocalMachine.InsertObject("RsponseData",getData);
    

    And then I try to get cached data.

    var data = BlobCache.LocalMachine.GetObject<UserViewModel>("RsponseData");
    

    How to to use data so that I can do:

    data.UserName
    data.password