LinuxQuestions.org
Help answer threads with 0 replies.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Desktop
User Name
Password
Linux - Desktop This forum is for the discussion of all Linux Software used in a desktop context.

Notices


Reply
  Search this Thread
Old 04-25-2019, 06:56 AM   #1
jimmi morrison
LQ Newbie
 
Registered: Apr 2019
Location: england
Distribution: linux mint
Posts: 21

Rep: Reputation: 0
Mint 19.1 Cinnamon opening in wrong desktop


primary & non primary desktops - https://imgur.com/a/lACGUyL mint is opening in the right hand side picture whereas i need it to open in the left hand side picture ; also maybe related menu/display shows Laptop default whereas i have Desktop set as Primary & greyed out ?

Would this relate to a Lightdm problem ? I'm trying to perfect a clean install & require expert help please !?

cheers
jimmi
$ inxi -Fxx
System:
Host: leoboy-All-Series Kernel: 4.15.0-48-generic x86_64 bits: 64
compiler: gcc v: 7.3.0 Desktop: Cinnamon 4.0.10 wm: muffin dm: LightDM
Distro: Linux Mint 19.1 Tessa base: Ubuntu 18.04 bionic
Machine:
Type: Desktop System: ASUS product: All Series v: N/A
serial: <root required>
Mobo: ASUSTeK model: H81M-K v: Rev X.0x serial: <root required>
BIOS: American Megatrends v: 3602 date: 03/26/2018
Battery:
Device-1: hidpp_battery_0 model: Logitech Wireless Keyboard K540/K545
serial: 4076-92-d2-67-ec charge: 100% status: Discharging
Device-2: hidpp_battery_1 model: Logitech Wireless Mouse
serial: 4055-1b-cb-74-e3 charge: 55% status: Discharging
CPU:
Topology: Quad Core model: Intel Core i7-4790K bits: 64 type: MT MCP
arch: Haswell rev: 3 L2 cache: 8192 KiB
flags: lm nx pae sse sse2 sse3 sse4_1 sse4_2 ssse3 vmx bogomips: 63855
Speed: 2395 MHz min/max: 800/4400 MHz Core speeds (MHz): 1: 2395 2: 2396
3: 2395 4: 2395 5: 2399 6: 2396 7: 2395 8: 2393
Graphics:
Device-1: Intel Xeon E3-1200 v3/4th Gen Core Processor Integrated Graphics
vendor: ASUSTeK driver: N/A bus ID: 00:02.0 chip ID: 8086:0412
Display: x11 server: X.Org 1.19.6 driver: vesa unloaded: fbdev,modesetting
resolution: 1920x1200~N/A
OpenGL: renderer: llvmpipe (LLVM 7.0 256 bits) v: 3.3 Mesa 18.2.8
compat-v: 3.1 direct render: Yes
Audio:
Device-1: Intel 8 Series/C220 Series High Definition Audio vendor: ASUSTeK
driver: snd_hda_intel v: kernel bus ID: 00:1b.0 chip ID: 8086:8c20
Sound Server: ALSA v: k4.15.0-48-generic
Network:
Device-1: Realtek RTL8111/8168/8411 PCI Express Gigabit Ethernet
vendor: ASUSTeK driver: r8169 v: 2.3LK-NAPI port: e000 bus ID: 03:00.0
chip ID: 10ec:8168
IF: enp3s0 state: up speed: 1000 Mbps duplex: full mac: 9c:5c:8e:00:66:44
Drives:
Local Storage: total: 1.82 TiB used: 74.62 GiB (4.0%)
ID-1: /dev/sda vendor: Seagate model: ST2000DM001-1ER164 size: 1.82 TiB
speed: 6.0 Gb/s serial: W4Z0XM0P
Partition:
ID-1: / size: 1.79 TiB used: 74.62 GiB (4.1%) fs: ext4 dev: /dev/sda1
Sensors:
System Temperatures: cpu: 29.8 C mobo: 27.8 C
Fan Speeds (RPM): cpu: 0
Info:
Processes: 236 Uptime: 2h 56m Memory: 15.54 GiB used: 1.34 GiB (8.6%)
Init: systemd v: 237 runlevel: 5 Compilers: gcc: 7.3.0 alt: 7 Shell: bash
v: 4.4.19 running in: gnome-terminal inxi: 3.0.27
 
