Is there any way to let urxvt support sixel? The Next CEO of Stack OverflowCharset / font in the Linux consoleHow to get VIM to display 256 colors properlyBind C-i and TAB keys to different commands in terminal applications via .inputrcWhy is sage not cooperating with urxvt?Accented characters appearing in rxvtHow can I make my Zsh theme (“fade”) look good in urxvt?dropbear ssh server won't let me connectSelecting text in rxvt-unicode and tmux with mouse reporting disabledProblems displaying 3D content with Nvidia graphics card in Ubuntu 18.04Urxvt: how to increase the amount of lines I can scroll back?

Does Germany produce more waste than the US?

Can I board the first leg of the flight without having final country's visa?

Is it correct to say moon starry nights?

Help/tips for a first time writer?

What does "shotgun unity" refer to here in this sentence?

Does higher Oxidation/ reduction potential translate to higher energy storage in battery?

Is it professional to write unrelated content in an almost-empty email?

What difference does it make using sed with/without whitespaces?

It is correct to match light sources with the same color temperature?

What steps are necessary to read a Modern SSD in Medieval Europe?

Decide between Polyglossia and Babel for LuaLaTeX in 2019

Is there such a thing as a proper verb, like a proper noun?

Physiological effects of huge anime eyes

Can Sneak Attack be used when hitting with an improvised weapon?

Lucky Feat: How can "more than one creature spend a luck point to influence the outcome of a roll"?

Can this note be analyzed as a non-chord tone?

Calculate the Mean mean of two numbers

Why do we say 'Un seul M' and not 'Une seule M' even though M is a "consonne"

Reference request: Grassmannian and Plucker coordinates in type B, C, D

Is it okay to majorly distort historical facts while writing a fiction story?

Do scriptures give a method to recognize a truly self-realized person/jivanmukta?

How do I fit a non linear curve?

Help! I cannot understand this game’s notations!

Is it OK to decorate a log book cover?



Is there any way to let urxvt support sixel?



The Next CEO of Stack OverflowCharset / font in the Linux consoleHow to get VIM to display 256 colors properlyBind C-i and TAB keys to different commands in terminal applications via .inputrcWhy is sage not cooperating with urxvt?Accented characters appearing in rxvtHow can I make my Zsh theme (“fade”) look good in urxvt?dropbear ssh server won't let me connectSelecting text in rxvt-unicode and tmux with mouse reporting disabledProblems displaying 3D content with Nvidia graphics card in Ubuntu 18.04Urxvt: how to increase the amount of lines I can scroll back?










2















Recently there is a popular github repo called lsix, and it's using sixel graphics to display images inside a terminal. Currently I am using rxvt-unicode as my terminal emulator, but it seems not to work well with sixel.



Anyone know how to make it support sixel?



(I am using Ubuntu 18.04 LTS FYI)










share|improve this question






















  • sure - you modify the program, as suggested here.

    – Thomas Dickey
    Dec 31 '18 at 10:28











  • @ThomasDickey thx! But I wonder if there is any other way without modifying the source code?

    – tjysdsg
    Jan 1 at 9:22











  • Use a different program, then. Your choice.

    – Thomas Dickey
    Jan 1 at 10:13















2















Recently there is a popular github repo called lsix, and it's using sixel graphics to display images inside a terminal. Currently I am using rxvt-unicode as my terminal emulator, but it seems not to work well with sixel.



Anyone know how to make it support sixel?



(I am using Ubuntu 18.04 LTS FYI)










share|improve this question






















  • sure - you modify the program, as suggested here.

    – Thomas Dickey
    Dec 31 '18 at 10:28











  • @ThomasDickey thx! But I wonder if there is any other way without modifying the source code?

    – tjysdsg
    Jan 1 at 9:22











  • Use a different program, then. Your choice.

    – Thomas Dickey
    Jan 1 at 10:13













2












2








2








Recently there is a popular github repo called lsix, and it's using sixel graphics to display images inside a terminal. Currently I am using rxvt-unicode as my terminal emulator, but it seems not to work well with sixel.



Anyone know how to make it support sixel?



