Sponsored Content
The Lounge What is on Your Mind? What's your favorite SSH client to connect to UNIX/Linux machines? Post 302599991 by admin_xor on Sunday 19th of February 2012 09:07:29 PM
Old 02-19-2012
What's your favorite SSH client to connect to UNIX/Linux machines?

I am curious about the most popular ssh client on Windows environment. Talking about me, I use PuTTY most of the time coupled with WinSCP to transfer files. But, I like Tera Term too. It has great drag-drop feature where you can drag a file/folder and drop on the window and it will transfer the file/directory to the host you are connected to. Good one!

What about you people? Smilie
 

10 More Discussions You Might Find Interesting

1. What is on Your Mind?

Post Your Favorite UNIX/Linux Related RSS Feed Links

Hello, I am planning to revise the RSS News subforum areas, here: News, Links, Events and Announcements - The UNIX Forums ... maybe with a subforum for each OS specific news, like HP-UX, Solaris, RedHat, OSX, etc. RSS subforums.... Please post your favorite OS specific RSS (RSS2) link... (0 Replies)
Discussion started by: Neo
0 Replies

2. Shell Programming and Scripting

how to ssh to remote unix machines using private/public key

hello, iam able to ssh to a linux server from a linux server called "machine1" using the private/public key method, so I dont need to enter any password when I run my script but iam not able to ssh from machine1 to a UNIX server, access is denied. note that I am using an application id which is... (6 Replies)
Discussion started by: wydadi
6 Replies

3. Shell Programming and Scripting

poderosa ssh client on hp-unix

I have tools -> options -> terminal -> buffer -> 999999 but when I scroll up, I often lose what I scroll up to. This always happens when I am connected to oracle in sqlplus. This has never happened to me with poderosa in Sun Solaris or Linux and I have never had to set any variables or... (1 Reply)
Discussion started by: guessingo
1 Replies

4. Linux

Help!! trying to connect to linux SSH from windows putty client

Hi, i am trying to connect my Putty session on a windows box to a linux SSH, i have generated private and public key pairs using puttygen, i have set the public one to be in an OPENSSH format... and have put this in my authorized_keys file in linux, when i connect i get the following errors: ... (1 Reply)
Discussion started by: Jtyreman
1 Replies

5. What is on Your Mind?

What's your all time favorite UNIX/Linux book?

I can bet everyone has their one favorite book even though we have had read many books on UNIX or Linux. My all time favorite is "Unix Power Tools". This book always made me geeky and I loved the little tricks/tips in the book. I still do! The next favorite would be "Prentice Hall Unix and Linux... (0 Replies)
Discussion started by: admin_xor
0 Replies

6. Shell Programming and Scripting

How to change passwords for User accounts on multiple UNIX/Linux machines remotely?

Hello Experts, Need some direction on creating shell script for following environment: We have about 20 people in the team working as Oracle DBA's (sysdba's and appdba's). Total Servers which is a mix of Unix and Linux are 200. We do not have Root user access on any of the servers and... (3 Replies)
Discussion started by: sha2402
3 Replies

7. UNIX for Advanced & Expert Users

Issues with passwordless sftp2 from windows to Linux using F-Secure SSH Client

Hi, I am facing problems whie trying to do a passwordless ssh to Unix box from windows. Public key was generated using F-secure. When the F-secure client attempts it connects without password but when I try to use sftp2 in command line it prompts for password. I have tried several options and... (0 Replies)
Discussion started by: dhrajj
0 Replies

8. Linux

Issues with passwordless sftp2 from windows to Linux using F-Secure SSH Client

Hi, I am facing problems whie trying to do a passwordless ssh to Unix box from windows. Public key was generated using F-secure. When the F-secure client attempts it connects without password but when I try to use sftp2 in command line it prompts for password. I have tried several options and... (3 Replies)
Discussion started by: dhrajj
3 Replies

9. What is on Your Mind?

Video: What is Your Favorite Linux Distro? UNIX.com and Primis

Video: What is Your Favorite Linux Distro? UNIX.com and Primis https://youtu.be/doa9sA6q9Uw With so many great flavors of Linux to choose from, we asked our UNIX.com members what is their favorite Linux distro and why. Here are the results: What is your favorite Linux distro? ... (0 Replies)
Discussion started by: Neo
0 Replies

10. What is on Your Mind?

What is Your Favorite Editor for Linux and UNIX? | A Video in 1080 HD

We have asked UNIX.com users over the years what is their favorite editor and why. Here is the top three answers. Here is a new YT video on this question: What Editor Does Everyone Use? https://youtu.be/gqE8RTZZt9g Of course, vi was the overwhelming favorite. Credits: 1080 HD... (3 Replies)
Discussion started by: Neo
3 Replies
QDragObject(3qt)														  QDragObject(3qt)

NAME
QDragObject - Encapsulates MIME-based data transfer SYNOPSIS
#include <qdragobject.h> Inherits QObject and QMimeSource. Inherited by QStoredDrag, QTextDrag, QImageDrag, and QIconDrag. Public Members QDragObject ( QWidget * dragSource = 0, const char * name = 0 ) virtual ~QDragObject () bool drag () bool dragMove () void dragCopy () void dragLink () virtual void setPixmap ( QPixmap pm ) virtual void setPixmap ( QPixmap pm, const QPoint & hotspot ) QPixmap pixmap () const QPoint pixmapHotSpot () const QWidget * source () enum DragMode { DragDefault, DragCopy, DragMove, DragLink, DragCopyOrMove } Static Public Members QWidget * target () Protected Members virtual bool drag ( DragMode mode ) DESCRIPTION
The QDragObject class encapsulates MIME-based data transfer. QDragObject is the base class for all data that needs to be transferred between and within applications, both for drag and drop and for the clipboard. See the Drag-and-drop documentation for an overview of how to provide drag and drop in your application. See the QClipboard documentation for an overview of how to provide cut-and-paste in your application. The drag() function is used to start a drag operation. You can specify the DragMode in the call or use one of the convenience functions dragCopy(), dragMove() or dragLink(). The drag source where the data originated is retrieved with source(). If the data was dropped on a widget within the application, target() will return a pointer to that widget. Specify the pixmap to display during the drag with setPixmap(). See also Drag And Drop Classes. Member Type Documentation QDragObject::DragMode This enum describes the possible drag modes. QDragObject::DragDefault - The mode is determined heuristically. QDragObject::DragCopy - The data is copied, never moved. QDragObject::DragMove - The data is moved, if dragged at all. QDragObject::DragLink - The data is linked, if dragged at all. QDragObject::DragCopyOrMove - The user chooses the mode by using a control key to switch from the default. MEMBER FUNCTION DOCUMENTATION
QDragObject::QDragObject ( QWidget * dragSource = 0, const char * name = 0 ) Constructs a drag object called name, which is a child of dragSource. Note that the drag object will be deleted when dragSource is deleted. QDragObject::~QDragObject () [virtual] Destroys the drag object, canceling any drag and drop operation in which it is involved, and frees up the storage used. bool QDragObject::drag () Starts a drag operation using the contents of this object, using DragDefault mode. The function returns TRUE if the caller should delete the original copy of the dragged data (but see target()); otherwise returns FALSE. If the drag contains references to information (e.g. file names in a QUriDrag are references) then the return value should always be ignored, as the target is expected to manipulate the referred-to content directly. On X11 the return value should always be correct anyway, but on Windows this is not necessarily the case (e.g. the file manager starts a background process to move files, so the source must not delete the files!) Note that on Windows the drag operation will spin a blocking modal event loop that will not dispatch any QTimers. Example: dirview/dirview.cpp. bool QDragObject::drag ( DragMode mode ) [virtual protected] This is an overloaded member function, provided for convenience. It behaves essentially like the above function. Starts a drag operation using the contents of this object. At this point, the object becomes owned by Qt, not the application. You should not delete the drag object or anything it references. The actual transfer of data to the target application will be done during future event processing - after that time the drag object will be deleted. Returns TRUE if the dragged data was dragged as a move, indicating that the caller should remove the original source of the data (the drag object must continue to have a copy); otherwise returns FALSE. The mode specifies the drag mode (see QDragObject::DragMode.) Normally one of the simpler drag(), dragMove(), or dragCopy() functions would be used instead. void QDragObject::dragCopy () Starts a drag operation using the contents of this object, using DragCopy mode. Be sure to read the constraints described in drag(). See also drag(), dragMove(), and dragLink(). Example: iconview/simple_dd/main.cpp. void QDragObject::dragLink () Starts a drag operation using the contents of this object, using DragLink mode. Be sure to read the constraints described in drag(). See also drag(), dragCopy(), and dragMove(). bool QDragObject::dragMove () Starts a drag operation using the contents of this object, using DragMove mode. Be sure to read the constraints described in drag(). See also drag(), dragCopy(), and dragLink(). QPixmap QDragObject::pixmap () const Returns the currently set pixmap (which isNull() if none is set). QPoint QDragObject::pixmapHotSpot () const Returns the currently set pixmap hotspot. void QDragObject::setPixmap ( QPixmap pm, const QPoint & hotspot ) [virtual] Set the pixmap pm to display while dragging the object. The platform-specific implementation will use this where it can - so provide a small masked pixmap, and do not assume that the user will actually see it. For example, cursors on Windows 95 are of limited size. The hotspot is the point on (or off) the pixmap that should be under the cursor as it is dragged. It is relative to the top-left pixel of the pixmap. Warning: We have seen problems with drag cursors on different graphics hardware and driver software on Windows. Setting the graphics acceleration in the display settings down one tick solved the problems in all cases. Example: fileiconview/qfileiconview.cpp. void QDragObject::setPixmap ( QPixmap pm ) [virtual] This is an overloaded member function, provided for convenience. It behaves essentially like the above function. Uses a hotspot that positions the pixmap below and to the right of the mouse pointer. This allows the user to clearly see the point on the window which they are dragging the data onto. QWidget * QDragObject::source () Returns a pointer to the drag source where this object originated. QWidget * QDragObject::target () [static] After the drag completes, this function will return the QWidget which received the drop, or 0 if the data was dropped on another application. This can be useful for detecting the case where drag and drop is to and from the same widget. SEE ALSO
http://doc.trolltech.com/qdragobject.html http://www.trolltech.com/faq/tech.html COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the license file included in the distribution for a complete license statement. AUTHOR
Generated automatically from the source code. BUGS
If you find a bug in Qt, please report it as described in http://doc.trolltech.com/bughowto.html. Good bug reports help us to help you. Thank you. The definitive Qt documentation is provided in HTML format; it is located at $QTDIR/doc/html and can be read using Qt Assistant or with a web browser. This man page is provided as a convenience for those users who prefer man pages, although this format is not officially supported by Trolltech. If you find errors in this manual page, please report them to qt-bugs@trolltech.com. Please include the name of the manual page (qdragobject.3qt) and the Qt version (3.3.8). Trolltech AS 2 February 2007 QDragObject(3qt)
All times are GMT -4. The time now is 12:37 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy