Skip to main content

加州购买枪支极简流程


声明

第一, 拥枪是宪法承认的权利,即保护自己的天赋权利。
第二, 要做一个有责任的拥枪人,遵纪守法。

前提

仅限于F1 或者H1B 等类型的长期有效签证, 或者绿卡公民.

正文开始..

以前买枪直接提供身份证明就行, 但是近些年不行了. 加州法律规定,所有枪支购买者必须(除特殊赦免)在购买枪支时出示加州枪械安全执照。(枪械持有许可证 有效期5年)
不仅要有合法身份, 还有证件. 虽然程序上面复杂了一些, 但是为了你我的安全, 复杂一点也咱也忍了.

相关证件:
FSC (firearm Safety Certification): 持枪证. 考试必须年龄18岁以上。可以去任何一个FFL去考,或是像是Big 5, Dick's sports等等买枪的商店gun shop。 考试费用$25.可以考两遍! 分英文和西班牙文。 没有中文,但是可以找翻译! 考试包括10个true/false questions, 20 个多项选择。30答对23个题算通过。

这个是官方的学习材料。 另外这个手册包括了很多最基本最重要的知识, 建议认真看,花不了多少时间。oag.ca.gov/sites/all/fi 猎照 (Hunting License): 猎照有效期一年,一般是从7/1到6/30. 可以先去下面这个网站学习,然后去local考猎照。hunter-ed.com/californi


必要条件

年龄:购买手枪必须年满21岁,购买长枪,必须年满18岁。
绿卡或者公民猎照: FSC就够了
非公民非绿卡: 猎照 (Hunting License) + FSC
满足以上条件就可以购买枪支了。

买枪

有了证件之后, 就可以去买枪了. 在加州能去买枪的地方不多, 长枪推荐去 Big 5 或者 Dick's, 手枪的话就去local gun shop. 好了, Milpitas, Cupertino都有卖. 加州卖手枪的手续略坑, 所以Big 5 或者 Dick's 都不在加州卖手枪.

必带证件:
  • FSC持枪证
  • 猎枪证
  • 护照
  • i797(H1B) 或者 i20(F1)
  • 最近一次的i94表

买长枪貌似不需要带FSC, 不过你带上总是没错的了.
看上你想要的枪, 过了paper work之后, 打手印, 然后就等11天就可以拿长枪了, 手枪貌似是15天. 30天之内必须提枪, 不然重新过backgroud check (DROS), 再交一次background 调查fee (约$45).

网购

推荐以下网站查找deal。
https://www.slickguns.com/www.slickguns.com
GUNWATCHER.COMwww.gunwatcher.com
http://www.gunbroker.com/www.gunbroker.com

买子弹

光有枪还不行, 还得买子弹. 直接去Big 5 或者 Dicks就好了.

以前买子弹是可以直接邮寄到家里的, 不需要任何证件,但是2018年1月份之后, 已经没有了. 只能去店里买, 而且还要background check(DROS).

Comments

Popular posts from this blog

CKA Simulator Kubernetes 1.22

  https://killer.sh Pre Setup Once you've gained access to your terminal it might be wise to spend ~1 minute to setup your environment. You could set these: alias k = kubectl                         # will already be pre-configured export do = "--dry-run=client -o yaml"     # k get pod x $do export now = "--force --grace-period 0"   # k delete pod x $now Vim To make vim use 2 spaces for a tab edit ~/.vimrc to contain: set tabstop=2 set expandtab set shiftwidth=2 More setup suggestions are in the tips section .     Question 1 | Contexts Task weight: 1%   You have access to multiple clusters from your main terminal through kubectl contexts. Write all those context names into /opt/course/1/contexts . Next write a command to display the current context into /opt/course/1/context_default_kubectl.sh , the command should use kubectl . Finally write a second command doing the same thing into ...

OWASP Top 10 Threats and Mitigations Exam - Single Select

Last updated 4 Aug 11 Course Title: OWASP Top 10 Threats and Mitigation Exam Questions - Single Select 1) Which of the following consequences is most likely to occur due to an injection attack? Spoofing Cross-site request forgery Denial of service   Correct Insecure direct object references 2) Your application is created using a language that does not support a clear distinction between code and data. Which vulnerability is most likely to occur in your application? Injection   Correct Insecure direct object references Failure to restrict URL access Insufficient transport layer protection 3) Which of the following scenarios is most likely to cause an injection attack? Unvalidated input is embedded in an instruction stream.   Correct Unvalidated input can be distinguished from valid instructions. A Web application does not validate a client’s access to a resource. A Web action performs an operation on behalf of the user without checkin...