(I am using Ubuntu 18.04 LTS FYI)










share|improve this question














Recently there is a popular github repo called lsix, and it's using sixel graphics to display images inside a terminal. Currently I am using rxvt-unicode as my terminal emulator, but it seems not to work well with sixel.



Anyone know how to make it support sixel?



(I am using Ubuntu 18.04 LTS FYI)







linux graphics terminal-emulator rxvt






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Dec 31 '18 at 6:14









tjysdsgtjysdsg

112




112












  • sure - you modify the program, as suggested here.

    – Thomas Dickey
    Dec 31 '18 at 10:28











  • @ThomasDickey thx! But I wonder if there is any other way without modifying the source code?

    – tjysdsg
    Jan 1 at 9:22











  • Use a different program, then. Your choice.

    – Thomas Dickey
    Jan 1 at 10:13

















  • sure - you modify the program, as suggested here.

    – Thomas Dickey
    Dec 31 '18 at 10:28











  • @ThomasDickey thx! But I wonder if there is any other way without modifying the source code?

    – tjysdsg
    Jan 1 at 9:22











  • Use a different program, then. Your choice.

    – Thomas Dickey
    Jan 1 at 10:13
















sure - you modify the program, as suggested here.

– Thomas Dickey
Dec 31 '18 at 10:28





sure - you modify the program, as suggested here.

– Thomas Dickey
Dec 31 '18 at 10:28













@ThomasDickey thx! But I wonder if there is any other way without modifying the source code?

– tjysdsg
Jan 1 at 9:22





@ThomasDickey thx! But I wonder if there is any other way without modifying the source code?

– tjysdsg
Jan 1 at 9:22













Use a different program, then. Your choice.

– Thomas Dickey
Jan 1 at 10:13





Use a different program, then. Your choice.

– Thomas Dickey
Jan 1 at 10:13










1 Answer
1






active

oldest

votes


















0














Besides using the rxvt-unicode-sixel fork, it might be possible to implement sixel by writing a perl extension. Documentation for that is in the urxvtperl(3) manpage. I don't know much about sixel but I imagine it's a matter of:



  • intercepting the sixel escape sequences, interpreting them and not letting them pass through to the main escape sequence interpreter. You can replace the sequence with newline characters to displace the correct number of lines to fit the image's height, maybe scaled to fit the width.


  • drawing the image. You can get the correct window id via the API urxvt provides to extensions, and use regular xlib or xcb functions to draw the image if need be.


  • watch out for events like scrolling to redraw the image as needed.


I see many possibilities here that could be configurable, though I don't know if there are standards on sixel implementations. For example, what happens to images when resizing a terminal? Is it clipped? Is it scaled? only on creation or on every resize as well? what happens when the cursor is then moved over the image and one writes enough for text to wrap? what happens to the image and wrapped text when you resize then? etc.



I think the ideal would be to initially draw it at the scale of what's smaller between the terminal width and the image size, and set that as the maximum size of the image. Rescale the image on terminal resize, while respecting the maximum size set. With respect to text drawn over it, it might get a little complicated to keep that text over the image on redrawing the image...



Sorry, seems I got a little excited and got out of scope for your answer. Kind of wish I had the time to work on this.



EDIT: To answer to skepticism in the comments on the ability to work with pixels from a urxvt perl extension, here is a proof of concept. It sets a pixel the color white on coordinate (10, 10) from the top-left:



use strict;
use warnings;
use X11::Protocol;

my $X = X11::Protocol->new;

sub on_refresh_end
my $term = shift(@_);
my $gc = $X->new_rsrc;
$X->CreateGC($gc, $term->vt,
foreground => $X->white_pixel);
$X->PolyPoint($term->vt, $gc, 0, (10,10));
$X->flush;



To install this extension, put it in ~/.urxvt/ext/sixel-proof-of-concept, add it to ~/.Xresources (or ~/.Xdefaults if you use that) by adding the line URxvt.perl-ext-common: sixel-proof-of-concept, load that by doing xrdb ~/.Xresources, and make sure you have the X11::Protocol perl module installed.