Old 04-26-2019, 01:26 AM   #2
mrmazda
LQ Guru
 
Registered: Aug 2016
Location: SE USA
Distribution: openSUSE 24/7; Debian, Knoppix, Mageia, Fedora, OS/2, others
Posts: 6,419
Blog Entries: 1

Rep: Reputation: 2216Reputation: 2216Reputation: 2216Reputation: 2216Reputation: 2216Reputation: 2216Reputation: 2216Reputation: 2216Reputation: 2216Reputation: 2216Reputation: 2216
Prior thread.

It is not clear to me whether you wish the laptop display to be left or right, or which display you wish to be primary. The following assumes you wish the external display to be both on the left and primary. If I have them reversed, swap positions of the Option line in each Section "Monitor" or use LeftOf instead of RightOf as required. Save this as /etc/X11/xorg.conf:
Code:
Section "Device"
	Identifier "Haswell"
	Option "monitor-eDP-1" "eDPcon"
	Option "monitor-HDMI-1" "HDMIcon"
EndSection

Section "Monitor"
	Identifier "HDMIcon"
	Option "Primary" "true"
EndSection

Section "Monitor"
	Identifier "eDPcon"
        Option "RightOf" "HDMI-1"
EndSection

Section "Screen"
	Identifier "ExtScreen"
	Device "Haswell"
	Monitor "HDMIcon"
EndSection

Section "Screen"
	Identifier "IntScreen"
	Device "Haswell"
	Monitor "eDPcon"
EndSection
The two option lines in Section "Device", if those above differ, need to be changed to match the outputs of your laptop's names reported as connected by xrandr and Xorg.0.log.
 
Old 04-26-2019, 09:55 AM   #3
jimmi morrison
LQ Newbie
 
Registered: Apr 2019
Location: england
Distribution: linux mint
Posts: 21

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by mrmazda View Post
Prior thread.

It is not clear to me whether you wish the laptop display to be left or right, or which display you wish to be primary. The following assumes you wish the external display to be both on the left and primary. If I have them reversed, swap positions of the Option line in each Section "Monitor" or use LeftOf instead of RightOf as required. Save this as /etc/X11/xorg.conf:
Code:
Section "Device"
	Identifier "Haswell"
	Option "monitor-eDP-1" "eDPcon"
	Option "monitor-HDMI-1" "HDMIcon"
EndSection

Section "Monitor"
	Identifier "HDMIcon"
	Option "Primary" "true"
EndSection

Section "Monitor"
	Identifier "eDPcon"
        Option "RightOf" "HDMI-1"
EndSection

Section "Screen"
	Identifier "ExtScreen"
	Device "Haswell"
	Monitor "HDMIcon"
EndSection

Section "Screen"
	Identifier "IntScreen"
	Device "Haswell"
	Monitor "eDPcon"
EndSection
The two option lines in Section "Device", if those above differ, need to be changed to match the outputs of your laptop's names reported as connected by xrandr and Xorg.0.log.
thanks but the picture i posted shows i need Mint to open on the left - also i have no laptop - the monitor i have is a Dell U2412M 24" LCD TFT

so where does the eDPcon HDMI-1 come from ? You do not say either how do i use the code ? It wont go in the Terminal - tried to use a text editor & when try to save as /etc/X11/xorg.conf says i do not have the right permissions ! Also previously you told me to remove that file . Can we start again please on this matter ?
jimmi
 
Old 04-26-2019, 12:33 PM   #4
mrmazda
LQ Guru
 
Registered: Aug 2016
Location: SE USA
Distribution: openSUSE 24/7; Debian, Knoppix, Mageia, Fedora, OS/2, others
Posts: 6,419
Blog Entries: 1

Rep: Reputation: 2216Reputation: 2216Reputation: 2216Reputation: 2216Reputation: 2216Reputation: 2216Reputation: 2216Reputation: 2216Reputation: 2216Reputation: 2216Reputation: 2216
Your OP used the word laptop, so I thought that's what this is about.

Please provide output from
Code:
xrandr | grep connected
Please choose a location other than imgur.com to upload images or lengthy logs to. Satisfactory locations include:
Code:
http://paste.debian.net/
http://paste.opensuse.org/
http://pastebin.centos.org/
http://paste.fedoraproject.org
http://pastebin.com/
http://paste.ubuntu.com/
http://susepaste.org/
https://gist.github.com/
The new xorg.conf file just be saved under superuser permission, using sudo or logged in as root.

