LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   kali video output choppy flash and native player same issue (https://www.linuxquestions.org/questions/linux-newbie-8/kali-video-output-choppy-flash-and-native-player-same-issue-4175552671/)

spiffymoo 09-05-2015 01:21 AM

kali video output choppy flash and native player same issue
 
native player vlc and chrome browser flashplayer work but flicker black in random areas. icewheasesl flash works fine (when it does wor) does not flicker. All my issues (this just one of many) began after installng gnome-tweak tool. I have since used apt-get to unnstall it but it left all the default prefernces of the pogram.
I had set all optons to default before uninstalling the link a video my screenhttps://youtu.be/aHkck35odLU

ugjka 09-05-2015 04:52 AM

What's your graphics card?

Code:

lspci | grep -i  vga

spiffymoo 09-07-2015 04:37 PM

1 Attachment(s)
Quote:

Originally Posted by ugjka (Post 5416168)
what's your graphics card?

Code:

lspci | grep -i  vga

Attachment 19522

spiffymoo 09-07-2015 04:39 PM

1 Attachment(s)
Quote:

Originally Posted by ugjka (Post 5416168)
what's your graphics card?

Code:

lspci | grep -i  vga

Attachment 19523

Code:

spiffymoo@kali:~$ lspci | grep -i  vga
00:02.0 VGA compatible controller: Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller (rev 07)
spiffymoo@kali:~$


John VV 09-07-2015 10:26 PM

so how much ram is in this LAPTOP ?
and
What is the CPU ?


the fact that this is a laptop should have been in the first post

and is this a single boot of Kali
or
a dual boot with something?
or
a encrypted usb with persistence ?
or
a VM
or
OTHER

also TAKE CARE -- EXTREME CARE
when using other software repos that are NOT the default Kali
you can break the tools that make kali well KALI

ugjka 09-08-2015 03:06 AM

Quote:

Originally Posted by spiffymoo (Post 5417197)
Attachment 19523

Code:

spiffymoo@kali:~$ lspci | grep -i  vga
00:02.0 VGA compatible controller: Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller (rev 07)
spiffymoo@kali:~$


Create this file /etc/X11/xorg.conf.d/20-intel.conf
with the following contents
Code:

Section "Device"
  Identifier  "Intel Graphics"
  Driver      "intel"
  Option      "AccelMethod"  "uxa"
EndSection

Reboot!

spiffymoo 09-09-2015 04:20 AM

Quote:

Originally Posted by John VV (Post 5417320)
so how much ram is in this LAPTOP ?
and
What is the CPU ?


the fact that this is a laptop should have been in the first post

and is this a single boot of Kali
or
a dual boot with something?
or
a encrypted usb with persistence ?
or
a VM
or
OTHER

also TAKE CARE -- EXTREME CARE
when using other software repos that are NOT the default Kali
you can break the tools that make kali well KALI



Code:

spiffymoo@kali:~$ lsblk
NAME  MAJ:MIN RM  SIZE RO TYPE MOUNTPOINT
sda      8:0    0 298.1G  0 disk
sda1  8:1    0 286.3G  0 part /
sda2  8:2    0    1K  0 part
sda3  8:3    0    2G  0 part
sda5  8:5    0  9.8G  0 part [SWAP]

spiffymoo@kali:~$  cat /proc/version
Linux version 3.18.0-kali1-amd64 (debian-kernel@lists.debian.org) (gcc version 4.7.2 (Debian 4.7.2-5) ) #1 SMP Debian 3.18.3-1~kali4 (2015-01-22)
spiffymoo@kali:~$ lsb_release -a
No LSB modules are available.
Distributor ID:        Kali
Description:        Kali GNU/Linux 1.1.0
Release:        1.1.0
Codename:        moto
spiffymoo@kali:~$ lspci
00:00.0 Host bridge: Intel Corporation Mobile 4 Series Chipset Memory Controller Hub (rev 07)
00:02.0 VGA compatible controller: Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller (rev 07)
00:02.1 Display controller: Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller (rev 07)
00:1a.0 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #4 (rev 03)
00:1a.1 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #5 (rev 03)
00:1a.7 USB controller: Intel Corporation 82801I (ICH9 Family) USB2 EHCI Controller #2 (rev 03)
00:1b.0 Audio device: Intel Corporation 82801I (ICH9 Family) HD Audio Controller (rev 03)
00:1c.0 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express Port 1 (rev 03)
00:1c.1 PCI bridge: Intel Corporation 82801I (ICH9 Family) PCI Express Port 2 (rev 03)
00:1d.0 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #1 (rev 03)
00:1d.1 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #2 (rev 03)
00:1d.2 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #3 (rev 03)
00:1d.3 USB controller: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #6 (rev 03)
00:1d.7 USB controller: Intel Corporation 82801I (ICH9 Family) USB2 EHCI Controller #1 (rev 03)
00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev 93)
00:1f.0 ISA bridge: Intel Corporation ICH9M LPC Interface Controller (rev 03)
00:1f.2 SATA controller: Intel Corporation 82801IBM/IEM (ICH9M/ICH9M-E) 4 port SATA Controller [AHCI mode] (rev 03)
00:1f.3 SMBus: Intel Corporation 82801I (ICH9 Family) SMBus Controller (rev 03)
00:1f.6 Signal processing controller: Intel Corporation 82801I (ICH9 Family) Thermal Subsystem (rev 03)
02:00.0 Network controller: Realtek Semiconductor Co., Ltd. RTL8191SEvA Wireless LAN Controller (rev 10)
03:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8101E/RTL8102E PCI Express Fast Ethernet controller (rev 02)