share|improve this answer

























  • The perl interface won't get you there, since it is not able to work with pixels/drawing.

    – Thomas Dickey
    2 days ago











  • @ThomasDickey If I remember right, any program can draw to any X window. So even if urxvt's interface doesn't provide that, you should be able to use whatever perl libraries correspond with the Xlib or XCB C libraries. You just need to pass the terminal's window id as argument.

    – JoL
    2 days ago












  • Then your answer should show how to do this :-)

    – Thomas Dickey
    2 days ago











  • @ThomasDickey "should" is a strong word, but I guess I understand that you don't think this is a valid answer if for some reason it were impossible to work with pixels from a urxvt perl extension. I provided a proof of concept.

    – JoL
    2 days ago












  • Can the downvoter explain their downvote?

    – JoL
    2 days ago












Your Answer








StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "106"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f491703%2fis-there-any-way-to-let-urxvt-support-sixel%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









0














Besides using the rxvt-unicode-sixel fork, it might be possible to implement sixel by writing a perl extension. Documentation for that is in the urxvtperl(3) manpage. I don't know much about sixel but I imagine it's a matter of:



  • intercepting the sixel escape sequences, interpreting them and not letting them pass through to the main escape sequence interpreter. You can replace the sequence with newline characters to displace the correct number of lines to fit the image's height, maybe scaled to fit the width.


  • drawing the image. You can get the correct window id via the API urxvt provides to extensions, and use regular xlib or xcb functions to draw the image if need be.


  • watch out for events like scrolling to redraw the image as needed.


I see many possibilities here that could be configurable, though I don't know if there are standards on sixel implementations. For example, what happens to images when resizing a terminal? Is it clipped? Is it scaled? only on creation or on every resize as well? what happens when the cursor is then moved over the image and one writes enough for text to wrap? what happens to the image and wrapped text when you resize then? etc.



I think the ideal would be to initially draw it at the scale of what's smaller between the terminal width and the image size, and set that as the maximum size of the image. Rescale the image on terminal resize, while respecting the maximum size set. With respect to text drawn over it, it might get a little complicated to keep that text over the image on redrawing the image...



Sorry, seems I got a little excited and got out of scope for your answer. Kind of wish I had the time to work on this.



EDIT: To answer to skepticism in the comments on the ability to work with pixels from a urxvt perl extension, here is a proof of concept. It sets a pixel the color white on coordinate (10, 10) from the top-left:



use strict;
use warnings;
use X11::Protocol;

my $X = X11::Protocol->new;

sub on_refresh_end
my $term = shift(@_);
my $gc = $X->new_rsrc;
$X->CreateGC($gc, $term->vt,
foreground => $X->white_pixel);
$X->PolyPoint($term->vt, $gc, 0, (10,10));
$X->flush;



To install this extension, put it in ~/.urxvt/ext/sixel-proof-of-concept, add it to ~/.Xresources (or ~/.Xdefaults if you use that) by adding the line URxvt.perl-ext-common: sixel-proof-of-concept, load that by doing xrdb ~/.Xresources, and make sure you have the X11::Protocol perl module installed.






share|improve this answer

























  • The perl interface won't get you there, since it is not able to work with pixels/drawing.

    – Thomas Dickey
    2 days ago











  • @ThomasDickey If I remember right, any program can draw to any X window. So even if urxvt's interface doesn't provide that, you should be able to use whatever perl libraries correspond with the Xlib or XCB C libraries. You just need to pass the terminal's window id as argument.

    – JoL
    2 days ago












  • Then your answer should show how to do this :-)

    – Thomas Dickey
    2 days ago











  • @ThomasDickey "should" is a strong word, but I guess I understand that you don't think this is a valid answer if for some reason it were impossible to work with pixels from a urxvt perl extension. I provided a proof of concept.

    – JoL
    2 days ago












  • Can the downvoter explain their downvote?

    – JoL
    2 days ago
















0