Last edited by mrmazda; 04-26-2019 at 12:35 PM.
 
1 members found this post helpful.
Old 04-27-2019, 11:14 AM   #5
jimmi morrison
LQ Newbie
 
Registered: Apr 2019
Location: england
Distribution: linux mint
Posts: 21

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by mrmazda View Post
Your OP used the word laptop, so I thought that's what this is about.

Please provide output from
Code:
xrandr | grep connected
Please choose a location other than imgur.com to upload images or lengthy logs to. Satisfactory locations include:
Code:
http://paste.debian.net/
http://paste.opensuse.org/
http://pastebin.centos.org/
http://paste.fedoraproject.org
http://pastebin.com/
http://paste.ubuntu.com/
http://susepaste.org/
https://gist.github.com/
The new xorg.conf file just be saved under superuser permission, using sudo or logged in as root.
$ xrandr | grep connected

xrandr: Failed to get size of gamma for output default
default connected primary 1920x1200+0+0 0mm x 0mm

5/6 hours ago i must have miss-posted & that reply vanished ? but running the test had a better result - there were 2 things side by side 1 being HDMI & something else cannot remember which way round - also it added a programme ArandR to my software in Menu - now all it shows is : default . Tried un-install & re-install but ArandR only shows : default .
Now running xrandr | grep connected returns xrandr: Failed to get size of gamma for output default
default connected primary 1920x1200+0+0 0mm x 0mm but does not add the programme back ?
 
Old 04-27-2019, 12:00 PM   #6
mrmazda
LQ Guru
 
Registered: Aug 2016
Location: SE USA
Distribution: openSUSE 24/7; Debian, Knoppix, Mageia, Fedora, OS/2, others
Posts: 6,419
Blog Entries: 1

Rep: Reputation: 2216Reputation: 2216Reputation: 2216Reputation: 2216Reputation: 2216Reputation: 2216Reputation: 2216Reputation: 2216Reputation: 2216Reputation: 2216Reputation: 2216
Quote:
Originally Posted by jimmi morrison View Post
$ xrandr | grep connected

xrandr: Failed to get size of gamma for output default
default connected primary 1920x1200+0+0 0mm x 0mm
Something strange is going on. It should resemble this from my Asus/Mint/Cinnamon system:
Code:
# inxi -GxxS
System:    Host: ab250 Kernel: 4.15.0-20-generic x86_64 bits: 64 compiler: gcc v: 7.3.0 Desktop: Cinnamon 4.0.10
           wm: muffin dm: LightDM Distro: Linux Mint 19.1 Tessa base: Ubuntu 18.04 bionic
Graphics:  Device-1: Intel HD Graphics 630 vendor: ASUSTeK driver: i915 v: kernel bus ID: 00:02.0 chip ID: 8086:5912
           Display: x11 server: X.Org 1.19.6 driver: modesetting unloaded: fbdev,vesa
           resolution: 1920x1200~60Hz, 2560x1440~60Hz
           OpenGL: renderer: Mesa DRI Intel HD Graphics 630 (Kaby Lake GT2) v: 4.5 Mesa 18.2.8 compat-v: 3.0
           direct render: Yes
# /usr/bin/xrandr | grep onnect
HDMI-2 connected 1920x1200+2560+0 (normal left inverted right x axis y axis) 519mm x 324mm
DP-1 connected primary 2560x1440+0+0 (normal left inverted right x axis y axis) 598mm x 336mm
HDMI-1 disconnected (normal left inverted right x axis y axis)
HDMI-3 disconnected (normal left inverted right x axis y axis)
DP-2 disconnected (normal left inverted right x axis y axis)
 
Old 04-27-2019, 12:56 PM   #7
jimmi morrison
LQ Newbie
 
Registered: Apr 2019
Location: england
Distribution: linux mint
Posts: 21

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by mrmazda View Post
Something strange is going on. It should resemble this from my Asus/Mint/Cinnamon system:
Code:
# inxi -GxxS
System:    Host: ab250 Kernel: 4.15.0-20-generic x86_64 bits: 64 compiler: gcc v: 7.3.0 Desktop: Cinnamon 4.0.10
           wm: muffin dm: LightDM Distro: Linux Mint 19.1 Tessa base: Ubuntu 18.04 bionic
