Tuesday, August 10, 2021

Run Skype as a root user in Linux Ubuntu CentOS Fedora

Skype is not working for root in ubuntu

Now Skype does not work for root user in Linux.

In recent versions, they have also removed the option --no-sandbox for root user.

Here is the solution to open Skype as root user in Linux without any security loophole and without --no-sandbox

Once you have installed latest version of Skypeforlinux in your Ubuntu, CentOS, Fedora or any other distribution, now follow the tutorial to open the skype as a root user in Linux.

 


Run Skype version 60.0+ on Centos 7, Centos 8, Ubuntu 20.04 or Ubuntu 18.04 as a root


Run Skype version 70.0+ on Centos 7, Centos 8, Ubuntu 20.04 or Ubuntu 18.04 as a root

Skype crashes when I run it as a root user in Linux | skypeforlinux not launch anymore | Skype for linux as a root user in Ubuntu | Open Skypeforlinux as a root user | skype not running as root user in linux | skype now working with sudo


Saturday, August 7, 2021

Django Migration Error - '%s=%s' % (k, v) for k, v in params.items(),

Django Migration Error :

  File "/home/pavi/ldap/lib/python3.8/site-packages/django/contrib/admin/__init__.py", line 4, in <module>
    from django.contrib.admin.filters import (
  File "/home/pavi/ldap/lib/python3.8/site-packages/django/contrib/admin/filters.py", line 10, in <module>
    from django.contrib.admin.options import IncorrectLookupParameters
  File "/home/pavi/ldap/lib/python3.8/site-packages/django/contrib/admin/options.py", line 12, in <module>
    from django.contrib.admin import helpers, widgets
  File "/home/pavi/ldap/lib/python3.8/site-packages/django/contrib/admin/widgets.py", line 151
    '%s=%s' % (k, v) for k, v in params.items(),

Solution :

Update file at line number 151

Add the Parenthesis
  File "/home/pavi/ldap/lib/python3.8/site-packages/django/contrib/admin/widgets.py", line 151

('%s=%s' % (k, v) for k, v in params.items()),

Postman Error : The requested URL /upload/drive/v3/files was not found on this server. That’s all we know.

Error : The requested URL /upload/drive/v3/files was not found on this server. That’s all we know. 

Solution :

The issue is in the Headers section.
Add always default header Host, Do not skip it while sending the request.