Besides using the rxvt-unicode-sixel fork, it might be possible to implement sixel by writing a perl extension. Documentation for that is in the urxvtperl(3) manpage. I don't know much about sixel but I imagine it's a matter of:



  • intercepting the sixel escape sequences, interpreting them and not letting them pass through to the main escape sequence interpreter. You can replace the sequence with newline characters to displace the correct number of lines to fit the image's height, maybe scaled to fit the width.


  • drawing the image. You can get the correct window id via the API urxvt provides to extensions, and use regular xlib or xcb functions to draw the image if need be.


  • watch out for events like scrolling to redraw the image as needed.


I see many possibilities here that could be configurable, though I don't know if there are standards on sixel implementations. For example, what happens to images when resizing a terminal? Is it clipped? Is it scaled? only on creation or on every resize as well? what happens when the cursor is then moved over the image and one writes enough for text to wrap? what happens to the image and wrapped text when you resize then? etc.



I think the ideal would be to initially draw it at the scale of what's smaller between the terminal width and the image size, and set that as the maximum size of the image. Rescale the image on terminal resize, while respecting the maximum size set. With respect to text drawn over it, it might get a little complicated to keep that text over the image on redrawing the image...



Sorry, seems I got a little excited and got out of scope for your answer. Kind of wish I had the time to work on this.



EDIT: To answer to skepticism in the comments on the ability to work with pixels from a urxvt perl extension, here is a proof of concept. It sets a pixel the color white on coordinate (10, 10) from the top-left:



use strict;
use warnings;
use X11::Protocol;

my $X = X11::Protocol->new;

sub on_refresh_end
my $term = shift(@_);
my $gc = $X->new_rsrc;
$X->CreateGC($gc, $term->vt,
foreground => $X->white_pixel);
$X->PolyPoint($term->vt, $gc, 0, (10,10));
$X->flush;



To install this extension, put it in ~/.urxvt/ext/sixel-proof-of-concept, add it to ~/.Xresources (or ~/.Xdefaults if you use that) by adding the line URxvt.perl-ext-common: sixel-proof-of-concept, load that by doing xrdb ~/.Xresources, and make sure you have the X11::Protocol perl module installed.






share|improve this answer

























  • The perl interface won't get you there, since it is not able to work with pixels/drawing.

    – Thomas Dickey
    2 days ago











  • @ThomasDickey If I remember right, any program can draw to any X window. So even if urxvt's interface doesn't provide that, you should be able to use whatever perl libraries correspond with the Xlib or XCB C libraries. You just need to pass the terminal's window id as argument.

    – JoL
    2 days ago












  • Then your answer should show how to do this :-)

    – Thomas Dickey
    2 days ago











  • @ThomasDickey "should" is a strong word, but I guess I understand that you don't think this is a valid answer if for some reason it were impossible to work with pixels from a urxvt perl extension. I provided a proof of concept.

    – JoL
    2 days ago












  • Can the downvoter explain their downvote?

    – JoL
    2 days ago














0












0








0







Besides using the rxvt-unicode-sixel fork, it might be possible to implement sixel by writing a perl extension. Documentation for that is in the urxvtperl(3) manpage. I don't know much about sixel but I imagine it's a matter of:



  • intercepting the sixel escape sequences, interpreting them and not letting them pass through to the main escape sequence interpreter. You can replace the sequence with newline characters to displace the correct number of lines to fit the image's height, maybe scaled to fit the width.


  • drawing the image. You can get the correct window id via the API urxvt provides to extensions, and use regular xlib or xcb functions to draw the image if need be.


  • watch out for events like scrolling to redraw the image as needed.


I see many possibilities here that could be configurable, though I don't know if there are standards on sixel implementations. For example, what happens to images when resizing a terminal? Is it clipped? Is it scaled? only on creation or on every resize as well? what happens when the cursor is then moved over the image and one writes enough for text to wrap? what happens to the image and wrapped text when you resize then? etc.



I think the ideal would be to initially draw it at the scale of what's smaller between the terminal width and the image size, and set that as the maximum size of the image. Rescale the image on terminal resize, while respecting the maximum size set. With respect to text drawn over it, it might get a little complicated to keep that text over the image on redrawing the image...



Sorry, seems I got a little excited and got out of scope for your answer. Kind of wish I had the time to work on this.



EDIT: To answer to skepticism in the comments on the ability to work with pixels from a urxvt perl extension, here is a proof of concept. It sets a pixel the color white on coordinate (10, 10) from the top-left:



use strict;
use warnings;
use X11::Protocol;

my $X = X11::Protocol->new;

sub on_refresh_end
my $term = shift(@_);
my $gc = $X->new_rsrc;
$X->CreateGC($gc, $term->vt,
foreground => $X->white_pixel);
$X->PolyPoint($term->vt, $gc, 0, (10,10));
$X->flush;



To install this extension, put it in ~/.urxvt/ext/sixel-proof-of-concept, add it to ~/.Xresources (or ~/.Xdefaults if you use that) by adding the line URxvt.perl-ext-common: sixel-proof-of-concept, load that by doing xrdb ~/.Xresources, and make sure you have the X11::Protocol perl module installed.






share|improve this answer















Besides using the rxvt-unicode-sixel fork, it might be possible to implement sixel by writing a perl extension. Documentation for that is in the urxvtperl(3) manpage. I don't know much about sixel but I imagine it's a matter of:



  • intercepting the sixel escape sequences, interpreting them and not letting them pass through to the main escape sequence interpreter. You can replace the sequence with newline characters to displace the correct number of lines to fit the image's height, maybe scaled to fit the width.


  • drawing the image. You can get the correct window id via the API urxvt provides to extensions, and use regular xlib or xcb functions to draw the image if need be.


  • watch out for events like scrolling to redraw the image as needed.


I see many possibilities here that could be configurable, though I don't know if there are standards on sixel implementations. For example, what happens to images when resizing a terminal? Is it clipped? Is it scaled? only on creation or on every resize as well? what happens when the cursor is then moved over the image and one writes enough for text to wrap? what happens to the image and wrapped text when you resize then? etc.



I think the ideal would be to initially draw it at the scale of what's smaller between the terminal width and the image size, and set that as the maximum size of the image. Rescale the image on terminal resize, while respecting the maximum size set. With respect to text drawn over it, it might get a little complicated to keep that text over the image on redrawing the image...



Sorry, seems I got a little excited and got out of scope for your answer. Kind of wish I had the time to work on this.



EDIT: To answer to skepticism in the comments on the ability to work with pixels from a urxvt perl extension, here is a proof of concept. It sets a pixel the color white on coordinate (10, 10) from the top-left:



use strict;
use warnings;
use X11::Protocol;

my $X = X11::Protocol->new;

sub on_refresh_end
my $term = shift(@_);
my $gc = $X->new_rsrc;
$X->CreateGC($gc, $term->vt,
foreground => $X->white_pixel);
$X->PolyPoint($term->vt, $gc, 0, (10,10));
$X->flush;



To install this extension, put it in ~/.urxvt/ext/sixel-proof-of-concept, add it to ~/.Xresources (or ~/.Xdefaults if you use that) by adding the line URxvt.perl-ext-common: sixel-proof-of-concept, load that by doing xrdb ~/.Xresources, and make sure you have the X11::Protocol perl module installed.







share|improve this answer














share|improve this answer



share|improve this answer








edited yesterday

























answered 2 days ago









JoLJoL

1,154412




1,154412












  • The perl interface won't get you there, since it is not able to work with pixels/drawing.

    – Thomas Dickey
    2 days ago











  • @ThomasDickey If I remember right, any program can draw to any X window. So even if urxvt's interface doesn't provide that, you should be able to use whatever perl libraries correspond with the Xlib or XCB C libraries. You just need to pass the terminal's window id as argument.

    – JoL
    2 days ago












  • Then your answer should show how to do this :-)

    – Thomas Dickey
    2 days ago











  • @ThomasDickey "should" is a strong word, but I guess I understand that you don't think this is a valid answer if for some reason it were impossible to work with pixels from a urxvt perl extension. I provided a proof of concept.

    – JoL
    2 days ago












  • Can the downvoter explain their downvote?

    – JoL
    2 days ago


















  • The perl interface won't get you there, since it is not able to work with pixels/drawing.

    – Thomas Dickey
    2 days ago











  • @ThomasDickey If I remember right, any program can draw to any X window. So even if urxvt's interface doesn't provide that, you should be able to use whatever perl libraries correspond with the Xlib or XCB C libraries. You just need to pass the terminal's window id as argument.

    – JoL
    2 days ago












  • Then your answer should show how to do this :-)

    – Thomas Dickey
    2 days ago











  • @ThomasDickey "should" is a strong word, but I guess I understand that you don't think this is a valid answer if for some reason it were impossible to work with pixels from a urxvt perl extension. I provided a proof of concept.

    – JoL
    2 days ago












  • Can the downvoter explain their downvote?

    – JoL
    2 days ago

