Graphics:  Device-1: Intel HD Graphics 630 vendor: ASUSTeK driver: i915 v: kernel bus ID: 00:02.0 chip ID: 8086:5912
           Display: x11 server: X.Org 1.19.6 driver: modesetting unloaded: fbdev,vesa
           resolution: 1920x1200~60Hz, 2560x1440~60Hz
           OpenGL: renderer: Mesa DRI Intel HD Graphics 630 (Kaby Lake GT2) v: 4.5 Mesa 18.2.8 compat-v: 3.0
           direct render: Yes
# /usr/bin/xrandr | grep onnect
HDMI-2 connected 1920x1200+2560+0 (normal left inverted right x axis y axis) 519mm x 324mm
DP-1 connected primary 2560x1440+0+0 (normal left inverted right x axis y axis) 598mm x 336mm
HDMI-1 disconnected (normal left inverted right x axis y axis)
HDMI-3 disconnected (normal left inverted right x axis y axis)
DP-2 disconnected (normal left inverted right x axis y axis)
&
$ /usr/bin/xrandr | grep onnect
/usr/bin/xrandr: Failed to get size of gamma for output default
default connected primary 1920x1200+0+0 0mm x 0mm
leoboy@leoboy-All-Series:~$ /usr/bin/xrandr | grep connect
/usr/bin/xrandr: Failed to get size of gamma for output default
default connected primary 1920x1200+0+0 0mm x 0mm

$ inxi -GxxS
System:
Host: leoboy-All-Series Kernel: 4.15.0-48-generic x86_64 bits: 64
compiler: gcc v: 7.3.0 Desktop: Cinnamon 4.0.10 wm: muffin dm: LightDM
Distro: Linux Mint 19.1 Tessa base: Ubuntu 18.04 bionic
Graphics:
Device-1: Intel Xeon E3-1200 v3/4th Gen Core Processor Integrated Graphics
vendor: ASUSTeK driver: N/A bus ID: 00:02.0 chip ID: 8086:0412
Display: x11 server: X.Org 1.19.6 driver: vesa unloaded: fbdev,modesetting
resolution: 1920x1200~N/A
OpenGL: renderer: llvmpipe (LLVM 7.0 256 bits) v: 3.3 Mesa 18.2.8
compat-v: 3.1 direct render: Yes

is this correct ? ASUSTeK driver: N/A

Last edited by jimmi morrison; 04-27-2019 at 01:07 PM. Reason: correction
 
Old 04-27-2019, 03:16 PM   #8
mrmazda
LQ Guru
 
Registered: Aug 2016
Location: SE USA
Distribution: openSUSE 24/7; Debian, Knoppix, Mageia, Fedora, OS/2, others
Posts: 6,419
Blog Entries: 1

Rep: Reputation: 2216Reputation: 2216Reputation: 2216Reputation: 2216Reputation: 2216Reputation: 2216Reputation: 2216Reputation: 2216Reputation: 2216Reputation: 2216Reputation: 2216
Quote:
Originally Posted by jimmi morrison View Post
Display: x11 server: X.Org 1.19.6 driver: vesa
This is a bad report. VESA is a fallback driver, not suited for most normal uses, used mostly for rescue purposes.

Please provide output from:
Code:
cat /proc/cmdline
 
Old 04-27-2019, 04:40 PM   #9
jimmi morrison
LQ Newbie
 
Registered: Apr 2019
Location: england
Distribution: linux mint
Posts: 21

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by mrmazda View Post
This is a bad report. VESA is a fallback driver, not suited for most normal uses, used mostly for rescue purposes.

Please provide output from:
Code:
cat /proc/cmdline
thnx mrmazda
$ cat /proc/cmdline

BOOT_IMAGE=/boot/vmlinuz-4.15.0-48-generic root=UUID=623faa7a-8dd4-4994-9169-5ceebba7e1af ro recovery nomodeset
 
Old 04-27-2019, 04:56 PM   #10
mrmazda
LQ Guru
 
Registered: Aug 2016
Location: SE USA
Distribution: openSUSE 24/7; Debian, Knoppix, Mageia, Fedora, OS/2, others
Posts: 6,419
Blog Entries: 1

