Wednesday, March 18, 2020

Tiempo de espera green card de hermanos de ciudadano

Tiempo de espera green card de hermanos de ciudadano La peticià ³n de una tarjeta de residencia, conocida como green card, que realiza un ciudadano americano para su hermano o hermana es uno de los trmites migratorios que ms tarda, desde los cinco hasta los veinte aà ±os de espera. Aquà ­ le explicamos el por quà ©. Bajo la ley de Inmigracià ³n, el Congreso de los Estados Unidos limita el nà ºmero de visas que se emiten de acuerdo al estatus del peticionario (esposa, hijo/a soltero/a, padres, hermano/a, hijo/a casado/a) y a su paà ­s de origen. El tiempo de espera depende entonces de estos dos factores: origen y categorà ­a. Los tiempos de espera dependen de la nacionalidad del pedido y de la relacià ³n con el ciudadano, ya que cada paà ­s tiene una cuota là ­mite y cada categorà ­a un nà ºmero determinado de visas otorgadas anualmente. Los hermanos y hermanas de los ciudadanos pertenecen a la categorà ­a F4, la à ºltima de las categorà ­as de preferencia familiar: El nà ºmero total de visas otorgadas para esta categorà ­a en el aà ±o 2018 ascendà ­an a las 65.000 con un tiempo de espera promedio de diez aà ±os, con menos y ms aà ±os dependiendo del caso. En esta categorà ­a estn incluidos los hermanos/as biolà ³gicos, los hermanos por adopcià ³n y los hermanastros/as. Si el consulado tiene duda acerca de la relacià ³n entre el ciudadano y el beneficiario, puede solicitar una prueba de ADN. La espera Como norma, los servicios de ciudadanà ­a e inmigracià ³n de los Estados Unidos (USCIS) tramitan las peticiones de tarjetas de residencia en orden de llegada de la peticià ³n. La espera promedio es de diez aà ±os. Pero hay paà ­ses de origen cuyas visas se demoran ms que las otras: Mà ©xico, China, India y Filipinas, cuyas esperas a veces ascienden a los veinte aà ±os. Es importante aclarar que no todos los casos son iguales y no todas las visas de las personas del mismo paà ­s de origen tardan el mismo tiempo. La clave es la fecha en la que la peticià ³n fue aprobada (fecha de prioridad). Para que haya claridad, en el 2018 habà ­a 65.000 visas para otorgar pero miles de ms peticiones. Las que no clasifican en el cupo anual pasan al aà ±o siguiente, y asà ­ sucesivamente hasta que obtienen su tarjeta de residencia. De ahà ­ la espera. Vale la pena anotar que hay mucho rumor y desinformacià ³n acerca de los tiempos de espera; siempre consulte las fuentes oficiales y no se deje guiar por lo que oye de otras personas. Cada caso es diferente. Para estar al corriente de sus tiempos de espera puede consultar la pgina de USCIS con su nà ºmero de caso a la mano. Breve descripcià ³n del proceso Para aclarar dudas y ayudarle a entender el proceso sepa que para pedir una green card para su hermano/a hay que: Ser ciudadano americano y haber cumplido ya los 21 aà ±os de edadTener solvencia econà ³mica para patrocinar al familiarLlenar y enviar el formulario I-130 Estar en contacto con el Centro Nacional de VisasEntender que una solicitud aprobada no es lo mismo que una visa aprobadaSaber quà © es la fecha de prioridadRevisar cada mes el Boletà ­n de Visas del Departamento de Estado y comprobar quà © fecha se est gestionando para calcular cunto tiempo ms queda para recibir la green cardRevisar el affidavit of support  y tener claro sus requisitosPedir ayuda a un abogado si hay dudas en cà ³mo proceder Por à ºltimo: situaciones problemticas Hermano indocumentado: el problema con un hermano/a indocumentado en territorio de los Estados Unidos es que este/a no podrà ­a ajustar su estatus y podrà ­a aplicarse el castigo de los tres y de los diez aà ±os en el momento en que sale del paà ­s a presentarse a la entrevista en el consulado.Peticià ³n negada: Si la peticià ³n por una green card para su hermano/a fue negada, revise aquà ­ las posibles causas.

Monday, March 2, 2020

How to Setup and Use SSH on a Raspberry PI

How to Setup and Use SSH on a Raspberry PI SSH is a secure method of logging onto a remote computer. If your Pi is networked, then this can be a handy way of operating it from another computer or just copying files to or from it. First, you have to install the SSH service. This is done by this command: sudo apt-get install ssh After a couple of minutes, this will be complete. You can start the daemon (Unix name for a service) with this command from the terminal: sudo /etc/init.d/ssh start This init.d is used to start other daemons. For example, if you have Apache, MySQL, Samba etc. You can also stop the service with stop or restart it with restart. Have It Start at Bootup To set it up so the ssh server starts every time the Pi boots up, run this command once: sudo update-rc.d ssh defaults You can check that it worked by forcing your Pi to reboot with the reboot command: sudo reboot Then after rebooting try to connect to it using Putty or WinSCP (details below). Powering Down and Rebooting Its possible to corrupt your SD card with power offs before it halts. The result: reinstall everything. Only power down once you have fully shut down your Pi. Given its low power usage and little heat given off, you could probably leave it running 24x7. If you want to shut it down, use the shutdown command: sudo shutdown -h now Change -h to -r and it does the same as sudo reboot. Putty and WinSCP If youre accessing your Pi from the command line of a Windows/Linux or Mac PC then use Putty or the commercial (but free for private use) Tunnelier. Both are great for general browsing around your Pis folders and copying files to or from a Windows PC. Download them from these URLs: Putty Download PageWinSCP Download PageTunnelier: Powerful free to use Windows SFTP etc. Your Pi needs to be connected to your network before you use Putty or WinSCP and you need to know its IP address. On my network, my Pi is on 192.168.1.69. You can find yours by typing in /sbin/ifconfig and on the 2nd line of the output, youll see inet addr: followed by your IP address. For Putty, its easiest to download putty.exe or the zip file of all the exes and put them in a folder. When you run putty it pops up a configuration Window. Enter your IP address in the input field where it says Host Name (or IP address) and enter pi or any name there. Now click the save button then the open button at the bottom. Youll have to login into your pi but now you can use it as if you were actually there. This can be quite useful, as its far easier to cut and paste long text strings in via a putty terminal. Try running this command: ps ax That shows a list of processes running on your pi. These include ssh (the two sshd) and Samba (nmbd and smbd) and many others. PID TTY STAT TIME COMMAND858 ? Ss 0:00 /usr/sbin/sshd866 ? Ss 0:00 /usr/sbin/nmbd -D887 ? Ss 0:00 /usr/sbin/smbd -D1092 ? Ss 0:00 sshd: pi [priv] WinSCP We find it most useful to set it up in two screen mode rather than in explorer mode but its easily changed in the Preferences. Also in preferences under Integration/Applications change the path to the putty.exe so you can easily jump into putty. When you connect to the pi, it starts at your home directory which is /home/pi. Click on the two .. to view the folder above and do it once more to get to the root. You can see all of the 20 Linux folders. After youve used a terminal for a while youll see a hidden file .bash_history (not that well hidden!). This is a text file of your command history with all the commands youve used before so copy it, edit out the stuff you dont want and keep the useful commands somewhere safe.