The perl interface won't get you there, since it is not able to work with pixels/drawing.

– Thomas Dickey
2 days ago





The perl interface won't get you there, since it is not able to work with pixels/drawing.

– Thomas Dickey
2 days ago













@ThomasDickey If I remember right, any program can draw to any X window. So even if urxvt's interface doesn't provide that, you should be able to use whatever perl libraries correspond with the Xlib or XCB C libraries. You just need to pass the terminal's window id as argument.

– JoL
2 days ago






@ThomasDickey If I remember right, any program can draw to any X window. So even if urxvt's interface doesn't provide that, you should be able to use whatever perl libraries correspond with the Xlib or XCB C libraries. You just need to pass the terminal's window id as argument.

– JoL
2 days ago














Then your answer should show how to do this :-)

– Thomas Dickey
2 days ago





Then your answer should show how to do this :-)

– Thomas Dickey
2 days ago













@ThomasDickey "should" is a strong word, but I guess I understand that you don't think this is a valid answer if for some reason it were impossible to work with pixels from a urxvt perl extension. I provided a proof of concept.

– JoL
2 days ago






@ThomasDickey "should" is a strong word, but I guess I understand that you don't think this is a valid answer if for some reason it were impossible to work with pixels from a urxvt perl extension. I provided a proof of concept.

– JoL
2 days ago














Can the downvoter explain their downvote?

– JoL
2 days ago






Can the downvoter explain their downvote?

– JoL
2 days ago


















draft saved

draft discarded
















































Thanks for contributing an answer to Unix & Linux Stack Exchange!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f491703%2fis-there-any-way-to-let-urxvt-support-sixel%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

getting Checkpoint VPN SSL Network Extender working in the command lineHow to connect to CheckPoint VPN on Ubuntu 18.04LTS?Will the Linux ( red-hat ) Open VPNC Client connect to checkpoint or nortel VPN gateways?VPN client for linux machine + support checkpoint gatewayVPN SSL Network Extender in FirefoxLinux Checkpoint SNX tool configuration issuesCheck Point - Connect under Linux - snx + OTPSNX VPN Ububuntu 18.XXUsing Checkpoint VPN SSL Network Extender CLI with certificateVPN with network manager (nm-applet) is not workingWill the Linux ( red-hat ) Open VPNC Client connect to checkpoint or nortel VPN gateways?VPN client for linux machine + support checkpoint gatewayImport VPN config files to NetworkManager from command lineTrouble connecting to VPN using network-manager, while command line worksStart a VPN connection with PPTP protocol on command linestarting a docker service daemon breaks the vpn networkCan't connect to vpn with Network-managerVPN SSL Network Extender in FirefoxUsing Checkpoint VPN SSL Network Extender CLI with certificate

Cannot Extend partition with GParted The 2019 Stack Overflow Developer Survey Results Are In Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) 2019 Community Moderator Election ResultsCan't increase partition size with GParted?GParted doesn't recognize the unallocated space after my current partitionWhat is the best way to add unallocated space located before to Ubuntu 12.04 partition with GParted live?I can't figure out how to extend my Arch home partition into free spaceGparted Linux Mint 18.1 issueTrying to extend but swap partition is showing as Unknown in Gparted, shows proper from fdiskRearrange partitions in gparted to extend a partitionUnable to extend partition even though unallocated space is next to it using GPartedAllocate free space to root partitiongparted: how to merge unallocated space with a partition

Marilyn Monroe Ny fiainany manokana | Jereo koa | Meny fitetezanafanitarana azy.