Rep: Reputation: 2216Reputation: 2216Reputation: 2216Reputation: 2216Reputation: 2216Reputation: 2216Reputation: 2216Reputation: 2216Reputation: 2216Reputation: 2216Reputation: 2216
Quote:
Originally Posted by jimmi morrison View Post
BOOT_IMAGE=/boot/vmlinuz-4.15.0-48-generic root=UUID=623faa7a-8dd4-4994-9169-5ceebba7e1af ro recovery nomodeset
Recovery and nomodeset are for troubleshooting and correcting problems. Until you can boot without them you can't expect proper results in Cinnamon. They can be removed temporarily by striking the E key at the Grub menu, then removing them with BS or DEL.

Have you been booting using the default Grub selection? If you have not been, why?

Please provide content of:
Code:
grep CMDLINE /etc/default/grub
 
Old 04-28-2019, 06:23 AM   #11
jimmi morrison
LQ Newbie
 
Registered: Apr 2019
Location: england
Distribution: linux mint
Posts: 21

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by mrmazda View Post
Recovery and nomodeset are for troubleshooting and correcting problems. Until you can boot without them you can't expect proper results in Cinnamon. They can be removed temporarily by striking the E key at the Grub menu, then removing them with BS or DEL.

Have you been booting using the default Grub selection? If you have not been, why? 1.

Please provide content of:
Code:
grep CMDLINE /etc/default/grub
1.when computer is off i press the start button on the stack & boots up to wrong window ( you have seen the picture ) . Then using the very small button next to the main start button i reboot past BIOS & press Shift & Grub briefly appears in top left then opens to a Menu - i take the second one down Rescue Mode (tried var things !) & reboot as this gets to a screen where i have internet/terminal albeit in SRM .

2. grep CMDLINE /etc/default/grub

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""

the nomodeset aticle is v.pertinent & i will try a few things .
thanks.

Last edited by jimmi morrison; 04-28-2019 at 06:29 AM. Reason: spelling
 
Old 04-28-2019, 09:49 AM   #12
mrmazda
LQ Guru
 
Registered: Aug 2016
Location: SE USA
Distribution: openSUSE 24/7; Debian, Knoppix, Mageia, Fedora, OS/2, others
Posts: 6,419
Blog Entries: 1

Rep: Reputation: 2216Reputation: 2216Reputation: 2216Reputation: 2216Reputation: 2216Reputation: 2216Reputation: 2216Reputation: 2216Reputation: 2216Reputation: 2216Reputation: 2216
Quote:
Originally Posted by jimmi morrison View Post
1.when computer is off i press the start button on the stack & boots up to wrong window ( you have seen the picture ) . Then using the very small button next to the main start button i reboot past BIOS & press Shift & Grub briefly appears in top left then opens to a Menu - i take the second one down Rescue Mode (tried var things !) & reboot as this gets to a screen where i have internet/terminal albeit in SRM.
As the linked page says, you cannot expect good behavior choosing the rescue selection in the Grub menu. As it says, it's for performing rescue activities, in part by including the nomodeset boot option.

We need to figure out what is going wrong when you use the default Grub selection. To that end, please post the information previously requested, while booted using the default selection.

If booting using the default selection fails in a severe manner, such as locking up the PC, then you can reboot using the rescue selection for the simple purpose of retrieving and uploading Xorg.0.log.old instead of Xorg.0.log.
 
Old 04-28-2019, 12:06 PM   #13
jimmi morrison
LQ Newbie
 
Registered: Apr 2019
Location: england
Distribution: linux mint
Posts: 21

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by mrmazda View Post
As the linked page says, you cannot expect good behavior choosing the rescue selection in the Grub menu. As it says, it's for performing rescue activities, in part by including the nomodeset boot option.1

We need to figure out what is going wrong when you use the default Grub selection. To that end, please post the information previously requested, while booted using the default selection.2.

If booting using the default selection fails in a severe manner, such as locking up the PC, then you can reboot using the rescue selection for the simple purpose of retrieving and uploading Xorg.0.log.old instead of Xorg.0.log.
3.

1.agreed - i only am doing this to get internet & terminal

2.when default Grub selection opens up you cannot see the correct window that is the problem now i beleive - the picture
i sent does not show the big box top right SRM - i have just print screen its the same . re post the information previously requested, while booted using the default selection ? please state what you require as i have checked back & only the last post previous thread have i not sent namely : $ ls -l /etc/X11/xorg.con* ls: cannot access '/etc/X11/xorg.con*': No such file or directory

3. -severe manner, such as locking up the PC - this has never happened .

