Open the Openstack console in new window Get link Facebook X Pinterest Email Other Apps August 20, 2014 Open the Openstack console in new window $ ssh -X username@192.168.06.01 $ sudo virsh $ ps -aux | grep vmname | grep vnc $ sudo apt-get install vncviewer $ vncviewer :0 Get link Facebook X Pinterest Email Other Apps Comments
NameError: name 'logging' is not defined June 02, 2016 logger = logging.getLogger(__name__) NameError: name 'logging' is not defined this error is occurs due to you are not import loggin >>>import logging Read more
How to configure IMAP in python January 15, 2017 import imaplib def open_connection ( verbose = False ): # Connect to the server connection = imaplib.IMAP4_SSL( ' servername ' ) # Login to our account connection.login( ' username ' , ' password ' ) return connection # if __name__ == '__main__': # c = open_connection(verbose=True) # try: # resp, data = c.list() # print "\nIMAP4_SSL instance :", c # print '\nResponse code:', resp # print "\nmailboxes available for an account :", data # finally: # c.logout() Read more
How to save output of git diff in local file July 26, 2014 you can get output result in local file with $ git diff > /home/sanu/myfile.diff Read more
Comments
Post a Comment