spiffymoo@kali:~$ lscpu
Architecture:          x86_64
CPU op-mode(s):        32-bit, 64-bit
Byte Order:            Little Endian
CPU(s):                1
On-line CPU(s) list:  0
Thread(s) per core:    1
Core(s) per socket:    1
Socket(s):            1
NUMA node(s):          1
Vendor ID:            GenuineIntel
CPU family:            6
Model:                23
Stepping:              10
CPU MHz:              2194.870
BogoMIPS:              4389.74
L1d cache:            32K
L1i cache:            32K
L2 cache:              1024K
NUMA node0 CPU(s):    0
spiffymoo@kali:~$ cat /proc/meminfo
MemTotal:        3961428 kB
MemFree:          379304 kB
MemAvailable:    2809464 kB
Buffers:          138232 kB
Cached:          2499924 kB
SwapCached:            0 kB
Active:          2029332 kB
Inactive:        1388708 kB
Active(anon):    712148 kB
Inactive(anon):  143572 kB
Active(file):    1317184 kB
Inactive(file):  1245136 kB
Unevictable:        532 kB
Mlocked:            532 kB
SwapTotal:      10285052 kB
SwapFree:      10284964 kB
Dirty:              272 kB
Writeback:            0 kB
AnonPages:        780412 kB
Mapped:          223284 kB
Shmem:            75840 kB
Slab:            115764 kB
SReclaimable:      73536 kB
SUnreclaim:        42228 kB
KernelStack:        5776 kB
PageTables:        18852 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    12265764 kB
Committed_AS:    2716572 kB
VmallocTotal:  34359738367 kB
VmallocUsed:      347384 kB
VmallocChunk:  34359386664 kB
HardwareCorrupted:    0 kB
AnonHugePages:        0 kB
HugePages_Total:      0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:      2048 kB
DirectMap4k:      109884 kB
DirectMap2M:    3985408 kB
spiffymoo@kali:~$ free
            total      used      free    shared    buffers    cached
Mem:      3961428    3579364    382064          0    138244    2500800
-/+ buffers/cache:    940320    3021108
Swap:    10285052        88  10284964
spiffymoo@kali:~$ free -m
            total      used      free    shared    buffers    cached
Mem:          3868      3493        375          0        135      2439
-/+ buffers/cache:        918      2949
Swap:        10043          0      10043
spiffymoo@kali:~$  free -mt
            total      used      free    shared    buffers    cached
Mem:          3868      3493        374          0        135      2438
-/+ buffers/cache:        920      2948
Swap:        10043          0      10043
Total:      13912      3493      10418
spiffymoo@kali:~$ free -gt
            total      used      free    shared    buffers    cached
Mem:            3          3          0          0          0          2
-/+ buffers/cache:          0          2
Swap:            9          0          9
Total:          13          3        10


spiffymoo 09-09-2015 04:52 AM

Thank you
 
Quote:

Originally Posted by ugjka (Post 5417361)
Create this file /etc/X11/xorg.conf.d/20-intel.conf
with the following contents
Code:

Section "Device"
  Identifier  "Intel Graphics"
  Driver      "intel"
  Option      "AccelMethod"  "uxa"
EndSection

Reboot!

thank you that worked

spiffymoo 09-10-2015 07:21 PM

Prior your suggestion vlc would close its window when a video was played. A lil research I found unticking accelerated video output (overlay) option allowed the videos to play since your suggestion Chrome has worked splendid, vlc however has been acting like before with accelerated video output (overlay) option ticked vlc will play audio of the video but the video is a black output. Any suggestions.


https://www.youtube.com/watch?v=ACpLf3uuDGc


All times are GMT -5. The time now is 08:49 AM.