Last edited by jimmi morrison; 04-28-2019 at 12:10 PM.
 
Old 04-28-2019, 10:20 PM   #14
mrmazda
LQ Guru
 
Registered: Aug 2016
Location: SE USA
Distribution: openSUSE 24/7; Debian, Knoppix, Mageia, Fedora, OS/2, others
Posts: 6,419
Blog Entries: 1

Rep: Reputation: 2216Reputation: 2216Reputation: 2216Reputation: 2216Reputation: 2216Reputation: 2216Reputation: 2216Reputation: 2216Reputation: 2216Reputation: 2216Reputation: 2216
Are both your display cables the same type? Can you switch them with each other to get the display positions where you need them?

For the present, it is good that "ls -l /etc/X11/xorg.con*" reports no such file.

Please provide output from these 4 commands, in order, with each command preceding its output as shown on your screen:
Code:
ls -l /var/log/Xorg.0.log
egrep 'Kernel command|onnecte' /var/log/Xorg.0.log
ls -l ~/.local/share/xorg/Xorg.0.log
egrep 'Kernel command|onnecte' ~/.local/share/xorg/Xorg.0.log
These need to come from a boot that includes neither nomodeset nor rescue on the kernel cmdline. Please wrap the entirety of this paste with the [#] icon above your reply input window.

Last edited by mrmazda; 04-28-2019 at 10:23 PM.
 
Old 04-29-2019, 07:43 AM   #15
jimmi morrison
LQ Newbie
 
Registered: Apr 2019
Location: england
Distribution: linux mint
Posts: 21

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by mrmazda View Post
Are both your display cables the same type? Can you switch them with each other to get the display positions where you need them?

For the present, it is good that "ls -l /etc/X11/xorg.con*" reports no such file.

Please provide output from these 4 commands, in order, with each command preceding its output as shown on your screen:
Code:
ls -l /var/log/Xorg.0.log
egrep 'Kernel command|onnecte' /var/log/Xorg.0.log
ls -l ~/.local/share/xorg/Xorg.0.log
egrep 'Kernel command|onnecte' ~/.local/share/xorg/Xorg.0.log
These need to come from a boot that includes neither nomodeset nor rescue on the kernel cmdline. Please wrap the entirety of this paste with the [#] icon above your reply input window.
Code:
$ ls -l /var/log/Xorg.0.log
-rw-r--r-- 1 root root 48975 Apr 29 12:48 /var/log/Xorg.0.log

$ egrep 'Kernel command|onnecte' /var/log/Xorg.0.log
[ 37.419] Kernel command line: BOOT IMAGE = /boot/vmlinuz -4.15.0.48 generic root = UUID = 623Faa7a-8dd4-4994-9169-5ceebba7elaf ro quiet splash
[ 37.972] (II) modeset(0):Output VGA-1 connected 
[ 37.972] (II) modeset(0):Output HDMI-1 connected

-l ~/.local/share/xorg/Xorg.0.log
ls: cannot access &apos;/home/leoboy/.local/share/xorg/Xorg.0.log&apos;: No such file or directory

$ egrep 'Kernel command|onnecte' ~/.local/share/xorg/Xorg.0.log
grep: /home/leoboy/.local/share/xorg/Xorg.0.log: No such file or directory


morning & thanks mrmazda - i had todo this more or less by hand as i had no place i could copy to from Terminal ?! the cable question was v.good but alas the answer is NO
1. i got this more or less twice .
2. got this twice - the Kernel command was in Red as was the "onnecte" in connected .
3&4 same output NO
Hope this helps ...
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Unable to launch "cinnamon-session-cinnamon" X session "cinnamon-session-cinnamon" -found; Falling back to default "session." xxxindigo Linux Mint 22 09-01-2019 09:21 AM
Why Go Debian-Ubuntu-Mint-Cinnamon, When You Can Go Debian-Cinnamon? happydog500 Debian 17 10-10-2017 08:37 AM
LXer: Linux Mint 17.3 "Rosa" Cinnamon Edition Beta Officially Released with Cinnamon 2.8 LXer Syndicated Linux News 0 11-18-2015 11:29 PM
[SOLVED] Linux Mint 17 (Cinnamon) versus Linux Mint 17-1 (Cinnamon) Tikiman Linux - General 2 05-15-2015 02:54 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Desktop

All times are GMT -5. The time now is 11:19 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration